|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-05-11 12:04 UTC] derick@php.net
[2002-06-12 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 23:00:01 2025 UTC |
I had some problems trying to link mcrypt module with PhP 4.1.1. After sometimes, I figured that the PhP configure command incorrectly adds mcrypt library to the LIBS //Original code #LIBS="-lmcrypt # -L$MCRYPT_DIR/lib # $LIBS" // modify like this: LIBS=$LIBS" -lmcrypt" LIBS=" -L$MCRYPT_DIR/lib $LIBS" Hope this helps, Leon