From 3fc07edb24efc7f58bb338bd175ea66a50d367b2 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Fri, 3 Feb 2023 11:40:50 +0000 Subject: [PATCH] hiredis: only build static libraries (#9573) The dynamically shared libraries are not needed. This makes the build Fuzz Introspector compatible. --- projects/hiredis/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hiredis/build.sh b/projects/hiredis/build.sh index 72888bedc..66c479da5 100755 --- a/projects/hiredis/build.sh +++ b/projects/hiredis/build.sh @@ -15,7 +15,7 @@ # ################################################################################ -make USE_SSL=0 +make USE_SSL=0 static mv fuzzing/format_command_fuzzer.c . $CC $CFLAGS -std=c99 -pedantic -c -O3 -fPIC \