From owner-freebsd-perl@FreeBSD.ORG Fri Jan 23 10:19:49 2015 Return-Path: Delivered-To: perl@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CB054422 for ; Fri, 23 Jan 2015 10:19:49 +0000 (UTC) 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 97D8DD13 for ; Fri, 23 Jan 2015 10:19:49 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t0NAJn1M082448 for ; Fri, 23 Jan 2015 10:19:49 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197008] databases/p5-DBD-mysql SSL option broken and USE_OPENSSL Date: Fri, 23 Jan 2015 10:19:49 +0000 X-Bugzilla-Reason: 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: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: mat@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: perl@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jan 2015 10:19:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197008 Mathieu Arnold changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress --- Comment #2 from Mathieu Arnold --- Hum, ldd will not get you any relevant information, as it resolves dependencies and tell you all that the .so will need. # readelf -d /usr/local/lib/perl5/site_perl/mach/5.18/auto/DBD/mysql/mysql.so|grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libperl.so.5.18] 0x0000000000000001 (NEEDED) Shared library: [libmysqlclient.so.18] 0x0000000000000001 (NEEDED) Shared library: [libz.so.6] 0x0000000000000001 (NEEDED) Shared library: [libm.so.5] 0x0000000000000001 (NEEDED) Shared library: [libc.so.7] So, it does *not* need ssl/crypto. Though, on a clean system, ldd does not resolve any of libcrypto or libssl: # ldd /usr/local/lib/perl5/site_perl/mach/5.18/auto/DBD/mysql/mysql.so /usr/local/lib/perl5/site_perl/mach/5.18/auto/DBD/mysql/mysql.so: libperl.so.5.18 => /usr/local/lib/perl5/5.18/mach/CORE/libperl.so.5.18 (0x80161c000) libmysqlclient.so.18 => /usr/local/lib/mysql/libmysqlclient.so.18 (0x80199e000) libz.so.6 => /lib/libz.so.6 (0x801f0b000) libm.so.5 => /lib/libm.so.5 (0x802121000) libc.so.7 => /lib/libc.so.7 (0x80081f000) libcrypt.so.5 => /lib/libcrypt.so.5 (0x802349000) libutil.so.9 => /lib/libutil.so.9 (0x802569000) libc++.so.1 => /usr/lib/libc++.so.1 (0x80277b000) libcxxrt.so.1 => /lib/libcxxrt.so.1 (0x802a3b000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x802c57000) libthr.so.3 => /lib/libthr.so.3 (0x802e65000) did you by chance disable the SSL option in mysql-client ? -- You are receiving this mail because: You are the assignee for the bug.