svn commit: r516176 - head/databases/pointcloud/files

Piotr Kubaj pkubaj at FreeBSD.org
Thu Oct 31 16:44:40 UTC 2019


Author: pkubaj
Date: Thu Oct 31 16:44:39 2019
New Revision: 516176
URL: https://svnweb.freebsd.org/changeset/ports/516176

Log:
  databases/pointcloud: fix build on GCC architectures
  
  Remove -L/usr/lib from LDFLAGS. It causes the compiler to try to link to base libstdc++, in case it's present.
  
  PR:		241596
  Approved by:	lbartoletti at tuxfamily.org (maintainer), linimon (mentor)

Added:
  head/databases/pointcloud/files/patch-configure.ac   (contents, props changed)

Added: head/databases/pointcloud/files/patch-configure.ac
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/databases/pointcloud/files/patch-configure.ac	Thu Oct 31 16:44:39 2019	(r516176)
@@ -0,0 +1,11 @@
+--- configure.ac.orig	2019-04-12 20:36:11 UTC
++++ configure.ac
+@@ -274,7 +274,7 @@ fi
+ 
+ 
+ dnl Extract the linker and include flags
+-XML2_LDFLAGS=`$XML2CONFIG --libs`
++XML2_LDFLAGS=`$XML2CONFIG --libs | sed 's|-L/usr/lib||g'`
+ XML2_CPPFLAGS=`$XML2CONFIG --cflags`
+ 
+ dnl Extract the version


More information about the svn-ports-head mailing list