Date: Fri, 23 Jan 2015 10:19:49 +0000 From: bugzilla-noreply@freebsd.org To: perl@FreeBSD.org Subject: [Bug 197008] databases/p5-DBD-mysql SSL option broken and USE_OPENSSL Message-ID: <bug-197008-14331-Uo4vsFTw0a@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-197008-14331@https.bugs.freebsd.org/bugzilla/> References: <bug-197008-14331@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197008 Mathieu Arnold <mat@FreeBSD.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |In Progress --- Comment #2 from Mathieu Arnold <mat@FreeBSD.org> --- 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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-197008-14331-Uo4vsFTw0a>