summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2013-08-24 13:32:11 +0800
committerLAN-TW <lantw44@gmail.com>2013-08-24 13:32:11 +0800
commit98bd9f10af36f308ef8a6c9247d4ae9b12b310e1 (patch)
tree4b3e01a76b30471385144d6ae6a7f5502c197f1a
parent055e5141c35445c316a1c8f3d34d6c9ad6833a35 (diff)
downloadgsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar.gz
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar.bz2
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar.lz
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar.xz
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.tar.zst
gsoc2013-libgnome-autoar-98bd9f10af36f308ef8a6c9247d4ae9b12b310e1.zip
Add GTK+ 3 to dependencies
-rw-r--r--configure.ac8
-rw-r--r--gnome-autoar/gnome-autoar.pc.in2
2 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 07a66fb..fccd064 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,12 +29,14 @@ AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources)
# Checks for libraries.
GLIB_REQUIRED=2.35.6
+GTK_REQUIRED=3.2
LIBARCHIVE_REQUIRED=3.0.0
PKG_CHECK_MODULES([DEPENDENCIES], [
- glib-2.0 >= $GLIB_REQUIRED
+ glib-2.0 >= $GLIB_REQUIRED
gobject-2.0 >= $GLIB_REQUIRED
- gio-2.0 >= $GLIB_REQUIRED
- libarchive >= $LIBARCHIVE_REQUIRED
+ gio-2.0 >= $GLIB_REQUIRED
+ gtk+-3.0 >= $GTK_REQUIRED
+ libarchive >= $LIBARCHIVE_REQUIRED
])
AM_CPPFLAGS="$AM_CPPFLAGS $DEPRECATION_FLAGS"
diff --git a/gnome-autoar/gnome-autoar.pc.in b/gnome-autoar/gnome-autoar.pc.in
index 6c46373..330afed 100644
--- a/gnome-autoar/gnome-autoar.pc.in
+++ b/gnome-autoar/gnome-autoar.pc.in
@@ -6,6 +6,6 @@ includedir=@includedir@
Name: gnome-autoar
Description: Archives integration support for GNOME
Version: @VERSION@
-Requires: glib-2.0 gio-2.0 gobject-2.0 libarchive
+Requires: glib-2.0 gio-2.0 gobject-2.0 gtk+-3.0 libarchive
Libs: -L${libdir} -lgnome-autoar
Cflags: -I${includedir}/gnome-autoar