diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-15 17:54:05 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-15 17:54:05 +0800 |
commit | 43192e4bf0fc0c96fff08a84a99917fdeae42972 (patch) | |
tree | 7ea3e2c663b4bd5d9bef9ec4bf79e45a15401c33 /lib/Makefile.am | |
parent | b3b23364d3993b7954ad54d9e4e65f70cd0ce85b (diff) | |
download | gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar.gz gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar.bz2 gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar.lz gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar.xz gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.tar.zst gsoc2013-epiphany-43192e4bf0fc0c96fff08a84a99917fdeae42972.zip |
Enable deprecates and werror only in maintainer mode (in the way suggested
2003-11-15 Marco Pesenti Gritti <marco@gnome.org>
* configure.in:
* embed/Makefile.am:
* embed/mozilla/Makefile.am:
* lib/Makefile.am:
* lib/widgets/Makefile.am:
* src/Makefile.am:
Enable deprecates and werror only in maintainer mode
(in the way suggested by Jamesh).
Diffstat (limited to 'lib/Makefile.am')
-rw-r--r-- | lib/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index a899c2335..8215c81ac 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,13 +1,13 @@ SUBDIRS = widgets egg INCLUDES = \ - $(WARN_CFLAGS) \ $(EPIPHANY_DEPENDENCY_CFLAGS) \ - -DSHARE_DIR=\"$(pkgdatadir)\" \ - -DG_DISABLE_DEPRECATED \ - -DGDK_DISABLE_DEPRECATED \ - -DGDK_PIXBUF_DISABLE_DEPRECATED \ - -DGNOME_DISABLE_DEPRECATED + -DSHARE_DIR=\"$(pkgdatadir)\" + +if MAINTAINER_MODE +INCLUDES += -DGDK_DISABLE_DEPRECATED -DGDK_PIXBUF_DISABLE_DEPRECATED \ + -DGNOME_DISABLE_DEPRECATED -DBONOBO_DISABLE_DEPRECATED $(WARN_CFLAGS) +endif noinst_LTLIBRARIES = libephy.la |