Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 31 Oct 2019 16:44:39 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r516176 - head/databases/pointcloud/files
Message-ID:  <201910311644.x9VGidSU094275@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



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