disable shared libs for DJGPP (who broke this?)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14120 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
2755d43750
commit
4222829b44
17
configure.in
17
configure.in
@ -255,7 +255,6 @@ case "${host}" in
|
||||
AC_DEFINE(__DOS__)
|
||||
PROGRAM_EXT=".exe"
|
||||
DEFAULT_DEFAULT_wxUSE_MGL=1
|
||||
DEFAULT_DEFAULT_wxUSE_SHARED=0
|
||||
;;
|
||||
|
||||
*-pc-os2_emx | *-pc-os2-emx )
|
||||
@ -2300,6 +2299,17 @@ fi
|
||||
|
||||
dnl --- the marker for quick search, leave it here: SHARED_LIB_SETUP ---
|
||||
|
||||
if test "$wxUSE_SHARED" = "yes"; then
|
||||
case "${host}" in
|
||||
*-pc-os2_emx | *-pc-os2-emx | \
|
||||
*-pc-msdosdjgpp )
|
||||
dnl only static for now
|
||||
wxUSE_SHARED=no
|
||||
AC_MSG_WARN([Host system doesn't support shared libraries, disabling])
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
if test "$wxUSE_SHARED" = "yes"; then
|
||||
|
||||
dnl install targets
|
||||
@ -2411,11 +2421,6 @@ if test "$wxUSE_SHARED" = "yes"; then
|
||||
fi
|
||||
;;
|
||||
|
||||
*-pc-os2_emx | *-pc-os2-emx )
|
||||
dnl only static for now
|
||||
wxUSE_SHARED=no
|
||||
;;
|
||||
|
||||
*-*-beos* )
|
||||
dnl can't use gcc under BeOS for shared library creation because it
|
||||
dnl complains about missing 'main'
|
||||
|
Loading…
Reference in New Issue
Block a user