Date: 10/20/98
- Next message: and <email protected>: "[PHP-DEV] Bug #859: Passive FTP (fopen wrapper) file transfer may fail with NcFTPd server"
- Previous message: steinm: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
ID: 853
Updated by: jimjag
Reported By: cm <email protected>
Status: Analyzed
Bug Type: Compile Failure
Assigned To: jimjag
Comments:
Yep. Apache does not use AIX's DSO, but PHP doesn't know
that, so it trys to include /usr/include/dlfcn.h which
conflicts with Apache.
Try this patch for php.h
#if HAVE_LIBDL
# if MSVC5
# include <windows.h>
# define dlclose FreeLibrary
# define dlopen(a,b) LoadLibrary(a)
# define dlsym GetProcAddress
# else
! #if HAVE_DLFCN_H && !(defined(_AIX)) && APACHE
# include <dlfcn.h>
#endif
# endif
#endif
and let me know.
Full Bug description available at: http://ca.php.net/bugs.php3?id=853
-- PHP Development Mailing List http://www.php.net/ To unsubscribe send an empty message to php-dev-unsubscribe <email protected> For help: php-dev-help <email protected>
- Next message: and <email protected>: "[PHP-DEV] Bug #859: Passive FTP (fopen wrapper) file transfer may fail with NcFTPd server"
- Previous message: steinm: "[PHP-DEV] CVS update: php3"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

