summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-08-06 16:25:22 -0400
committerJune McEnroe <june@causal.agency>2020-08-06 16:25:22 -0400
commitf5330d84d04822cfc4546f06ccf1512abe1431aa (patch)
tree44836730ac5e2344e6fa872a74e4e73a04fc4170
parentSay "OpenSSL" in additional permission notices (diff)
downloadpounce-f5330d84d04822cfc4546f06ccf1512abe1431aa.tar.gz
pounce-f5330d84d04822cfc4546f06ccf1512abe1431aa.zip
Use system libcrypto and openssl bin on FreeBSD 1.4
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index ac95af6..5911471 100755
--- a/configure
+++ b/configure
@@ -32,9 +32,9 @@ done
 
 case "$(uname)" in
 	(FreeBSD)
-		ldlibs -lcrypt
-		config libcrypto libtls
-		defvar OPENSSL_BIN openssl exec_prefix /bin/openssl
+		ldlibs -lcrypt -lcrypto
+		config libtls
+		defstr OPENSSL_BIN /usr/bin/openssl
 		defstr CERTBOT_PATH /usr/local/etc/letsencrypt
 		echo 'INSTALLS = install-rcs install-dirs'
 		;;