diff options
author | Mitch Tishmack <mitch.tishmack@gmail.com> | 2017-03-06 22:14:34 -0600 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-03-21 21:02:16 +0100 |
commit | 9626840202ef69442b623392b6dd143b46e2f6b2 (patch) | |
tree | 789b022446adb07805b26a2b630f99f49b9942f4 /testing/ghc/APKBUILD | |
parent | 61a667bdb23946b7a4ee5d1c9fed07a57020ee77 (diff) | |
download | aports-9626840202ef69442b623392b6dd143b46e2f6b2.tar.bz2 aports-9626840202ef69442b623392b6dd143b46e2f6b2.tar.xz |
testing/ghc: Add libffi-dev to depends
While not strictly necessary generally, when passing in linker args to ghc
to compile the c rts invokes some ffi calls that the shared library
alone doesn't suffice.
Diffstat (limited to 'testing/ghc/APKBUILD')
-rw-r--r-- | testing/ghc/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/ghc/APKBUILD b/testing/ghc/APKBUILD index 4991aa13e4..9fb9b14500 100644 --- a/testing/ghc/APKBUILD +++ b/testing/ghc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Mitch Tishmack <mitch.tishmack@gmail.com> pkgname=ghc pkgver=8.0.2 -pkgrel=3 +pkgrel=4 pkgdesc="The Glasgow Haskell Compiler" url="http://haskell.org" subpackages="$pkgname-doc $pkgname-dev" @@ -36,7 +36,7 @@ license="custom:bsd3" # Note, gcc supports --no-pie on alpine linux 3.5+ only. We test for # that version as it greatly simplifies the apkbuild process. The # apks built on 3.5 will not work on any prior version of alpine linux. -depends="gmp-dev perl gcc>=6.2.1 llvm3.7" +depends="gmp-dev perl gcc>=6.2.1 llvm3.7 libffi-dev" provides="ghc-bootstrap=$pkgver-r$pkgrel haskell-cabal=1.24.2.0 haskell-bytestring=0.10.8.1 |