[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2006-11-29 (06:44) |
From: | YANG Shouxun <yang.shx@f...> |
Subject: | Re: [Caml-list] [ANN] Cameleon 1.9.17 |
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)