From: Bernhard Froehlich Date: Sat, 4 May 2013 11:57:34 +0000 (+0200) Subject: Enable SSL per default on FreeBSD because libssl is in base so it's always available. X-Git-Tag: v3.9~46^2~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ee3e09529c1b72f5b07a91c69a2ebe7bca187d9;p=thirdparty%2Ftvheadend.git Enable SSL per default on FreeBSD because libssl is in base so it's always available. --- diff --git a/configure b/configure index fcec9de43..6e4577fb2 100755 --- a/configure +++ b/configure @@ -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"