svn commit: r547552 - head/math/pdal

Piotr Kubaj pkubaj at FreeBSD.org
Fri Sep 4 16:22:56 UTC 2020


Author: pkubaj
Date: Fri Sep  4 16:22:55 2020
New Revision: 547552
URL: https://svnweb.freebsd.org/changeset/ports/547552

Log:
  math/pdal: use libunwind only on aarch64, amd64 and i386
  
  pdal builds otherwise without any patches on powerpc64.

Modified:
  head/math/pdal/Makefile

Modified: head/math/pdal/Makefile
==============================================================================
--- head/math/pdal/Makefile	Fri Sep  4 16:17:40 2020	(r547551)
+++ head/math/pdal/Makefile	Fri Sep  4 16:22:55 2020	(r547552)
@@ -20,7 +20,10 @@ LIB_DEPENDS=	libgdal.so:graphics/gdal \
 		libxml2.so:textproc/libxml2 \
 		liblaszip.so:archivers/laszip \
 		libzstd.so:archivers/zstd \
-		libunwind.so:devel/libunwind
+		${LIB_DEPENDS_${ARCH}}
+LIB_DEPENDS_aarch64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_amd64=	libunwind.so:devel/libunwind
+LIB_DEPENDS_i386=	libunwind.so:devel/libunwind
 
 USES=		cmake compiler:c++11-lib pathfix pkgconfig ssl
 USE_LDCONFIG=	yes


More information about the svn-ports-head mailing list