I'm pleased to announce the release 1.9.17 of Cameleon.
*** What is Cameleon ?
Cameleon is a set of libraries and tools aiming to become an integrated
development environment for OCaml. The libraries included are used by the
tools but can be used for other projects.
The interface is based on Lablgtk2. A description of each tool and library
is available on the site.
*** What's new ?
A source code editor, called Chamo, was added. It can be fully configured
and extended using OCaml code evaluated at run time (same as lisp for
emacs).
The FAQ about Chamo contains useful information:
http://home.gna.org/cameleon/faq.fr.html#faq:chamo
*** Where is it available ?
From the Cameleon web site:
http://home.gna.org/cameleon/
Cheers,
--
Maxence Guesdon
http://yquem.inria.fr/~guesdon/
http://devel.inria.fr/rocq/
_______________________________________________
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
> On Tuesday 28 November 2006 21:11, Maxence Guesdon wrote:
> > Hello,
> >
> > I'm pleased to announce the release 1.9.17 of Cameleon.
>
> I
>
> ./configure
>
> gives me:
>
> Testing compiling a pcre program to check for UTF-8 support [byte]...yes
> sh: testpcre.x: command not found
> Pcre-OCaml has no UTF-8 support.
> You way have a look at config_check.log for details.
>
> The problem can be fixed like the following:
>
> --- utils/checkocaml.ml~ 2006-11-27 23:46:38.000000000 +0800
> +++ utils/checkocaml.ml 2006-11-29 14:44:56.000000000 +0800
> @@ -947,7 +947,7 @@
> let prog = "assert Pcre.config_utf8;;" in
> let f mode =
> let prog = create_temp_file ~contents: prog ~ext: "ml" () in
> - let out = "testpcre.x" in
> + let out = "./testpcre.x" in
> let mes = Printf.sprintf
> "Testing compiling a pcre program to check for UTF-8 support
> [%s]..." (string_of_mode mode)
This was already fixed in subversion repository. Thanks anyway.
Regards,