add -Wpointer-sign to the mix

It's not present in -W -Wall -Wextra on OpenBSD but it is enabled
on other systems.
This commit is contained in:
Omar Polo 2023-06-11 11:33:38 +00:00
parent b8d68fc8e4
commit 1ef09e6313
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -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