From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11768 invoked from network); 21 Feb 2005 10:56:38 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 21 Feb 2005 10:56:38 -0000 Received: (qmail 55486 invoked from network); 21 Feb 2005 10:56:32 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 21 Feb 2005 10:56:32 -0000 Received: (qmail 6113 invoked by alias); 21 Feb 2005 10:56:26 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 20833 Received: (qmail 6098 invoked from network); 21 Feb 2005 10:56:25 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 21 Feb 2005 10:56:25 -0000 Received: (qmail 55135 invoked from network); 21 Feb 2005 10:56:25 -0000 Received: from mailhost1.csr.com (HELO MAILSWEEPER01.csr.com) (81.105.217.43) by a.mx.sunsite.dk with SMTP; 21 Feb 2005 10:56:21 -0000 Received: from exchange03.csr.com (unverified [10.100.137.60]) by MAILSWEEPER01.csr.com (Content Technologies SMTPRS 4.3.12) with ESMTP id for ; Mon, 21 Feb 2005 10:54:51 +0000 Received: from news01.csr.com ([10.103.143.38]) by exchange03.csr.com with Microsoft SMTPSVC(5.0.2195.6713); Mon, 21 Feb 2005 10:57:10 +0000 Received: from news01.csr.com (localhost.localdomain [127.0.0.1]) by news01.csr.com (8.13.1/8.12.11) with ESMTP id j1LAuO2n006166 for ; Mon, 21 Feb 2005 10:56:24 GMT Received: from csr.com (pws@localhost) by news01.csr.com (8.13.1/8.13.1/Submit) with ESMTP id j1LAuOJH006163 for ; Mon, 21 Feb 2005 10:56:24 GMT Message-Id: <200502211056.j1LAuOJH006163@news01.csr.com> X-Authentication-Warning: news01.csr.com: pws owned process doing -bs To: zsh-workers@sunsite.dk Subject: Re: Latest CVS + ZLE_UNICODE_SUPPORT on RHEL3 In-reply-to: <1050218220111.ZM20883@candle.brasslantern.com> References: <1050218220111.ZM20883@candle.brasslantern.com> Date: Mon, 21 Feb 2005 10:56:23 +0000 From: Peter Stephenson X-OriginalArrivalTime: 21 Feb 2005 10:57:10.0279 (UTC) FILETIME=[177AD970:01C51804] X-Spam-Checker-Version: SpamAssassin 3.0.2 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, score=-2.5 required=6.0 tests=AWL,BAYES_00 autolearn=ham version=3.0.2 X-Spam-Hits: -2.5 Bart Schaefer wrote: > I tried defining ZLE_UNICODE_SUPPORT and building on RHEL3 (really CentOS, > but that shouldn't matter) Generally speaking, I'm not that suprised, since there are large numbers of odds and ends still to clear up (I haven't tried turning it on yet). > and the build died on a syntax error in zle.h > (apparently the "int_t" typedef does not exist?). That should have been wint_t. That's guaranteed to hold either a wchar_t or a WEOF. Clint and I have added various type and functions like this without there being any tests in configure: this is one reason we're currently relying on the compiler offering support. If we want to relax that assumption later, we'll probably have to work out what to do if wchar_t is defined and wint_t isn't, etc. I suppose the answer in this case is probably just stick with wchar_t. But that's all Zukunftsmusik. Index: Src/Zle/zle.h =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Zle/zle.h,v retrieving revision 1.7 diff -u -r1.7 zle.h --- Src/Zle/zle.h 18 Feb 2005 13:57:28 -0000 1.7 +++ Src/Zle/zle.h 21 Feb 2005 10:49:02 -0000 @@ -30,7 +30,7 @@ #ifdef ZLE_UNICODE_SUPPORT typedef wchar_t ZLE_CHAR_T; typedef wchar_t *ZLE_STRING_T; -typedef int_t ZLE_INT_T; +typedef wint_t ZLE_INT_T; #define ZLE_CHAR_SIZE sizeof(wchar_t) /* -- Peter Stephenson Software Engineer CSR PLC, Churchill House, Cambridge Business Park, Cowley Road Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070 ********************************************************************** This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error please notify the system manager. **********************************************************************