Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:17901 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 76423 invoked by uid 1010); 12 Aug 2005 18:51:49 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 76408 invoked from network); 12 Aug 2005 18:51:49 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 12 Aug 2005 18:51:49 -0000 X-Host-Fingerprint: 212.55.154.24 relay4.ptmail.sapo.pt Linux 2.4/2.6 Received: from ([212.55.154.24:60140] helo=sapo.pt) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id B3/DB-33075-4CFECF24 for ; Fri, 12 Aug 2005 14:51:48 -0400 Received: (qmail 13173 invoked from network); 12 Aug 2005 18:51:45 -0000 Received: from unknown (HELO sapo.pt) (10.134.35.206) by relay4 with SMTP; 12 Aug 2005 18:51:45 -0000 Received: (qmail 6717 invoked from network); 12 Aug 2005 18:51:46 -0000 X-AntiVirus: PTMail-AV 0.3-0.86.2 Received: from unknown (HELO pc07653) (nunoplopes@sapo.pt@[81.193.157.27]) (envelope-sender ) by mta11 (qmail-ldap-1.03) with SMTP for ; 12 Aug 2005 18:51:46 -0000 Message-ID: <013101c59f6e$e0ab7880$0100a8c0@pc07653> To: "PHP Developers Mailing List" , "Andrei Zmievski" References: Date: Fri, 12 Aug 2005 19:51:40 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_012E_01C59F77.41A823B0" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2670 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2900.2670 Subject: Re: [PHP-DEV] How to get started with Unicode From: nlopess@php.net ("Nuno Lopes") ------=_NextPart_000_012E_01C59F77.41A823B0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit Attached is a patch to fix the build with zend mm disabled. (just a little typo) Nuno ------=_NextPart_000_012E_01C59F77.41A823B0 Content-Type: text/plain; format=flowed; name="zend_alloc_h.txt"; reply-type=response Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="zend_alloc_h.txt" Index: Zend/zend_alloc.h=0A= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A= RCS file: /repository/ZendEngine2/zend_alloc.h,v=0A= retrieving revision 1.66=0A= diff -u -r1.66 zend_alloc.h=0A= --- Zend/zend_alloc.h 12 Aug 2005 17:29:21 -0000 1.66=0A= +++ Zend/zend_alloc.h 12 Aug 2005 18:50:33 -0000=0A= @@ -154,7 +154,7 @@=0A= #define eumalloc(size) (UChar*)malloc(UBYTES(size))=0A= #define eurealloc(ptr, size) (UChar*)erealloc((ptr), UBYTES(size))=0A= #define eustrndup(s, length) zend_ustrndup((s), (length))=0A= -#define eustrdup(s) zend_ustnrdup((s), u_strlen(s))=0A= +#define eustrdup(s) zend_ustrndup((s), u_strlen(s))=0A= =0A= /* Relay wrapper macros */=0A= #define emalloc_rel(size) malloc(size)=0A= ------=_NextPart_000_012E_01C59F77.41A823B0--