diff --git a/configure b/configure index 696c5886d4..9969b6be6d 100755 --- a/configure +++ b/configure @@ -36963,6 +36963,10 @@ fi elif test "$WXGTK3" = 1; then wxUSE_UIACTIONSIMULATOR=no fi + elif test "$wxUSE_DFB" = 1; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxUIActionSimulator not yet supported under $TOOLKIT... disabled" >&5 +$as_echo "$as_me: WARNING: wxUIActionSimulator not yet supported under $TOOLKIT... disabled" >&2;} + wxUSE_UIACTIONSIMULATOR=no fi if test "$wxUSE_UIACTIONSIMULATOR" = "yes" ; then @@ -37391,8 +37395,8 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then $as_echo "$as_me: WARNING: wxTooltip not supported yet under Motif... disabled" >&2;} else if test "$wxUSE_UNIVERSAL" = "yes"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&5 -$as_echo "$as_me: WARNING: wxTooltip not supported yet in wxUniversal... disabled" >&2;} + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&5 +$as_echo "$as_me: WARNING: wxTooltip not supported yet in $TOOLKIT... disabled" >&2;} else $as_echo "#define wxUSE_TOOLTIPS 1" >>confdefs.h diff --git a/configure.in b/configure.in index 274b7e4447..861b6e4b99 100644 --- a/configure.in +++ b/configure.in @@ -6597,6 +6597,9 @@ if test "$wxUSE_UIACTIONSIMULATOR" = "yes" ; then dnl he's doing if --without-xtest was explicitly specified. wxUSE_UIACTIONSIMULATOR=no fi + elif test "$wxUSE_DFB" = 1; then + AC_MSG_WARN([wxUIActionSimulator not yet supported under $TOOLKIT... disabled]) + wxUSE_UIACTIONSIMULATOR=no fi if test "$wxUSE_UIACTIONSIMULATOR" = "yes" ; then @@ -6960,7 +6963,7 @@ if test "$wxUSE_TOOLTIPS" = "yes"; then AC_MSG_WARN([wxTooltip not supported yet under Motif... disabled]) else if test "$wxUSE_UNIVERSAL" = "yes"; then - AC_MSG_WARN([wxTooltip not supported yet in wxUniversal... disabled]) + AC_MSG_WARN([wxTooltip not supported yet in $TOOLKIT... disabled]) else AC_DEFINE(wxUSE_TOOLTIPS) fi