[Bug 205960] lang/python35: (and lang/python34) building with LibreSSL fails: lib-dynload/_ssl.so: No such file or directory
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Tue Jul 5 02:33:12 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205960
--- Comment #14 from Adam Weinberger <adamw at FreeBSD.org> ---
I still feel like comment #4 is the underlying problem here. configure is
detecting RAND_egd when libressl is installed, which means it's testing it from
/usr/lib/libcrypto.so, not /usr/local/lib/libcrypto.so.
Could the problem be that at around line ~9500 in configure, it's testing:
LIBS="-lcrypto $LIBS"
Does changing that to
LIBS="%%LDFLAGS%% -lcrypto $LIBS"
or
LIBS="$LIBS -lcrypto"
or
LIBS="$LIBS %%LDFLAGS%% -lcrypto"
help it detect it correctly in the first place?
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the freebsd-python
mailing list