Enable SSL per default on FreeBSD because libssl is in base so it's always available.

This commit is contained in:
Bernhard Froehlich 2013-05-04 13:57:34 +02:00 committed by Adam Sutton
parent cae63f8a94
commit 8ee3e09529

5
configure vendored
View file

@ -74,7 +74,10 @@ check_bin bzip2 || echo 'WARN: no bzip2 binary found'
#
# SSL
#
if check_pkg openssl || check_pkg libssl; then
if [ ${PLATFORM} = "freebsd" ]; then
# FreeBSD has libssl in base
enable ssl
elif check_pkg openssl || check_pkg libssl; then
enable ssl
else
die "SSL development support not found"