This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Update 4.0 branch version string, etc.


Boilerplate for the 4.0 branch.

--
Mark Mitchell
CodeSourcery, LLC
mark@codesourcery.com

2005-02-25  Mark Mitchell  <mark@codesourcery.com>

	* version.c (version_string): Mark as prerelease.
	* doc/include/gcc-common.texi (DEVELOPMENT): @clear it.
	* configure.ac (is_release): Set to 1.
	* configure: Regenerated.

Index: version.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/version.c,v
retrieving revision 1.2615
retrieving revision 1.2615.2.1
diff -c -5 -p -r1.2615 -r1.2615.2.1
*** version.c	25 Feb 2005 00:16:22 -0000	1.2615
--- version.c	25 Feb 2005 18:42:35 -0000	1.2615.2.1
***************
*** 3,13 ****
  /* This is the string reported as the version number by all components
     of the compiler.  If you distribute a modified version of GCC,
     please modify this string to indicate that, e.g. by putting your
     organization's name in parentheses at the end of the string.  */
  
! const char version_string[] = "4.0.0 20050225 (experimental)";
  
  /* This is the location of the online document giving instructions for
     reporting bugs.  If you distribute a modified version of GCC,
     please change this to refer to a document giving instructions for
     reporting bugs to you, not us.  (You are of course welcome to
--- 3,13 ----
  /* This is the string reported as the version number by all components
     of the compiler.  If you distribute a modified version of GCC,
     please modify this string to indicate that, e.g. by putting your
     organization's name in parentheses at the end of the string.  */
  
! const char version_string[] = "4.0.0 20050225 (prerelease)";
  
  /* This is the location of the online document giving instructions for
     reporting bugs.  If you distribute a modified version of GCC,
     please change this to refer to a document giving instructions for
     reporting bugs to you, not us.  (You are of course welcome to
Index: configure.ac
===================================================================
RCS file: /cvs/gcc/gcc/gcc/configure.ac,v
retrieving revision 2.94
retrieving revision 2.94.8.1
diff -c -5 -p -r2.94 -r2.94.8.1
*** configure.ac	7 Feb 2005 23:10:54 -0000	2.94
--- configure.ac	25 Feb 2005 18:42:35 -0000	2.94.8.1
*************** AC_PREREQ(2.59)
*** 29,39 ****
  AC_INIT
  AC_CONFIG_SRCDIR(tree.c)
  AC_CONFIG_HEADER(auto-host.h:config.in)
  
  #Set to 1 on a release branch
! is_release=
  
  # Determine the host, build, and target systems
  AC_CANONICAL_BUILD
  AC_CANONICAL_HOST
  AC_CANONICAL_TARGET
--- 29,39 ----
  AC_INIT
  AC_CONFIG_SRCDIR(tree.c)
  AC_CONFIG_HEADER(auto-host.h:config.in)
  
  #Set to 1 on a release branch
! is_release=1
  
  # Determine the host, build, and target systems
  AC_CANONICAL_BUILD
  AC_CANONICAL_HOST
  AC_CANONICAL_TARGET
Index: doc/include/gcc-common.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/doc/include/gcc-common.texi,v
retrieving revision 1.10
retrieving revision 1.10.30.1
diff -c -5 -p -r1.10 -r1.10.30.1
*** doc/include/gcc-common.texi	9 Sep 2004 23:40:40 -0000	1.10
--- doc/include/gcc-common.texi	25 Feb 2005 18:42:47 -0000	1.10.30.1
***************
*** 7,17 ****
  @set version-GCC 4.0.0
  
  @c DEVELOPMENT is set to indicate an in-development version,
  @c as compared to a release version.  When making a release
  @c branch, clear this.
! @set DEVELOPMENT
  
  @c Common macros to support generating man pages:
  
  @macro gcctabopt{body}
  @code{\body\}
--- 7,17 ----
  @set version-GCC 4.0.0
  
  @c DEVELOPMENT is set to indicate an in-development version,
  @c as compared to a release version.  When making a release
  @c branch, clear this.
! @clear DEVELOPMENT
  
  @c Common macros to support generating man pages:
  
  @macro gcctabopt{body}
  @code{\body\}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]