Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:66190 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 28715 invoked from network); 25 Feb 2013 14:17:13 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 25 Feb 2013 14:17:13 -0000 Authentication-Results: pb1.pair.com header.from=johannes@schlueters.de; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=johannes@schlueters.de; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain schlueters.de from 217.114.211.66 cause and error) X-PHP-List-Original-Sender: johannes@schlueters.de X-Host-Fingerprint: 217.114.211.66 config.schlueters.de Received: from [217.114.211.66] ([217.114.211.66:40183] helo=config.schlueters.de) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DB/18-10787-8627B215 for ; Mon, 25 Feb 2013 09:17:13 -0500 Received: from [192.168.2.20] (ppp-88-217-65-93.dynamic.mnet-online.de [88.217.65.93]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client did not present a certificate) by config.schlueters.de (Postfix) with ESMTPSA id 5E45165D79; Mon, 25 Feb 2013 15:17:09 +0100 (CET) To: Dennis Clarke Cc: internals@lists.php.net, christopher.jones@oracle.com In-Reply-To: References: <1361797414.2376.42.camel@guybrush> Content-Type: text/plain; charset="UTF-8" Date: Mon, 25 Feb 2013 15:17:59 +0100 Message-ID: <1361801879.2376.47.camel@guybrush> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] PHP 5.4.12 and libcurl 7.29.0 configure problem From: johannes@schlueters.de (Johannes =?ISO-8859-1?Q?Schl=FCter?=) On Mon, 2013-02-25 at 09:08 -0500, Dennis Clarke wrote: > > So my guess would be that there is some mix between 32 and 64 bit > mode, > > try compiling with setting CFLAGS="-m64" (or CFLAGS="-m32") for > > configure. > > Everything here is -m64 and -xtarget=ultraT2 so not sure where else to > look. How did you compile curl? - Do you have the following in curlbuild.h or is that some configure created stuff? /* ===================================== */ /* Sun Studio Compilers */ /* ===================================== */ #elif defined(__SUNPRO_C) || defined(__SUNPRO_CC) #include #include #include # define CURL_TYPEOF_CURL_OFF_T off_t # define CURL_TYPEOF_CURL_SOCKLEN_T socklen_t # define CURL_SIZEOF_CURL_SOCKLEN_T 4 # if defined(__amd64) || defined(__sparcv9) # define CURL_SIZEOF_CURL_OFF_T 8 # define CURL_SIZEOF_LONG 8 [...] # else # define CURL_SIZEOF_LONG 4 [...] # endif Without looking deeper this looks fine ... johannes