diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index eb8e5c2..99ff6b2 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ m4_define(python3_min_ver, 3.1) dnl the pygobject version number m4_define(pygobject_major_version, 3) m4_define(pygobject_minor_version, 19) -m4_define(pygobject_micro_version, 2) +m4_define(pygobject_micro_version, 90) m4_define(pygobject_version, pygobject_major_version.pygobject_minor_version.pygobject_micro_version) dnl versions of packages we require ... @@ -44,7 +44,9 @@ AC_SUBST(PYGOBJECT_MICRO_VERSION, pygobject_micro_version) AC_CONFIG_HEADERS(config.h) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES(yes)]) -AM_INIT_AUTOMAKE([1.11.1 foreign no-dist-gzip dist-xz]) +# 1.12.6 to get a py-compile supporting newer Python 3 versions. +# See https://debbugs.gnu.org/cgi/bugreport.cgi?bug=8847 +AM_INIT_AUTOMAKE([1.12.6 foreign no-dist-gzip dist-xz]) dnl put the ACLOCAL flags in the makefile ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" |