diff options
author | June McEnroe <june@causal.agency> | 2020-08-06 16:25:22 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-08-06 16:25:22 -0400 |
commit | f5330d84d04822cfc4546f06ccf1512abe1431aa (patch) | |
tree | 44836730ac5e2344e6fa872a74e4e73a04fc4170 | |
parent | Say "OpenSSL" in additional permission notices (diff) | |
download | pounce-f5330d84d04822cfc4546f06ccf1512abe1431aa.tar.gz pounce-f5330d84d04822cfc4546f06ccf1512abe1431aa.zip |
Use system libcrypto and openssl bin on FreeBSD 1.4
Diffstat (limited to '')
-rwxr-xr-x | configure | 6 |
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' ;; |