Deleted Added
full compact
version.c (260935) version.c (267734)
1/* $FreeBSD: stable/10/contrib/gcc/version.c 260935 2014-01-20 21:58:20Z pfg $ */
1/* $FreeBSD: stable/10/contrib/gcc/version.c 267734 2014-06-22 16:48:21Z gavin $ */
2#include "version.h"
3
4/* This is the trailing component of the string reported as the
5 version number by all components of the compiler. For an official
6 FSF release, it is empty. If you distribute a modified version of
7 GCC, please change this string to indicate that. The suggested
8 format is a leading space, followed by your organization's name
9 in parentheses. You may also wish to include a number indicating
10 the revision of your modified compiler. */
11
12#define VERSUFFIX " [FreeBSD]"
13
14/* This is the location of the online document giving instructions for
15 reporting bugs. If you distribute a modified version of GCC,
16 please change this to refer to a document giving instructions for
17 reporting bugs to you, not us. (You are of course welcome to
18 forward us bugs reported to you, if you determine that they are
19 not bugs in your modifications.) */
20
2#include "version.h"
3
4/* This is the trailing component of the string reported as the
5 version number by all components of the compiler. For an official
6 FSF release, it is empty. If you distribute a modified version of
7 GCC, please change this string to indicate that. The suggested
8 format is a leading space, followed by your organization's name
9 in parentheses. You may also wish to include a number indicating
10 the revision of your modified compiler. */
11
12#define VERSUFFIX " [FreeBSD]"
13
14/* This is the location of the online document giving instructions for
15 reporting bugs. If you distribute a modified version of GCC,
16 please change this to refer to a document giving instructions for
17 reporting bugs to you, not us. (You are of course welcome to
18 forward us bugs reported to you, if you determine that they are
19 not bugs in your modifications.) */
20
21const char bug_report_url[] = "<URL:http://www.freebsd.org/send-pr.html>";
21const char bug_report_url[] = "<URL:http://www.freebsd.org/support.html>";
22
23/* The complete version string, assembled from several pieces.
24 BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile. */
25
26const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;
22
23/* The complete version string, assembled from several pieces.
24 BASEVER, DATESTAMP, and DEVPHASE are defined by the Makefile. */
25
26const char version_string[] = BASEVER DATESTAMP DEVPHASE VERSUFFIX;