Cannot Update php to 5.2.4

bipinkdas

Verified User
Joined
Nov 23, 2006
Messages
29
Location
India
Dear List
I went fedup while trying to update php. I am trying to update the current version 4.4.7 to 5.2.4,the build script went failed with following error.

Notice: Following unknown configure options were used:

--with-xml

Check './configure --help' for available options

/usr/local/directadmin/customapache/configure.php: line 16: --with-zlib: command not found.
The Zlib is there. And if I try to configure through manaully it will work without error. Can anybody tell me whts went wrong.
 
Ues it's here, but without a "\" at the end of line :) Add
Code:
--with zlib \
instead of
Code:
--with-zlib
 
My configure.php File

./configure \
--with-apxs \
--with-curl \
--with-gd \
--with-gettext \
--with-jpeg-dir=/usr/local/lib \
--with-kerberos \
--with-mcrypt \
--with-mhash \
--with-mysql=/usr/local/mysql \
--with-pear \
--with-png-dir=/usr/local/lib \
--with-xml \
--with-zlib \
--with-zlib-dir=/usr/local/lib \
--with-zip \
--with-openssl \
--enable-bcmath \
--enable-calendar \
--enable-ftp \
--enable-magic-quotes \
--enable-sockets \
--enable-track-vars \
--enable-mbstring \
--enable-memory-limit

Is this OK ?
 
Back
Top