summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorSimon van der Linden <svdlinden@src.gnome.org>2009-11-23 22:39:12 +0100
committerSimon van der Linden <svdlinden@src.gnome.org>2009-11-23 22:39:12 +0100
commit5c010fe673d9bd01c27c8d7d312064665275888c (patch)
treed0d31ead17a75630a29b811f5bde2e233998eadf /configure.ac
parentd67d5afb5115c1d8294415b2e1a82af2c737ba17 (diff)
downloadpygobject-5c010fe673d9bd01c27c8d7d312064665275888c.tar.gz
pygobject-5c010fe673d9bd01c27c8d7d312064665275888c.tar.xz
pygobject-5c010fe673d9bd01c27c8d7d312064665275888c.zip
Remove the girepository module
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 0 insertions, 17 deletions
diff --git a/configure.ac b/configure.ac
index dc8dea6..b46ecb1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11,7 +11,6 @@ dnl versions of packages we require ...
m4_define(glib_required_version, 2.14.0)
m4_define(gio_required_version, 2.16.0)
m4_define(giounix_required_version, 2.16.0)
-m4_define(gobject_introspection_required_version, 0.6.3)
AC_INIT(pygobject, pygobject_version,
[http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject])
@@ -200,21 +199,6 @@ if test -n "$export_dynamic"; then
GIOUNIX_LIBS=`echo $GIOUNIX_LIBS | sed -e "s/$export_dynamic//"`
fi
-dnl gi
-AC_ARG_ENABLE(introspection,
- AC_HELP_STRING([--enable-introspection], [Enable gobject-introspection bindings building]),
- enable_introspection=$enableval,
- enable_introspection=no)
-AM_CONDITIONAL(BUILD_GIREPOSITORY, test "$enable_introspection" != no)
-if test "$enable_introspection" != no; then
- PKG_CHECK_MODULES(GOBJECT_INTROSPECTION, gobject-introspection-1.0 >= gobject_introspection_required_version)
- AC_SUBST(GOBJECT_INTROSPECTION_CFLAGS)
- AC_SUBST(GOBJECT_INTROSPECTION_LIBS)
- if test -n "$export_dynamic"; then
- GOBJECT_INTROSPECTION_LIBS=`echo $GOBJECT_INTROSPECTION_LIBS | sed -e "s/$export_dynamic//"`
- fi
-fi
-
AC_ARG_ENABLE(pygi,
AC_HELP_STRING([--enable-pygi], [Use PyGI to create wrappers for introspection-enabled types]),
enable_pygi=$enableval,
@@ -250,7 +234,6 @@ AC_CONFIG_FILES(
glib/Makefile
gobject/Makefile
gio/Makefile
- girepository/Makefile
examples/Makefile
tests/Makefile
PKG-INFO)