aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-02-13 14:44:33 +0000
committerRichard Levitte <levitte@openssl.org>2002-02-13 14:44:33 +0000
commit1fe198b6f9581ebfda2e26073585d756cf193e8e (patch)
tree5b082a683bc9d3663137fca1b0e6f152144bde18 /config
parent78d6603aadf51c3b5f70229be5456ae851ab6bbe (diff)
downloadopenssl-1fe198b6f9581ebfda2e26073585d756cf193e8e.tar.gz
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-xconfig10
1 files changed, 7 insertions, 3 deletions
diff --git a/config b/config
index 74e6f08d93..502ca6720f 100755
--- a/config
+++ b/config
@@ -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