From 3d7bd65b9028f21e327019a7e53efde21b49d91a Mon Sep 17 00:00:00 2001 From: Loïc Minier Date: Mon, 8 Sep 2008 21:16:09 +0000 Subject: Bug 551227 – Missing AC_CONFIG_MACRO_DIR([m4]) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 2008-09-09 Loïc Minier Bug 551227 – Missing AC_CONFIG_MACRO_DIR([m4]) * configure.ac: Add AC_CONFIG_MACRO_DIR. svn path=/trunk/; revision=968 --- ChangeLog | 6 ++++++ configure.ac | 1 + 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index a28ae99..3d715da 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-09-09 Loïc Minier + + Bug 551227 – Missing AC_CONFIG_MACRO_DIR([m4]) + + * configure.ac: Add AC_CONFIG_MACRO_DIR. + 2008-09-08 Paul Pogonyshev 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) -- cgit