Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:107624 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 20484 invoked from network); 22 Oct 2019 08:46:38 -0000 Received: from unknown (HELO php-smtp3.php.net) (208.43.231.12) by pb1.pair.com with SMTP; 22 Oct 2019 08:46:38 -0000 Received: from php-smtp3.php.net (localhost [127.0.0.1]) by php-smtp3.php.net (Postfix) with ESMTP id 569A62C9127 for ; Mon, 21 Oct 2019 23:32:28 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp3.php.net X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_NONE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS12581 212.79.160.0/19 X-Spam-Virus: No Received: from mailserver.kippdata.de (mailserver.kippdata.de [212.79.170.253]) by php-smtp3.php.net (Postfix) with ESMTP for ; Mon, 21 Oct 2019 23:32:27 -0700 (PDT) Received: from [10.0.110.6] ([192.168.179.57]) by mailserver.kippdata.de (8.13.5/8.13.5) with ESMTP id x9M6WMUw022176; Tue, 22 Oct 2019 08:32:22 +0200 (CEST) To: "Helmut K. C. Tessarek" Cc: PHP internals References: <2e358c47-f07d-2bd0-dcbf-8ee1282f1ea1@evermeet.cx> <79bdc208-876f-ea0c-b529-010fe3d129bb@kippdata.de> <6de046b4-905c-e338-d640-14973a448910@evermeet.cx> <6d37qe5jhtm390dqs45hmgpkdvlm3lgj3i@4ax.com> <8f374f74-9896-2555-ffa0-d3559edb86ae@kippdata.de> <0cc918b7-5370-ece2-df43-898fb13a0c1b@kippdata.de> Message-ID: <07a628d5-4b41-2a17-ba0b-ad1677e4f388@kippdata.de> Date: Tue, 22 Oct 2019 08:32:17 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: de-DE Content-Transfer-Encoding: 7bit X-Envelope-From: Subject: Re: [PHP-DEV] configure bug with static openssl 1.1.1? - bugid 77288 From: rainer.jung@kippdata.de (Rainer Jung) Am 22.10.2019 um 05:28 schrieb Helmut K. C. Tessarek: > On 2019-10-14 07:01, Rainer Jung wrote: >> Could you do yet another test? First manipulate the configure script with the >> following two commands: >> >> cp -p configure configure.saved >> >> # the following is one long line >> >> sed -e 's#PKG_CONFIG --libs openssl#PKG_CONFIG --libs --static openssl#g' >> configure.saved > configure >> >> >> and then redo the whole build including running configure. If that works fine, >> it might be possible to add a configure flag for static OpenSSL linking. > > Sorry that it took so long. > > Nope, this didn't help either. here's the log: > https://evermeet.cx/pub/logs/config.php72.1.log I am sorry, error on my side. I forgot I had already adjusted configure myself, so the above sed wouldn't change anything in the original file (you can also diff the original and the new file to see the outcome of the sed command yourself). If you are willing for another round: # The next line only if configure.saved # no longer exists from the previous try cp -p configure configure.saved # The sed command here is three lines, # the first two of them continued by a # backslash at the end of line sed -e 's/\(LIBS=.*\)-lssl \(.*\)/\1 -lssl -lcrypto \2/' \ -e 's/\(LIBS=.*-lssl *-lcrypto\)\(.*\)/\1 `$PKG_CONFIG --libs --static openssl` \2/' \ configure.saved > configure If it doesn't work, then please again give us the config.log plus the "diff configure.saved configure". Regards, Rainer