diff options
author | Stephen Gallagher <sgallagh@redhat.com> | 2009-07-13 09:12:33 -0400 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2009-07-13 12:13:55 -0400 |
commit | 7f5e857a11f932c247b5a96d0d86768226ba2e96 (patch) | |
tree | 979dd585dbcc4d4405cf64b915ee944268d59712 /sss_client | |
parent | c26fd1ebd626a01f9c56796c64f6824525d77085 (diff) | |
download | sssd-7f5e857a11f932c247b5a96d0d86768226ba2e96.tar.gz sssd-7f5e857a11f932c247b5a96d0d86768226ba2e96.tar.bz2 sssd-7f5e857a11f932c247b5a96d0d86768226ba2e96.zip |
Build all SSSD components with warnings enabled
Previously, only the SSSD server components were being built with
compile-time warnings enabled. This patch will ensure that all
components in common and sss_client are also built the same way.
Diffstat (limited to 'sss_client')
-rw-r--r-- | sss_client/Makefile.am | 5 | ||||
-rw-r--r-- | sss_client/configure.ac | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/sss_client/Makefile.am b/sss_client/Makefile.am index 346e6b1d..4552720e 100644 --- a/sss_client/Makefile.am +++ b/sss_client/Makefile.am @@ -11,6 +11,11 @@ if WANT_AUX_INFO AM_CFLAGS += -aux-info $@.X endif +if HAVE_GCC + AM_CFLAGS += -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith \ + -Wcast-qual -Wcast-align -Wwrite-strings +endif + nsslibdir = @nsslibdir@ pamlibdir = $(nsslibdir)/security diff --git a/sss_client/configure.ac b/sss_client/configure.ac index be1b4ccb..97fc83de 100644 --- a/sss_client/configure.ac +++ b/sss_client/configure.ac @@ -11,6 +11,8 @@ AC_CONFIG_MACRO_DIR([m4]) AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT_VERSION([0.17]) +AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + m4_pattern_allow([AM_SILENT_RULES]) AM_SILENT_RULES |