Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/openssl/files: gentoo.config-1.0.0
Date: Tue, 05 Jul 2011 07:01:19
Message-Id: 20110705070105.01B4120051@flycatcher.gentoo.org
1 vapier 11/07/05 07:01:04
2
3 Modified: gentoo.config-1.0.0
4 Log:
5 Decode mingw targets #373743 by Bertrand Jacquin.
6
7 Revision Changes Path
8 1.2 dev-libs/openssl/files/gentoo.config-1.0.0
9
10 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0?rev=1.2&view=markup
11 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0?rev=1.2&content-type=text/plain
12 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0?r1=1.1&r2=1.2
13
14 Index: gentoo.config-1.0.0
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0,v
17 retrieving revision 1.1
18 retrieving revision 1.2
19 diff -u -r1.1 -r1.2
20 --- gentoo.config-1.0.0 23 Aug 2010 06:02:48 -0000 1.1
21 +++ gentoo.config-1.0.0 5 Jul 2011 07:01:04 -0000 1.2
22 @@ -1,7 +1,7 @@
23 #!/usr/bin/env bash
24 -# Copyright 1999-2009 Gentoo Foundation
25 +# Copyright 1999-2011 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0,v 1.1 2010/08/23 06:02:48 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/files/gentoo.config-1.0.0,v 1.2 2011/07/05 07:01:04 vapier Exp $
29 #
30 # Openssl doesn't play along nicely with cross-compiling
31 # like autotools based projects, so let's teach it new tricks.
32 @@ -61,6 +61,7 @@
33 *-linux*) system="linux";;
34 *-solaris*) system="solaris";;
35 *-winnt*) system="winnt";;
36 + *mingw*) system="mingw";;
37 *) exit 0;;
38 esac
39
40 @@ -144,6 +145,10 @@
41 winnt)
42 machine=parity
43 ;;
44 +mingw)
45 + # special case ... no xxx-yyy style name
46 + echo ${system}
47 + ;;
48 esac