From 82c1d75f148f0617aac3dd4fdbd9e036ff643181 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Thu, 28 Jun 2007 02:16:19 +0000 Subject: [PATCH] wxMac bitmap now requires QuickTime git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- configure | 6 ++---- configure.in | 6 ++---- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/configure b/configure index 4d08dd0fc0..185d6f975b 100755 --- a/configure +++ b/configure @@ -45809,14 +45809,12 @@ fi if test "$wxUSE_MAC" = 1 ; then if test "$wxUSE_SOUND" = "yes" || test "$wxUSE_MEDIACTRL" = "yes"; then - if test "$USE_DARWIN" = 1; then - LDFLAGS="$LDFLAGS -framework QuickTime" - else + if test "$USE_DARWIN" != 1; then LDFLAGS="$LDFLAGS -lQuickTimeLib" fi fi if test "$USE_DARWIN" = 1; then - LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System" + LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System -framework QuickTime" else LDFLAGS="$LDFLAGS -lCarbonLib" fi diff --git a/configure.in b/configure.in index 38dc948eed..a59dabe3c7 100644 --- a/configure.in +++ b/configure.in @@ -7545,14 +7545,12 @@ dnl all additional libraries (except wxWidgets itself) we link with if test "$wxUSE_MAC" = 1 ; then if test "$wxUSE_SOUND" = "yes" || test "$wxUSE_MEDIACTRL" = "yes"; then - if test "$USE_DARWIN" = 1; then - LDFLAGS="$LDFLAGS -framework QuickTime" - else + if test "$USE_DARWIN" != 1; then LDFLAGS="$LDFLAGS -lQuickTimeLib" fi fi if test "$USE_DARWIN" = 1; then - LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System" + LDFLAGS="$LDFLAGS -framework IOKit -framework Carbon -framework Cocoa -framework System -framework QuickTime" else LDFLAGS="$LDFLAGS -lCarbonLib" fi