[Fluxus] install problem on linux mint15

gabor papp gabor.lists at mndl.hu
Wed Jul 17 04:26:24 PDT 2013


> Hi, ... so i've installed racket 5.3.1, and the fluxus with scons
> ADDONS=0, and everything seems to build correct... but... when i try
> to
> launch fluxus, now i've got :
this is a problem with the current git version. the video module should
not be a required module, because sometimes it cannot be built.
comment out the lines containing "fluxus-video.ss" in 
modules/scheme/fluxus-modules.ss
so the top of the file looks like this:

(require (rename-in "fluxus-engine.ss"
                    (shader-set! shader-list-set!))
         "fluxus-audio.ss"
         "fluxus-osc.ss"
         "fluxus-midi.ss"
         "fluxus-openal.ss"
         ;"fluxus-video.ss"
)

(provide
 (all-from-out "fluxus-engine.ss")
 (all-from-out "fluxus-audio.ss")
 (all-from-out "fluxus-osc.ss")
 (all-from-out "fluxus-midi.ss")
 (all-from-out "fluxus-openal.ss")
 ;(all-from-out "fluxus-video.ss")

)


best,
gabor



More information about the Fluxus mailing list