diff options
author | Ludovic Courtès <ludo@gnu.org> | 2011-11-20 18:55:26 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2011-11-20 18:55:26 +0100 |
commit | 960b543b9be4daed6fa7bb033f07844c8df9f2d1 (patch) | |
tree | 372045f502525730068040082f19b58f592c9f33 | |
parent | 7352640b01b19f569640195554f81fbcb0432e76 (diff) |
configure: Use modern `AC_INIT' invocation.
* Makeconf (hurd-version): Move to...
* config.make.in (hurd-version): ... here. Set to @PACKAGE_VERSION@.
* configure.in: Change `AC_INIT' invocation to specify the package name,
version number, and bug report address.
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 635242d2..05b959b0 100644 --- a/configure.in +++ b/configure.in @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_REVISION([$Id: configure.in,v 1.38 2008/11/17 11:34:18 tschwinge Exp $]) AC_PREREQ(2.54) dnl Minimum Autoconf version required. -AC_INIT +AC_INIT([GNU Hurd], [0.3], [bug-hurd@gnu.org]) AC_CONFIG_SRCDIR([hurd/hurd_types.h]) dnl File to look for in srcdir. AC_PREFIX_DEFAULT() dnl Default to empty prefix, not /usr/local. |