diff options
author | Robin KAY <komadori@users.sourceforge.net> | 2004-02-16 23:17:05 +0000 |
---|---|---|
committer | Robin KAY <komadori@users.sourceforge.net> | 2004-02-16 23:17:05 +0000 |
commit | 5da6fe931235a6af70ae86468cc4cac22cd80c67 (patch) | |
tree | 1e0d81856addb9eabb7a40096a081d62077f1bf5 /configure.ac | |
parent | 5807b51c46b31abe0fecedb8f1a783f2bd74a18d (diff) | |
download | xine-lib-5da6fe931235a6af70ae86468cc4cac22cd80c67.tar.gz xine-lib-5da6fe931235a6af70ae86468cc4cac22cd80c67.tar.bz2 |
Disable syncfb plugin on platforms which don't have the kernel endpoint. Tweak pgx64 plugin, mainly cosmetic.
CVS patchset: 6166
CVS date: 2004/02/16 23:17:05
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b4a53e615..eafad2173 100644 --- a/configure.ac +++ b/configure.ac @@ -397,6 +397,19 @@ AC_SUBST(GLUT_LIBS) AC_SUBST(GLU_LIBS) AM_CONDITIONAL(HAVE_OPENGL, [ test x$ac_have_opengl = "xyes" -a x$ac_have_glut="xyes" -o x$ac_have_opengl = "xyes" -a x$ac_have_glu="xyes" ] ) +dnl --------------------------------------------- +dnl Check for platform which supports syncfb +dnl --------------------------------------------- + +case "$host_or_hostalias" in + *linux* ) + have_syncfb="yes" + ;; + *) + have_syncfb="no" + ;; +esac +AM_CONDITIONAL(HAVE_SYNCFB, test x"$have_syncfb" = "xyes") dnl ---------------------------------------------- dnl Check for usable video-for-linux (v4l) support @@ -692,7 +705,6 @@ AC_SUBST(DIRECTX_AUDIO_LIBS) AC_SUBST(DIRECTX_VIDEO_LIBS) AM_CONDITIONAL(HAVE_DIRECTX, test x$have_directx = "xyes" ) - dnl --------------------------------------------- dnl dxr3 / hollywood plus card dnl --------------------------------------------- @@ -2108,7 +2120,10 @@ dnl Video plugins echo " * video driver plugins:" if test x"$no_x" != "xyes"; then echo " - XShm (X11 shared memory)" - echo " - SyncFB (for Matrox G200/G400 cards)" + dnl synfb + if test x$ac_have_syncfb = "xyes"; then + echo " - SyncFB (for Matrox G200/G400 cards)" + fi dnl Xv if test x$ac_have_xv = "xyes"; then if test x$xv_lib="xlibXv.a"; then |