From cfacf11f47ff22253b6814aa9c919d37c74bd6f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Sun, 23 Oct 2005 19:54:59 +0000 Subject: w32 doesn't like zero_perf8 sincie it is not exported by pd svn path=/trunk/externals/zexy/; revision=3759 --- src/dirac~.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/dirac~.c') diff --git a/src/dirac~.c b/src/dirac~.c index ddd3397..08b1646 100644 --- a/src/dirac~.c +++ b/src/dirac~.c @@ -83,7 +83,17 @@ static t_int *dirac_perf8(t_int *w) t_int do_it = x->do_it; +#ifndef __WIN32__ + /* LATER: investigate the occurence of zero_perf8() */ + /* it seems, like pd has the symbol zero_perf8(), + * but it is not exported by m_pd.h: + * so linux can use it, but w32 not + * have to tell miller about that + */ zero_perf8(w+1); +#else + zero_perform(w+1); +#endif if (do_it >= n) x->do_it -= n; -- cgit v1.2.1