diff options
author | Colin Walters <walters@verbum.org> | 2013-02-26 11:19:51 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2013-02-27 08:34:01 -0500 |
commit | 156b14cde5423c5bdaf8f28f1a8a5a0b54fbe455 (patch) | |
tree | e59907060a99e5a250b6d52e9b606149d5c1211e /gmodule | |
parent | e3582c617cf00f3c90b6448d11cf253933a28802 (diff) | |
download | glib-156b14cde5423c5bdaf8f28f1a8a5a0b54fbe455.tar.gz |
build: Add --disable-compile-warnings
Some (broken) toolchains for example trip up
-Werror=missing-prototypes in system headers. This patch allows
people to skip the formerly hardcoded "baseline" warnings.
https://bugzilla.gnome.org/show_bug.cgi?id=694757
Diffstat (limited to 'gmodule')
-rw-r--r-- | gmodule/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am index e0a8e1a76..4a75a304b 100644 --- a/gmodule/Makefile.am +++ b/gmodule/Makefile.am @@ -7,6 +7,8 @@ AM_CPPFLAGS = \ @GLIB_DEBUG_FLAGS@ \ -DG_DISABLE_DEPRECATED +AM_CFLAGS = $(GLIB_WARN_CFLAGS) + EXTRA_DIST += \ makefile.msc.in \ gmoduleconf.h.in \ |