diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2008-09-09 Loïc Minier <lool@dooz.org> + + Bug 551227 – Missing AC_CONFIG_MACRO_DIR([m4]) + + * configure.ac: Add AC_CONFIG_MACRO_DIR. + 2008-09-08 Paul Pogonyshev <pogonyshev@gmx.net> Bug 551056 – make codegen not import when corresponding argument diff --git a/configure.ac b/configure.ac index b23465d..a0c41ec 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ m4_define(giounix_required_version, 2.16.0) AC_INIT(pygobject, pygobject_version, [http://bugzilla.gnome.org/enter_bug.cgi?product=pygobject]) AC_SUBST(ACLOCAL_AMFLAGS, "-I m4 -I .") +AC_CONFIG_MACRO_DIR([m4]) AC_DEFINE(PYGOBJECT_MAJOR_VERSION, pygobject_major_version, [pygobject major version]) AC_SUBST(PYGOBJECT_MAJOR_VERSION, pygobject_major_version) |