summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac9
2 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 23db3fe..c11f60e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-05 Thomas Schwinge <tschwinge@gnu.org>
+
+ [task #5956 --- ``Automake'ify GNU Mach's code base'']
+ * configure.ac <AM_INIT_AUTOMAKE>: Add `no-define' and `1.9'.
+
2006-11-05 Barry deFreese <bddebian@comcast.net>
[task #5878 --- ``Backport code from GNU Mach's trunk to
diff --git a/configure.ac b/configure.ac
index 2c4222d..a4866d6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,8 +22,15 @@ AC_CONFIG_SRCDIR([kern/ipc_kobject.c])
AC_CONFIG_AUX_DIR([build-aux])
+AM_INIT_AUTOMAKE(
+dnl Don't define `PACKAGE' and `VERSION'.
+ [no-define]
dnl Do not clutter the main build directory.
-AM_INIT_AUTOMAKE([subdir-objects])
+ [subdir-objects]
+dnl This is only a very rough estimation of the version we actually need. Feel
+dnl free to refine that.
+ [1.9]
+)
#
# Deduce the output variable `systype' from the configuration parameters.