diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-28 18:03:36 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-09-28 18:03:36 +0000 |
commit | fcd4467d613594d8a71aaf6050e42f29c9ab465b (patch) | |
tree | 9a3666905d8656db5bcb8630e88470e31757843d /scripts | |
parent | 0cb7959f82c47f9d505d48d6e27641116b8a150d (diff) |
added fftw3 compile section
svn path=/trunk/; revision=6045
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build-libs-for-pd-on-mingw.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/build-libs-for-pd-on-mingw.sh b/scripts/build-libs-for-pd-on-mingw.sh index fabf2657..1a1a92f3 100755 --- a/scripts/build-libs-for-pd-on-mingw.sh +++ b/scripts/build-libs-for-pd-on-mingw.sh @@ -146,3 +146,16 @@ else cd .. fi +# fftw +testfile=/usr/local/lib/libsndfile.a +if [ -e "$testfile" ]; then + echo "$testfile exists, skipping..." +else + echo "Building everything for $testfile" + tar xzf fftw-3.1.*.tar.gz + cd fftw-3.1.* + ./configure --with-our-malloc16 --with-windows-f77-mangling --enable-shared --disable-static --enable-threads --with-combined-threads --enable-portable-binary --enable-float --enable-sse && \ + make && make install + cd .. +fi + |