Commit dc3c1978 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

quartztext: Allow to bypass quartztext build on Darwin.

parent 292ecf24
......@@ -3371,6 +3371,18 @@ then
VLC_ADD_LDFLAGS([vout_ios], [-Wl,-framework,OpenGLES,-framework,QuartzCore,-framework,UIKit,-framework,Foundation])
fi
dnl
dnl QuartzText vout module (iOS/Mac OS)
dnl
AC_ARG_ENABLE(macosx-quartztext,
[ --enable-macosx-quartztext Mac OS X quartz text module (default enabled on Mac OS X)])
if test "x${enable_macosx_quartztext}" != "xno" &&
(test "${SYS}" = "darwin" || test "${enable_macosx_quartztext}" = "yes")
then
VLC_ADD_PLUGIN([quartztext])
VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices])
fi
dnl
dnl Windows DirectX module
dnl
......
......@@ -30,9 +30,6 @@ libvlc_LTLIBRARIES += \
if HAVE_WINCE
libvlc_LTLIBRARIES += libwin32text_plugin.la
endif
if HAVE_DARWIN
libvlc_LTLIBRARIES += libquartztext_plugin.la
endif
if ENABLE_SOUT
libvlc_LTLIBRARIES += \
libvod_rtsp_plugin.la \
......
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