svn commit: r504386 - head/devel/hs-cabal-install

Piotr Kubaj pkubaj at FreeBSD.org
Mon Jun 17 04:57:36 UTC 2019


Author: pkubaj
Date: Mon Jun 17 04:57:34 2019
New Revision: 504386
URL: https://svnweb.freebsd.org/changeset/ports/504386

Log:
  devel/hs-cabal-install: fix build
  
  Add USES=compiler:c11 to fix build:
  /usr/bin/ld: TOC section size exceeds 64k
  
  USE_BINUTILS could probably be used, but this port insists on using the compiler as LD.
  
  Approved by:	mentors (implicite approval)

Modified:
  head/devel/hs-cabal-install/Makefile

Modified: head/devel/hs-cabal-install/Makefile
==============================================================================
--- head/devel/hs-cabal-install/Makefile	Mon Jun 17 04:55:11 2019	(r504385)
+++ head/devel/hs-cabal-install/Makefile	Mon Jun 17 04:57:34 2019	(r504386)
@@ -12,7 +12,7 @@ LICENSE=	BSD3CLAUSE
 
 BUILD_DEPENDS=	ghc:lang/ghc
 
-USES=		cabal
+USES=		cabal compiler:c11
 
 USE_CABAL=	async-2.2.1_1 base16-bytestring-0.1.1.6 base64-bytestring-1.0.0.1 \
 		cryptohash-sha256-0.11.101.0_2 digest-0.0.1.2 echo-0.1.3_1 \


More information about the svn-ports-all mailing list