From 9372766c20081f354b0763daea15aa5730f923bb Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Thu, 7 May 2009 16:38:24 +0000 Subject: added some minor updates and added pointer to 'sources' tree and related script, that's the preferred way to do this now svn path=/trunk/; revision=11255 --- scripts/build-libs-for-pd-on-mingw.sh | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'scripts') diff --git a/scripts/build-libs-for-pd-on-mingw.sh b/scripts/build-libs-for-pd-on-mingw.sh index 3b978204..621af2a8 100755 --- a/scripts/build-libs-for-pd-on-mingw.sh +++ b/scripts/build-libs-for-pd-on-mingw.sh @@ -1,5 +1,8 @@ #!/bin/sh +# this script is no longer maintained, instead use the 'sources tree and this script: +# https://pure-data.svn.sourceforge.net/svnroot/pure-data/sources/build-libs-on-mingw.sh + # This script builds everything needed to build Pd-extended on MinGW. You # need to download all of the source files listed on # http://puredata.org/docs/developer/win first, put them all into one @@ -10,7 +13,7 @@ # c:\MinGW /usr/local # This ensures that everything will be installed in the right -# place. +# place. # pthreads testfile=/usr/local/bin/pthreadGC2.dll @@ -104,9 +107,11 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf lame-3.9*.tar.gz - cd lame-3.9* - ./configure && make && make install + tar xzf lame-398-2.tar.gz + cd lame-398-2 + ./configure --disable-frontend \ + && make \ + && make install cd .. fi @@ -142,14 +147,15 @@ if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else echo "Building everything for $testfile" - tar xzf libsndfile-*.tar.gz - cd libsndfile-* - ./configure --disable-flac && make && make check && make install + tar xzf libsndfile-1.0.19.tar.gz + cd libsndfile-1.0.19 + ./configure --disable-alsa --enable-sqlite + && make && make check && make install cd .. fi -# fftw -testfile=/usr/local/lib/libsndfile.a +# fftw3 +testfile=/usr/local/lib/libfftw3.a if [ -e "$testfile" ]; then echo "$testfile exists, skipping..." else -- cgit v1.2.1