diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2015-03-28 13:32:40 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2015-03-28 13:32:40 +0000 |
commit | b00774ed3f7007443b2a207e39e3143b71cfc6f0 (patch) | |
tree | 55a2a0a6f2245daa2981a7e7f74da73ea8c32d55 /eclass/ghc-package.eclass | |
parent | Fix broken configure patch, #544612 (diff) | |
download | gentoo-2-b00774ed3f7007443b2a207e39e3143b71cfc6f0.tar.gz gentoo-2-b00774ed3f7007443b2a207e39e3143b71cfc6f0.tar.bz2 gentoo-2-b00774ed3f7007443b2a207e39e3143b71cfc6f0.zip |
Enable building dynamic haskell executables since dev-lang/ghc-7.10.1_rc3.
Diffstat (limited to 'eclass/ghc-package.eclass')
-rw-r--r-- | eclass/ghc-package.eclass | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/eclass/ghc-package.eclass b/eclass/ghc-package.eclass index 4c5e1bf41be3..6184a56ffc49 100644 --- a/eclass/ghc-package.eclass +++ b/eclass/ghc-package.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.40 2015/01/01 21:23:03 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ghc-package.eclass,v 1.41 2015/03/28 13:32:40 slyfox Exp $ # @ECLASS: ghc-package.eclass # @MAINTAINER: @@ -126,13 +126,6 @@ ghc-supports-smp() { $(ghc-getghc) --info | grep "Support SMP" | grep -q "YES" } -# @FUNCTION: ghc-supports-dynamic-by-default -# @DESCRIPTION: -# checks if ghc links against shared haskell libraries by default -ghc-supports-dynamic-by-default() { - $(ghc-getghc) --info | grep "Dynamic by default" | grep -q "YES" -} - # @FUNCTION: ghc-supports-interpreter # @DESCRIPTION: # checks if ghc has interpreter mode (aka GHCi) |