Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lang/ghc/files: ghc-7.4.1-darwin-CHOST.patch
Date: Tue, 01 May 2012 06:17:15
Message-Id: 20120501061702.CE6FD2004C@flycatcher.gentoo.org
1 grobian 12/05/01 06:17:02
2
3 Added: ghc-7.4.1-darwin-CHOST.patch
4 Log:
5 Restore and fix support for darwin and solaris keywords, introduced and marked ~x64-macos support
6
7 (Portage version: 2.2.01.20430-prefix/cvs/Darwin i386)
8
9 Revision Changes Path
10 1.1 dev-lang/ghc/files/ghc-7.4.1-darwin-CHOST.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/files/ghc-7.4.1-darwin-CHOST.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/ghc/files/ghc-7.4.1-darwin-CHOST.patch?rev=1.1&content-type=text/plain
14
15 Index: ghc-7.4.1-darwin-CHOST.patch
16 ===================================================================
17 like the other CHOST patches, but this one catches another case where
18 $host is used (instead of the cannonicalised variables)
19
20 --- aclocal.m4
21 +++ aclocal.m4
22 @@ -93,10 +93,10 @@
23 exeext='.exe'
24 soext='.dll'
25 ;;
26 - i386-apple-darwin|powerpc-apple-darwin)
27 + i386-apple-darwin*|powerpc-apple-darwin*)
28 soext='.dylib'
29 ;;
30 - x86_64-apple-darwin)
31 + x86_64-apple-darwin*)
32 soext='.dylib'
33 ;;
34 esac