|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2020-01-17 10:27 UTC] nikic@php.net
[2020-01-18 03:54 UTC] php-bug-2020 at ryandesign dot com
[2020-01-20 08:59 UTC] nikic@php.net
[2020-01-20 08:59 UTC] nikic@php.net
-Status: Open
+Status: Closed
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Oct 30 13:00:01 2025 UTC |
Description: ------------ Hi, I'm the maintainer of PHP in MacPorts, finally working on getting PHP 7.4 into our collection. We phpize each bundled module to build it separately from the PHP core. The IMAP module fails to configure: configure: error: OpenSSL libraries not found. Check the path given to --with-openssl-dir and output in config.log) This did not happen with PHP 7.3 or earlier. We are supplying these configure flags: --with-imap=${prefix} \ --with-imap-ssl=${prefix} \ --with-kerberos=${prefix} The --with-openssl-dir flag suggested by the error message is not supported by this configure script, and adding it does not change the error. Note also the closing parenthesis in the error message without a matching opening parenthesis. The workaround appears to be to set PHP_OPENSSL=yes in the environment, but we shouldn't have to do that. This workaround was suggested here: https://github.com/docker-library/php/issues/891