diff options
author | d s <avxsynth.testing@gmail.com> | 2013-02-26 18:02:20 -0500 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-03-21 04:11:22 +0100 |
commit | b9ad009475f3afb76bd2fbd92936dc4d4cd441ec (patch) | |
tree | 863585b9127c3a9cc25421a7e9971663d70181a3 /configure | |
parent | 47540c8a68c929e46af0cc102df59d45f063f945 (diff) | |
download | ffmpeg-b9ad009475f3afb76bd2fbd92936dc4d4cd441ec.tar.gz |
AviSynth demuxer rewrite.
Dynamically loads the library itself, rather than through VfW.
Supports AvxSynth on Linux and OS X.
Supports the new colorspaces added in AviSynth 2.6 when used
with AviSynth 2.6.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -3917,7 +3917,9 @@ for func in $MATH_FUNCS; do done # these are off by default, so fail if requested and not available -enabled avisynth && require2 vfw32 "windows.h vfw.h" AVIFileInit -lavifil32 +enabled avisynth && { { check_lib2 "windows.h" LoadLibrary; } || + { check_lib2 "dlfcn.h" dlopen -ldl; } || + die "ERROR: LoadLibrary/dlopen not found for avisynth"; } enabled fontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit enabled frei0r && { check_header frei0r.h || die "ERROR: frei0r.h header not found"; } enabled gnutls && require_pkg_config gnutls gnutls/gnutls.h gnutls_global_init |