Turn off -Wsign-compare for the lexer

Flex doesn't like it.
This commit is contained in:
Evan Miller
2020-08-09 16:23:06 -04:00
parent c93156626c
commit 7690ef376f
3 changed files with 3 additions and 3 deletions

View File

@@ -68,7 +68,7 @@ AM_CONDITIONAL(SQL, test x$sql = xtrue)
AC_SUBST(SQL)
AC_SUBST(LFLAGS)
CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wsign-compare -Werror"
CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Werror"
AS_CASE([$host],
[*mingw*|*cygwin*], [LDFLAGS="$LDFLAGS -no-undefined"], [])
AS_CASE([$host],