diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-06-08 21:12:41 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2009-06-08 21:12:41 +0000 |
commit | 450d5610288e7a78137e444f2b436769b2d1994a (patch) | |
tree | f3c9d8cece6e45d410a6aa52b690253e7ac4a6d6 /configure.in | |
parent | This checkin adds a symlink to the lib directory of a framework install (diff) | |
download | cpython-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.in | 4 |
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 |