svn commit: r354270 - in head/textproc/xmlppm: . files

Raphael Kubo da Costa rakuco at FreeBSD.org
Fri May 16 22:26:02 UTC 2014


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 


More information about the svn-ports-all mailing list