commit abbf2f8a104fcb5e72226a2edf0ecd1cd5d29b93
parent b96378117a5488df9bc4e05611e22da25dd373fd
Author: Pawel Pekala <c0rn@o2.pl>
Date: Tue, 11 Oct 2016 22:47:51 +0200
Don't check for encrypt() on FreeBSD, it's not required to build.
Recently on 12-CURRENT this function was removed completly making
configure script fail.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -500,6 +500,8 @@ case $host_os in
*dragonfly*)
AC_SEARCH_LIBS(encrypt, cipher, [], AC_MSG_ERROR(['encrypt'-function not found.]))
;;
+ *freebsd*)
+ ;; # not used
*)
AC_SEARCH_LIBS(encrypt, crypt, [], AC_MSG_ERROR(['encrypt'-function not found.]))
;;