|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-18 10:04 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Dec 03 09:00:01 2025 UTC |
Description: ------------ I built my php rpm with these options: %configure \ --cache-file=../config.cache \ --with-config-file-path=%{_sysconfdir}/miniphp \ --enable-force-cgi-redirect \ --disable-debug \ --disable-rpath \ --enable-inline-optimization \ --with-exec-dir=%{_bindir} \ --disable-all \ --with-pcre-regex \ --enable-posix \ --enable-memory-limit \ --enable-mbstring \ --with-imap=shared \ --with-imap-ssl \ --with-kerberos=/usr/kerberos I got no errors while building, but I couldn't load the imap module: # php -r 'dl("imap.so");' Warning: dl(): Unable to load dynamic library '/usr/lib/php4/imap.so' - ??B??B/php4/imap.so: shared object not open in Command line code on line 1 When I add "--with-openssl" to configure, everything works. Expected result: ---------------- I expect configure to output an error instead of building a broken module. A notice in "configure --help" would be helpful too.