diff options
author | rbuj <[email protected]> | 2019-10-01 22:37:49 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-10-09 09:11:58 +0200 |
commit | ea214684aeee170dc2a95cb1df751ef4bd0b82c4 (patch) | |
tree | b2f4ce62ffe36789969e7af0d921b5a5103a19c1 /backends/oss/Makefile.am | |
parent | 5f8bf42dc4b5bae6627bafb850e90fc8d25e8f5f (diff) | |
download | libmatemixer-ea214684aeee170dc2a95cb1df751ef4bd0b82c4.tar.bz2 libmatemixer-ea214684aeee170dc2a95cb1df751ef4bd0b82c4.tar.xz |
Use WARN_CFLAGS which are only set with --enable-compiler-warnings
It removes --enable-more-warnings, since it is recommended to use
--enable-compile-warnings=maximum
It updates configure summary.
Diffstat (limited to 'backends/oss/Makefile.am')
-rw-r--r-- | backends/oss/Makefile.am | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/backends/oss/Makefile.am b/backends/oss/Makefile.am index 360082f..d9e1fa7 100644 --- a/backends/oss/Makefile.am +++ b/backends/oss/Makefile.am @@ -1,15 +1,19 @@ +NULL = + backenddir = $(libdir)/libmatemixer backend_LTLIBRARIES = libmatemixer-oss.la -AM_CPPFLAGS = \ - -Wno-unknown-pragmas \ - -I$(top_srcdir) \ - -DG_LOG_DOMAIN=\"libmatemixer-oss\" +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + -DG_LOG_DOMAIN=\"libmatemixer-oss\" \ + $(GLIB_CFLAGS) \ + $(OSS_CFLAGS) \ + $(NULL) -libmatemixer_oss_la_CFLAGS = \ - $(GLIB_CFLAGS) \ - $(OSS_CFLAGS) +libmatemixer_oss_la_CFLAGS = \ + $(WARN_CFLAGS) \ + $(NULL) libmatemixer_oss_la_SOURCES = \ oss-common.h \ |