Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 05 Aug 2016 12:01:38 +0000
From:      bugzilla-noreply@freebsd.org
To:        python@FreeBSD.org
Subject:   [Bug 210820] lang/python27: _ssl.so fails to build (Undefined symbol "SSLv2_method")
Message-ID:  <bug-210820-21822-rDwagSHSda@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-210820-21822@https.bugs.freebsd.org/bugzilla/>
References:  <bug-210820-21822@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=3D210820

--- Comment #14 from Mathieu Arnold <mat@FreeBSD.org> ---
Looking at ncurses.mk, its use of rpath is really wrong, there are three ca=
ses,
and and it should never add /usr/lib to rpath:

1) USES=3Dncurses or USES=3Dncurses:base and devel/ncurses is not present:
use base, no need to add rpath as there is only one libncurses.so present, =
in
/usr/lib
2) USES=3Dncurses and devel/ncurses is present or USES=3Dncurses:port:
use ports, and add rpath to LOCALBASE/lib so that the right one is picked
3) USES=3Dncurses:base and devel/ncurses is present
fail (it would warrant using -rpath /usr/lib, but it error's out during the
sanity stage)

I'd say ncurses.mk needs to be patched to not add -rpath in case 1

--=20
You are receiving this mail because:
You are on the CC list for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-210820-21822-rDwagSHSda>