From b468fab2405919833a0abe2e3c2994bdd830a5a6 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Sat, 30 Jul 2005 23:12:51 +0000 Subject: [PATCH] Disable wxDataObject for MGL git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35031 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure.in | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index c9ebe70d7d..1a5329885a 100644 --- a/configure.in +++ b/configure.in @@ -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 -- 2.47.2