[PD-cvs] externals/postlude/dssi RELEASE,1.1,1.2 makefile,1.1,1.2

Jamie Bullock postlude at users.sourceforge.net
Sat Mar 11 21:32:53 CET 2006


Update of /cvsroot/pure-data/externals/postlude/dssi
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3190

Modified Files:
	RELEASE makefile 
Log Message:
Added jutils for improved search and load facilities


Index: RELEASE
===================================================================
RCS file: /cvsroot/pure-data/externals/postlude/dssi/RELEASE,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** RELEASE	22 Feb 2006 12:34:50 -0000	1.1
--- RELEASE	11 Mar 2006 20:32:51 -0000	1.2
***************
*** 1,2 ****
--- 1,7 ----
+ 0.89
+ 
+ -Added support for LADSPA plugins mostly using code from plugin~
+ -Reorganised inlet/outlet structure
+ 
  0.83
  

Index: makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/postlude/dssi/makefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** makefile	2 Feb 2006 20:40:46 -0000	1.1
--- makefile	11 Mar 2006 20:32:51 -0000	1.2
***************
*** 15,19 ****
  .SUFFIXES: .pd_linux
  
! LINUXCFLAGS = -DPD -O2 -fPIC -funroll-loops -fomit-frame-pointer \
      -Wall -W -Wshadow -Wstrict-prototypes -Werror \
      -Wno-unused -Wno-parentheses -Wno-switch
--- 15,24 ----
  .SUFFIXES: .pd_linux
  
! #LINUXCFLAGS = -DPD -O3 -fPIC -funroll-loops -fomit-frame-pointer \
!     -Wall -W -Wshadow -Wstrict-prototypes -Werror \
!     -Wno-unused -Wno-parentheses -Wno-switch
! 
! # Debug
! LINUXCFLAGS = -ggdb -g -DPD -O0 -fPIC -funroll-loops -fomit-frame-pointer \
      -Wall -W -Wshadow -Wstrict-prototypes -Werror \
      -Wno-unused -Wno-parentheses -Wno-switch
***************
*** 22,28 ****
  
  .c.pd_linux:
! 	$(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -c $*.c
! 	ld -export_dynamic  -shared -o $(NAME).pd_linux $(NAME).o -lc -lm -llo
! 	strip --strip-unneeded $(NAME).pd_linux
  	rm -f *.o
  
--- 27,35 ----
  
  .c.pd_linux:
! 	$(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -c src/jsearch.c
! 	$(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -c src/jload.c
! 	$(CC) $(LINUXCFLAGS) $(LINUXINCLUDE) -c src/dssi~.c
! 	ld -export_dynamic  -shared -o $(NAME).pd_linux dssi~.o jload.o jsearch.o -lc -lm -llo
! #	strip --strip-unneeded $(NAME).pd_linux
  	rm -f *.o
  





More information about the Pd-cvs mailing list