[Fluxus] fluxus-engine.ss

Dave Griffiths dave at pawfal.org
Sun Mar 23 06:31:33 PDT 2008


On Sun, 2008-03-23 at 10:06 +0000, Dave Griffiths wrote:
> On Sat, 2008-03-22 at 16:03 +0100, b+k wrote:
> > Hi there,
> > 
> > I have tried to install fluxus on my fresh debian64-system (etch/lenny)
> > with plt-372, ode-0.9 and fluxus 0.14rc1. After successful compiling the
> > stuff, fluxus starts with
> > 
> > "fluxus-engine.ss - no such file or directory found".
> > 
> > (I also tried out the cvs-fluxus-0.15-version, and got the same fault.)
> > Can I not use fluxus on a 64bit-system? On my i386 it was running
> > without any faults.
> 
> It's a silly thing I need to look at fixing, thanks for reminding me.

I've fixed this in CVS, but try replacing your fluxus/modules/SConscript
with the attached file. This should also fix the mac build in this
regard.

cheers,

dave
-------------- next part --------------
###############################################################
# Top level SConscript for the fluxus PLT modules
#
# Sets up common stuff, and calls each module SConscript 

import os 
Import("env", "CollectsInstall", "DataInstall", "MZDYN")

# run mzscheme to get (path->string (system-library-subpath))
file = os.popen("mzscheme -em \"(begin (display (path->string (system-library-subpath)))(exit))\"")
archpath = file.read()

BinaryModulesLocation = CollectsInstall + "/compiled/native/"+archpath

SConscript(dirs = ["fluxus-engine", 
                   "fluxus-audio", 
				   "fluxus-osc", 
				   "scheme",
				   "material"], 
				   
		   exports = ["env", "CollectsInstall", "DataInstall", "BinaryModulesLocation", "MZDYN"])
 
env.Install(CollectsInstall, "../docs/helpmap.scm")


More information about the Fluxus mailing list