|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-12-18 23:17 UTC] jon at jellybob dot co dot uk
Configuring PHP with: ./configure --prefix=/usr --sysconfdir=/etc --with-apxs2 --with-config-file-path=/etc --with-pear=/usr/share/pear --with-openssl --with-zlib --with-bz2 --with-dom --with-dom-xslt --enable-exif --enable-ftp --with-gd --with-gettext --with-iconv --with-imap --with-imap-ssl --with-mcrypt --with-mysql --with-pcntl --with-pgsql --with-pspell --enable-trans-sid The compilation fails when it tries to compile the IMAP support, complaining about: ext/imap/php_imap.lo: In function `zm_startup_imap': /home/users/jon/src/php4/ext/imap/php_imap.c:424: undefined reference to `ssl_onceonlyinit' collect2: ld returned 1 exit status I have installed the version of c-client using apt-get, so I assume I'm using a fairly recent version of c-client. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 19:00:02 2025 UTC |
This is a bodus :) in file "configure" doesn't check wether SSL support Enabled Was This: int main() { ssl_onceonlyinit(); return 0; } Replace With: int main() { #ifdef HAVE_IMAP_SSL ssl_onceonlyinit(); #endif return 0; }