summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett Regier <garrettregier@gmail.com>2011-09-21 04:10:30 -0700
committerGarrett Regier <garrettregier@gmail.com>2011-09-21 04:10:30 -0700
commit68fb8789bcf125e675d7472b39f33c84ad3218d6 (patch)
tree41459834fe8bf6f291734f1c0ed5583ce20d5024
parent8a8345f2b967c04ee9ea85a29699005687ad50ee (diff)
downloadlibpeas-68fb8789bcf125e675d7472b39f33c84ad3218d6.tar.gz
Fix to work with PyGObject 3
If the major versions do not match pygobject_init() fails.
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index f2e3a95..26df3a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -299,9 +299,9 @@ dnl ================================================================
PYTHON_REQUIRED=2.5.2
dnl Used by the Python loader to check the PyGObject version at runtime
-PYGOBJECT_MAJOR_VERSION=2
-PYGOBJECT_MINOR_VERSION=90
-PYGOBJECT_MICRO_VERSION=2
+PYGOBJECT_MAJOR_VERSION=3
+PYGOBJECT_MINOR_VERSION=0
+PYGOBJECT_MICRO_VERSION=0
PYGOBJECT_REQUIRED=$PYGOBJECT_MAJOR_VERSION.$PYGOBJECT_MINOR_VERSION.$PYGOBJECT_MICRO_VERSION
AC_ARG_ENABLE(python,