diff options
author | Harm van der Heijden <hrm@users.sourceforge.net> | 2001-12-11 02:26:58 +0000 |
---|---|---|
committer | Harm van der Heijden <hrm@users.sourceforge.net> | 2001-12-11 02:26:58 +0000 |
commit | 1416e359d0bfcb59d2021d3904b50dc55bbfe466 (patch) | |
tree | 70b528bb6b17cfbbcdc1d05bfe3d00813dd9909b /configure.in | |
parent | 92e1c20178c3517c3edb47936f4b532a575331d4 (diff) | |
download | xine-lib-1416e359d0bfcb59d2021d3904b50dc55bbfe466.tar.gz xine-lib-1416e359d0bfcb59d2021d3904b50dc55bbfe466.tar.bz2 |
- major code cleanup in dxr3enc driver. Still one big c file, but now
easy to split into core + fame + rte
- now official support for librte-0.4 (zapping.sf.net); updated configure
scripts, checks for librte added. Possible to compile both librte and libfame
support in at the same time, configuration via .xinerc.
- fixed YUY2 decoding, both for libfame and librte.
Note: unifying dxr3enc (non-mpeg) and dxr3 (mpeg) seems rather easy
right now. I think I'll wait with it for a bit, because perhaps the
dxr3-dvd fixes need major replumbing in the dxr3 vo driver (but I don't
expect that; all mpeg stuff is done in the dxr3 decoder plugin)
CVS patchset: 1220
CVS date: 2001/12/11 02:26:58
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.in b/configure.in index ae6794bdf..8836bf06e 100644 --- a/configure.in +++ b/configure.in @@ -389,8 +389,9 @@ AC_SUBST([LINUX_INCLUDE]) AC_CHECK_DXR3() AM_CONDITIONAL(HAVE_DXR3, test x"$have_dxr3" = "xyes") -AM_CONDITIONAL(HAVE_FAME, test x"$have_fame" = "xyes") - +AM_CONDITIONAL(HAVE_LIBFAME, test x"$have_libfame" = "xyes") +AM_CONDITIONAL(HAVE_LIBRTE, test x"$have_librte" = "xyes") +AM_CONDITIONAL(HAVE_ENCODER, test x"$have_encoder" = "xyes") dnl dnl zlib @@ -863,7 +864,7 @@ if test x$no_aalib != "xyes"; then echo " - aa (Ascii ART)" fi if test x"$have_dxr3" = "xyes"; then - if test x"$have_fame" = "xyes"; then + if test x"$have_encoder" = "xyes"; then echo " - dxr3enc" fi echo " - dxr3" |