diff options
author | Richard Levitte <levitte@openssl.org> | 2002-02-13 15:44:33 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2002-02-13 15:44:33 +0100 |
commit | 1fe198b6f9581ebfda2e26073585d756cf193e8e (patch) | |
tree | 5b082a683bc9d3663137fca1b0e6f152144bde18 /config | |
parent | We should implement a countermeasure against the predictable-IV CBC (diff) | |
download | openssl-1fe198b6f9581ebfda2e26073585d756cf193e8e.tar.xz openssl-1fe198b6f9581ebfda2e26073585d756cf193e8e.zip |
Update the configuration of CygWin32 to use the new capabilities of
CygWin 1.3.x, which includes thread and shared library support.
Submitted by Corinna Vinschen <vinschen@redhat.com> and modified a
little bit.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -333,7 +333,11 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in ;; CYGWIN*) - echo "${MACHINE}-whatever-cygwin32"; exit 0 + case "$RELEASE" in + [bB]*|1.0|1.[12].*) + echo "${MACHINE}-whatever-cygwin32_pre1.3"; exit 0 + *) + echo "${MACHINE}-whatever-cygwin32"; exit 0 ;; esac @@ -670,8 +674,8 @@ EOF # *-aix) OUT="aix-$CC" ;; # *-dgux) OUT="dgux" ;; mips-sony-newsos4) OUT="newsos4-gcc" ;; - *-*-cygwin32) OUT="CygWin32" - options="$options no-threads no-asm" ;; + *-*-cygwin32_pre1.3) OUT="CygWin32-pre1.3" ;; + *-*-cygwin32) OUT="CygWin32" ;; *) OUT=`echo $GUESSOS | awk -F- '{print $3}'`;; esac |