[PD-cvs] externals/ggee/signal Makefile, 1.1.1.1, 1.2 stream.h, 1.1.1.1, 1.2 streamout~.c, 1.3, 1.4 apply~-help.pd, 1.1, NONE apply~.c, 1.1.1.1, NONE pipewrite~.c, 1.3, NONE rtin~-help.pd, 1.1, NONE rtin~.c, 1.2, NONE sfread~-help.pd, 1.1, NONE sfread~.c, 1.4, NONE

Guenter Geiger ggeiger at users.sourceforge.net
Sun May 22 22:48:02 CEST 2005


Update of /cvsroot/pure-data/externals/ggee/signal
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25973/ggee/signal

Modified Files:
	Makefile stream.h streamout~.c 
Removed Files:
	apply~-help.pd apply~.c pipewrite~.c rtin~-help.pd rtin~.c 
	sfread~-help.pd sfread~.c 
Log Message:
removed obsolete externals, updated for win compilation

Index: streamout~.c
===================================================================
RCS file: /cvsroot/pure-data/externals/ggee/signal/streamout~.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** streamout~.c	5 Mar 2003 21:14:23 -0000	1.3
--- streamout~.c	22 May 2005 20:48:00 -0000	1.4
***************
*** 18,26 ****
  #endif
  
- #ifdef NT
- #pragma warning( disable : 4244 )
- #pragma warning( disable : 4305 )
- #endif
- 
  
  /* Utility functions */
--- 18,21 ----

--- sfread~-help.pd DELETED ---

--- rtin~-help.pd DELETED ---

--- rtin~.c DELETED ---

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/ggee/signal/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Makefile	17 Jun 2002 10:13:56 -0000	1.1.1.1
--- Makefile	22 May 2005 20:48:00 -0000	1.2
***************
*** 1,51 ****
! current: nt
! 
! 
! # TARGETS += stk
! 
! VERSION = \"0.16\"
! 
! .SUFFIXES: .dll .obj
! # ----------------------- NT ----------------------------
! 
! NTOBJECTS = *.obj
! NTDLLS = *.dll
! 
! PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo
! 
! PDNTINCLUDE = /I. /I..\..\pd\src /I..\include
! ProgramFiles = C:\Program Files
! PDNTLDIR = "$(ProgramFiles)\Microsoft Visual Studio\Vc98\lib"
! #PDNTLDIR = "C:\Programme\Msdev\Vc98\lib"
! 
! PDNTLIB = $(PDNTLDIR)\libc.lib \
! 	$(PDNTLDIR)\oldnames.lib \
! 	$(PDNTLDIR)\wsock32.lib \
! 	$(PDNTLDIR)\kernel32.lib \
! 	$(PDNTLDIR)\uuid.lib \
! 	..\..\pd\bin\pd.lib 
! 
! nt: $(NTOBJECTS) 
! 	-link /dll  $(PDNTLIB) sfplay~.obj /export:sfplay_tilde_setup
! 	-link /dll  $(PDNTLIB) atan2~.obj /export:atan2_tilde_setup
! 	-link /dll  $(PDNTLIB) exp~.obj /export:exp_tilde_setup
! 	-link /dll  $(PDNTLIB) log~.obj /export:log_tilde_setup
! 	-link /dll  $(PDNTLIB) mixer~.obj /export:mixer_tilde_setup
! 	-link /dll  $(PDNTLIB) sfwrite~.obj /export:swrite_tilde_setup
! 	-link /dll  $(PDNTLIB) streamin~.obj /export:streamin_tilde_setup
! 	-link /dll  $(PDNTLIB) streamout~.obj /export:streamout_tilde_setup
! 	-link /dll  $(PDNTLIB) moog~.obj /export:moog_tilde_setup
! 
! clean:
! 	del *.obj 
! 	del *.dll
! 
! 
! .c.obj:
! 	-cl $(PDNTCFLAGS) $(PDNTINCLUDE) /c $*.c
! 
! .obj.dll:
! 
! 
! 	
! 
--- 1,24 ----
! # Adapt the PDPATH if your pd is not installed in the standard place
! 
! PDPATH="$(PROGRAMFILES)/pd"
! 
! EXTERNALS = $(shell ls *.c)
! 
! all: $(EXTERNALS:.c=.dll)
! 
! .SUFFIXES: .dll
! 
! DEFINES = -DPD -DNT 
! CFLAGS = -Wall -W -Wshadow -Wstrict-prototypes \
!     -Wno-unused -Wno-parentheses -Wno-switch
! 
! INCLUDE = -I.. -I. -I$(PDPATH)/src
! LIBS = -lwsock32
! 
! %.dll: %.c
! 	$(CC) -mms-bitfields $(CFLAGS) $(DEFINES) $(INCLUDE) -o "$*.o" -c "$*.c"
! 	gcc -shared -o "$*.dll" "$*.o" $(PDPATH)/bin/pd.dll $(LIBS)
! 	rm "$*.o" 
! 
! clean:
! 	-rm *.a *.def *.dll *.o
\ No newline at end of file

--- apply~-help.pd DELETED ---

--- apply~.c DELETED ---

--- pipewrite~.c DELETED ---

Index: stream.h
===================================================================
RCS file: /cvsroot/pure-data/externals/ggee/signal/stream.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** stream.h	17 Jun 2002 10:13:56 -0000	1.1.1.1
--- stream.h	22 May 2005 20:48:00 -0000	1.2
***************
*** 9,14 ****
  #define SF_MP3    30
  
! #define SF_SIZEOF(a) (a == SF_FLOAT ? sizeof(t_float) : \
!                      a == SF_16BIT ? sizeof(short) : 1)
  
  
--- 9,13 ----
  #define SF_MP3    30
  
! #define SF_SIZEOF(a) (a == SF_FLOAT ? sizeof(t_float) : a == SF_16BIT ? sizeof(short) : 1)
  
  

--- sfread~.c DELETED ---





More information about the Pd-cvs mailing list