Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:22891 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 71762 invoked by uid 1010); 19 Apr 2006 22:49:49 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 71739 invoked from network); 19 Apr 2006 22:49:49 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 19 Apr 2006 22:49:49 -0000 X-Host-Fingerprint: 212.55.154.21 relay1.ptmail.sapo.pt Linux 2.4/2.6 Received: from ([212.55.154.21:42505] helo=sapo.pt) by pb1.pair.com (ecelerity 2.0 beta r(6323M)) with SMTP id 8C/A4-19715-6E8B6444 for ; Wed, 19 Apr 2006 18:25:42 -0400 Received: (qmail 4441 invoked by uid 0); 19 Apr 2006 22:25:35 -0000 Received: from unknown (HELO sapo.pt) (10.134.35.205) by relay1 with SMTP; 19 Apr 2006 22:25:35 -0000 Received: (qmail 32219 invoked from network); 19 Apr 2006 22:25:36 -0000 X-AntiVirus: PTMail-AV 0.3.88 X-Virus-Status: Clean (0.00853 seconds) Received: from unknown (HELO pc07653) (nunoplopes@sapo.pt@[81.193.142.166]) (envelope-sender ) by mta10 (qmail-ldap-1.03) with SMTP for ; 19 Apr 2006 22:25:36 -0000 Message-ID: <006101c66400$2d8d2440$0100a8c0@pc07653> To: "PHPdev" Cc: , Date: Wed, 19 Apr 2006 23:25:34 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_005E_01C66408.8F054100" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2869 Subject: building HEAD on windows From: nlopess@php.net ("Nuno Lopes") ------=_NextPart_000_005E_01C66408.8F054100 Content-Type: text/plain; format=flowed; charset="Windows-1252"; reply-type=original Content-Transfer-Encoding: 7bit Hi, I'm having some troubles building latest HEAD on windows. One of the problems is fixed with the patch attatched. The other is more problematic. I think Visual Studio is having some problems with macro expansions. Checkout the errors: ext\standard\file.c(1052) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 ext\standard\file.c(1113) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 ext\standard\file.c(1130) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 ext\standard\file.c(1192) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 ext\standard\file.c(2059) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 ext\standard\file.c(2156) : error C2172: '_to_zstr' : actual parameter is not a pointer : parameter 1 After Dmitry's patch to fix the ZSTR() macros, I was already able to build it, but I don't have luck this time. Anyone with same problems? Nuno ------=_NextPart_000_005E_01C66408.8F054100 Content-Type: text/plain; format=flowed; name="php_unicode_ext.txt"; reply-type=original Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="php_unicode_ext.txt" Index: config.w32=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/php-src/ext/unicode/config.w32,v=0A= retrieving revision 1.7=0A= diff -u -w -r1.7 config.w32=0A= --- config.w32 29 Mar 2006 01:20:43 -0000 1.7=0A= +++ config.w32 19 Apr 2006 22:13:31 -0000=0A= @@ -1,5 +1,5 @@=0A= // $Id: config.w32,v 1.7 2006/03/29 01:20:43 pollita Exp $ // vim:ft=3Djavascript =20 -EXTENSION("unicode", "unicode.c unicode_iterators.c collator.c = locale.c"); +EXTENSION("unicode", "unicode.c unicode_iterators.c collator.c = locale.c", false);=0A= AC_DEFINE('HAVE_UNICODE', 1, 'ICU API extension'); ------=_NextPart_000_005E_01C66408.8F054100--