Enable SSL per default on FreeBSD because libssl is in base so it's always available.
This commit is contained in:
parent
7fe66a47ef
commit
8d814e9b51
1 changed files with 4 additions and 1 deletions
5
configure
vendored
5
configure
vendored
|
@ -76,7 +76,10 @@ check_bin bzip2 || echo 'WARN: no bzip2 binary found'
|
||||||
#
|
#
|
||||||
# SSL
|
# 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
|
enable ssl
|
||||||
else
|
else
|
||||||
die "SSL development support not found"
|
die "SSL development support not found"
|
||||||
|
|
Loading…
Add table
Reference in a new issue