From owner-cvs-all@FreeBSD.ORG Mon Sep 8 02:17:35 2003 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B76416A4BF; Mon, 8 Sep 2003 02:17:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3181843FE0; Mon, 8 Sep 2003 02:17:35 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h889HZ0U045997; Mon, 8 Sep 2003 02:17:35 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h889HYk9045996; Mon, 8 Sep 2003 02:17:34 -0700 (PDT) Message-Id: <200309080917.h889HYk9045996@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 8 Sep 2003 02:17:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/spirit/files patch-boost::spirit::impl::primitives.ipp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Sep 2003 09:17:35 -0000 edwin 2003/09/08 02:17:34 PDT FreeBSD ports repository Added files: devel/spirit/files patch-boost::spirit::impl::primitives.ipp Log: [patch] fix port devel/spirit FreeBSD implements the is* functions already correctly, but this is not recognized with gcc 3.3.1. The proposed patch changes this behaviour. Code in question (gcc 3.3.1 does not seem to define _STLPORT_VERSION, whereas gcc 2.95.4 did): #if defined(_MSC_VER) || _STLPORT_VERSION >= 0x450 // is* functions already setup #else #ifndef isalnum inline bool isalnum(int c) { return std::isalnum(c); } #endif #ifndef isalpha inline bool isalpha(int c) { return std::isalpha(c); } #endif PR: ports/55783 Submitted by: Simon Barner Revision Changes Path 1.1 +12 -0 ports/devel/spirit/files/patch-boost::spirit::impl::primitives.ipp (new)