head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.46 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.44 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.5.0.42 pkgsrc-2011Q4-base:1.5 pkgsrc-2011Q2:1.5.0.40 pkgsrc-2011Q2-base:1.5 pkgsrc-2009Q4:1.5.0.38 pkgsrc-2009Q4-base:1.5 pkgsrc-2008Q4:1.5.0.36 pkgsrc-2008Q4-base:1.5 pkgsrc-2008Q3:1.5.0.34 pkgsrc-2008Q3-base:1.5 cube-native-xorg:1.5.0.32 cube-native-xorg-base:1.5 pkgsrc-2008Q2:1.5.0.30 pkgsrc-2008Q2-base:1.5 pkgsrc-2008Q1:1.5.0.28 pkgsrc-2008Q1-base:1.5 pkgsrc-2007Q4:1.5.0.26 pkgsrc-2007Q4-base:1.5 pkgsrc-2007Q3:1.5.0.24 pkgsrc-2007Q3-base:1.5 pkgsrc-2007Q2:1.5.0.22 pkgsrc-2007Q2-base:1.5 pkgsrc-2007Q1:1.5.0.20 pkgsrc-2007Q1-base:1.5 pkgsrc-2006Q4:1.5.0.18 pkgsrc-2006Q4-base:1.5 pkgsrc-2006Q3:1.5.0.16 pkgsrc-2006Q3-base:1.5 pkgsrc-2006Q2:1.5.0.14 pkgsrc-2006Q2-base:1.5 pkgsrc-2006Q1:1.5.0.12 pkgsrc-2006Q1-base:1.5 pkgsrc-2005Q4:1.5.0.10 pkgsrc-2005Q4-base:1.5 pkgsrc-2005Q3:1.5.0.8 pkgsrc-2005Q3-base:1.5 pkgsrc-2005Q2:1.5.0.6 pkgsrc-2005Q2-base:1.5 pkgsrc-2005Q1:1.5.0.4 pkgsrc-2005Q1-base:1.5 pkgsrc-2004Q4:1.5.0.2 pkgsrc-2004Q4-base:1.5 pkgsrc-2004Q3:1.4.0.4 pkgsrc-2004Q3-base:1.4 pkgsrc-2004Q2:1.4.0.2 pkgsrc-2004Q2-base:1.4 pkgsrc-2004Q1:1.3.0.6 pkgsrc-2004Q1-base:1.3 pkgsrc-2003Q4:1.3.0.4 pkgsrc-2003Q4-base:1.3 netbsd-1-6-1:1.3.0.2 netbsd-1-6-1-base:1.3 netbsd-1-6:1.2.0.8 netbsd-1-6-RELEASE-base:1.2 pkgviews:1.2.0.4 pkgviews-base:1.2 buildlink2:1.2.0.2 buildlink2-base:1.2 netbsd-1-5-PATCH003:1.2; locks; strict; comment @# @; 1.5 date 2004.11.28.17.09.13; author ben; state dead; branches; next 1.4; 1.4 date 2004.04.11.21.49.10; author ben; state Exp; branches; next 1.3; 1.3 date 2003.01.19.21.31.12; author hubertf; state Exp; branches; next 1.2; 1.2 date 2002.03.23.02.23.01; author wiz; state Exp; branches; next 1.1; 1.1 date 2002.01.21.11.28.16; author wiz; state Exp; branches; next ; desc @@ 1.5 log @Remove csound-bath to make way for csound4. @ text @$NetBSD: patch-ap,v 1.4 2004/04/11 21:49:10 ben Exp $ --- cs.h.orig 2002-12-16 04:28:30.000000000 -0800 +++ cs.h @@@@ -15,6 +15,24 @@@@ extern "C" { #include "version.h" +/* __BIG_ENDIAN__ is used various places in csound + BIG_ENDIAN is used by the sdif code + in NetBSD, (BIG|LITTLE)_ENDIAN is defined by sys/endian.h + included in sys/types included in stdlib.h +*/ +#ifdef __NetBSD__ +#undef BIG_ENDIAN +#undef LITTLE_ENDIAN +#if _BYTE_ORDER == _BIG_ENDIAN +#define __BIG_ENDIAN__ +#define BIG_ENDIAN +#else +#define __LITTLE_ENDIAN__ +#define LITTLE_ENDIAN +#endif /* _BYTE_ORDER */ +#endif /* __NetBSD__ */ + + #define VMSGS 1 #if VMSGS #define VMSG(x) if (O.odebug) x @@@@ -782,11 +800,8 @@@@ typedef struct GLOBALS_ # define POLL_EVENTS() STasks() # define __cdecl #else -#ifdef LINUX - extern int POLL_EVENTS(void); -#else -# define POLL_EVENTS() (1) -#endif +/* #define POLL_EVENTS() csoundYield() */ +#define POLL_EVENTS() (1) # if !defined(__BEOS__) || defined(__MWERKS__) # define __cdecl # endif @ 1.4 log @Make csound-bath build and run in Linux. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Update csound-path to 4.23. No useful list of changes, feel free to look at the ChangeLog. Update submitted by collver1@@attbi.com in PR 19905 @ text @d3 1 a3 1 --- cs.h.orig Mon Dec 16 04:28:30 2002 d5 1 a5 1 @@@@ -15,6 +15,24 @@@@ d30 1 a30 1 @@@@ -782,10 +800,10 @@@@ d37 4 a40 5 +#if !defined(LINUX) || defined(__NetBSD__) # define POLL_EVENTS() (1) +#else + extern int POLL_EVENTS(void); #endif d43 1 @ 1.2 log @Update to 4.18, provided by Ben Collver in pkg/14630. Changes are unknown. Package changes: * the c-preprocessor should now correctly chose whether to build big-endian or little-endian specific code * added support for NetBSD native audio API @ text @d3 1 a3 1 --- cs.h.orig Sat Jan 26 05:29:36 2002 d5 1 a5 1 @@@@ -18,6 +18,24 @@@@ d29 15 a43 1 #define VMSG(x) if (odebug) x @ 1.1 log @Add a patch to (hopefully) fix compilation on alpha. While here, fix patch-ai: we only want to patch one file per patch file. @ text @d3 3 a5 3 --- anal/lpc/makef.orig Sun May 16 20:04:06 1999 +++ anal/lpc/makef @@@@ -6,7 +6,7 @@@@ d7 1 a7 5 OBJS = main.o $T/lpanal.o $T/lptrkfns.o $T/filopen.o $T/sfheader.o \ $T/soundin.o $T/ulaw.o $T/aiff.o $T/wave.o $T/ieee80.o \ - $T/memalloc.o $T/window.o $T/winX11.o $T/winascii.o $T/winEPS.o \ + $T/memalloc.o $T/window.o $T/winascii.o $T/winEPS.o \ $T/aifc.o $T/getstring.o d9 21 a29 1 lpcs: lpanal @