diff options
author | 2011-07-05 07:01:04 +0000 | |
---|---|---|
committer | 2011-07-05 07:01:04 +0000 | |
commit | 2bde76c014119bc47608e10f7d8958d12aa52434 (patch) | |
tree | 2600179487beb93fd75efe2ff57b274075b86a3a /dev-libs | |
parent | Stable on amd64 wrt bug #373939 (diff) | |
download | gentoo-2-2bde76c014119bc47608e10f7d8958d12aa52434.tar.gz gentoo-2-2bde76c014119bc47608e10f7d8958d12aa52434.tar.bz2 gentoo-2-2bde76c014119bc47608e10f7d8958d12aa52434.zip |
Decode mingw targets #373743 by Bertrand Jacquin.
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/openssl/ChangeLog | 5 | ||||
-rwxr-xr-x | dev-libs/openssl/files/gentoo.config-1.0.0 | 9 |
2 files changed, 11 insertions, 3 deletions
diff --git a/dev-libs/openssl/ChangeLog b/dev-libs/openssl/ChangeLog index ed3c1efc9a6a..8725b8a77f22 100644 --- a/dev-libs/openssl/ChangeLog +++ b/dev-libs/openssl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/openssl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.395 2011/04/30 07:06:47 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.396 2011/07/05 07:01:04 vapier Exp $ + + 05 Jul 2011; Mike Frysinger <vapier@gentoo.org> files/gentoo.config-1.0.0: + Decode mingw targets #373743 by Bertrand Jacquin. 30 Apr 2011; Mike Frysinger <vapier@gentoo.org> openssl-1.0.0d.ebuild, +files/openssl-1.0.0d-alpha-typo.patch: diff --git a/dev-libs/openssl/files/gentoo.config-1.0.0 b/dev-libs/openssl/files/gentoo.config-1.0.0 index f8a6d9716b9f..e7dd012f7ed2 100755 --- a/dev-libs/openssl/files/gentoo.config-1.0.0 +++ b/dev-libs/openssl/files/gentoo.config-1.0.0 @@ -1,7 +1,7 @@ #!/usr/bin/env bash -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $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 $ +# $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 $ # # Openssl doesn't play along nicely with cross-compiling # like autotools based projects, so let's teach it new tricks. @@ -61,6 +61,7 @@ case ${CHOST} in *-linux*) system="linux";; *-solaris*) system="solaris";; *-winnt*) system="winnt";; + *mingw*) system="mingw";; *) exit 0;; esac @@ -144,6 +145,10 @@ solaris) winnt) machine=parity ;; +mingw) + # special case ... no xxx-yyy style name + echo ${system} + ;; esac |