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 | 05f5cc229323a61799388fbb52da84ca8cb502c9 (patch) | |
tree | e786eccdb5a6583291e12c333a9aa1bf52b14e8a /configure.in | |
parent | 078937c89aa2c93796ba7b64c474c30ddbdad38a (diff) | |
download | hurd-05f5cc229323a61799388fbb52da84ca8cb502c9.tar.gz hurd-05f5cc229323a61799388fbb52da84ca8cb502c9.tar.bz2 hurd-05f5cc229323a61799388fbb52da84ca8cb502c9.zip |
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.
Diffstat (limited to 'configure.in')
-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. |