X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fversion.c;h=75f285aeee01a96c391248797a17d93b53f4e14f;hb=afb8cabf7ff84281c94922e3d2a7e6eb73e6b157;hp=55e50d73ac537aa3cd38c960f292f9e7e13a4771;hpb=9dc004ced3a4cfc341bbf3b86d7c232231d2a3c5;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/version.c b/gcc/version.c index 55e50d73ac5..75f285aeee0 100644 --- a/gcc/version.c +++ b/gcc/version.c @@ -1,17 +1,17 @@ #include "version.h" -/* 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.1.0 20050303 (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 - forward us bugs reported to you, if you determine that they are - not bugs in your modifications.) */ + please configure with --with-bugurl pointing to a document giving + instructions for reporting bugs to you, not us. (You are of course + welcome to forward us bugs reported to you, if you determine that + they are not bugs in your modifications.) */ + +const char bug_report_url[] = BUGURL; + +/* The complete version string, assembled from several pieces. + BASEVER, DATESTAMP, DEVPHASE, and REVISION are defined by the + Makefile. */ -const char bug_report_url[] = ""; +const char version_string[] = BASEVER DATESTAMP DEVPHASE REVISION; +const char pkgversion_string[] = PKGVERSION;