diff --git a/configure b/configure index c1d57af4fd..44ef5ddd8e 100755 --- a/configure +++ b/configure @@ -35824,8 +35824,14 @@ $as_echo "$as_me: WARNING: wxWidgets IPC classes require sockets... disabled" >& fi if test "$wxUSE_DATAOBJ" = "yes"; then - $as_echo "#define wxUSE_DATAOBJ 1" >>confdefs.h + if test "$wxUSE_DFB" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxDataObject not yet supported under $TOOLKIT... disabled" >&5 +$as_echo "$as_me: WARNING: wxDataObject not yet supported under $TOOLKIT... disabled" >&2;} + wxUSE_DATAOBJ=no + else + $as_echo "#define wxUSE_DATAOBJ 1" >>confdefs.h + fi else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Clipboard and drag-and-drop require wxDataObject -- disabled" >&5 $as_echo "$as_me: WARNING: Clipboard and drag-and-drop require wxDataObject -- disabled" >&2;} diff --git a/configure.in b/configure.in index 7d28dd00ec..33832fe8c9 100644 --- a/configure.in +++ b/configure.in @@ -6544,7 +6544,12 @@ if test "$wxUSE_IPC" = "yes"; then fi if test "$wxUSE_DATAOBJ" = "yes"; then - AC_DEFINE(wxUSE_DATAOBJ) + if test "$wxUSE_DFB" = 1; then + AC_MSG_WARN([wxDataObject not yet supported under $TOOLKIT... 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