From owner-cvs-all@FreeBSD.ORG Sun Jun 3 16:53:01 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7D88B16A46B; Sun, 3 Jun 2007 16:53:01 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.freebsd.org (Postfix) with ESMTP id 6A7E613C46C; Sun, 3 Jun 2007 16:53:01 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 5879A1A3C1C; Sun, 3 Jun 2007 09:54:16 -0700 (PDT) Received: from rot13.obsecurity.org (rot13.obsecurity.org [192.168.1.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id C0C95511A7; Sun, 3 Jun 2007 12:53:00 -0400 (EDT) Received: by rot13.obsecurity.org (Postfix, from userid 1001) id 94814C200; Sun, 3 Jun 2007 12:53:00 -0400 (EDT) Date: Sun, 3 Jun 2007 12:53:00 -0400 From: Kris Kennaway To: Stefan Esser Message-ID: <20070603165300.GA10459@rot13.obsecurity.org> References: <200706031545.l53FjVHt001533@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200706031545.l53FjVHt001533@repoman.freebsd.org> User-Agent: Mutt/1.4.2.2i Cc: cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org, ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/dvbcut/files patch-playaudio.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 03 Jun 2007 16:53:01 -0000 On Sun, Jun 03, 2007 at 03:45:31PM +0000, Stefan Esser wrote: > se 2007-06-03 15:45:31 UTC > > FreeBSD ports repository > > Added files: > multimedia/dvbcut/files patch-playaudio.cpp > Log: > Unreak compilation with gcc-4.2: There is one expression containing a > binary operator '>?' that is accepted by gcc-3.x but not by gcc-4.2. > > I did not find the definition of this operator and do not know whether > it is an extension found in g++-3.x, but I assume that it is a maximum > value operator (a >? b) <==> max(a, b) and this patch implements this > operation explicitly instead of via the (unknown in g++-4.2) operator. Yes, it was a deprecated gcc extension documented in the info pages. Kris