X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcfg-cv.sh;h=3ae46732cde71d3c6d494329d4a3f7e4d9609c7e;hp=35b1c7c36c4c325842489164ae03b470006eee67;hb=58d99c74e65066486dbebf7e1cb3087e7de1c92b;hpb=3c944af1216990dd2d963a6b0231f94df0af7947 diff --git a/cinelerra-5.1/cfg-cv.sh b/cinelerra-5.1/cfg-cv.sh index 35b1c7c3..3ae46732 100755 --- a/cinelerra-5.1/cfg-cv.sh +++ b/cinelerra-5.1/cfg-cv.sh @@ -1,13 +1,19 @@ #!/bin/bash -x # cd cincv; cfg_cv.sh /path/cin5 +# used git clone "git://git.cinelerra-cv.org/goodguy/cinelerra.git" "cinelerra5" +# ver: git checkout 135eb5f052a2f75e4df6c86511a94ec9586e096d (dec 30, 2016) cin="$1" THIRDPARTY=`pwd`/thirdparty - +unset LIBS LDFLAGS CFLAGS CPPFLAGS CXXFLAGS +export ac_cv_header_xmmintrin_h=no +for f in ./quicktime/Makefile.am ./libmpeg3/Makefile.am; do + sed -e 's/-Wl,--no-undefined//' -i $f +done rm -rf thirdparty; cp -a $cin/thirdparty . for f in configure.ac Makefile.am autogen.sh; do mv $f $f.cv; cp -a $cin/$f .; done mv m4 m4.cv rm -rf ./libzmpeg3 ./db -mkdir libzmpeg3 db db/utils +mkdir -p libzmpeg3 db db/utils mpeg2enc mplexlo ./autogen.sh ./configure --disable-static-build --without-ladspa-build \ @@ -35,21 +41,24 @@ static_incs=`make -C thirdparty -s val-static_incs` for f in configure.ac Makefile.am autogen.sh; do rm -f $f; mv $f.cv $f; done mv m4.cv m4 -export LDFLAGS=`for f in $static_libs; do +LDFLAGS=`for f in $static_libs; do if [ ! -f "$f" ]; then continue; fi; ls $f done | sed -e 's;/[^/]*$;;' | \ sort -u | while read d; do echo -n " -L$d"; done` +export LDFLAGS -export LIBS=-lpthread `for f in $static_libs; do +LIBS=`for f in $static_libs; do if [ ! -f "$f" ]; then continue; fi; ls $f done | sed -e 's;.*/;;' -e 's;lib\(.*\)\.a$;\1;' | \ sort -u | while read a; do echo -n " -l$a"; done` +LIBS+=" -lpthread" +export LIBS export CFLAGS="$static_incs" export CXXFLAGS="$static_incs" @@ -77,8 +86,46 @@ echo LDFLAGS=$LDFLAGS echo LIBS=$LIBS echo CFLAGS=$CFLAGS +# -lmxxxxx dies, feed it a -lm early to prevent misformed parameters +export LIBS="-la52 -ldjbfft -lfaac -lfaad -lHalf -lIex -lIexMath -lIlmThread -lImath -llavfile -llavjpeg -lm -lmjpegutils -lmmxsse -lmp3lame -lmp4ff -lmpeg2encpp -lmpgdecoder -lmplex2 -logg -lvorbis -lvorbisenc -lvorbisfile -lx264 -lyuvfilters -lpthread -ldl" +# po Makefile construction error: skip it +touch po/Makefile.in.in + +# uuid search path is not predictable, fake it +( cd thirdparty/libuuid-1.0.3/; ln -s . uuid ) +# old linker scripts want .libs/.libs path, fake it: +find thirdparty/ -name .libs | while read f ; do ( cd $f; ln -s . .libs ); done + ./configure +echo "Run:" +echo "export ac_cv_header_xmmintrin_h=no" +echo "export THIRDPARTY=\"$THIRDPARTY\"" +exit + +# have to rebuild these by hand +# have to get rid of -Wl,--no-undefined" +# cd plugins/libeffecttv/.libs/; \rm -f libeffecttv.a; ar r libeffecttv.a effecttv.o +# cd quicktime/encore50/.libs/; \rm -f libencore.a; ar r libencore.a *.o +# cd quicktime; vi Makefile; remove -Wl,--no-undefined from:, make +# libquicktimecv_la_LDFLAGS = -version-info 1:0:0 -release 1.6.0 + +# shares do not want thirdparty link data: +( cd libmpeg3 + make clean + make LIBS= \ + LDFLAGS="-L$THIRDPARTY/a52dec-0.7.4/liba52/.libs \ + -L$THIRDPARTY/djbfft-0.76 -ldjbfft" ) +( cd guicast + make clean + make LIBS= LDFLAGS= ) +( cd plugins + for f in */Makefile; do + cp $f $f.sav1; sed -e "/^LIBS\>/d" -e "/^LDFLAGS\>/d" -i $f + done + make clean + make ) + #make -j$jobs >& log #make install DESTDIR=`pwd` >> log 2>&1 #export LD_LIBRARY_PATH=`pwd`/usr/local/lib