|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-06 13:49 UTC] derick@php.net
[2003-02-06 14:38 UTC] Nicolas dot Ross at cybercat dot ca
[2003-02-06 14:40 UTC] derick@php.net
[2003-02-07 11:24 UTC] Nicolas dot Ross at cybercat dot ca
[2003-02-20 18:35 UTC] spookey at spookey dot org
[2003-02-22 07:06 UTC] spookey at spookey dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 14:00:02 2025 UTC |
On our Mac OS X (Darwin) server, I used to compile php with some twists and tricks, but 4.2.3 configured and compiled correctly width mcrypt enabled. Now I can't configure 4.3.0 with libmcrypt enabled. Configure line : ./configure --with-apxs=/usr/local/apache/bin/apxs \ --with-mysql \ --with-fbsql \ --with-xml \ --enable-ftp \ --with-zlib \ --with-zlib-dir=../zlib \ --with-png \ --with-png-dir=../libpng-1.2.0 \ --with-jpeg \ --with-jpeg-dir=../jpeg-6b \ --with-gd \ --with-mcrypt \ --enable-track-vars \ --enable-trans-id I get : checking for mcrypt support... yes checking for mcrypt_module_open in -lmcrypt... no checking for init_mcrypt in -lmcrypt... no configure: error: Sorry, I was not able to diagnose which libmcrypt version you have installed. Here's the tail of config.log char init_mcrypt(); int main() { init_mcrypt() ; return 0; } This configure line works perfectly without the mcrypt part, and results in a working php installation. libmcrypt 2.5.5 is install in /usr/local and other php version (4.2.3) configure and compile againts it successfully. I tried every combinaison of --with-mcrypt=../libmcrypt-2.5.5 --with-mcrypt=/usr/local and so on. So any hints ?