Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:7720 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 75917 invoked by uid 1010); 10 Feb 2004 23:24:13 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 75787 invoked from network); 10 Feb 2004 23:24:12 -0000 Received: from unknown (HELO smtp2.pp.htv.fi) (213.243.153.14) by pb1.pair.com with SMTP; 10 Feb 2004 23:24:12 -0000 Received: from localhost.localdomain (cs181008.pp.htv.fi [213.243.181.8]) by smtp2.pp.htv.fi (Postfix) with ESMTP id 13FD5297CCA; Wed, 11 Feb 2004 01:24:11 +0200 (EET) Received: from localhost (localhost.localdomain [127.0.0.1]) by localhost.localdomain (8.12.10/8.12.10) with ESMTP id i1ANOApn025975; Wed, 11 Feb 2004 01:24:10 +0200 Date: Wed, 11 Feb 2004 01:24:10 +0200 (EET) Reply-To: Jani Taskinen To: "Walter A. Boring IV" Cc: internals@lists.php.net In-Reply-To: <1076454294.40296396caa13@www.3gstech.com> Message-ID: References: <1076454294.40296396caa13@www.3gstech.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: [PHP-DEV] problem compiling php5 From: sniper@iki.fi (Jani Taskinen) a) your system is borked b) your tools are borked c) your sources are borked Works fine for me. FYI: It's considered good practise to try with the minimal set of configure options before reporting anything and wasting our (my) time. (--disable-all is your friend USE IT!) --Jani p.s. Whatta hell is --enable-trackvars? Anything like that haven't existed since PHP3.. On Tue, 10 Feb 2004, Walter A. Boring IV wrote: >Howdy, > I'm trying to build php5 from cvs. I'm running on redhat 9. At the end of >the compile, the linker seems to bail. > >/usr/bin/ld: .libs/libphp5.so: undefined versioned symbol name operator >delete(void*)@@GLIBCPP_3.2 >/usr/bin/ld: failed to set dynamic section sizes: Bad value >collect2: ld returned 1 exit status >make: *** [libphp5.la] Error 1 > >[root@hemna php-src]# ld --version >GNU ld version 2.13.90.0.18 20030206 >Copyright 2002 Free Software Foundation, Inc. >This program is free software; you may redistribute it under the terms of >the GNU General Public License. This program has absolutely no warranty. > >[root@hemna php-src]# gcc --version >gcc (GCC) 3.2.2 20030222 (Red Hat Linux 3.2.2-5) >Copyright (C) 2002 Free Software Foundation, Inc. >This is free software; see the source for copying conditions. There is NO >warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. > >Here is my configure line > >./configure \ >--with-oci8=/u01/app/oracle/product/8.1.7 \ >--enable-sigchild \ >--with-mcrypt \ >--with-gd \ >--with-png-dir=/usr \ >--with-jpeg-dir=/usr \ >--with-zlib-dir=/usr \ >--enable-sysvsem \ >--enable-sysvshm \ >--enable-shmop \ >--enable-trackvars \ >--with-xml \ >--with-zlib \ >--with-gdbm \ >--with-dom \ >--with-mysql=/usr \ >--enable-mbstring \ >--with-gettext \ >--enable-tokenizer \ >--enable-sockets \ >--with-kerberos=/usr/kerberos \ >--with-openssl \ >--with-apxs=/usr/local/apache/bin/apxs \ >--with-pgsql \ >--with-msession \ >--enable-mbstr-enc-trans; > >