From 970d88bdb8bf79ea59affd05fa946de14c6e928c Mon Sep 17 00:00:00 2001 From: Nick Parker Date: Fri, 21 Jun 2013 10:05:16 -0500 Subject: [PATCH] Remove SQLCIPHER_CRYPTO_OPENSSL flag for commoncrypto --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 41cc8c7..ead7202 100755 --- a/configure +++ b/configure @@ -10666,7 +10666,7 @@ fi else if test "$crypto_lib" = "commoncrypto"; then CFLAGS+=" -DSQLCIPHER_CRYPTO_CC" - BUILD_CFLAGS+=" -DSQLCIPHER_CRYPTO_OPENSSL -DSQLCIPHER_CRYPTO_CC" + BUILD_CFLAGS+=" -DSQLCIPHER_CRYPTO_CC" { $as_echo "$as_me:${as_lineno-$LINENO}: result: commoncrypto" >&5 $as_echo "commoncrypto" >&6; } else diff --git a/configure.ac b/configure.ac index de3d84c..d4170a9 100644 --- a/configure.ac +++ b/configure.ac @@ -266,7 +266,7 @@ if test "$crypto_lib" = "libtomcrypt"; then else if test "$crypto_lib" = "commoncrypto"; then CFLAGS+=" -DSQLCIPHER_CRYPTO_CC" - BUILD_CFLAGS+=" -DSQLCIPHER_CRYPTO_OPENSSL -DSQLCIPHER_CRYPTO_CC" + BUILD_CFLAGS+=" -DSQLCIPHER_CRYPTO_CC" AC_MSG_RESULT([commoncrypto]) else CFLAGS+=" -DSQLCIPHER_CRYPTO_OPENSSL"