Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:97941 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98156 invoked from network); 23 Jan 2017 22:37:43 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 23 Jan 2017 22:37:43 -0000 Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain lerdorf.com designates 74.125.82.179 as permitted sender) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 74.125.82.179 mail-ot0-f179.google.com Received: from [74.125.82.179] ([74.125.82.179:33872] helo=mail-ot0-f179.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id BD/25-00729-6B586885 for ; Mon, 23 Jan 2017 17:37:42 -0500 Received: by mail-ot0-f179.google.com with SMTP id f9so114058099otd.1 for ; Mon, 23 Jan 2017 14:37:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lerdorf-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=DblzCcUMTFv1wFrG4Zige2Hffd4jGupbn5MyAOjTF94=; b=CV1dXbVOjYho2IjW4zoS7fKPrWPMFUEPxnHxRJov9sgSST6tHtiTx4nvJS2QBFXslK 8dUHuXHBQEL8WCTtjO7Rn1r5ta+3jaIQ4H0NrYkW67QqXUMAEcgaxqb9/o9YHYo3B1vA UZ1paC5j5JQQ0uHih8WXdjeox6ec0u7GGW0mijHYlUXY5gDOJ8e2EaPVdG3YT2as0Enx VqBpvgihwGJV9WzCltMrF4CAYaJjTL4OUuDbWK6KauJav2TuTw1uMg8ml31oG61aiIEl VRnYenf1Ru4oLXP9M7ZljYVNCGRANiAbwNTohW2oIOG0nGbp4BaFdV92b9yFm7rw+obP /ClQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=DblzCcUMTFv1wFrG4Zige2Hffd4jGupbn5MyAOjTF94=; b=XxhG0veZQL1DzxRfjwlm1N3gbTQtMR2rZlRQxCIH9w39wcM74XRhi1aroxvtWJreA9 YyGVPul0qoHIRtoAbzKYodhR1wAnfztJe31ReJPi+cMhJ92mLdohj3Tp64TqL3KVcBY2 IiPJcypV+lB092vSW0Pc8lLO2mxuFtmPwtWvvTb0sdb/qmpbF0GjH+TdCNtuIiRgUb3P uYFgjmxQ1fmq9G1SUxDCDhKoPs1ONovUUljQj6YxgmjPxO1Rwfg1XfSfZp+4nTk3BOH+ wicunTP1LHriJPKb+gG7YYccjGH1icigjvs+6qEkkGWjcd8fOTtxPqtSZ859x6W49AH1 Ophg== X-Gm-Message-State: AIkVDXJOsqz1RlkN+9wHGgQvXz5kF0pY6lz6C9T4rbfL4dWvScakEOihhunU53yUGIu0WubpUUN4kFSk4jhUvA== X-Received: by 10.157.4.141 with SMTP id 13mr16717995otm.243.1485211059379; Mon, 23 Jan 2017 14:37:39 -0800 (PST) MIME-Version: 1.0 Received: by 10.74.121.84 with HTTP; Mon, 23 Jan 2017 14:36:58 -0800 (PST) In-Reply-To: <422ee0db-34f3-e8cd-29b3-e4968af57417@librelamp.com> References: <422ee0db-34f3-e8cd-29b3-e4968af57417@librelamp.com> Date: Mon, 23 Jan 2017 14:36:58 -0800 Message-ID: To: Alice Wonder Cc: PHP internals Content-Type: multipart/alternative; boundary=94eb2c0956809c78b80546caa537 Subject: Re: [PHP-DEV] Re: PHP 7.0 and openssl 1.1 From: rasmus@lerdorf.com (Rasmus Lerdorf) --94eb2c0956809c78b80546caa537 Content-Type: text/plain; charset=UTF-8 On Mon, Jan 23, 2017 at 12:52 PM, Alice Wonder wrote: > Actually I found that wasn't the case. To build php against an alternat > openssl API - I did have to rebuild net-snmp but curl, for example, at > least on CentOS uses NSS for it's TLS and so didn't need to be rebuild to > build PHP against a different OpenSSL API. > > Building in mock, the only php dependency that had an OpenSSL API > dependency was net-snmp. And if I kept the same API for net-snmp, I didn't > have to replace the system net-snmp for php to work properly - only the > net-snmp used in mock. > > Well, you got lucky with your libcurl then. On Debian the default is openssl. You can optionally choose either gnutls or nss instead if you like. I am pretty sure Centos also has a libcurl-openssl variant that people might be using: libcurl3 - easy-to-use client-side URL transfer library (OpenSSL flavour) libcurl3-gnutls - easy-to-use client-side URL transfer library (GnuTLS flavour) libcurl3-nss - easy-to-use client-side URL transfer library (NSS flavour) libcurl having those alternatives is probably the easiest dependency. libpq (PostgreSQL) and libc-client do not, as far as I know. -Rasmus --94eb2c0956809c78b80546caa537--