From 2a4ac62c52603ca8f7790836a359530a4b9d4e16 Mon Sep 17 00:00:00 2001 From: simon987 Date: Tue, 24 Mar 2020 10:06:12 -0400 Subject: [PATCH] Compile with C99 (#2) --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index d709949..fee8f45 100755 --- a/build.sh +++ b/build.sh @@ -13,6 +13,6 @@ echo $CONFIG_ARGS ( cd ${NGINX_PATH} || exit bash -c "./configure ${CONFIG_ARGS}" - make modules -j "$(nproc)" + CFLAGS=-std=c99 make modules -j "$(nproc)" )