diff -r -C 2 fluxus-0.15.20080525cvs/SConstruct fluxus-0.15.20080525cvs.patched/SConstruct *** fluxus-0.15.20080525cvs/SConstruct 2008-05-25 10:50:58.000000000 +0200 --- fluxus-0.15.20080525cvs.patched/SConstruct 2008-05-25 11:02:39.000000000 +0200 *************** *** 24,32 **** Prefix = ARGUMENTS.get('Prefix','/usr/local') PLTPrefix = ARGUMENTS.get('PLTPrefix','/usr/local') ! PLTInclude = PLTPrefix + "/include/plt" ! PLTLib = PLTPrefix + "/lib/plt" ! DataInstall = DESTDIR + Prefix + "/share/fluxus-"+FluxusVersion BinInstall = DESTDIR + Prefix + "/bin" CollectsLocation = PLTPrefix + "/lib/plt/collects/" CollectsInstall = DESTDIR + CollectsLocation + "fluxus-"+FluxusVersion --- 24,34 ---- Prefix = ARGUMENTS.get('Prefix','/usr/local') PLTPrefix = ARGUMENTS.get('PLTPrefix','/usr/local') ! PLTInclude = ARGUMENTS.get('PLTInclude', PLTPrefix + "/include/plt") ! PLTLib = ARGUMENTS.get('PLTLib', PLTPrefix + "/lib/plt") BinInstall = DESTDIR + Prefix + "/bin" + DataLocation = Prefix + "/share/fluxus-"+FluxusVersion + DataInstall = DESTDIR + DataLocation + CollectsLocation = PLTPrefix + "/lib/plt/collects/" CollectsInstall = DESTDIR + CollectsLocation + "fluxus-"+FluxusVersion *************** *** 54,58 **** env.Append(CCFLAGS=' -DFLUXUS_MINOR_VERSION='+MinorVersion) env.Append(CCFLAGS=" -DCOLLECTS_LOCATION="+"\"\\\""+CollectsLocation+"\"\\\"") ! env.Append(CCFLAGS=" -DDATA_LOCATION="+"\"\\\""+DataInstall+"\"\\\"") # multitexturing causes crashes on some cards, default it to off, and --- 56,60 ---- env.Append(CCFLAGS=' -DFLUXUS_MINOR_VERSION='+MinorVersion) env.Append(CCFLAGS=" -DCOLLECTS_LOCATION="+"\"\\\""+CollectsLocation+"\"\\\"") ! env.Append(CCFLAGS=" -DDATA_LOCATION="+"\"\\\""+DataLocation+"\"\\\"") # multitexturing causes crashes on some cards, default it to off, and