aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-06-08 21:12:41 +0000
committerRonald Oussoren <ronaldoussoren@mac.com>2009-06-08 21:12:41 +0000
commit450d5610288e7a78137e444f2b436769b2d1994a (patch)
treef3c9d8cece6e45d410a6aa52b690253e7ac4a6d6 /configure.in
parentThis checkin adds a symlink to the lib directory of a framework install (diff)
downloadcpython-450d5610288e7a78137e444f2b436769b2d1994a.tar.gz
cpython-450d5610288e7a78137e444f2b436769b2d1994a.tar.bz2
cpython-450d5610288e7a78137e444f2b436769b2d1994a.zip
This is a fix for Issue5809: you shouldn't specify both --enable-framework and
--enable-shared
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 58b019085d2..e9b28bc69af 100644
--- a/configure.in
+++ b/configure.in
@@ -1592,6 +1592,10 @@ then
[Define if you want to produce an OpenStep/Rhapsody framework
(shared library plus accessory files).])
AC_MSG_RESULT(yes)
+ if test $enable_shared = "yes"
+ then
+ AC_MSG_ERROR([Specifying both --enable-shared and --enable-framework is not supported, use only --enable-framework instead])
+ fi
else
AC_MSG_RESULT(no)
fi