diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-07-25 12:00:37 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2015-12-01 15:43:27 +0100 |
commit | f08799bee9ee53100360d86a47bb71591530158b (patch) | |
tree | 65a393e24faf4ea0075d5a2acc60776796265482 /GNUmakefile | |
parent | a75e48e010e92dc5540e2142efc445ccb0ab1a42 (diff) | |
download | amtterm-f08799bee9ee53100360d86a47bb71591530158b.tar.gz |
switch over to use gtk3
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 5fcb4d6..c691bea 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -19,8 +19,8 @@ include mk/Autoconf.mk define make-config LIB := $(LIB) -HAVE_GTK := $(call ac_pkg_config,gtk+-x11-2.0) -HAVE_VTE := $(call ac_pkg_config,vte) +HAVE_GTK := $(call ac_pkg_config,gtk+-x11-3.0) +HAVE_VTE := $(call ac_pkg_config,vte-2.90) endef ################################################################# @@ -29,7 +29,7 @@ endef ifeq ($(HAVE_GTK)$(HAVE_VTE),yesyes) TARGETS += gamt gamt : CFLAGS += -Wno-strict-prototypes - gamt : pkglst += gtk+-x11-2.0 vte + gamt : pkglst += gtk+-x11-3.0 vte-2.90 endif CFLAGS += $(shell test "$(pkglst)" != "" && pkg-config --cflags $(pkglst)) |