From owner-svn-src-head@FreeBSD.ORG Wed Nov 14 17:44:38 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 814677F8; Wed, 14 Nov 2012 17:44:38 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 624938FC12; Wed, 14 Nov 2012 17:44:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAEHicmg019356; Wed, 14 Nov 2012 17:44:38 GMT (envelope-from demon@svn.freebsd.org) Received: (from demon@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAEHicPI019355; Wed, 14 Nov 2012 17:44:38 GMT (envelope-from demon@svn.freebsd.org) Message-Id: <201211141744.qAEHicPI019355@svn.freebsd.org> From: Dmitry Sivachenko Date: Wed, 14 Nov 2012 17:44:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r243032 - head/include/xlocale X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Nov 2012 17:44:38 -0000 Author: demon (ports committer) Date: Wed Nov 14 17:44:37 2012 New Revision: 243032 URL: http://svnweb.freebsd.org/changeset/base/243032 Log: Use defined() to test macro definitions. Approved by: theraven Modified: head/include/xlocale/_ctype.h Modified: head/include/xlocale/_ctype.h ============================================================================== --- head/include/xlocale/_ctype.h Wed Nov 14 17:36:06 2012 (r243031) +++ head/include/xlocale/_ctype.h Wed Nov 14 17:44:37 2012 (r243032) @@ -53,7 +53,7 @@ _RuneLocale *__runes_for_locale(locale_t #endif #ifndef _XLOCALE_INLINE -#if __GNUC__ && !__GNUC_STDC_INLINE__ +#if defined(__GNUC__) && !defined(__GNUC_STDC_INLINE__) /* GNU89 inline has nonstandard semantics. */ #define _XLOCALE_INLINE extern __inline #else