[vlc-commits] Enable dynamicoverlay and disable access_shm on OS/2

KO Myung-Hun git at videolan.org
Mon Oct 10 18:17:16 CEST 2011


vlc | branch: master | KO Myung-Hun <komh at chollian.net> | Mon Oct 10 20:44:13 2011 +0900| [36ff5023c9f04d305d58344062b60f306ca3fb15] | committer: Rémi Denis-Courmont

Enable dynamicoverlay and disable access_shm on OS/2

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=36ff5023c9f04d305d58344062b60f306ca3fb15
---

 configure.ac |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index ca7351c..8465109 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1164,7 +1164,9 @@ ALIASES="${ALIASES} cvlc rvlc"
 dnl
 dnl Some plugins aren't useful on some platforms
 dnl
-if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
+if test "${SYS}" = "os2"; then
+    VLC_ADD_PLUGIN([dynamicoverlay])
+elif test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
     VLC_ADD_PLUGIN([dynamicoverlay access_shm])
 elif test "${SYS}" != "mingwce"; then
     VLC_ADD_PLUGIN([access_smb dmo globalhotkeys])



More information about the vlc-commits mailing list