1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-02 01:20:54 +00:00

Follow-up to the initial submission.

PR:		ports/63234
Submitted by:	maintainer
Approved by:	mat (mentor).
This commit is contained in:
Thierry Thomas 2004-04-01 21:37:50 +00:00
parent 0a6fffb515
commit f11cf33459
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=105911

View File

@ -5,7 +5,7 @@
SU_SSL_CFLAGS=""
if test "$ssl" = "true"; then
- AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl")
+ AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl", ,"-lcrypto")
+ AC_CHECK_LIB(ssl,SSL_library_init,SU_SSL_LIB="-lssl -lcrypto", ,-lcrypto)
if test ! "$SU_SSL_LIB"; then
AC_MSG_WARN("Cannot find libssl... ssl code in skyweb will be disabled")
else