From 0db7736b95317549bb79e3bb77e699b01d8e8e3a Mon Sep 17 00:00:00 2001 From: obgm Date: Sun, 11 Nov 2018 16:08:08 +0100 Subject: [PATCH] [libcoap] build.sh: disable DTLS (#1942) OSS fuzzing currently is done without DTLS support. As of 4.2.0-rc2, libcoap's configuration builds against OpenSSL by default and thus `--disable-dtls` must be passed to the configuration script. Fixes issue 11309 --- projects/libcoap/build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/libcoap/build.sh b/projects/libcoap/build.sh index 1c9887334..1871b467f 100755 --- a/projects/libcoap/build.sh +++ b/projects/libcoap/build.sh @@ -16,6 +16,7 @@ ################################################################################ ./autogen.sh && ./configure --disable-doxygen --disable-manpages \ + --disable-dtls \ && make -j$(nproc) # build all fuzzer targets