Date: Fri, 16 May 2014 22:26:01 +0000 (UTC) From: Raphael Kubo da Costa <rakuco@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r354270 - in head/textproc/xmlppm: . files Message-ID: <201405162226.s4GMQ1o1059970@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201405162226.s4GMQ1o1059970>