diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-20 12:01:05 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-20 12:01:42 +0000 |
commit | b28a0eb9b6307906209816a29bc1170874f2a819 (patch) | |
tree | 13bf8500477dc8d10ecc89a90b7fae6cfe4c432b /configure.ac | |
parent | 50141d0eec7430707e0c44e993cddaf845f0d933 (diff) |
builtin zlib with oss-fuzzing
Change-Id: I58c37a68c8695b68296f0eb652e3075ea1528108
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9b543aec193b..14e4af0c8c44 100644 --- a/configure.ac +++ b/configure.ac @@ -7642,7 +7642,11 @@ if test "$with_system_zlib" = "auto"; then with_system_zlib="$with_system_libs" ;; *) - with_system_zlib=yes + if test "$enable_fuzzers" != "yes"; then + with_system_zlib=yes + else + with_system_zlib=no + fi ;; esac fi |