summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorColin Walters <walters@src.gnome.org>2008-11-19 22:42:09 +0000
committerColin Walters <walters@src.gnome.org>2008-11-19 22:42:09 +0000
commit676bd789f0fb9decadea6097692e75299b3cf0a9 (patch)
tree3ff3089cd47ba44ef9d97374ba4760c81950ef10 /configure.ac
parent66872264eecb5da856bd5ed7b89dd028af683aae (diff)
downloadgobject-introspection-676bd789f0fb9decadea6097692e75299b3cf0a9.tar.gz
Add Gio Unix bits to the Gio.gir if available
Having a separate .gir would be fairly overkill for the few components in the Gio Unix integration, and this mirrors how we handle Gtk. svn path=/trunk/; revision=953
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 158203b9..60b78479 100644
--- a/configure.ac
+++ b/configure.ac
@@ -109,6 +109,8 @@ AC_DEFINE_UNQUOTED(GOBJECT_INTROSPECTION_LIBDIR,"$GOBJECT_INTROSPECTION_LIBDIR",
PKG_CHECK_MODULES(GOBJECT, [gobject-2.0 gio-2.0])
PKG_CHECK_MODULES(GTHREAD, [gthread-2.0])
+PKG_CHECK_MODULES(GIO_UNIX, [gio-unix-2.0], have_gio_unix=true, have_gio_unix=false)
+AM_CONDITIONAL(HAVE_GIO_UNIX, test x$have_gio_unix = xtrue)
PKG_CHECK_MODULES(SCANNER, [gobject-2.0 gthread-2.0 gio-2.0])