diff options
author | kan <kan@FreeBSD.org> | 2003-07-11 04:37:16 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2003-07-11 04:37:16 +0000 |
commit | 2bdb49451cc41f9c81bc5e26f238458d03da6b25 (patch) | |
tree | cb38bdfe6d7d95c0445be887d76303fdc25469e0 /contrib/gcc | |
parent | a00c7154f878cf68b8be6283d6c61b8e541c6613 (diff) | |
download | FreeBSD-src-2bdb49451cc41f9c81bc5e26f238458d03da6b25.zip FreeBSD-src-2bdb49451cc41f9c81bc5e26f238458d03da6b25.tar.gz |
Merge FreeBSD modifications into gcc 3.3.1-prerelease:
1.2 Localize the version string.
Diffstat (limited to 'contrib/gcc')
-rw-r--r-- | contrib/gcc/version.c | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/contrib/gcc/version.c b/contrib/gcc/version.c index 6aef1c0..6083298 100644 --- a/contrib/gcc/version.c +++ b/contrib/gcc/version.c @@ -3,4 +3,18 @@ #include "ansidecl.h" #include "version.h" -const char *const version_string = "3.2.2 [FreeBSD] 20030205 (release)"; +/* 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[] = "3.3.1 [FreeBSD] 20030711 (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 + forward us bugs reported to you, if you determine that they are + not bugs in your modifications.) */ + +const char bug_report_url[] = "<URL:http://gcc.gnu.org/bugs.html>"; |