diff options
author | C. McEnroe | 2020-07-30 13:37:54 -0400 |
---|---|---|
committer | C. McEnroe | 2020-07-30 13:37:54 -0400 |
commit | 09e6b147943ffa6d08039aa56d76aefddac03e27 (patch) | |
tree | 6c6e8a44bb6114fedff01558d7afc5b3bf76882d /configure | |
parent | a142ebcf43b7032ad29a383cba9407e7540b2d4a (diff) |
Remove dependency on libcrypto for compat
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure index 8282dc7..d59e7ba 100755 --- a/configure +++ b/configure @@ -42,17 +42,17 @@ case "$(uname)" in ;; (Linux) cflags -Wno-pedantic -D_GNU_SOURCE - config libcrypto libtls ncursesw + config libtls ncursesw defvar OPENSSL_BIN openssl exec_prefix /bin/openssl ;; (Darwin) cflags -D__STDC_WANT_LIB_EXT1__=1 cflags "-D'explicit_bzero(b,l)=memset_s((b),(l),0,(l))'" - config libcrypto libtls ncursesw + config libtls ncursesw defvar OPENSSL_BIN openssl exec_prefix /bin/openssl ;; (*) - config libcrypto libtls ncursesw + config libtls ncursesw defvar OPENSSL_BIN openssl exec_prefix /bin/openssl ;; esac |