From owner-svn-src-all@FreeBSD.ORG Thu Oct 20 17:33:23 2011 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 53FB51065673; Thu, 20 Oct 2011 17:33:23 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4270D8FC19; Thu, 20 Oct 2011 17:33:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p9KHXND5084529; Thu, 20 Oct 2011 17:33:23 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p9KHXN93084527; Thu, 20 Oct 2011 17:33:23 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201110201733.p9KHXN93084527@svn.freebsd.org> From: Dimitry Andric Date: Thu, 20 Oct 2011 17:33:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226575 - stable/9/gnu/usr.bin/cc/cc_tools X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2011 17:33:23 -0000 Author: dim Date: Thu Oct 20 17:33:22 2011 New Revision: 226575 URL: http://svn.freebsd.org/changeset/base/226575 Log: Update gcc's __FreeBSD__ and __FreeBSD_cc_version macros for FreeBSD 9. This is a direct commit to stable/9, since the macro values are different in head. Approved by: re (kib) Modified: stable/9/gnu/usr.bin/cc/cc_tools/freebsd-native.h Modified: stable/9/gnu/usr.bin/cc/cc_tools/freebsd-native.h ============================================================================== --- stable/9/gnu/usr.bin/cc/cc_tools/freebsd-native.h Thu Oct 20 17:09:53 2011 (r226574) +++ stable/9/gnu/usr.bin/cc/cc_tools/freebsd-native.h Thu Oct 20 17:33:22 2011 (r226575) @@ -7,8 +7,8 @@ #define FREEBSD_NATIVE 1 /* Fake out gcc/config/freebsd.h. */ -#define FBSD_MAJOR 8 -#define FBSD_CC_VER 800001 /* form like __FreeBSD_version */ +#define FBSD_MAJOR 9 +#define FBSD_CC_VER 900001 /* form like __FreeBSD_version */ #undef SYSTEM_INCLUDE_DIR /* We don't need one for now. */ #undef TOOL_INCLUDE_DIR /* We don't need one for now. */