From 80f68e1b6a0e5bd2da799c659c963e213dbf9e66 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Wed, 30 Apr 2008 13:28:03 -0700 Subject: [PATCH] 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. --- configs/autoconf.in | 5 ----- configure.ac | 13 +------------ 2 files changed, 1 insertion(+), 17 deletions(-) diff --git a/configs/autoconf.in b/configs/autoconf.in index 1bf655f..07fe055 100644 --- a/configs/autoconf.in +++ b/configs/autoconf.in @@ -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@ diff --git a/configure.ac b/configure.ac index 8f5f0a7..43111b3 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -- 2.7.4