diff options
author | Tim Blechmann <timblech@users.sourceforge.net> | 2004-07-30 08:43:43 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@iem.at> | 2015-10-14 15:11:55 +0200 |
commit | 5a8caf3981072a2184a17bd9a23c4b7b6f07feb7 (patch) | |
tree | 2308585fd0710d8597f58646d583504300cc1972 /sc4pd | |
parent | 7cc309b8c5c5c901489e3b6c4fc95a6f049a58d7 (diff) |
0001's fixes
svn path=/trunk/externals/tb/; revision=1898
Diffstat (limited to 'sc4pd')
-rwxr-xr-x | sc4pd/makefile.pd-darwin | 4 | ||||
-rw-r--r-- | sc4pd/source/support.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc4pd/makefile.pd-darwin b/sc4pd/makefile.pd-darwin index 04a3779..9523425 100755 --- a/sc4pd/makefile.pd-darwin +++ b/sc4pd/makefile.pd-darwin @@ -15,7 +15,7 @@ include ${CONFIG} FLEXTLIB=$(FLEXTPATH)/libflext.a # compiler stuff -INCLUDES=$(PDINC) ./headers/plugin_interface ./headers/common ./headers/server ./headers/app ./headers/lang +INCLUDES=$(PDINC) ./headers/plugin_interface ./headers/common ./headers/server ./headers/app ./headers/lang /usr/include/machine/ FLAGS=-DFLEXT_SYS=2 CFLAGS=${UFLAGS} -dynamic -O2 -Wno-unused -Wno-parentheses -Wno-switch -Wstrict-prototypes -funroll-loops -fmove-all-movables -frerun-loop-opt -fno-rtti -fno-exceptions LIBS=m gcc @@ -26,7 +26,7 @@ FRAMEWORKS=Carbon veclib # the rest can stay untouched # ---------------------------------------------- -NAME=sc4dp +NAME=sc4pd include make-files.txt diff --git a/sc4pd/source/support.cpp b/sc4pd/source/support.cpp index 8d80bbe..5211b71 100644 --- a/sc4pd/source/support.cpp +++ b/sc4pd/source/support.cpp @@ -102,7 +102,7 @@ int32 timeseed() double usec = (time-sec)*1e6; time_t tsec = sec; - suseconds_t tusec =usec; /* not exacty the way, it's calculated + useconds_t tusec =usec; /* not exacty the way, it's calculated in SuperCollider, but it's only the seed */ |