martin
_______________________________________________
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs
Looks interesting -- have you tried compiling it and fixing the SDL
problems?
This is an area where we could do better than CPAN by allowing
non-maintainers to branch inactive projects. (Backing the whole thing
with git instead of tarballs makes branching easy and lightweight -
the challenge then being to organize it, making the branches
searchable, navigable and possible to merge later).
Rich.
--
Richard Jones
Red Hat
Trying, with the help of the beginners' list. It's asking for a
constructor for Sdlvideo.surface, but I'm having trouble understanding
why it needs one - surface is a C-backed type.
> This is an area where we could do better than CPAN by allowing
> non-maintainers to branch inactive projects. �(Backing the whole thing
> with git instead of tarballs makes branching easy and lightweight -
> the challenge then being to organize it, making the branches
> searchable, navigable and possible to merge later).
Yes, I was just thinking the same thing. I'll put something up on
github at the least, if I get it working.
martin
I think it is better to use the git from forge.ocamlcore.org. In
particular, there is the project "newhope":
http://forge.ocamlcore.org/projects/newhope/
This project is exactly the place where you can fix libraries which
upstreams are inactives.
Contact me if you need anything.
Regards,
Sylvain Le Gall
Fixed it, with the help of the beginners' list. It turned out to be a
simple environment issue - the makefile expected sdl to be in the same
directory as the stdlib, whereas godi puts it in pkg-lib instead. The
makefile had an undocumented workaround for this:
# ln -s `ocamlfind query sdl` /tmp/SDL/ocamlsdl
after which everything compiled happily.