https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205960

--- Comment #14 from Adam Weinberger <ad...@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.
_______________________________________________
freebsd-python@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-python
To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"

Reply via email to