> I'm trying to compile the simple.scm example from hypergiant statically
> using csm. Is this possible?
>

Hi, again!

Can you try the attached alternative .egg file for
hyperscene? Just invoke

    chicken-install -r hyperscene

and replace the .egg file with the one in this mail.
This should give you a static hyperscene build that
csm (hopefully) finds.


felix
;; hyperscene.egg -*- scheme -*-

((synopsis "Scene graph and spatial partitioning")
 (author "Alex Charlton")
 (maintainer "Adrien (Kooda) Ramos")
 (category graphics)
 (license "BSD")
 (dependencies miscmacros)
 (component-options (csc-options -C "-I./hyperscene/include/"
                                 -C "-I./hyperscene/hypermath/include/"))
 (components (c-object aabb-tree (source "./hyperscene/src/aabb-tree.c"))
             (c-object camera (source "./hyperscene/src/camera.c"))
             (c-object lighting (source "./hyperscene/src/lighting.c"))
             (c-object pools (source "./hyperscene/src/pools.c"))
             (c-object scene (source "./hyperscene/src/scene.c"))
             (c-object vector (source "./hyperscene/src/vector.c"))
             (c-object hypermath (source 
"./hyperscene/hypermath/src/hypermath.c"))
             (extension hyperscene
                        (objects aabb-tree camera lighting pools scene
                                 vector hypermath))))

Reply via email to