recompile modules in php

Oddis

Verified User
Joined
May 24, 2005
Messages
47
Hi.
I try to recompile php and according to Directadmin support I shall use:
./build php_ap2 d
(my system is CentOS 3.8)
When I do this, I got this error message:

Done. Making gd-2.0.34...
Trying to make gd...
cd . && /bin/sh /usr/local/directadmin/customapache/gd-2.0.34/config/missing --run autoheader
configure.ac:28: error: Autoconf version 2.58 or higher is required
aclocal.m4:7856: AM_INIT_AUTOMAKE is expanded from...
configure.ac:28: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
autoheader: /usr/bin/autom4te failed with exit status: 1

The latest Autoconf for CentOS v3.8 is 2.57.3

Thanks for any help........
 
Thanks for your reply.
I have already tried that, but no help
since the latest version for CentOs 3.8 is 2.57.3.

Yum only tells that it is nothing to update
 
I have the same issue using centos 3 latest build.

Trying to update to the latest version of GD:

Trying to make gd...
cd . && /bin/sh /usr/local/directadmin/customapache/gd-2.0.34/config/missing --run autoheader
configure.ac:28: error: Autoconf version 2.58 or higher is required
aclocal.m4:7856: AM_INIT_AUTOMAKE is expanded from...
configure.ac:28: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
autoheader: /usr/bin/autom4te failed with exit status: 1
make: *** [config.hin] Error 1

Jon
 
Code:
cd /usr/src
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.61.tar.gz
tar xzf autoconf-2.61.tar.gz
cd autoconf-2.61
./configure --prefix=/usr
make
make install

Then you can do "./build gd".
 
Thanks

It works.
Thanks a lot for taking time to explain smtalk....
 
Back
Top