aboutsummaryrefslogtreecommitdiff
path: root/externals/build/src/mtx_*.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-16 22:48:22 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2005-11-16 22:48:22 +0000
commit44337cf4e6ed49c291762017d591fc538ab5abcb (patch)
tree7f3db6a20f1108e5ccbb27081b6be1cde9bf74b0 /externals/build/src/mtx_*.c
parent0ec70751da21af3ffbd88de768c5292eb39a3527 (diff)
various tweaks and hacks to get things compiling with MinGW; Some still don't compile, like net*, ogg*, comport, and shell
svn path=/trunk/; revision=3947
Diffstat (limited to 'externals/build/src/mtx_*.c')
-rw-r--r--externals/build/src/mtx_rowrfft.c8
-rw-r--r--externals/build/src/mtx_rowrifft.c8
2 files changed, 16 insertions, 0 deletions
diff --git a/externals/build/src/mtx_rowrfft.c b/externals/build/src/mtx_rowrfft.c
index 40c56d56..6fc2554c 100644
--- a/externals/build/src/mtx_rowrfft.c
+++ b/externals/build/src/mtx_rowrfft.c
@@ -1,3 +1,11 @@
+/*
+ * hack to work around my lack of Windows linking knowledge
+ * <hans@at.or.at>
+ */
+#ifdef WIN32
+#include "../../../pd/src/d_mayer_fft.c"
+#endif
+
#include "../../iem/iemmatrix/src/mtx_matrix.c"
#include "../../iem/iemmatrix/src/mtx_rowrfft.c"
void iemmatrix_sources_setup(void)
diff --git a/externals/build/src/mtx_rowrifft.c b/externals/build/src/mtx_rowrifft.c
index 5d2ffa7a..174333e6 100644
--- a/externals/build/src/mtx_rowrifft.c
+++ b/externals/build/src/mtx_rowrifft.c
@@ -1,3 +1,11 @@
+/*
+ * hack to work around my lack of Windows linking knowledge
+ * <hans@at.or.at>
+ */
+#ifdef WIN32
+#include "../../../pd/src/d_mayer_fft.c"
+#endif
+
#include "../../iem/iemmatrix/src/mtx_matrix.c"
#include "../../iem/iemmatrix/src/mtx_rowrifft.c"
void iemmatrix_sources_setup(void)