Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7856/src
Modified Files: Tag: devel_0_38 SConscript Log Message: updating scons build system
Index: SConscript =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/SConscript,v retrieving revision 1.1.2.2 retrieving revision 1.1.2.3 diff -C2 -d -r1.1.2.2 -r1.1.2.3 *** SConscript 19 Jun 2005 11:10:40 -0000 1.1.2.2 --- SConscript 22 Jun 2005 18:50:39 -0000 1.1.2.3 *************** *** 130,133 **** --- 130,136 ---- Exit(1)
+ if conf.CheckLib('fftw3f'): + defs.append('HAVE_LIBFFTW3F') + ###################################################################### # *************** *** 291,297 **** pass # how to switch on optimizing on msvc? else: ! flags += " -O3"
! if pdenv['optimize'] != None: if ['msvc'] in pdenv['TOOLS']: pass # is there any machine optmizisation on msvc? --- 294,300 ---- pass # how to switch on optimizing on msvc? else: ! flags += " -O3 -fprefetch-loop-arrays"
! if pdenv.has_key('optimize') and pdenv['optimize'] != None: if ['msvc'] in pdenv['TOOLS']: pass # is there any machine optmizisation on msvc?