From owner-svn-ports-all@FreeBSD.ORG Fri May 16 22:26:01 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id E0645749; Fri, 16 May 2014 22:26:01 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CD6C02F95; Fri, 16 May 2014 22:26:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4GMQ1dH059973; Fri, 16 May 2014 22:26:01 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4GMQ1o1059970; Fri, 16 May 2014 22:26:01 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201405162226.s4GMQ1o1059970@svn.freebsd.org> From: Raphael Kubo da Costa Date: Fri, 16 May 2014 22:26:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354270 - in head/textproc/xmlppm: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 May 2014 22:26:02 -0000 Author: rakuco Date: Fri May 16 22:26:00 2014 New Revision: 354270 URL: http://svnweb.freebsd.org/changeset/ports/354270 QAT: https://qat.redports.org/buildarchive/r354270/ Log: Stop passing -fcheck-new to the compiler. This flag is GCC specific, and there should be no big loss with its removal. This commit fixes the build on HEAD (clang 3.4). MFH: 2014Q2 Added: head/textproc/xmlppm/files/patch-src__Makefile.in (contents, props changed) Modified: head/textproc/xmlppm/Makefile Modified: head/textproc/xmlppm/Makefile ============================================================================== --- head/textproc/xmlppm/Makefile Fri May 16 21:46:28 2014 (r354269) +++ head/textproc/xmlppm/Makefile Fri May 16 22:26:00 2014 (r354270) @@ -3,6 +3,7 @@ PORTNAME= xmlppm PORTVERSION= 0.98.3 +PORTREVISION= 1 CATEGORIES= textproc MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-src/${PORTVERSION} \ http://www.cs.cornell.edu/People/jcheney/xmlppm/ Added: head/textproc/xmlppm/files/patch-src__Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/xmlppm/files/patch-src__Makefile.in Fri May 16 22:26:00 2014 (r354270) @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig 2014-05-17 01:23:05.000000000 +0300 ++++ src/Makefile.in 2014-05-17 01:23:13.000000000 +0300 +@@ -176,7 +176,7 @@ + xmlppm_SOURCES = xmlppm.cpp Args.cpp Args.h Version.h + xmlppm_LDADD = libxmlppm.a + AM_CFLAGS = -Wall -ansi -pedantic -Wno-sign-compare -Wno-unknown-pragmas -Wno-conversion +-AM_CXXFLAGS = -fno-exceptions -fno-rtti -fcheck-new -Wall -ansi -pedantic -Wno-sign-compare -Wno-unknown-pragmas -Wno-conversion ++AM_CXXFLAGS = -fno-exceptions -fno-rtti -Wall -ansi -pedantic -Wno-sign-compare -Wno-unknown-pragmas -Wno-conversion + xmlunppm_SOURCES = xmlunppm.cpp Args.cpp Args.h Version.h + xmlunppm_LDADD = libxmlppm.a + lib_LIBRARIES = libxmlppm.a