diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-12-20 11:51:19 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-12-20 11:58:32 +0000 |
commit | 50141d0eec7430707e0c44e993cddaf845f0d933 (patch) | |
tree | 7d85bb3b85d89538ae3cb46e2ecbe27292321208 /configure.ac | |
parent | d09acc4db55071c1de95d666b4edc5a63bc1f7f3 (diff) |
builtin-libxml and libxslt with oss-fuzzing
Change-Id: Icbecfd287174e5d7be9bbf7dc235d1966a6858ff
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 1af7eb17b09a..9b543aec193b 100644 --- a/configure.ac +++ b/configure.ac @@ -7953,7 +7953,11 @@ if test "$with_system_libxml" = "auto"; then with_system_libxml="$with_system_libs" ;; *) - with_system_libxml=yes + if test "$enable_fuzzers" != "yes"; then + with_system_libxml=yes + else + with_system_libxml=no + fi ;; esac fi |