autoconf: Don't substitute MESA_MAJOR and friends

Since the autoconf config inherits from default, we don't need to
duplicate and substitute the MESA_* version numbers in configure.ac.
The version number is only needed in configure for the help text.
This commit is contained in:
Dan Nicholson
2008-04-30 13:28:03 -07:00
parent d12fa3511d
commit 80f68e1b6a
2 changed files with 1 additions and 17 deletions

View File

@@ -6,11 +6,6 @@ include $(TOP)/configs/default
# This is generated by configure
CONFIG_NAME = autoconf
# Version info
MESA_MAJOR = @MESA_MAJOR@
MESA_MINOR = @MESA_MINOR@
MESA_TINY = @MESA_TINY@
# Compiler and flags
CC = @CC@
CXX = @CXX@

View File

@@ -4,24 +4,13 @@ AC_PREREQ(2.59)
dnl Versioning
dnl Make version number available to autoconf and configure
m4_define(mesa_major, 7)
m4_define(mesa_minor, 1)
m4_define(mesa_tiny, 0)
m4_define(mesa_version, [mesa_major().mesa_minor().mesa_tiny()])
m4_define([mesa_version],[7.1.0])
AC_INIT([Mesa],[mesa_version()],
[https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa])
AC_CONFIG_AUX_DIR(bin)
AC_CANONICAL_HOST
dnl Substitute the version number into shell variables
MESA_MAJOR=mesa_major()
MESA_MINOR=mesa_minor()
MESA_TINY=mesa_tiny()
AC_SUBST(MESA_MAJOR)
AC_SUBST(MESA_MINOR)
AC_SUBST(MESA_TINY)
dnl Check for progs
AC_PROG_CPP
AC_PROG_CC