diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2023-11-10 12:32:51 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2023-11-10 12:32:51 -0800 |
commit | 8245857f9f07043039affd7b92a740e002b1b81b (patch) | |
tree | ab98a26e534a19f714a97d041869c4834594073b | |
parent | c223fca7a19190d8f662f3576947478ba4d2da57 (diff) |
build: restore -Werror to CFLAGS
f89689b unintentionally removed this for some reason. Just
noticed a build with warnings wasn't failing...
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f400a44..0a7ae5d 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ PKG_CHECK_MODULES(SDL, sdl2, AM_CONDITIONAL(ENABLE_ROTOTILLER, [test "x$build_rototiller" = xtrue]) LIBS="$DRM_LIBS $SDL_LIBS $LIBS" -CFLAGS="$DRM_CFLAGS $SDL_CFLAGS $CFLAGS -D_GNU_SOURCE -D_POSIX -Wall" +CFLAGS="$DRM_CFLAGS $SDL_CFLAGS $CFLAGS -D_GNU_SOURCE -D_POSIX -Wall -Werror" AX_PTHREAD LIBS="$PTHREAD_LIBS $LIBS" |