[vlc-commits] Remove the XID provider check.
Rémi Denis-Courmont
git at videolan.org
Sun Feb 20 17:25:39 CET 2011
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sun Feb 20 18:08:21 2011 +0200| [1508b1bf73c20a154a6f40fe99d8636fad67c8b9] | committer: Rémi Denis-Courmont
Remove the XID provider check.
xcb_window can be compiled without libxcb-keysyms nowadays, so this
check was rather useless.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1508b1bf73c20a154a6f40fe99d8636fad67c8b9
---
configure.ac | 12 ------------
1 files changed, 0 insertions(+), 12 deletions(-)
diff --git a/configure.ac b/configure.ac
index 3b3cb6b..b9ce0b7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3176,7 +3176,6 @@ AC_ARG_ENABLE(xvideo,
enable_xvideo="$enable_xcb"
])
-need_xid_provider="no"
have_xcb="no"
AS_IF([test "${enable_xcb}" != "no"], [
dnl libxcb
@@ -3206,7 +3205,6 @@ AS_IF([test "${enable_xcb}" != "no"], [
VLC_ADD_LIBS([globalhotkeys], [${XCB_KEYSYMS_LIBS} ${XCB_LIBS}])
VLC_ADD_CFLAGS([xcb_window], [-DHAVE_XCB_KEYSYMS])
], [
- need_xid_provider="yes"
AC_MSG_WARN([libxcb-keysyms (0.3.4 or later) not found. Hotkeys will work.])
])
])
@@ -3685,7 +3683,6 @@ AS_IF([test "${enable_skins2}" = "yes"], [
VLC_ADD_CPPFLAGS([skins2],[-Imodules/gui/skins2 ${X_CFLAGS} ${XEXT_CFLAGS} ${XPM_CFLAGS} -DX11_SKINS])
VLC_ADD_CXXFLAGS([skins2],[-O2 -fno-rtti])
VLC_ADD_LIBS([skins2],[${X_LIBS} ${X_PRE_LIBS} ${XEXT_LIBS} ${XPM_LIBS} -lX11])
- need_xid_provider="no"
])
VLC_ADD_PLUGIN([skins2])
@@ -3710,7 +3707,6 @@ AS_IF([test "${enable_hildon}" = "yes"], [
VLC_ADD_LIBS([hildon],[${HILDON_LIBS} ${X_LIBS} ${X_PRE_LIBS} -lX11])
VLC_ADD_PLUGIN([hildon])
ALIASES="${ALIASES} mvlc"
- need_xid_provider="no"
], [
AS_IF([test "${enable_hildon}" = "yes"],[
AC_MSG_ERROR([Hildon libraries not found])
@@ -3747,7 +3743,6 @@ AS_IF([test "${enable_qt4}" != "no"], [
], [
AC_MSG_RESULT([yes])
VLC_ADD_LIBS([qt4],[${X_LIBS} ${X_PRE_LIBS} -lX11])
- need_xid_provider="no"
VLC_ADD_CXXFLAGS([qt4],[${X_CFLAGS}])
], [
AC_MSG_RESULT([no])
@@ -3917,13 +3912,6 @@ then
fi
dnl
-dnl Post-interface configuration checks
-dnl
-AS_IF([test "$need_xid_provider" = "yes"], [
- AC_MSG_ERROR([X11 video outputs need a window provider (Qt4, Skins2, Hildon or xcb-utils), but none were found. Please install xcb-keysyms.])
-])
-
-dnl
dnl Visualisation plugin
dnl
AC_ARG_ENABLE(visual,
More information about the vlc-commits
mailing list