summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2016-11-11 04:36:44 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-11-11 04:36:44 -0600
commit9d1703cb5d213c5928f6740714983def2fd849d7 (patch)
tree7736c6da9db06f2bd3c4a096152597004a0f803c
parent3d5c61d2e04bac100f895f07160270deb4a55c1c (diff)
parentedea41126bca8c89e856ff215c13b0fa9ea98f72 (diff)
Merge "build: Fix default values for some SANITIZER options"
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index af102b4ab..5d21730e9 100755
--- a/configure
+++ b/configure
@@ -18673,7 +18673,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
$as_echo "yes" >&6; }
AST_ADDRESS_SANITIZER=1
else
- AST_ADDRESS_SANITIZER=
+ AST_ADDRESS_SANITIZER=0
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
@@ -18705,7 +18705,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
$as_echo "yes" >&6; }
AST_THREAD_SANITIZER=1
else
- AST_THREAD_SANITIZER=
+ AST_THREAD_SANITIZER=0
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
diff --git a/configure.ac b/configure.ac
index 0f2148b06..ea55df416 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1115,7 +1115,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [int x = 1;])],
AC_MSG_RESULT(yes)
[AST_ADDRESS_SANITIZER=1],
- [AST_ADDRESS_SANITIZER=]
+ [AST_ADDRESS_SANITIZER=0]
AC_MSG_RESULT(no)
)
CFLAGS="${saved_sanitize_CFLAGS}"
@@ -1131,7 +1131,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [int x = 1;])],
AC_MSG_RESULT(yes)
[AST_THREAD_SANITIZER=1],
- [AST_THREAD_SANITIZER=]
+ [AST_THREAD_SANITIZER=0]
AC_MSG_RESULT(no)
)
CFLAGS="${saved_sanitize_CFLAGS}"