From 14b381744a561bc0d4f81f6b5b15ad45a27c7e5c Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Wed, 1 Sep 2004 07:10:14 +0000 Subject: [PATCH] * configure.ac, Mkfiles/*/config.h: Stop using date command / CVS string, switch to constant use of "HEAD" instead. This will be replaced by the SVN tree revision for automated builds. svn path=/trunk/yasm/; revision=1133 --- Mkfiles/dj/config.h | 6 +++--- Mkfiles/mingw/config.h | 6 +++--- Mkfiles/vc/config.h | 6 +++--- configure.ac | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Mkfiles/dj/config.h b/Mkfiles/dj/config.h index 5a29c4b6..e7245a37 100644 --- a/Mkfiles/dj/config.h +++ b/Mkfiles/dj/config.h @@ -293,13 +293,13 @@ #define PACKAGE_NAME "yasm" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "yasm CVS" +#define PACKAGE_STRING "yasm HEAD" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "yasm" /* Define to the version of this package. */ -#define PACKAGE_VERSION "CVS" +#define PACKAGE_VERSION "HEAD" /* Define if the C compiler supports function prototypes. */ #define PROTOTYPES 1 @@ -311,7 +311,7 @@ /* #undef USE_FORKWAITMSG */ /* Version number of package */ -#define VERSION "CVS" +#define VERSION "HEAD" /* Define if using the dmalloc debugging malloc package */ /* #undef WITH_DMALLOC */ diff --git a/Mkfiles/mingw/config.h b/Mkfiles/mingw/config.h index d2188d64..36ec7a3a 100644 --- a/Mkfiles/mingw/config.h +++ b/Mkfiles/mingw/config.h @@ -293,13 +293,13 @@ #define PACKAGE_NAME "yasm" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "yasm CVS" +#define PACKAGE_STRING "yasm HEAD" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "yasm" /* Define to the version of this package. */ -#define PACKAGE_VERSION "CVS" +#define PACKAGE_VERSION "HEAD" /* Define if the C compiler supports function prototypes. */ #define PROTOTYPES 1 @@ -311,7 +311,7 @@ /* #undef USE_FORKWAITMSG */ /* Version number of package */ -#define VERSION "CVS" +#define VERSION "HEAD" /* Define if using the dmalloc debugging malloc package */ /* #undef WITH_DMALLOC */ diff --git a/Mkfiles/vc/config.h b/Mkfiles/vc/config.h index c406ccc9..3b483ab1 100644 --- a/Mkfiles/vc/config.h +++ b/Mkfiles/vc/config.h @@ -297,13 +297,13 @@ #define PACKAGE_NAME "yasm" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "yasm CVS" +#define PACKAGE_STRING "yasm HEAD" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "yasm" /* Define to the version of this package. */ -#define PACKAGE_VERSION "CVS" +#define PACKAGE_VERSION "HEAD" /* Define if the C compiler supports function prototypes. */ #define PROTOTYPES 1 @@ -315,7 +315,7 @@ /* #undef USE_FORKWAITMSG */ /* Version number of package */ -#define VERSION "CVS" +#define VERSION "HEAD" /* Define if using the dmalloc debugging malloc package */ /* #undef WITH_DMALLOC */ diff --git a/configure.ac b/configure.ac index 4e76c586..b2c70c4b 100644 --- a/configure.ac +++ b/configure.ac @@ -5,12 +5,12 @@ # autoconf setup # AC_PREREQ(2.53) -AC_INIT([yasm], `date "+%Y%m%d"`, [bug-yasm@tortall.net]) +AC_INIT([yasm], [HEAD], [bug-yasm@tortall.net]) #AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_AUX_DIR(config) AM_CONFIG_HEADER([config.h]) -AM_INIT_AUTOMAKE(yasm, `date "+%Y%m%d"`) +AM_INIT_AUTOMAKE(yasm, [HEAD]) AM_MAINTAINER_MODE # -- 2.40.0