From owner-freebsd-python@freebsd.org Sun Jul 10 15:19:25 2016 Return-Path: Delivered-To: freebsd-python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19E3AB85757 for ; Sun, 10 Jul 2016 15:19:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0360B1EAC for ; Sun, 10 Jul 2016 15:19:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 028E3B85756; Sun, 10 Jul 2016 15:19:25 +0000 (UTC) Delivered-To: python@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02329B85755 for ; Sun, 10 Jul 2016 15:19:25 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CB6311EAA for ; Sun, 10 Jul 2016 15:19:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u6AFJOOL026334 for ; Sun, 10 Jul 2016 15:19:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 210963] lang/python27: Failed to compile with security/openssl Date: Sun, 10 Jul 2016 15:19:25 +0000 X-Bugzilla-Reason: CC AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: loader@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2016 15:19:25 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210963 --- Comment #3 from Fukang Chen --- Thank you koobs@ for the link. Yes, that's the same problem. I think I know why it works on 10.3, it searches /usr/lib for libssl.so.8 first, but there's only libssl.so.7 there. # readelf -d /usr/local/lib/python2.7/lib-dynload/_ssl.so | head -n 10 Dynamic section at offset 0x13be0 contains 27 entries: Tag Type Name/Value 0x0000000000000001 (NEEDED) Shared library: [libthr.so.3] 0x0000000000000001 (NEEDED) Shared library: [libssl.so.8] 0x0000000000000001 (NEEDED) Shared library: [libcrypto.so.8] 0x0000000000000001 (NEEDED) Shared library: [libpython2.7.so.1] 0x0000000000000001 (NEEDED) Shared library: [libc.so.7] 0x000000000000000f (RPATH) Library rpath: [/usr/lib:/usr/local/lib] 0x000000000000001d (RUNPATH) Library runpath: [/usr/lib:/usr/local/lib] # echo /usr/lib/libssl.so* /usr/lib/libssl.so /usr/lib/libssl.so.7 It's has been upgraded to libssl.so.8 on 11.0-CURRENT=20 # echo /usr/lib/libssl.so* /usr/lib/libssl.so /usr/lib/libssl.so.8 SSLv2 has been disabled in base: https://svnweb.freebsd.org/base?view=3Drevision&revision=3D280306 SSlv2 is still enabled in the port security/openssl: https://svnweb.freebsd.org/ports?view=3Drevision&revision=3D410039 On 11.0-CURRENT /usr/local/lib/python2.7/lib-dynload/_ssl.so=20 can't find SSLv2_method from /usr/lib/libssl.so. --=20 You are receiving this mail because: You are on the CC list for the bug. You are the assignee for the bug.=