diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-06-08 21:22:57 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-06-08 21:22:57 (GMT) |
commit | 99aab651136f1101e278edda8b751b5f8e9f2cac (patch) | |
tree | 480e3cf231e30004aad79e5b0aa2806cbd624141 /configure | |
parent | 0d2cceb01ca2d285aafcf92ad6a9dfcc61f4d722 (diff) | |
download | cpython-99aab651136f1101e278edda8b751b5f8e9f2cac.zip cpython-99aab651136f1101e278edda8b751b5f8e9f2cac.tar.gz cpython-99aab651136f1101e278edda8b751b5f8e9f2cac.tar.bz2 |
Merged revisions 73305 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73305 | ronald.oussoren | 2009-06-08 14:12:41 -0700 (Mon, 08 Jun 2009) | 4 lines
This is a fix for Issue5809: you shouldn't specify both --enable-framework and
--enable-shared
........
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 73142 . +# From configure.in Revision: 73274 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for python 3.1. # @@ -13286,6 +13286,12 @@ _ACEOF { echo "$as_me:$LINENO: result: yes" >&5 echo "${ECHO_T}yes" >&6; } + if test $enable_shared = "yes" + then + { { echo "$as_me:$LINENO: error: Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead" >&5 +echo "$as_me: error: Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead" >&2;} + { (exit 1); exit 1; }; } + fi else { echo "$as_me:$LINENO: result: no" >&5 echo "${ECHO_T}no" >&6; } |