Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 4 Jul 2020 21:37:19 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r541237 - head/lang/ghc
Message-ID:  <202007042137.064LbJff092501@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Sat Jul  4 21:37:19 2020
New Revision: 541237
URL: https://svnweb.freebsd.org/changeset/ports/541237

Log:
  lang/ghc: Don't hardcode libffi shlib version
  
  Don't hardcode the libffi shared library version in lang/ghc makefile.
  This fixes the build after devel/libffi was updated.
  This was missed in r541232
  
  PR:		247028 (for tracking)

Modified:
  head/lang/ghc/Makefile

Modified: head/lang/ghc/Makefile
==============================================================================
--- head/lang/ghc/Makefile	Sat Jul  4 20:53:55 2020	(r541236)
+++ head/lang/ghc/Makefile	Sat Jul  4 21:37:19 2020	(r541237)
@@ -3,7 +3,7 @@
 
 PORTNAME=	ghc
 PORTVERSION=	${GHC_VERSION}
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	lang haskell
 MASTER_SITES=	https://www.haskell.org/ghc/dist/${PORTVERSION}/:source \
 		LOCAL/arrowd/:boot \
@@ -56,7 +56,7 @@ DYNAMIC_CONFIGURE_WITH=	system-libffi \
 			ffi-includes=${LOCALBASE}/include \
 			ffi-libraries=${LOCALBASE}/lib
 # The version number is needed as lang/gcc installs a different version
-DYNAMIC_LIB_DEPENDS=	libffi.so.6:devel/libffi
+DYNAMIC_LIB_DEPENDS=	libffi.so:devel/libffi
 DYNAMIC_SUB_LIST=	WITH_DYNAMIC="YES"
 DYNAMIC_SUB_LIST_OFF=	WITH_DYNAMIC="NO"
 



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