aboutsummaryrefslogtreecommitdiff
path: root/flite
diff options
context:
space:
mode:
authorBryan Jurish <mukau@users.sourceforge.net>2009-01-21 13:39:15 +0000
committerBryan Jurish <mukau@users.sourceforge.net>2009-01-21 13:39:15 +0000
commite9a803f42a15025ff8eed59e4ae4d8a8ab3645e0 (patch)
tree05e707500b73d4c3f564ca841d26470f39756e97 /flite
parent6b820db93d315c0c55db12128bbc9b4426779ea8 (diff)
+ added mooPdUtils.h and some MOO_UNUSED macros
svn path=/trunk/externals/moocow/; revision=10582
Diffstat (limited to 'flite')
-rw-r--r--flite/Makefile.am2
-rw-r--r--flite/Makefile.in2
-rw-r--r--flite/config/.cvsignore1
-rw-r--r--flite/flite.c5
l---------flite/mooPdUtils.h1
5 files changed, 7 insertions, 4 deletions
diff --git a/flite/Makefile.am b/flite/Makefile.am
index 5e8bb7b..1cec8f7 100644
--- a/flite/Makefile.am
+++ b/flite/Makefile.am
@@ -45,7 +45,7 @@ data_DATA = flite-help.pd
#-----------------------------------------------------------------------
# sources
#-----------------------------------------------------------------------
-flite_SOURCES = flite.c
+flite_SOURCES = flite.c mooPdUtils.h
#-----------------------------------------------------------------------
# external compilation : flags
diff --git a/flite/Makefile.in b/flite/Makefile.in
index b0ea121..8c4d25d 100644
--- a/flite/Makefile.in
+++ b/flite/Makefile.in
@@ -221,7 +221,7 @@ data_DATA = flite-help.pd
#-----------------------------------------------------------------------
# sources
#-----------------------------------------------------------------------
-flite_SOURCES = flite.c
+flite_SOURCES = flite.c mooPdUtils.h
AM_CPPFLAGS = $(DEFS) $(IFLAGS) $(DFLAGS)
AM_CFLAGS = $(OFLAGS) $(WFLAGS) $(AFLAGS)
flite_LDFLAGS = $(LFLAGS)
diff --git a/flite/config/.cvsignore b/flite/config/.cvsignore
index 851da47..61ed900 100644
--- a/flite/config/.cvsignore
+++ b/flite/config/.cvsignore
@@ -4,6 +4,7 @@
*.pd_linux
.deps
.libs
+Makefile
autom4te.cache
config.log
config.status
diff --git a/flite/flite.c b/flite/flite.c
index a3bb662..3fbefc1 100644
--- a/flite/flite.c
+++ b/flite/flite.c
@@ -10,6 +10,7 @@
#include <m_pd.h>
+#include "mooPdUtils.h"
/* black magic */
#ifdef NT
@@ -23,7 +24,7 @@
#include <math.h>
#include <flite/flite.h>
-#include "flite/cst_wave.h"
+#include <flite/cst_wave.h>
/*--------------------------------------------------------------------
* DEBUG
@@ -133,7 +134,7 @@ void flite_synth(t_flite *x) {
/*--------------------------------------------------------------------
* flite_text : set text-buffer
*--------------------------------------------------------------------*/
-void flite_text(t_flite *x, t_symbol *s, int argc, t_atom *argv) {
+void flite_text(t_flite *x, MOO_UNUSED t_symbol *s, int argc, t_atom *argv) {
int i, alen, buffered;
t_symbol *asym;
diff --git a/flite/mooPdUtils.h b/flite/mooPdUtils.h
new file mode 120000
index 0000000..677b39d
--- /dev/null
+++ b/flite/mooPdUtils.h
@@ -0,0 +1 @@
+../common/mooPdUtils.h \ No newline at end of file