From: KO Myung-Hun Date: Mon, 10 Oct 2011 11:44:13 +0000 (+0900) Subject: Enable dynamicoverlay and disable access_shm on OS/2 X-Git-Tag: 1.2.0-pre1~259 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=36ff5023c9f04d305d58344062b60f306ca3fb15;p=vlc Enable dynamicoverlay and disable access_shm on OS/2 Signed-off-by: RĂ©mi Denis-Courmont --- diff --git a/configure.ac b/configure.ac index ca7351c908..8465109da2 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])