aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMax Dymond <cmeister2@gmail.com>2019-07-18 14:49:07 +0100
committerMax Dymond <cmeister2@gmail.com>2019-07-19 09:52:37 +0100
commit24cc9dd0789d368861d750e0ebdda8747a0597d0 (patch)
treedf016ba189735631e8901292f60d7d8a556892e8 /configure.ac
parent100e5549b6e27bc48d6133be0941ea6bfd4b75ac (diff)
downloadjansson-24cc9dd0789d368861d750e0ebdda8747a0597d0.zip
jansson-24cc9dd0789d368861d750e0ebdda8747a0597d0.tar.gz
jansson-24cc9dd0789d368861d750e0ebdda8747a0597d0.tar.bz2
Move ossfuzz directory and use Makefile.am
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index cf9ac33..1e6500b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -9,6 +9,7 @@ AC_CONFIG_HEADERS([jansson_private_config.h])
# Checks for programs.
AC_PROG_CC
+AC_PROG_CXX
AC_PROG_LIBTOOL
AM_CONDITIONAL([GCC], [test x$GCC = xyes])
@@ -136,6 +137,19 @@ fi
AS_IF([test "x$with_Bsymbolic" = "xyes"], [JSON_BSYMBOLIC_LDFLAGS=-Wl[,]-Bsymbolic-functions])
AC_SUBST(JSON_BSYMBOLIC_LDFLAGS)
+
+AC_ARG_ENABLE([ossfuzzers],
+ [AS_HELP_STRING([--enable-ossfuzzers],
+ [Whether to generate the fuzzers for OSS-Fuzz])],
+ [have_ossfuzzers=yes], [have_ossfuzzers=no])
+AM_CONDITIONAL([USE_OSSFUZZERS], [test "x$have_ossfuzzers" = "xyes"])
+
+
+AC_SUBST([LIB_FUZZING_ENGINE])
+AM_CONDITIONAL([USE_OSSFUZZ_FLAG], [test "x$LIB_FUZZING_ENGINE" = "x-fsanitize=fuzzer"])
+AM_CONDITIONAL([USE_OSSFUZZ_STATIC], [test -f "x$LIB_FUZZING_ENGINE"])
+
+
if test x$GCC = xyes; then
AC_MSG_CHECKING(for -Wno-format-truncation)
wnoformat_truncation="-Wno-format-truncation"
@@ -156,6 +170,7 @@ AC_CONFIG_FILES([
src/jansson_config.h
test/Makefile
test/bin/Makefile
+ test/ossfuzz/Makefile
test/suites/Makefile
test/suites/api/Makefile
])