From owner-svn-src-projects@FreeBSD.ORG Sun Dec 19 18:21:26 2010 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 365511065674; Sun, 19 Dec 2010 18:21:26 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 255BF8FC0C; Sun, 19 Dec 2010 18:21:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oBJILQbo009246; Sun, 19 Dec 2010 18:21:26 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oBJILQuG009244; Sun, 19 Dec 2010 18:21:26 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201012191821.oBJILQuG009244@svn.freebsd.org> From: Nathan Whitehorn Date: Sun, 19 Dec 2010 18:21:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r216567 - projects/binutils-2.17/gnu/usr.bin/cc/cc_tools X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Dec 2010 18:21:26 -0000 Author: nwhitehorn Date: Sun Dec 19 18:21:25 2010 New Revision: 216567 URL: http://svn.freebsd.org/changeset/base/216567 Log: We can't use platform-specific #ifdefs in auto-host.h, because they will not be defined when building a cross-compiler. These two seem harmless if globally defined, so define them unconditionally. Modified: projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Modified: projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h ============================================================================== --- projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Sun Dec 19 18:07:10 2010 (r216566) +++ projects/binutils-2.17/gnu/usr.bin/cc/cc_tools/auto-host.h Sun Dec 19 18:21:25 2010 (r216567) @@ -267,9 +267,7 @@ /* Define if your assembler supports -relax option. */ #ifndef USED_FOR_TARGET -# ifdef __sparc64__ -# define HAVE_AS_RELAX_OPTION 1 -# endif +#define HAVE_AS_RELAX_OPTION 1 #endif @@ -891,9 +889,7 @@ /* Define if your PowerPC64 linker only needs function descriptor syms. */ #ifndef USED_FOR_TARGET -# ifdef __powerpc64__ -# define HAVE_LD_NO_DOT_SYMS 1 -# endif +#define HAVE_LD_NO_DOT_SYMS 1 #endif