diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-24 10:47:51 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2001-12-24 10:47:51 +0000 |
commit | 18d104e45ada275f6ea9c1b1c7f962cac1bfebf5 (patch) | |
tree | 138d28cec47cad3b3129877a3b17a760b5c9eb5a /configure.ac | |
parent | 5b3c1cf7a5b7253b500555dd8ff78ff71c927680 (diff) |
changes to make xvideo work again
Original commit message from CVS:
changes to make xvideo work again
I have some compilation errors now though, help required ;(
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index e343b676..581ff0fe 100644 --- a/configure.ac +++ b/configure.ac @@ -362,13 +362,14 @@ GST_CHECK_FEATURE(VGA, [VGA], vgavideosink, [ ]) dnl *** XVideo *** +dnl look for the PIC library first, debian likes it +dnl yeah but redhat doesn't even *have* it and it works fine without +dnl GST_CHECK_LIBHEADER(XVIDEO, Xv_pic, XvQueryExtension, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS, X11/extensions/Xvlib.h) translit(dnm, m, l) AM_CONDITIONAL(USE_XVIDEO, true) GST_CHECK_FEATURE(XVIDEO, [X11 XVideo extensions], xvideosink, [ - dnl look for the PIC library first, debian likes it - GST_CHECK_LIBHEADER(XVIDEO, Xv_pic, XvQueryExtension, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS, X11/extensions/Xvlib.h) - if test "x$HAVE_XVIDEO" = "no"; then - GST_CHECK_LIBHEADER(XVIDEO, Xv, XvQueryExtension, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS, X11/extensions/Xvlib.h) - fi + GST_CHECK_LIBHEADER(XVIDEO, Xv, XvQueryExtension, $X_LIBS $X_PRE_LIBS -lXext -lX11 $X_EXTRA_LIBS, X11/extensions/Xvlib.h) + XVIDEO_LIBS="-lXv -lXext" + AC_SUBST(XVIDEO_LIBS) ]) dnl Next, check for the optional libraries: |