diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-30 02:35:45 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-04-30 02:35:45 +0100 |
commit | 3c4ad1fd59a3e410aeebf6e81c93ed8980fd7c4d (patch) | |
tree | 8a6ea58b4333f08fc79be8e3767a959799720e82 | |
parent | bdcbdde85d5ae6e8f415442d5c28251a4aad8088 (diff) | |
download | xine-lib-3c4ad1fd59a3e410aeebf6e81c93ed8980fd7c4d.tar.gz xine-lib-3c4ad1fd59a3e410aeebf6e81c93ed8980fd7c4d.tar.bz2 |
Warn when using built-in ffmpeg rather than external ffmpeg.
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 127e23c0d..0beac5ca7 100644 --- a/configure.ac +++ b/configure.ac @@ -360,16 +360,16 @@ if test "x$with_external_ffmpeg" = "xyes"; then dnl style for headers. The new style would be preferred actually... AC_CHECK_HEADERS([ffmpeg/avutil.h]) - AC_MSG_NOTICE([ + AC_MSG_RESULT([using external ffmpeg]) +else + AC_MSG_NOTICE([ ********************************************************************* -xine is configured with external ffmpeg. +xine-lib is configured to use internal ffmpeg. -This requires the same version of ffmpeg what is included in xine and -you should know what you do. If some problems occur, please try to -use internal ffmpeg. +This copy of ffmpeg is old. You are strongly advised to install a +newer version (including development files) and to reconfigure +xine-lib to use it. *********************************************************************]) -else - AC_MSG_RESULT([using included ffmpeg]) LIBFFMPEG_CPPFLAGS="-DHAVE_AV_CONFIG_H -DRUNTIME_CPUDETECT -DXINE_MPEG_ENCODER -D_ISOC9X_SOURCE -DCONFIG_DECODERS" AC_CHECK_TYPES(int_fast8_t, [], [LIBFFMPEG_CPPFLAGS="$LIBFFMPEG_CPPFLAGS -DEMULATE_FAST_INT"]) AC_SUBST([LIBFFMPEG_CPPFLAGS]) |