wxUSE_TIPWINDOW may be set even if wxUSE_POPUPWIN is unset

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12868 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-12-04 17:37:23 +00:00
parent eaf336e02a
commit dd964dccf7
2 changed files with 11 additions and 11 deletions

14
configure vendored
View File

@ -18298,18 +18298,18 @@ if test "$wxUSE_POPUPWIN" = "yes"; then
EOF
if test "$wxUSE_TIPWINDOW" = "yes"; then
cat >> confdefs.h <<\EOF
#define wxUSE_TIPWINDOW 1
EOF
fi
USES_CONTROLS=1
fi
fi
fi
if test "$wxUSE_TIPWINDOW" = "yes"; then
cat >> confdefs.h <<\EOF
#define wxUSE_TIPWINDOW 1
EOF
fi
if test "$USES_CONTROLS" = 1; then
cat >> confdefs.h <<\EOF
#define wxUSE_CONTROLS 1

View File

@ -4513,15 +4513,15 @@ if test "$wxUSE_POPUPWIN" = "yes"; then
else
AC_DEFINE(wxUSE_POPUPWIN)
if test "$wxUSE_TIPWINDOW" = "yes"; then
AC_DEFINE(wxUSE_TIPWINDOW)
fi
USES_CONTROLS=1
fi
fi
fi
if test "$wxUSE_TIPWINDOW" = "yes"; then
AC_DEFINE(wxUSE_TIPWINDOW)
fi
if test "$USES_CONTROLS" = 1; then
AC_DEFINE(wxUSE_CONTROLS)
fi