From 1ef09e6313e6a7656899f1ce5a98bddb16498934 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Sun, 11 Jun 2023 11:33:38 +0000 Subject: [PATCH] add -Wpointer-sign to the mix It's not present in -W -Wall -Wextra on OpenBSD but it is enabled on other systems. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index f7f4268..9ae50d4 100755 --- a/configure +++ b/configure @@ -42,7 +42,7 @@ if [ -z "${CFLAGS}" ]; then fi CFLAGS="${CFLAGS} -W -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes" -CFLAGS="${CFLAGS} -Wwrite-strings -Wno-unused-parameter" +CFLAGS="${CFLAGS} -Wwrite-strings -Wpointer-sign -Wno-unused-parameter" CFLAGS="${CFLAGS} -Wno-missing-field-initializers" if [ -z "${LDFLAGS}" ]; then