disabled clipboard and dnd if dataobj is disabled

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34933 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2005-07-25 22:44:01 +00:00
parent 14631f7fa5
commit 90cf46d9cf

View File

@@ -5683,6 +5683,14 @@ if test "$wxUSE_IPC" = "yes"; then
fi
fi
if test "$wxUSE_DATAOBJ" = "yes"; then
AC_DEFINE(wxUSE_DATAOBJ)
else
AC_MSG_WARN([Clipboard and drag-and-drop require wxDataObject -- disabled])
wxUSE_CLIPBOARD=no
wxUSE_DRAG_AND_DROP=no
fi
if test "$wxUSE_CLIPBOARD" = "yes"; then
if test "$wxUSE_MGL" = 1; then
AC_MSG_WARN([Clipboard not yet supported under MGL... disabled])
@@ -5691,9 +5699,6 @@ if test "$wxUSE_CLIPBOARD" = "yes"; then
if test "$wxUSE_CLIPBOARD" = "yes"; then
AC_DEFINE(wxUSE_CLIPBOARD)
dnl required by clipboard code in configuration check
AC_DEFINE(wxUSE_DATAOBJ)
fi
fi