[PD-cvs] SF.net SVN: pure-data: [9515] sources/build-libs-on-mingw.sh

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Sun Feb 24 23:45:22 CET 2008


Revision: 9515
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9515&view=rev
Author:   eighthave
Date:     2008-02-24 14:45:21 -0800 (Sun, 24 Feb 2008)

Log Message:
-----------
fixed fftw2 and fftw3 builds and added lua-5.1.3

Modified Paths:
--------------
    sources/build-libs-on-mingw.sh

Modified: sources/build-libs-on-mingw.sh
===================================================================
--- sources/build-libs-on-mingw.sh	2008-02-24 22:39:25 UTC (rev 9514)
+++ sources/build-libs-on-mingw.sh	2008-02-24 22:45:21 UTC (rev 9515)
@@ -142,25 +142,38 @@
 fi
 
 # fftw3
-testfile=/usr/local/lib/libsndfile.a
+testfile=/usr/local/lib/libfftw3f.a
 if [ -e "$testfile" ]; then 
 	 echo "$testfile exists, skipping..."
 else
 	 echo "Building everything for $testfile"
 	 cd fftw3
-	 ./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
+	 ./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
 
 #fftw2
-testfile=/usr/local/lib/libsndfile.a
+testfile=/usr/local/lib/libfftw.a
 if [ -e "$testfile" ]; then 
 	 echo "$testfile exists, skipping..."
 else
 	 echo "Building everything for $testfile"
 	 cd fftw2
+	 aclocal
 	 ./configure --enable-float --enable-i386-hacks
 	 make && make install
 	 cd ..
 fi
+
+#lua 5.1
+testfile=/usr/local/lib/liblua.a
+if [ -e "$testfile" ]; then 
+	 echo "$testfile exists, skipping..."
+else
+	 echo "Building everything for $testfile"
+	 cd lua
+	 make mingw
+	 make install INSTALL_TOP=/usr/local
+	 cd ..
+fi


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list