X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/89be85c244981722e20e8755031f44f0d51a820e..18216ae35292b235ed92e8025cba53f037ac078d:/configure.in?ds=sidebyside diff --git a/configure.in b/configure.in index de2761229a..fb2ed7ec74 100644 --- a/configure.in +++ b/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]) @@ -6058,6 +6062,9 @@ if test "$wxUSE_MAC" = 1 ; then fi if test "$wxUSE_COCOA" = 1 ; then LDFLAGS="$LDFLAGS -framework Cocoa" + if test "$wxUSE_MEDIACTRL" = "yes"; then + LDFLAGS="$LDFLAGS -framework QuickTime" + fi fi dnl FIXME: should this be covered by the conditional above