diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-26 05:17:14 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-26 05:17:14 +0000 |
commit | f75c28329fc8716c3d38f8b6b362b064f2cd1b35 (patch) | |
tree | fd663ffdfbfd7382f097aa228e2b0664aa632ccb | |
parent | 948a2213a86768f0f1184496a31a7f08058b8e4f (diff) |
updated source versions as well as the howto
svn path=/trunk/; revision=6029
-rwxr-xr-x | scripts/build-libs-for-pd-on-mingw.sh | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/build-libs-for-pd-on-mingw.sh b/scripts/build-libs-for-pd-on-mingw.sh index 8f9812c7..fabf2657 100755 --- a/scripts/build-libs-for-pd-on-mingw.sh +++ b/scripts/build-libs-for-pd-on-mingw.sh @@ -32,8 +32,8 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf tcl8.4.11-src.tar.gz - cd tcl8.4.11/win + tar xzf tcl8.4.13-src.tar.gz + cd tcl8.4.13/win ./configure && make CYGPATH=echo && make install cd ../.. fi @@ -44,8 +44,8 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf tk8.4.11-src.tar.gz - cd tk8.4.11/win + tar xzf tk8.4.13-src.tar.gz + cd tk8.4.13/win ./configure && make CYGPATH=echo && make install cd ../.. fi @@ -102,8 +102,8 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf lame-3.96.1.tar.gz - cd lame-3.96.1 + tar xzf lame-3.9*.tar.gz + cd lame-3.9* ./configure && make && make install cd .. fi @@ -126,7 +126,7 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf flac-1.1.2.tar.gz && cd flac-1.1.2 + tar xzf flac-1.1.*.tar.gz && cd flac-1.1.* ./configure && make && make install || echo -e "\n\n$testfile failed!!\n\n" # the compilation bombs, but builds most of what we need, so install anyway make -k install |