diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-23 00:06:36 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-23 00:06:36 +0000 |
commit | c213d45b32735cb0f3ca837150f032635786ce5e (patch) | |
tree | ff496ce50b37b4c70c4b4c5954d0bf7796edd57d /configure.in | |
parent | ebf39f738d76fe49043ea88fab84722d32aeba06 (diff) | |
download | gnumach-c213d45b32735cb0f3ca837150f032635786ce5e.tar.gz gnumach-c213d45b32735cb0f3ca837150f032635786ce5e.tar.bz2 gnumach-c213d45b32735cb0f3ca837150f032635786ce5e.zip |
2002-05-22 Roland McGrath <roland@frob.com>
* configure.in (VERSION): New substituted variable: set to 1.3 now.
(version.c): Add it to AC_OUTPUT.
* configure: Regenerated.
* Makefile.in (version): New variable, set from that.
Remove vpath directive for version.c, not found in build dir.
(topfiles): version.c -> version.c.in
* doc/Makefile.in (mach-version): Substituted instead of constant.
* version.c: File removed, replaced with ...
* version.c.in: ... this new file.
(version): Make it const. Use @VERSION@ for the number.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 82d3b447..b845204d 100644 --- a/configure.in +++ b/configure.in @@ -12,10 +12,12 @@ dnl "AS IS" CONDITION. THE FREE SOFTWARE FOUNDATION DISCLAIMS ANY dnl LIABILITY OF ANY KIND FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE dnl USE OF THIS SOFTWARE. - AC_INIT(kern/ipc_kobject.c) AC_PREREQ(2.12) +VERSION=1.3 +AC_SUBST(VERSION) + # # Deduce output var `systype' from configuration parms. # @@ -73,4 +75,4 @@ AC_LINK_FILES(${systype}/${systype},machine) AC_CONFIG_SUBDIRS(linux ${systype}) -AC_OUTPUT(Makefile doc/Makefile) +AC_OUTPUT(Makefile version.c doc/Makefile) |