summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
Diffstat (limited to 'm4')
-rw-r--r--m4/summary.m43
-rw-r--r--m4/video_out.m419
2 files changed, 1 insertions, 21 deletions
diff --git a/m4/summary.m4 b/m4/summary.m4
index a96e11e5a..9661f072b 100644
--- a/m4/summary.m4
+++ b/m4/summary.m4
@@ -179,9 +179,6 @@ AC_DEFUN([XINE_LIB_SUMMARY], [
echo " * video driver plugins:"
if test x"$no_x" != x"yes"; then
echo " - XShm (X11 shared memory)"
- if test x"$have_syncfb" = x"yes"; then
- echo " - SyncFB (for Matrox G200/G400 cards)"
- fi
if test x"$have_xv" = x"yes"; then
if test x"$have_xv_static" = x"yes"; then
echo " - Xv (XVideo *static*)"
diff --git a/m4/video_out.m4 b/m4/video_out.m4
index 043d563e8..df782ff06 100644
--- a/m4/video_out.m4
+++ b/m4/video_out.m4
@@ -2,7 +2,7 @@ dnl -----------------
dnl Video out plugins
dnl -----------------
AC_DEFUN([XINE_VIDEO_OUT_PLUGINS], [
- dnl Setup defaults for the target operating system. For example, syncfb is
+ dnl Setup defaults for the target operating system. For example, linuxfb is
dnl only ever available on Linux, so don't bother checking for it unless
dnl explicitly requested to do so on other operating systems.
dnl Notes:
@@ -11,7 +11,6 @@ AC_DEFUN([XINE_VIDEO_OUT_PLUGINS], [
dnl - dxr3 is Linux only
dnl - Mac OS X video is Mac OS X only
dnl - OpenGL requires Xwindows
- dnl - SyncFB is Linux only, but disabled by default
dnl - Vidix is FreeBSD and Linux only
dnl - XvMC and xxmc depend on Xv
@@ -24,7 +23,6 @@ AC_DEFUN([XINE_VIDEO_OUT_PLUGINS], [
default_enable_linuxfb=disable
default_enable_macosx_video=disable
default_enable_opengl=enable
- default_enable_syncfb=disable
default_enable_vidix=disable
default_enable_xinerama=enable
default_enable_xvmc=enable
@@ -293,21 +291,6 @@ AC_DEFUN([XINE_VIDEO_OUT_PLUGINS], [
AM_CONDITIONAL([ENABLE_SUNFB], [test x"$have_sunfb" = x"yes"])
- dnl syncfb (Linux only)
- AC_ARG_ENABLE([syncfb],
- [AS_HELP_STRING([--enable-syncfb], [enable support for syncfb (Linux only)])],
- [test x"$enableval" != x"no" && enable_syncfb="yes"],
- [test $default_enable_syncfb = disable && enable_syncfb="no"])
- dnl There's no good test for this. If the user says so, then do it
- if test x"$enable_syncfb" != x"no" && test x"$no_x" != x"yes"; then
- have_syncfb=yes
- fi
- if test x"$enable_syncfb" = x"yes" && test x"$have_syncfb" != x"yes"; then
- AC_MSG_ERROR([Linux syncfb support requested, but required X support is disabled])
- fi
- AM_CONDITIONAL([ENABLE_SYNCFB], [test x"$have_syncfb" = x"yes"])
-
-
dnl xcb
AC_ARG_WITH([xcb],
[AS_HELP_STRING([--with-xcb], [Enable support for XCB video out plugins])],