From: RĂ©mi Denis-Courmont Date: Wed, 3 Feb 2010 20:31:05 +0000 (+0200) Subject: Hard-code ntservice, motion and signals interface as appropriate X-Git-Tag: 1.1.0-ff~471 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;ds=sidebyside;h=86c8774a0056f5709ac950221a222e4ddfa6fc6b;p=vlc Hard-code ntservice, motion and signals interface as appropriate --- diff --git a/configure.ac b/configure.ac index d4cf651405..e502fcce1b 100644 --- a/configure.ac +++ b/configure.ac @@ -1167,11 +1167,8 @@ dnl dnl Some plugins aren't useful on some platforms dnl if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then - VLC_ADD_PLUGIN([motion]) VLC_ADD_PLUGIN([dynamicoverlay]) - VLC_ADD_PLUGIN([signals]) elif test "${SYS}" != "mingwce"; then - VLC_ADD_PLUGIN([ntservice]) VLC_ADD_PLUGIN([access_smb]) VLC_ADD_PLUGIN([dmo]) VLC_ADD_PLUGIN([msn]) diff --git a/modules/control/Modules.am b/modules/control/Modules.am index 16a3933e40..42463c55ac 100644 --- a/modules/control/Modules.am +++ b/modules/control/Modules.am @@ -22,3 +22,13 @@ libvlc_LTLIBRARIES += \ liboldrc_plugin.la \ libgestures_plugin.la \ libhotkeys_plugin.la +if !HAVE_WIN32 +libvlc_LTLIBRARIES += \ + libsignals_plugin.la \ + libmotion_plugin.la +else +if !HAVE_WINCE +libvlc_LTLIBRARIES += \ + libntservice_plugin.la +endif +endif