summaryrefslogtreecommitdiffstats
path: root/server/external/crypto.m4
diff options
context:
space:
mode:
Diffstat (limited to 'server/external/crypto.m4')
-rw-r--r--server/external/crypto.m413
1 files changed, 0 insertions, 13 deletions
diff --git a/server/external/crypto.m4 b/server/external/crypto.m4
deleted file mode 100644
index d1bcf40ac..000000000
--- a/server/external/crypto.m4
+++ /dev/null
@@ -1,13 +0,0 @@
-AC_ARG_ENABLE(crypto,
- [ --enable-crypto Use OpenSSL crypto instead of NSS],
- [CRYPTO="$enableval"],
- [CRYPTO="no"]
-)
-
-if test x$CRYPTO != xyes; then
- PKG_CHECK_MODULES([NSS],[nss],[have_nss=1],[have_nss=])
-else
- PKG_CHECK_MODULES([CRYPTO],[libcrypto],[have_crypto=1],[have_crypto=])
-fi
-AM_CONDITIONAL([HAVE_NSS], [test x$have_nss != x])
-AM_CONDITIONAL([HAVE_CRYPTO], [test x$have_crypto != x])