Update of /cvsroot/pure-data/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15139
Modified Files: Tag: devel_0_39 SConstruct Log Message: - osx 10.4 fixes - preprocessor macros (DEBUG, NDEBUG) - removed old-style idle hook (since we have the lockfree idle callbacks - fixed bug in clock_unset - fixed biquad_perf8 stability problem - some scons stuff
Index: SConstruct =================================================================== RCS file: /cvsroot/pure-data/pd/Attic/SConstruct,v retrieving revision 1.1.4.3 retrieving revision 1.1.4.4 diff -C2 -d -r1.1.4.3 -r1.1.4.4 *** SConstruct 12 Jul 2005 16:13:09 -0000 1.1.4.3 --- SConstruct 13 Jul 2005 22:49:38 -0000 1.1.4.4 *************** *** 1,8 **** env = Environment()
! SConsignFile() ! ! env.BuildDir('./bin/','./src/', duplicate = 0) ! ###################################################################### # --- 1,7 ---- env = Environment()
! env.SConsignFile() ! env.CacheDir('./obj') ! ###################################################################### # *************** *** 31,34 **** --- 30,34 ---- pdwatchdog, pdsend, pdreceive, pdgui, pd, pdlib = SConscript('./src/SConscript')
+ extras = SConscript('./extra/SConscript')
###################################################################### *************** *** 36,40 **** # installing stuff
- prefix = env['prefix']
--- 36,39 ---- *************** *** 46,50 **** env.Install(prefix+'/lib/pd/bin', pdwatchdog) env.InstallAs(prefix + '/lib/pd/bin/pd.tk','src/u_main.tk') ! try: env.Install(prefix+'/lib', pdlib) --- 45,51 ---- env.Install(prefix+'/lib/pd/bin', pdwatchdog) env.InstallAs(prefix + '/lib/pd/bin/pd.tk','src/u_main.tk') ! ! for extra in extras: ! env.Install(prefix+'/lib/extra/', extra) try: env.Install(prefix+'/lib', pdlib)