[PD-cvs] pd/src s_main.c,1.7.4.17.2.22.2.33,1.7.4.17.2.22.2.34

Mathieu Bouchard matju at users.sourceforge.net
Tue Aug 7 09:29:41 CEST 2007


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

Modified Files:
      Tag: desiredata
	s_main.c 
Log Message:
change version number


Index: s_main.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/s_main.c,v
retrieving revision 1.7.4.17.2.22.2.33
retrieving revision 1.7.4.17.2.22.2.34
diff -C2 -d -r1.7.4.17.2.22.2.33 -r1.7.4.17.2.22.2.34
*** s_main.c	4 Aug 2007 03:50:49 -0000	1.7.4.17.2.22.2.33
--- s_main.c	7 Aug 2007 07:29:39 -0000	1.7.4.17.2.22.2.34
***************
*** 48,52 ****
  #endif /* THREDED_SF */
  
! char pd_version[] = "DesireData 2007.07.31";
  char pd_compiletime[] = __TIME__;
  char pd_compiledate[] = __DATE__;
--- 48,52 ----
  #endif /* THREDED_SF */
  
! char pd_version[] = "DesireData 2007.08.05";
  char pd_compiletime[] = __TIME__;
  char pd_compiledate[] = __DATE__;
***************
*** 117,121 ****
  /* this is called from main() in s_entry.c */
  extern "C" int sys_main(int argc, char **argv) {
!     int noprefs = 0, i;
      class_table = new t_hash<t_symbol*,t_class*>(127);
      /* jsarlo { */
--- 117,121 ----
  /* this is called from main() in s_entry.c */
  extern "C" int sys_main(int argc, char **argv) {
!     int noprefs = 0;
      class_table = new t_hash<t_symbol*,t_class*>(127);
      /* jsarlo { */
***************
*** 126,133 ****
      fprintf(stderr, "Pd: COMPILED FOR DEBUGGING\n");
  #endif
!     pd_init();                                  /* start the message system */
!     sys_findprogdir(argv[0]);                   /* set sys_progname, guipath */
      /* tb: command line flag to defeat preset loading */
!     for (i = 0; i != argc; ++i) if (!strcmp(argv[i],"-noprefs") || !strcmp(argv[i],"-rcfile")) noprefs = 1;
      if (!noprefs) sys_rcfile(); /* parse the startup file */
      /* initalize idle callbacks before starting the gui */
--- 126,133 ----
      fprintf(stderr, "Pd: COMPILED FOR DEBUGGING\n");
  #endif
!     pd_init(); /* start the message system */
!     sys_findprogdir(argv[0]); /* set sys_progname, guipath */
      /* tb: command line flag to defeat preset loading */
!     for (int i=0; i<argc; i++) if (!strcmp(argv[i],"-noprefs") || !strcmp(argv[i],"-rcfile")) noprefs = 1;
      if (!noprefs) sys_rcfile(); /* parse the startup file */
      /* initalize idle callbacks before starting the gui */





More information about the Pd-cvs mailing list