Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 28 Feb 2019 17:29:41 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r494167 - head/graphics/pcl-pointclouds
Message-ID:  <201902281729.x1SHTfKT073702@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Thu Feb 28 17:29:41 2019
New Revision: 494167
URL: https://svnweb.freebsd.org/changeset/ports/494167

Log:
  graphics/pcl-pointclouds: fix build with GCC-based architectures
  
  PR:		236099
  Submitted by:	Piotr Kubaj <pkubaj@anongoth.pl>

Modified:
  head/graphics/pcl-pointclouds/Makefile

Modified: head/graphics/pcl-pointclouds/Makefile
==============================================================================
--- head/graphics/pcl-pointclouds/Makefile	Thu Feb 28 17:29:01 2019	(r494166)
+++ head/graphics/pcl-pointclouds/Makefile	Thu Feb 28 17:29:41 2019	(r494167)
@@ -55,12 +55,16 @@ VTK_CMAKE_BOOL=		WITH_VTK
 VTK_LIB_DEPENDS=	libvtkCommonCore-8.1.so:math/vtk8
 VTK_BROKEN=		VTK has missing ompxx symbols: https://gitlab.kitware.com/vtk/vtk/issues/17444
 
+.if !exists(/usr/lib/libstdc++.so)
 # use clang from ports because cmake can't find OpenMP with base clang, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223678
 # This should also be an port option, but PCL fails to build w/out OpenMP: https://github.com/PointCloudLibrary/pcl/issues/2638
 BUILD_DEPENDS+=	clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT}
 CPP=		clang-cpp${LLVM_DEFAULT}
 CC=		clang${LLVM_DEFAULT}
 CXX=		clang++${LLVM_DEFAULT}
+.else
+USE_GCC=	yes
+.endif
 
 post-patch:  # 10 doesn't have std::sqrt, switching to ::sqrt from math.h
 	@${GREP} -rl std::sqrt ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e 's|::std::sqrt|::sqrt|g ; s|std::sqrt|::sqrt|g'



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902281729.x1SHTfKT073702>