diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:09:31 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:09:31 +0200 |
commit | 143bfc9f801c84428074312d661f8e08803df83b (patch) | |
tree | 59a8a447529bd9ce3807aa8bacef861dc5aafd70 /common.am | |
parent | 29a7aef998e975b42401cfa96d1b750d91eadf06 (diff) |
Imported Upstream version 0.23.5upstream/0.23.5
Diffstat (limited to 'common.am')
-rw-r--r-- | common.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/common.am b/common.am new file mode 100644 index 0000000..6129cf1 --- /dev/null +++ b/common.am @@ -0,0 +1,19 @@ +# --enable-checking needs to come first to not trigger +# https://debbugs.gnu.org/cgi/bugreport.cgi?bug=18734 +COMMON_VALAFLAGS = \ + --enable-checking --target-glib=2.32 --thread --fatal-warnings \ + --enable-experimental --enable-deprecated + +COMMON_CFLAGS = \ + -I$(top_srcdir)/vapi \ + -D_PREFIX='"$(prefix)"' \ + -D_VERSION='"$(VERSION)"' \ + -DGETTEXT_PACKAGE='"$(GETTEXT_PACKAGE)"' \ + -D_LANG_SUPPORT_DIR='"$(prefix)/share/locale"' \ + -D_LIBEXECDIR='"$(libexecdir)"' \ + -D_LIB='"$(libdir)"' + +if IS_GITVERSION +COMMON_CFLAGS += -D_GIT_VERSION='"@GITVER@"' +COMMON_VALAFLAGS += --define=_GITVERSION +endif |