Commit 59f07ca1 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Always build win32text resp quartztext on Win32 resp Darwin

parent 6b226370
...@@ -1177,11 +1177,8 @@ elif test "${SYS}" != "mingwce"; then ...@@ -1177,11 +1177,8 @@ elif test "${SYS}" != "mingwce"; then
VLC_ADD_PLUGIN([msn]) VLC_ADD_PLUGIN([msn])
VLC_ADD_LIBS([dmo],[-lole32 -luuid]) VLC_ADD_LIBS([dmo],[-lole32 -luuid])
VLC_ADD_PLUGIN([globalhotkeys]) VLC_ADD_PLUGIN([globalhotkeys])
else
VLC_ADD_PLUGIN([win32text])
fi fi
if test "${SYS}" = "darwin"; then if test "${SYS}" = "darwin"; then
VLC_ADD_PLUGIN([quartztext])
VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices]) VLC_ADD_LDFLAGS([quartztext],[-Wl,-framework,ApplicationServices])
fi fi
......
...@@ -26,6 +26,12 @@ libvlc_LTLIBRARIES += \ ...@@ -26,6 +26,12 @@ libvlc_LTLIBRARIES += \
libaudioscrobbler_plugin.la \ libaudioscrobbler_plugin.la \
liblogger_plugin.la liblogger_plugin.la
if HAVE_WIN32
libvlc_LTLIBRARIES += libwin32text_plugin.la
endif
if HAVE_DARWIN
libvlc_LTLIBRARIES += libquartztext_plugin.la
endif
if ENABLE_SOUT if ENABLE_SOUT
libvlc_LTLIBRARIES += \ libvlc_LTLIBRARIES += \
libvod_rtsp_plugin.la \ 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