diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-05-03 05:53:15 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-05-03 05:53:15 (GMT) |
commit | b51033d48f024f84eb0c6e40c6a77520b8065038 (patch) | |
tree | 787687ad149262bfb377b25088e95c6aa0a2ebaf /configure | |
parent | bfc18bdf031bb473e8f3ed5d9a880458893524a3 (diff) | |
download | cpython-b51033d48f024f84eb0c6e40c6a77520b8065038.zip cpython-b51033d48f024f84eb0c6e40c6a77520b8065038.tar.gz cpython-b51033d48f024f84eb0c6e40c6a77520b8065038.tar.bz2 |
Patch #551093: Let cygwin default to --enable-shared.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 1.311 . +# From configure.in Revision: 1.313 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.53. # @@ -3070,7 +3070,12 @@ fi; if test -z "$enable_shared" then - enable_shared="no" + case $ac_sys_system in + CYGWIN*) + enable_shared="yes";; + *) + enable_shared="no";; + esac fi echo "$as_me:$LINENO: result: $enable_shared" >&5 echo "${ECHO_T}$enable_shared" >&6 |