diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 17:09:28 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 17:09:28 -0700 |
commit | 54faa24df5f5c6c260d4d55075736b04d494cdc6 (patch) | |
tree | 4da3566f508d753844184eb11eea7a635dc56290 /configure.ac | |
parent | 715c71340d771feb5dc3526af339ed319aeea7ac (diff) |
build: add -Wall to configure.ac for CFLAGS
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 201167a..80a11be 100644 --- a/configure.ac +++ b/configure.ac @@ -1,9 +1,11 @@ AC_INIT([vwm], [3.0], [vcaputo@gnugeneration.com]) AM_INIT_AUTOMAKE([-Wall -Werror foreign]) +AC_CONFIG_MACRO_DIRS([m4]) AC_PROG_CC AM_PROG_AR AC_PROG_RANLIB AM_SILENT_RULES([yes]) +AX_APPEND_COMPILE_FLAGS([-Wall]) PKG_CHECK_MODULES(VWM, x11 xext xinerama xrandr xcomposite xfixes xdamage xrender) PKG_CHECK_MODULES(VMON, x11 xext xfixes xrender) |