X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Favformat%2Fconfigure;h=f6175794e3774ebcef2d6dfc11442db03b144883;hb=01fc881c8eeec166ed062f75edcde55dfba81b19;hp=2b373ef2677ab0ff2a0f4d46037e34962b3be342;hpb=9ec066d86a9b790b19c44f4908e3897fef56042b;p=melted diff --git a/src/modules/avformat/configure b/src/modules/avformat/configure index 2b373ef..f617579 100755 --- a/src/modules/avformat/configure +++ b/src/modules/avformat/configure @@ -10,11 +10,12 @@ FFMPEG/avformat options: --avformat-shared=path - Link against a shared installation of ffmpeg (default) --avformat-static=path - Link against a static ffmpeg dev tree --avformat-ldextra=libs - Provide additional libs to link with + --avformat-suffix=suff - Specify a custom suffix for an ffmpeg shared build EOF else - targetos=$(uname -s) + targetos=$(uname -s) case $targetos in Darwin) export LIBSUF=.dylib @@ -26,10 +27,20 @@ else ;; esac + bits=$(uname -m) + case $bits in + x86_64) + export LIBDIR=lib64 + ;; + *) + export LIBDIR=lib + ;; + esac + echo > config.mak export static_ffmpeg= - export shared_ffmpeg=`whereis ffmpeg | cut -f 2 -d' '` + export shared_ffmpeg=`which ffmpeg` export extra_libs= export cvs_ffmpeg= export avformat_suffix= @@ -64,15 +75,15 @@ else ) [ -d "ffmpeg" ] && ( cd ffmpeg ; ./configure --enable-shared --build-suffix="$avformat_suffix" ) #[ ! -f "ffmpeg/ffmpeg.patch" ] && ( cd ffmpeg ; cp ../ffmpeg.patch . ; patch -p0 < ffmpeg.patch ) - echo "CFLAGS+=-I`pwd`/ffmpeg/libavformat -I`pwd`/ffmpeg/libavcodec" >> config.mak + echo "CFLAGS+=-I`pwd`/ffmpeg/libavformat -I`pwd`/ffmpeg/libavcodec -I`pwd`/ffmpeg/libavutil" >> config.mak echo "LOCAL_FFMPEG=1" >> config.mak extra_libs="$extra_libs -lz" elif [ "$static_ffmpeg" != "" ] then if [ -d "$static_ffmpeg" ] then - echo "CFLAGS+=-I$static_ffmpeg/libavformat -I$static_ffmpeg/libavcodec" >> config.mak - echo "LDFLAGS+=-L$static_ffmpeg/libavformat -L$static_ffmpeg/libavcodec" >> config.mak + echo "CFLAGS+=-I$static_ffmpeg/libavformat -I$static_ffmpeg/libavcodec -I$static_ffmpeg/libavutil" >> config.mak + echo "LDFLAGS+=-L$static_ffmpeg/libavformat -L$static_ffmpeg/libavcodec -L$static_ffmpeg/libavutil" >> config.mak [ $targetos = "Darwin" ] && echo "LDFLAGS+=-single_module" >> config.mak else @@ -81,10 +92,10 @@ else echo 0 fi else - if [ -d "$shared_ffmpeg/include/ffmpeg" -a -f "$shared_ffmpeg/lib/libavformat.so" ] + if [ -d "$shared_ffmpeg/include/ffmpeg" -a -f "$shared_ffmpeg/$LIBDIR/libavformat$LIBSUF" ] then echo "CFLAGS+=-I$shared_ffmpeg/include/ffmpeg " >> config.mak - echo "LDFLAGS+=-L$shared_ffmpeg/lib" >> config.mak + echo "LDFLAGS+=-L$shared_ffmpeg/$LIBDIR" >> config.mak else echo "avformat: No build environment found. " echo " Try configuring mlt with --avformat-cvs."