svn commit: r347344 - head/graphics/GraphicsMagick13
Thierry Thomas
thierry at FreeBSD.org
Fri Mar 7 08:43:00 UTC 2014
Author: thierry
Date: Fri Mar 7 08:42:59 2014
New Revision: 347344
URL: http://svnweb.freebsd.org/changeset/ports/347344
QAT: https://qat.redports.org/buildarchive/r347344/
Log:
Fix the linkage problem, even with the default options.
Reviewed by: tijl
Modified:
head/graphics/GraphicsMagick13/Makefile
Modified: head/graphics/GraphicsMagick13/Makefile
==============================================================================
--- head/graphics/GraphicsMagick13/Makefile Fri Mar 7 08:41:11 2014 (r347343)
+++ head/graphics/GraphicsMagick13/Makefile Fri Mar 7 08:42:59 2014 (r347344)
@@ -3,7 +3,7 @@
PORTNAME= GraphicsMagick
PORTVERSION= 1.3.19
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= graphics
MASTER_SITES= SF \
ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/1.3/
@@ -93,12 +93,6 @@ LIBWMF_PORT= libwmf-nox11
.include <bsd.port.pre.mk>
-.if ${OSVERSION} >= 1000024
-.if ${PORT_OPTIONS:MFPX} && ${PORT_OPTIONS:MOPENMP}
-IGNORE= Cause C++ ABI conflict between clang/libc++ and gcc/libstdc++
-.endif
-.endif
-
.if !defined(WINDOWS_FONT_DIR)
# Use fonts installed by x11-fonts/webfonts by default
WINDOWS_FONT_DIR=${LOCALBASE}/lib/X11/fonts/webfonts
@@ -124,3 +118,6 @@ regression-test: do-build
${MAKEFILE} ${MAKE_ARGS} check)
.include <bsd.port.post.mk>
+# The OPENMP option may select gcc as compiler but on architectures
+# that have switched to libc++ clang should be used for C++ code.
+CXX= c++
More information about the svn-ports-all
mailing list