|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2000-05-12 10:15 UTC] skripi at igd dot fhg dot de
script: configure command line below: ./configure --with-apxs=/usr/local/apache/bin/apxs --enable-versioning --enable-magic-quotes --enable-track-vars --with-config-file-path=/usr/local/apache/conf/php.ini --with-ldap=/usr/local/ldap --with-xml --with-gd=/usr/local/gd --with-zlib=/usr/local/.zlib-1.1.3/ --with-gdbm=/usr/local/gdbm --with-yp --with-ftp What do I have to do, to convince configure, that the zlib is ok ? PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 22:00:01 2025 UTC |
In configure Lib and Include PATH's are not added properly... I added / change the following lines after 30572 in configure: ------------ ZLIB_LIBDIR=$ZLIB_DIR INCLUDES="$INCLUDES -I$ZLIB_LIBDIR/include" LDFLAGS="$LDFLAGS -L$ZLIB_LIBDIR/lib" -------------- Now configure works, and zlib modules does compile. so with the above this issue is solved. THE NEXT: after make i checked libphp4.so with "ldd libphp4.so" and got the following bad output: libpam.so.1 => /usr/lib/libpam.so.1 libdl.so.1 => /usr/lib/libdl.so.1 libclntsh.so.1.0 => (file not found) libldap.so.1 => (file not found) libresolv.so.2 => /usr/lib/libresolv.so.2 libm.so.1 => /usr/lib/libm.so.1 libnsl.so.1 => /usr/lib/libnsl.so.1 libsocket.so.1 => /usr/lib/libsocket.so.1 liblber.so.1 => (file not found) libc.so.1 => /usr/lib/libc.so.1 libmp.so.2 => /usr/lib/libmp.so.2 So it still can't locate two libraries. The ldap thing i can solve but where does the libclntsh.sw.1.0 come from ?