[Mplayer-cvslog] CVS: main configure,1.709,1.710

Alex Beregszaszi alex at mplayerhq.hu
Wed May 21 23:15:50 CEST 2003


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv30137

Modified Files:
	configure 
Log Message:
Native MacOSX audio output by Dan Christiansen <danchr at daimi.au.dk>

Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/configure,v
retrieving revision 1.709
retrieving revision 1.710
diff -u -r1.709 -r1.710
--- configure	21 May 2003 17:51:46 -0000	1.709
+++ configure	21 May 2003 21:15:46 -0000	1.710
@@ -2404,25 +2404,29 @@
     else
 	_macosx=no
 	_def_macosx='#undef MACOSX'
+	_noaomodules="macosx $_noaomodules"
     fi
 fi
 if test "$_macosx" = yes ; then
   cat > $TMPC <<EOF
 #include <Carbon/Carbon.h>
 #include <QuickTime/QuickTime.h>
+#include <CoreAudio/CoreAudio.h>
 int main(void) {
     EnterMovies();
     ExitMovies();
     CFRunLoopRunInMode(kCFRunLoopDefaultMode, 0, false);
 }
 EOF
-  if cc_check -framework Carbon -framework QuickTime ; then 
+  if cc_check -framework Carbon -framework QuickTime -framework CoreAudio; then 
     _macosx=yes
-    _macosx_frameworks="-framework Carbon -framework QuickTime"
+    _macosx_frameworks="-framework Carbon -framework QuickTime -framework CoreAudio"
     _def_macosx='#define MACOSX 1'
+    _aomodules="macosx $_aomodules"
   else
     _macosx=no
     _def_macosx='#undef MACOSX'
+    _noaomodules="macosx $_noaomodules"
   fi
 fi
 echores "$_macosx"



More information about the MPlayer-cvslog mailing list