[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] Compiling PHP4.3.1 with cURL & IMAP
- Subject: Re: [cobalt-users] Compiling PHP4.3.1 with cURL & IMAP
- From: "Steve Bassi" <steve@xxxxxxxxx>
- Date: Tue Aug 19 23:51:00 2003
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
----- Original Message -----
From: "René Mølsted" <molsted@xxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Sent: Tuesday, August 19, 2003 11:14 AM
Subject: [cobalt-users] Compiling PHP4.3.1 with cURL & IMAP
> I'm trying to compile PHP 4.3.1 with cURL on our RaQ4.
> I'm using this configuration.
> ./configure --disable-debug --enable-ftp --enable-magic-quotes
> --enable-mm=shared --enable-track-vars --enable-xml --prefix=/usr
> --enable-wddx=shared --enable-sockets --with-apxs=/usr/sbin/apxs
> --with-config-file-path=/etc/httpd/4.3.1/ --with-exec-dir=/usr/bin
> --with-gettext=/usr --with-interbase=shared --with-iconv --with-ldap
> --with-mysql=shared --with-pgsql=shared --with-jpeg-dir=/usr
> --with-png-dir=/usr --with-regex=system --with-zlib
> --with-libdir=/usr/lib --with-ttf --with-pdflib=shared
> --with-curl=shared --with-imap
>
I have cURL installed in /usr/local/curl , and this is my php config line
which works for me.
./configure --prefix=/usr --with-apxs=/usr/sbin/apxs --with-config-file-path
=/etc/httpd \
--with-exec-dir=/usr/bin --with-libdir=/usr/lib --with-zlib \
--with-gd=/home/local --enable-gd-native-ttf --with-jpeg-dir=/usr/lib \
--with-freetype-dir=/usr/include/freetype2 --with-Xpm --with-ttf --with-t1li
b \
--with-gettext=/usr --with-png-dir=/usr/lib --with-regex=system --with-db \
--with-gdbm --with-mbstring --with-mbstr-enc-trans --with-ldap \
--with-curl --with-imap-ssl --with-mysql=/usr \
--with-pgsql=shared --with-pdflib=shared --enable-ftp --enable-safe-mode \
--enable-trans-sid --enable-inline-optimization --enable-track-vars --enable
-wddx=shared \
--enable-mm=shared --enable-magic-quotes --enable-xml --disable-debug
Bassi