Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 4 Sep 2020 16:22:55 +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: r547552 - head/math/pdal
Message-ID:  <202009041622.084GMtSY027183@repo.freebsd.org>

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



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