From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=MSGID_FROM_MTA_HEADER, RCVD_DOUBLE_IP_LOOSE autolearn=disabled version=3.1.3 Received: from discorde.inria.fr (discorde.inria.fr [192.93.2.38]) by yquem.inria.fr (Postfix) with ESMTP id F2C1DBC0A for ; Wed, 29 Nov 2006 07:44:47 +0100 (CET) Received: from eyou.net (mail.fltrp.com [218.247.244.5]) by discorde.inria.fr (8.13.6/8.13.6) with SMTP id kAT6igEA029212 for ; Wed, 29 Nov 2006 07:44:46 +0100 X-EYOU-SPAMVALUE: 0 X-EYOU-DEALDRC: Received: (eyou anti_spam gateway 3.0); Wed, 29 Nov 2006 14:39:21 +0800 Message-ID: <364782361.16090@eyou.net> X-EYOUMAIL-SMTPAUTH: yang.shx@fltrp.com Received: from 192.168.15.11 by 129.0.0.2 with SMTP; Wed, 29 Nov 2006 14:39:21 +0800 From: YANG Shouxun Organization: FLTRP To: caml-list@yquem.inria.fr Subject: Re: [Caml-list] [ANN] Cameleon 1.9.17 Date: Wed, 29 Nov 2006 14:46:41 +0800 User-Agent: KMail/1.9.5 References: <20061128141151.79ab54da@tintin.inria.fr> In-Reply-To: <20061128141151.79ab54da@tintin.inria.fr> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200611291446.41637.yang.shx@fltrp.com> X-j-chkmail-Score: MSGID : 456D2C5A.002 on discorde : j-chkmail score : X : 0/20 1 X-Miltered: at discorde with ID 456D2C5A.002 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; shouxun:01 fltrp:01 cameleon:01 maxence:01 guesdon:01 cameleon:01 pcre:01 byte:01 pcre-ocaml:01 config:01 utils:01 utils:01 pcre:01 config:01 printf:01 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)