[openssl-dev] [openssl.org #4133] [patch] config does not detect Cygwin64

Tino Lange via RT rt at openssl.org
Wed Nov 11 04:15:16 UTC 2015


Hi!

The following small patch for "config" detects Cygwin64 correctly and
applies the already preconfigured flags for it via "Configure".

> $ cat 03_cygwin64.patch
> --- openssl-1.0.2d/config
> +++ openssl-1.0.2d/config
> @@ -353,7 +353,14 @@
> echo "${MACHINE}-whatever-cygwin_pre1.3"
> ;;
> *)
> - echo "${MACHINE}-whatever-cygwin"
> + case "$MACHINE" in
> + x86_64)
> + echo "${MACHINE}-whatever-cygwin64"
> + ;;
> + *)
> + echo "${MACHINE}-whatever-cygwin"
> + ;;
> + esac
> ;;
> esac
> exit 0
> @@ -853,6 +860,7 @@
> mips-sony-newsos4) OUT="newsos4-gcc" ;;
> *-*-cygwin_pre1.3) OUT="Cygwin-pre1.3" ;;
> *-*-cygwin) OUT="Cygwin" ;;
> + *-*-cygwin64) OUT="Cygwin-x86_64" ;;
> t3e-cray-unicosmk) OUT="cray-t3e" ;;
> j90-cray-unicos) OUT="cray-j90" ;;
> nsr-tandem-nsk) OUT="tandem-c89" ;;

Cheers,

Tino


*******************************************************
This message (including any files transmitted with it) may contain confidential and/or proprietary information, is the property of Interactive Data Corporation and/or its subsidiaries, and is directed only to the addressee(s). If you are not the designated recipient or have reason to believe you received this message in error, please delete this message from your system and notify the sender immediately. An unintended recipient's disclosure, copying, distribution, or use of this message or any attachments is prohibited and may be unlawful. 
*******************************************************
_______________________________________________
openssl-bugs-mod mailing list
openssl-bugs-mod at openssl.org
https://mta.openssl.org/mailman/listinfo/openssl-bugs-mod



More information about the openssl-dev mailing list