Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:30605 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 39793 invoked by uid 1010); 8 Jul 2007 03:07:10 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 39777 invoked from network); 8 Jul 2007 03:07:10 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Jul 2007 03:07:10 -0000 Authentication-Results: pb1.pair.com header.from=sleepingkiller@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=sleepingkiller@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.146.182 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: sleepingkiller@gmail.com X-Host-Fingerprint: 209.85.146.182 wa-out-1112.google.com Received: from [209.85.146.182] ([209.85.146.182:58867] helo=wa-out-1112.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B5/74-23391-DD450964 for ; Sat, 07 Jul 2007 23:07:10 -0400 Received: by wa-out-1112.google.com with SMTP id l24so845809waf for ; Sat, 07 Jul 2007 20:07:07 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:mime-version:content-transfer-encoding:message-id:content-type:to:from:subject:date:x-mailer; b=fe6ZxdxPPyqbjFaLSuaUwC6eg7+oOdfwGzLrFh9+4FKlxAO4gZzBqDKGfdsUPkUQ+wi1bGrrY/oybFbtOUJHsqOwknVvj6L0PJ5KLbXS0n39yNUeWWwE5B98hYN8UsQbq8IoPMfG7metvO0QZaQmfdZWBRbT0k8qygS5HdPGsMA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:mime-version:content-transfer-encoding:message-id:content-type:to:from:subject:date:x-mailer; b=a5pbVXQcWZi7qtc2NACbqxyWjVY+EK+cUVc4bvedWPdEpcE5inVPvoErkRLnaWfCOtmCU0Fc8oijZ/IGfbhfxFYenaEWfoBZt+CSYiFzX2iU280E3nT03qpsEaZzSS/2gnlAJRCYrdROnb9rrG+QmzYS1UG6JHZSr4Ffd6xyX6k= Received: by 10.115.23.12 with SMTP id a12mr1937870waj.1183864027278; Sat, 07 Jul 2007 20:07:07 -0700 (PDT) Received: from ?10.10.1.2? ( [71.115.197.25]) by mx.google.com with ESMTP id g25sm18953611wag.2007.07.07.20.07.05 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 07 Jul 2007 20:07:07 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v624) Content-Transfer-Encoding: 7bit Message-ID: <23c458a248ef9192ad7c9cbc1466bcc9@gmail.com> Content-Type: text/plain; charset=US-ASCII; format=flowed To: internals@lists.php.net Date: Sat, 7 Jul 2007 20:07:05 -0700 X-Mailer: Apple Mail (2.624) Subject: php6 make install fails at filestat From: sleepingkiller@gmail.com (SleepingKiller) Hello, The php bug site told me to send bugs to internals mailing list for HEAD compile errors, so I hope I am doing this right. I was trying to compile php6 on my system to test out a few scripts with it. I was able to configure it after I installed the ICU library with this: ./configure --prefix=/usr/local \ --with-mysql=/usr/local/mysql \ --enable-debugger I ran "make clean && make" during the "make" I received this error: /bin/sh /home/builds/tests/php6.0-200707080030/libtool --silent --preserve-dup-deps --mode=compile gcc -Iext/standard/ -I/home/builds/tests/php6.0-200707080030/ext/standard/ -DPHP_ATOM_INC -I/home/builds/tests/php6.0-200707080030/include -I/home/builds/tests/php6.0-200707080030/main -I/home/builds/tests/php6.0-200707080030 -I/usr/local/include -I/usr/local/include/libxml2 -I/home/builds/tests/php6.0-200707080030/pcrelib -I/home/builds/tests/php6.0-200707080030/ext/date/lib -I/usr/local/mysql/include -I/home/builds/tests/php6.0-200707080030/TSRM -I/home/builds/tests/php6.0-200707080030/Zend -no-cpp-precomp -I/usr/include -g -O2 -c /home/builds/tests/php6.0-200707080030/ext/standard/filestat.c -o ext/standard/filestat.lo /home/builds/tests/php6.0-200707080030/ext/standard/filestat.c: In function `php_do_chgrp': /home/builds/tests/php6.0-200707080030/ext/standard/filestat.c:440: error: `_SC_GETGR_R_SIZE_MAX' undeclared (first use in this function) /home/builds/tests/php6.0-200707080030/ext/standard/filestat.c:440: error: (Each undeclared identifier is reported only once /home/builds/tests/php6.0-200707080030/ext/standard/filestat.c:440: error: for each function it appears in.) make: *** [ext/standard/filestat.lo] Error 1 Is this a problem with the snapshot I got or an actual problem with php6?