Automatically disable wxDialupManager for wxMac and wxCocoa,
skip dialup sample if wxDialupManager is disabled. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
14
configure.in
14
configure.in
@@ -4867,11 +4867,6 @@ if test "$wxUSE_GEOMETRY" = "yes"; then
|
||||
AC_DEFINE(wxUSE_GEOMETRY)
|
||||
fi
|
||||
|
||||
if test "$wxUSE_DIALUP_MANAGER" = "yes" ; then
|
||||
AC_DEFINE(wxUSE_DIALUP_MANAGER)
|
||||
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
|
||||
fi
|
||||
|
||||
if test "$wxUSE_STREAMS" = "yes" ; then
|
||||
AC_DEFINE(wxUSE_STREAMS)
|
||||
fi
|
||||
@@ -5754,6 +5749,15 @@ if test "$wxUSE_POPUPWIN" = "yes"; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$wxUSE_DIALUP" = "yes"; then
|
||||
if test "$wxUSE_MAC" = 1 -o "$wxUSE_COCOA" = 1 ; then
|
||||
AC_MSG_WARN([Dialup manager not yet supported under Mac OS X... disabled])
|
||||
else
|
||||
AC_DEFINE(wxUSE_DIALUP_MANAGER)
|
||||
SAMPLES_SUBDIRS="$SAMPLES_SUBDIRS dialup"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$wxUSE_TIPWINDOW" = "yes"; then
|
||||
if test "$wxUSE_PM" = 1; then
|
||||
AC_MSG_WARN([wxTipWindow not yet supported under PM... disabled])
|
||||
|
Reference in New Issue
Block a user