[PD-cvs] pd/src desire.c,1.1.2.217.2.179,1.1.2.217.2.180

Mathieu Bouchard matju at users.sourceforge.net
Tue Jul 31 20:53:40 CEST 2007


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13880

Modified Files:
      Tag: desiredata
	desire.c 
Log Message:
fixed linkage problem with G++ 3.3


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.217.2.179
retrieving revision 1.1.2.217.2.180
diff -C2 -d -r1.1.2.217.2.179 -r1.1.2.217.2.180
*** desire.c	31 Jul 2007 05:54:13 -0000	1.1.2.217.2.179
--- desire.c	31 Jul 2007 18:53:35 -0000	1.1.2.217.2.180
***************
*** 7469,7483 ****
  /* formerly m_conf.c */
  
! #define S(name) void name##_setup (); name##_setup();
! void conf_init_plus () {
!     S(builtins) S(builtins_dsp) S(desire) S(d_soundfile) S(d_ugen)
! }
  
! #define S(name) void name##_setup (); name##_setup();
! extern "C" {
! void conf_init () {
!     conf_init_plus();
  }
- };
  
  // and just to make some externs happy:
--- 7469,7485 ----
  /* formerly m_conf.c */
  
! void builtins_setup ();
! void builtins_dsp_setup ();
! void desire_setup ();
! void d_soundfile_setup ();
! void d_ugen_setup ();
  
! extern "C" void conf_init () {
!     builtins_setup();
!     builtins_dsp_setup();
!     desire_setup();
!     d_soundfile_setup();
!     d_ugen_setup();
  }
  
  // and just to make some externs happy:





More information about the Pd-cvs mailing list