diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-04-23 22:08:11 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-04-23 14:04:24 -0700 |
commit | e9625d70c130555f00a3ad3f866d9f37548e9f64 (patch) | |
tree | 68b2e6436032b51238f2b39eb8c08c7732bbdca2 /Configure.mk | |
parent | b495c298e31ea95bb1ec33c114f0345e45d66078 (diff) | |
download | subsurface-e9625d70c130555f00a3ad3f866d9f37548e9f64.tar.gz |
Fix missing gtk-mac-integration includes
GTKCFLAGS were overwritten.
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Configure.mk')
-rw-r--r-- | Configure.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configure.mk b/Configure.mk index 9c39aa4d2..de4c0b0d8 100644 --- a/Configure.mk +++ b/Configure.mk @@ -109,7 +109,7 @@ LIBXML2 = $(shell $(XML2CONFIG) --libs) LIBXSLT = $(shell $(XSLCONFIG) --libs) XML2CFLAGS = $(shell $(XML2CONFIG) --cflags) GLIB2CFLAGS = $(shell $(PKGCONFIG) --cflags glib-2.0) -GTKCFLAGS = $(shell $(PKGCONFIG) --cflags gtk+-2.0) +GTKCFLAGS += $(shell $(PKGCONFIG) --cflags gtk+-2.0) XSLCFLAGS = $(shell $(XSLCONFIG) --cflags) OSMGPSMAPFLAGS += $(shell $(PKGCONFIG) --cflags osmgpsmap 2> /dev/null) LIBOSMGPSMAP += $(shell $(PKGCONFIG) --libs osmgpsmap 2> /dev/null) |