[vlc-commits] commit: Configure: do not use XCB on Symbian (Jean-Baptiste Kempf )
git at videolan.org
git at videolan.org
Fri Nov 19 03:02:55 CET 2010
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Nov 18 15:06:02 2010 +0100| [260cae1d37eb087684542c4c532bd731c225f8dd] | committer: Jean-Baptiste Kempf
Configure: do not use XCB on Symbian
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=260cae1d37eb087684542c4c532bd731c225f8dd
---
configure.ac | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac
index a352b8f..81d828f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -376,6 +376,9 @@ case "${host_os}" in
hpux*)
SYS=hpux
;;
+ symbian*)
+ SYS=symbian
+ ;;
*)
SYS="${host_os}"
;;
@@ -3152,7 +3155,7 @@ dnl X C Bindings modules
dnl
AC_ARG_ENABLE(xcb,
[ --enable-xcb X11 support with XCB (default enabled)],, [
- AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin"], [
+ AS_IF([test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce" -a "${SYS}" != "darwin" -a "${SYS}" != "symbian"], [
enable_xcb="yes"
], [
enable_xcb="no"
More information about the vlc-commits
mailing list