PHP-5.3.8 upgrade

Ethio

New member
Joined
Oct 26, 2011
Messages
1
I'm not able to build php after V5.3.8 upgrade. if you know the answer please help me out.

[root@46875 custombuild]# ./build php n
Found /usr/local/directadmin/custombuild/zziplib-0.10.82.tar.gz
Extracting ...
Done.
fixing zzip/zzip.h and zziplib/zzip-conf.h
Configuring zziplib-0.10.82...
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for gsed... sed
./configure: line 1343: yes
yes
yes/conftest.tmp: No such file or directory
configure: error: could not change to default builddir ./yes
yes
yes
sed: can't read confdefs.h: No such file or directory
Done. Making zziplib-0.10.82...
Trying to make zZip...
make: *** No targets specified and no makefile found. Stop.
[root@46875 custombuild]#
 
@SeLLeRoNe,

It seems yes, as root. See here:

[root@46875 custombuild]#

@Ethio,

Something wrong is with build script, as far as I see. Since you're running

Code:
./build php n

it should not try to install zziplib. Correct me if I'm wrong.

So try to do:

Code:
cd /usr/local/directadmin/custombuild
./build update && ./build clean
./build php n

And show output of :

Code:
if [ -f "/usr/local/directadmin/custombuild/custom/suphp/configure.php5" ]; then echo custom && cat /usr/local/directadmin/custombuild/custom/suphp/configure.php5; else echo configure && cat /usr/local/directadmin/custombuild/configure/suphp/configure.php5; fi;
 
The topic starter already runs commands as root, it is quite easily can be seen from the console output:

Code:
[root@46875 custombuild]#
 
Back
Top