« Return to Thread: [PATCH] Fix switch to using external ffmpeg by default

[PATCH] Fix switch to using external ffmpeg by default

by Matthias Ringwald :: Rate this Message:

Reply to Author | View in Thread

# HG changeset patch
# User Matthias Ringwald <mringwal@...>
# Date 1216162520 -7200
# Node ID 03dae00d9b2f4584010b80dddd7fad79735e622b
# Parent  f1af4bd2b9eb308efa98609185ef7bdd45e3f125
Fix switch to using external ffmpeg by default.
If --with-external-ffmpeg was not specified, the AUTOMAKE variable
HAVE_FFMPEG was not set to true

diff -r f1af4bd2b9eb -r 03dae00d9b2f configure.ac
--- a/configure.ac Sun Jul 13 11:33:13 2008 +0200
+++ b/configure.ac Wed Jul 16 00:55:20 2008 +0200
@@ -354,7 +354,7 @@ xine-lib to use it.
   AC_CHECK_TYPES(int_fast8_t, [], [LIBFFMPEG_CPPFLAGS="$LIBFFMPEG_CPPFLAGS -DEMULATE_FAST_INT"])
   AC_SUBST([LIBFFMPEG_CPPFLAGS])
 fi
-AM_CONDITIONAL(HAVE_FFMPEG, test "x$with_external_ffmpeg" = "xyes")
+AM_CONDITIONAL(HAVE_FFMPEG, test "x$with_external_ffmpeg" != "xno")
 
 
 AC_ARG_ENABLE([ffmpeg_uncommon_codecs],

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
xine-devel mailing list
xine-devel@...
https://lists.sourceforge.net/lists/listinfo/xine-devel

 « Return to Thread: [PATCH] Fix switch to using external ffmpeg by default