Displaying 1 result from an estimated 1 matches for "licrypto".
Did you mean:
libcrypto
2002 Jun 25
1
use libcrypt before libcrypto
these days many unix-based systems contain crypt() with more than
DES support (for instance, MD5 in freebsd/openbsd/netbsd, bcrypt in
openbsd/netbsd). we need to use crypt() in libcrypt, not in licrypto,
as much as possible.
itojun
--- configure.ac.orig Tue Jun 25 10:56:47 2002
+++ configure.ac Tue Jun 25 10:57:25 2002
@@ -697,6 +702,9 @@
)
fi
+# use libcrypt if there is
+AC_CHECK_LIB(crypt, crypt, LIBS="$LIBS -lcrypt")
+
# Search for OpenSSL
saved_CPPFLAGS="$CPPFLAGS"...