mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Patch #551093: Let cygwin default to --enable-shared.
This commit is contained in:
parent
bfc18bdf03
commit
b51033d48f
2 changed files with 13 additions and 3 deletions
9
configure
vendored
9
configure
vendored
|
@ -1,5 +1,5 @@
|
||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.in Revision: 1.311 .
|
# From configure.in Revision: 1.313 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.53.
|
# Generated by GNU Autoconf 2.53.
|
||||||
#
|
#
|
||||||
|
@ -3070,7 +3070,12 @@ fi;
|
||||||
|
|
||||||
if test -z "$enable_shared"
|
if test -z "$enable_shared"
|
||||||
then
|
then
|
||||||
enable_shared="no"
|
case $ac_sys_system in
|
||||||
|
CYGWIN*)
|
||||||
|
enable_shared="yes";;
|
||||||
|
*)
|
||||||
|
enable_shared="no";;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
echo "$as_me:$LINENO: result: $enable_shared" >&5
|
echo "$as_me:$LINENO: result: $enable_shared" >&5
|
||||||
echo "${ECHO_T}$enable_shared" >&6
|
echo "${ECHO_T}$enable_shared" >&6
|
||||||
|
|
|
@ -337,7 +337,12 @@ AC_ARG_ENABLE(shared,
|
||||||
|
|
||||||
if test -z "$enable_shared"
|
if test -z "$enable_shared"
|
||||||
then
|
then
|
||||||
enable_shared="no"
|
case $ac_sys_system in
|
||||||
|
CYGWIN*)
|
||||||
|
enable_shared="yes";;
|
||||||
|
*)
|
||||||
|
enable_shared="no";;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
AC_MSG_RESULT($enable_shared)
|
AC_MSG_RESULT($enable_shared)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue