Disable wxDataObject for MGL

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Michael Wetherell
2005-07-30 23:12:51 +00:00
parent b5715bdd0b
commit b468fab240

View File

@@ -5702,7 +5702,12 @@ if test "$wxUSE_IPC" = "yes"; then
fi
if test "$wxUSE_DATAOBJ" = "yes"; then
AC_DEFINE(wxUSE_DATAOBJ)
if test "$wxUSE_MGL" = 1; then
AC_MSG_WARN([wxDataObject not yet supported under MGL... disabled])
wxUSE_DATAOBJ=no
else
AC_DEFINE(wxUSE_DATAOBJ)
fi
else
AC_MSG_WARN([Clipboard and drag-and-drop require wxDataObject -- disabled])
wxUSE_CLIPBOARD=no