Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Jun 2019 07:10:48 +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: r504165 - head/graphics/gimp-app
Message-ID:  <201906140710.x5E7AmlD077250@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Jun 14 07:10:48 2019
New Revision: 504165
URL: https://svnweb.freebsd.org/changeset/ports/504165

Log:
  graphics/gimp-app: fix build on architectures other than aarch64, amd64, i386
  
  libunwind is not available on those.
  
  PR:		238071
  Approved by:	mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D20614

Modified:
  head/graphics/gimp-app/Makefile

Modified: head/graphics/gimp-app/Makefile
==============================================================================
--- head/graphics/gimp-app/Makefile	Fri Jun 14 07:03:37 2019	(r504164)
+++ head/graphics/gimp-app/Makefile	Fri Jun 14 07:10:48 2019	(r504165)
@@ -36,7 +36,11 @@ RUN_DEPENDS=	${LOCALBASE}/libdata/pkgconfig/iso-codes.
 		mypaint-brushes>0:graphics/mypaint-brushes
 
 LIB_DEPENDS+=	libjson-glib-1.0.so:devel/json-glib \
-		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
 
 GNU_CONFIGURE=	yes
 USES+=		compiler:c++14-lang cpe gettext gmake gnome jpeg libtool \



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