Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:66198 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 51416 invoked from network); 25 Feb 2013 16:16:57 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 25 Feb 2013 16:16:57 -0000 Authentication-Results: pb1.pair.com header.from=dclarke@blastwave.org; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=dclarke@blastwave.org; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain blastwave.org from 210.87.62.131 cause and error) X-PHP-List-Original-Sender: dclarke@blastwave.org X-Host-Fingerprint: 210.87.62.131 comm.purplecow.org Solaris 10 (beta) Received: from [210.87.62.131] ([210.87.62.131:56775] helo=comm.purplecow.org) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B0/6C-10787-87E8B215 for ; Mon, 25 Feb 2013 11:16:57 -0500 MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-disposition: inline Content-type: text/plain; charset=us-ascii Received: from comm.purplecow.org ([127.0.0.1]) by comm.purplecow.org (Sun Java(tm) System Messaging Server 6.3-6.03 (built Mar 14 2008; 32bit)) with ESMTP id <0MIS00H3AAK4VI10@comm.purplecow.org> for internals@lists.php.net; Tue, 26 Feb 2013 03:16:52 +1100 (EST) Received: from comm.purplecow.org ([127.0.0.1] helo=comm.purplecow.org) with IPv4:25 by ASSP.nospam; Tue, 26 Feb 2013 03:16:52 +1100 Received: from [66.103.52.207] by comm.purplecow.org (mshttpd); Mon, 25 Feb 2013 11:16:52 -0500 To: =?iso-8859-1?Q?Johannes_Schl=FCter?= Cc: internals@lists.php.net, christopher.jones@oracle.com Message-ID: Date: Mon, 25 Feb 2013 11:16:52 -0500 X-Mailer: Sun Java(tm) System Messenger Express 6.3-6.03 (built Mar 14 2008; 32bit) Content-language: en X-Accept-Language: en Priority: normal In-reply-to: <1361808794.2376.61.camel@guybrush> References: <1361797414.2376.42.camel@guybrush> <1361801879.2376.47.camel@guybrush> <1361808794.2376.61.camel@guybrush> Subject: Re: [PHP-DEV] PHP 5.4.12 and libcurl 7.29.0 configure problem From: dclarke@blastwave.org (Dennis Clarke) > So the -m64 is lost. Looking at extg/curl/config.m4, again I see > > save_CFLAGS="$CFLAGS" > CFLAGS="`$CURL_CONFIG --cflags`" > > So running `curl-config --cflags` apparently doesn't contain the -m64 > flag on your setup. In my opinion curl-config should return this, so > there is a curl issue. I don't know whether there is a good work-around > from PHP-side. good catch ! Let me test that here : $ which curl-config /usr/local/bin/curl-config $ curl-config --cflags -I/usr/local/include Well that is broken beyond belief. yet this looks fine : $ curl-config --configure '--enable-shared' '--enable-static' '--with-libidn=/usr/local' '--enable-tls-srp' '--with-ssl' 'CC=/opt/solarisstudio12.3/bin/cc' 'CFLAGS=-errfmt=error -erroff=%none -errshort=full -xstrconst -xildoff -m64 -xmemalign=8s -xnolibmil -Xa -xcode=pic32 -xregs=no%appl -xlibmieee -mc -g -xs -ftrap=%none -Qy -xbuiltin=%none -xdebugformat=dwarf -xunroll=1 -xtarget=ultraT2 -xcache=8/16/4:4096/64/16' 'CPPFLAGS=-I/usr/local/include -I/usr/local/ssl/include -I/opt/mysql/mysql/include -D_TS_ERRNO -D_POSIX_PTHREAD_SEMANTICS -D_LARGEFILE64_SOURCE' odd ... I must go take this up with the curl folks. I'll keep you posted if I see a good result. Thank you for the awesome catch there. Dennis