X-Git-Url: http://git.cinelerra-gg.org/git/?p=goodguy%2Fhistory.git;a=blobdiff_plain;f=cinelerra-5.1%2Fbuild%2Fbld_static.sh;fp=cinelerra-5.1%2Fbuild%2Fbld_static.sh;h=0000000000000000000000000000000000000000;hp=ff97dbd1f1859d4dbb8d6e5831264331c54040e6;hb=7a70932d3e04454177c456d0b42ee2f5318d6ad1;hpb=ded6adaa0ad1bdb311f013c1e94d7c5582b228db diff --git a/cinelerra-5.1/build/bld_static.sh b/cinelerra-5.1/build/bld_static.sh deleted file mode 100755 index ff97dbd1..00000000 --- a/cinelerra-5.1/build/bld_static.sh +++ /dev/null @@ -1,33 +0,0 @@ -#!/bin/bash - -dir="$1" -path="/home" -bld="google_code" -proj="cinelerra" -base="cinelerra-4.6.mod" - -if [ ! -d "$path/$dir/$bld" ]; then - echo "$bld missing in $path/$dir" - exit 1 -fi - -cd "$path/$dir/$bld" -rm -rf "$proj" -git clone "https://code.google.com/p/$proj" -if [ $? -ne 0 ]; then - echo "git clone $bld/$proj/ failed" - exit 1 -fi - -cd "$proj/$base" -if [ "$dir" = "ubuntu" ]; then - echo "CFLAGS += -DPNG_SKIP_SETJMP_CHECK=1" >> global_config -fi - -STATIC_LIBRARIES=1 ./configure >& log -make >> log 2>&1 -make install >> log 2>&1 - -echo "finished: scanning log for ***" -grep -a "\*\*\*" log -