[PD-cvs] pd/src SConscript,1.1.4.34,1.1.4.35

Mathieu Bouchard matju at users.sourceforge.net
Fri Oct 28 12:22:48 CEST 2005


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

Modified Files:
      Tag: devel_0_39
	SConscript 
Log Message:
adding plusplus=1 to attempt compile with g++ -xc++ instead


Index: SConscript
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/SConscript,v
retrieving revision 1.1.4.34
retrieving revision 1.1.4.35
diff -C2 -d -r1.1.4.34 -r1.1.4.35
*** SConscript	13 Oct 2005 07:32:41 -0000	1.1.4.34
--- SConscript	28 Oct 2005 10:22:46 -0000	1.1.4.35
***************
*** 27,33 ****
  	BoolOption('desire', 'Build with desire', False),
  	BoolOption('wall', 'Build with a wall of warnings', False),
  	)
  
- 
  #platform-specific options
  
--- 27,33 ----
  	BoolOption('desire', 'Build with desire', False),
  	BoolOption('wall', 'Build with a wall of warnings', False),
+ 	BoolOption('plusplus','Build using C++', False),
  	)
  
  #platform-specific options
  
***************
*** 474,478 ****
  
  if pdenv['wall']:
! 	flags += " -Wall"
  
  if pdenv['debug']:
--- 474,482 ----
  
  if pdenv['wall']:
! 	cflags += " -Wall"
! 
! if pdenv['plusplus']:
! 	cflags += " -xc++"
! 	pdenv['CC'] = "g++"
  
  if pdenv['debug']:





More information about the Pd-cvs mailing list