diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 10:43:05 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-10-31 10:43:05 +0000 |
commit | 5b7b2413e39818f08ba8eaf7c63f808fc62f020b (patch) | |
tree | a72c453fe32f271c19818d85dbd8d5024c2f730c /configure.ac | |
parent | fccd09aca3867417ac4a286e822ddbe2139a2849 (diff) | |
download | xine-lib-5b7b2413e39818f08ba8eaf7c63f808fc62f020b.tar.gz xine-lib-5b7b2413e39818f08ba8eaf7c63f808fc62f020b.tar.bz2 |
dxr3 should compile without libfame and librte, try to fix configure checking
CVS patchset: 3109
CVS date: 2002/10/31 10:43:05
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 68753044b..5c38c5550 100644 --- a/configure.ac +++ b/configure.ac @@ -457,15 +457,17 @@ AM_CONDITIONAL(HAVE_SDL, [test x"$no_sdl" != x"yes"]) dnl --------------------------------------------- dnl dxr3 / hollywood plus card dnl --------------------------------------------- -AC_DEFINE_UNQUOTED(HAVE_LIBRTE,,[Define this if you have librte mpeg encoder installed (zapping.sf.net)]) -AC_DEFINE_UNQUOTED(HAVE_LIBFAME,,[Define this if you have libfame mpeg encoder installed (fame.sf.net)]) AC_CHECK_DXR3() -AM_CONDITIONAL(HAVE_DXR3, test x"$have_dxr3" = "xyes") -AM_CONDITIONAL(HAVE_LIBFAME, test x"$have_libfame" = "xyes") if test x"$have_libfame" = "xyes" ; then + AC_DEFINE_UNQUOTED(HAVE_LIBFAME,1,[Define this if you have libfame mpeg encoder installed (fame.sf.net)]) AM_PATH_LIBFAME(0.8.10, AC_DEFINE(HAVE_NEW_LIBFAME,1,[Define this if you have libfame 0.8.10 or above])) fi +if test x"$have_librte" = "xyes" ; then + AC_DEFINE_UNQUOTED(HAVE_LIBRTE,1,[Define this if you have librte mpeg encoder installed (zapping.sf.net)]) +fi +AM_CONDITIONAL(HAVE_DXR3, test x"$have_dxr3" = "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") |