Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:37514 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 72164 invoked from network); 7 May 2008 15:53:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 7 May 2008 15:53:22 -0000 Authentication-Results: pb1.pair.com header.from=php_lists@realplain.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=php_lists@realplain.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain realplain.com from 209.151.69.1 cause and error) X-PHP-List-Original-Sender: php_lists@realplain.com X-Host-Fingerprint: 209.151.69.1 liberty.vosn.net Linux 2.4/2.6 Received: from [209.151.69.1] ([209.151.69.1:57782] helo=liberty.vosn.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 81/9D-20715-3AAC1284 for ; Wed, 07 May 2008 11:28:36 -0400 Received: from 69-29-135-154.dyn.centurytel.net ([69.29.135.154]:61646 helo=pc1) by liberty.vosn.net with smtp (Exim 4.68) (envelope-from ) id 1JtlZI-0001CW-Jd for internals@lists.php.net; Wed, 07 May 2008 09:28:32 -0600 Message-ID: <01a701c8b057$026a1890$0201a8c0@pc1> To: Date: Wed, 7 May 2008 10:28:19 -0500 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_01A4_01C8B02D.11ABFC80" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1914 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1914 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - liberty.vosn.net X-AntiAbuse: Original Domain - lists.php.net X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - realplain.com Subject: Couple Windows build fixes From: php_lists@realplain.com ("Matt Wilmas") ------=_NextPart_000_01A4_01C8B02D.11ABFC80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, One patch for 5.3 and one for HEAD, where they're not synched with the other. 5.3's math changes the other day missed one change to the php_* function (snaps are failing). And HEAD's Win Makefile still contains references to flex.skl after the re2c change, which causes an error for me, though its snaps are building, so maybe I'm the only one? - Matt ------=_NextPart_000_01A4_01C8B02D.11ABFC80 Content-Type: text/plain; name="asinh_5_3.diff.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="asinh_5_3.diff.txt" Index: ext/standard/math.c=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/standard/math.c,v=0A= retrieving revision 1.131.2.2.2.6.2.7=0A= diff -u -r1.131.2.2.2.6.2.7 math.c=0A= --- ext/standard/math.c 6 May 2008 10:55:49 -0000 1.131.2.2.2.6.2.7=0A= +++ ext/standard/math.c 7 May 2008 10:18:10 -0000=0A= @@ -354,7 +354,7 @@=0A= if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "d", &num) =3D=3D = FAILURE) {=0A= return;=0A= }=0A= - RETURN_DOUBLE(asinh(num));=0A= + RETURN_DOUBLE(php_asinh(num));=0A= }=0A= /* }}} */=0A= =0A= ------=_NextPart_000_01A4_01C8B02D.11ABFC80 Content-Type: text/plain; name="Makefile_HEAD.diff.txt" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="Makefile_HEAD.diff.txt" Index: win32/build/Makefile=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/win32/build/Makefile,v=0A= retrieving revision 1.45=0A= diff -u -r1.45 Makefile=0A= --- win32/build/Makefile 26 Mar 2008 14:46:17 -0000 1.45=0A= +++ win32/build/Makefile 7 May 2008 10:30:30 -0000=0A= @@ -50,10 +50,10 @@=0A= $(BISON) --output=3DZend/zend_language_parser.c -v -d -p zend = Zend/zend_language_parser.y=0A= =0A= !if $(RE2C) !=3D ""=0A= -Zend\zend_ini_scanner.c: Zend\flex.skl Zend\zend_ini_scanner.l=0A= +Zend\zend_ini_scanner.c: Zend\zend_ini_scanner.l=0A= $(RE2C) $(RE2C_FLAGS) --case-inverted -cbdFt = Zend/zend_ini_scanner_defs.h -oZend/zend_ini_scanner.c = Zend/zend_ini_scanner.l=0A= =0A= -Zend\zend_language_scanner.c: Zend\flex.skl Zend\zend_language_scanner.l=0A= +Zend\zend_language_scanner.c: Zend\zend_language_scanner.l=0A= $(RE2C) $(RE2C_FLAGS) --case-inverted -cbdFt = Zend/zend_language_scanner_defs.h -oZend/zend_language_scanner.c = Zend/zend_language_scanner.l=0A= !endif=0A= =0A= ------=_NextPart_000_01A4_01C8B02D.11ABFC80--