diff options
author | June McEnroe <june@causal.agency> | 2020-07-30 13:37:54 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-30 13:37:54 -0400 |
commit | 09e6b147943ffa6d08039aa56d76aefddac03e27 (patch) | |
tree | 6c6e8a44bb6114fedff01558d7afc5b3bf76882d | |
parent | Define explicit_bzero using memset_s on macOS (diff) | |
download | catgirl-09e6b147943ffa6d08039aa56d76aefddac03e27.tar.gz catgirl-09e6b147943ffa6d08039aa56d76aefddac03e27.zip |
Remove dependency on libcrypto for compat
-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 |