my env is :
os :redhat 6.0
php4.0.0 in usr/src/php_4.0.0
apache1.3.12 in usr/src/apache_1.3.12
libmcrypt2.2.7 in usr/src/libmcrypt-2.2.7
the process:
1)go to directory of libmcrypt source
configure --disable-posix-threads
make
make install
2)go to apache source dir
cd ../apa
3)go to php soure dir
cd ../php
configure \
--with-oracle=/oracle/8.1.6 \
--with-oci8=/oracle/8.1.6 \
--with-mcrypt \
--with-apache=../apache_1.3.12 \
--enable-track-vars
make
make install
4)go to apache soure dir
cd ../apache_1.3.12
configure --activate- module=/src/modules/php4/libphp4.a
make
make install
5)cp php.ini-dist /usr/local/lib/php.ini
problem is :
no any error ,is OK,but if I use:
<?
phpinfo();
?>
I cannot found --with-mcrypt in the configure command .
and if I use the mcrypt function like mcrypt_ecb() ,it cannot find it .
I donnot know why ,someone can help me ?
thank you very much!