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 /common | |
parent | c26fd1ebd626a01f9c56796c64f6824525d77085 (diff) | |
download | sssd-7f5e857a11f932c247b5a96d0d86768226ba2e96.tar.gz sssd-7f5e857a11f932c247b5a96d0d86768226ba2e96.tar.xz 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 'common')
-rw-r--r-- | common/collection/Makefile.am | 11 | ||||
-rw-r--r-- | common/collection/configure.ac | 2 | ||||
-rw-r--r-- | common/dhash/Makefile.am | 8 | ||||
-rw-r--r-- | common/dhash/configure.ac | 2 | ||||
-rw-r--r-- | common/ini/Makefile.am | 11 | ||||
-rw-r--r-- | common/ini/configure.ac | 2 |
6 files changed, 33 insertions, 3 deletions
diff --git a/common/collection/Makefile.am b/common/collection/Makefile.am index fe0749045..a802cf017 100644 --- a/common/collection/Makefile.am +++ b/common/collection/Makefile.am @@ -2,7 +2,16 @@ TRACE_LEVEL=@TRACE_VAR@ topdir=$(srcdir)/.. -AM_CPPFLAGS = -Wall -I$(topdir) -I$(topdir)/trace $(TRACE_LEVEL) + +AM_CFLAGS = +if HAVE_GCC + AM_CFLAGS += \ + -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \ + -Wcast-align -Wwrite-strings +endif + +AM_CPPFLAGS = -I$(topdir) -I$(topdir)/trace $(TRACE_LEVEL) + ACLOCAL_AMFLAGS = -I m4 # Set up the pkg-config file diff --git a/common/collection/configure.ac b/common/collection/configure.ac index 504cd4d5c..290a31017 100644 --- a/common/collection/configure.ac +++ b/common/collection/configure.ac @@ -7,6 +7,8 @@ AC_PROG_LIBTOOL AC_CONFIG_MACRO_DIR([m4]) AC_PROG_INSTALL +AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + m4_pattern_allow([AM_SILENT_RULES]) AM_SILENT_RULES diff --git a/common/dhash/Makefile.am b/common/dhash/Makefile.am index 9037bf97c..b8d5ce6ff 100644 --- a/common/dhash/Makefile.am +++ b/common/dhash/Makefile.am @@ -1,4 +1,10 @@ -AM_CPPFLAGS = -Wall +AM_CFLAGS = +if HAVE_GCC + AM_CFLAGS += \ + -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \ + -Wcast-align -Wwrite-strings +endif + ACLOCAL_AMFLAGS = -I m4 pkgconfigdir = $(libdir)/pkgconfig diff --git a/common/dhash/configure.ac b/common/dhash/configure.ac index feabc4845..bd2102877 100644 --- a/common/dhash/configure.ac +++ b/common/dhash/configure.ac @@ -7,6 +7,8 @@ AC_PROG_LIBTOOL AC_CONFIG_MACRO_DIR([m4]) AC_PROG_INSTALL +AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + m4_pattern_allow([AM_SILENT_RULES]) AM_SILENT_RULES diff --git a/common/ini/Makefile.am b/common/ini/Makefile.am index 03d891256..dc30e9471 100644 --- a/common/ini/Makefile.am +++ b/common/ini/Makefile.am @@ -2,7 +2,16 @@ TRACE_LEVEL=@TRACE_VAR@ topdir=$(srcdir)/.. -AM_CPPFLAGS = -Wall -I$(topdir) -I$(topdir)/trace -I$(topdir)/collection $(TRACE_LEVEL) + +AM_CFLAGS = +if HAVE_GCC + AM_CFLAGS += \ + -Wall -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual \ + -Wcast-align -Wwrite-strings +endif + +AM_CPPFLAGS = -I$(topdir) -I$(topdir)/trace -I$(topdir)/collection $(TRACE_LEVEL) + ACLOCAL_AMFLAGS = -I m4 # Set up the pkg-config file diff --git a/common/ini/configure.ac b/common/ini/configure.ac index 14280cfca..c4732cf79 100644 --- a/common/ini/configure.ac +++ b/common/ini/configure.ac @@ -7,6 +7,8 @@ AC_PROG_LIBTOOL AC_CONFIG_MACRO_DIR([m4]) AC_PROG_INSTALL +AM_CONDITIONAL([HAVE_GCC], [test "$ac_cv_prog_gcc" = yes]) + m4_pattern_allow([AM_SILENT_RULES]) AM_SILENT_RULES |