Commit 85d35a75 authored by Gildas Bazin's avatar Gildas Bazin

* modules/codec/quicktime.c, configure.ac: ported the audio part of the quicktime module to win32.
parent 543f828d
dnl Autoconf settings for vlc dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.38 2003/07/20 22:06:02 hartman Exp $ dnl $Id: configure.ac,v 1.39 2003/07/21 17:48:31 gbazin Exp $
AC_INIT(vlc,0.6.1-test1) AC_INIT(vlc,0.6.1-test1)
...@@ -1695,10 +1695,14 @@ AC_ARG_ENABLE(quicktime, ...@@ -1695,10 +1695,14 @@ AC_ARG_ENABLE(quicktime,
if test "${enable_quicktime}" != "no" && if test "${enable_quicktime}" != "no" &&
(test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes") (test "${SYS}" = "darwin" || test "${enable_quicktime}" = "yes")
then then
if test "${SYS}" = "mingw32"; then
AX_ADD_BUILTINS([quicktime])
else
AC_CHECK_HEADERS(QuickTime/QuickTime.h, AC_CHECK_HEADERS(QuickTime/QuickTime.h,
[ AX_ADD_BUILTINS([quicktime]) [ AX_ADD_BUILTINS([quicktime])
AX_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon]) AX_ADD_LDFLAGS([quicktime],[-framework QuickTime -framework Carbon])
], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ]) ], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
fi
fi fi
dnl dnl
......
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment