Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:5279 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 99821 invoked by uid 1010); 6 Nov 2003 01:26:46 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 99797 invoked from network); 6 Nov 2003 01:26:46 -0000 Received: from unknown (HELO mx.thebrainroom.net) (65.200.24.98) by pb1.pair.com with SMTP; 6 Nov 2003 01:26:46 -0000 Received: by mx.thebrainroom.net (Postfix, from userid 517) id 621C21488096; Wed, 5 Nov 2003 17:23:49 -0800 (PST) Received: from zaneeb.thebrainroom.net (zaneeb.thebrainroom.net [82.133.1.138]) by mx.thebrainroom.net (Postfix) with ESMTP id 6354A148808C; Wed, 5 Nov 2003 17:23:47 -0800 (PST) Received: from obsidian (IDENT:root@zaneeb.thebrainroom.net [82.133.1.138]) by zaneeb.thebrainroom.net (8.11.6/8.11.6) with SMTP id hA61QhC14847; Thu, 6 Nov 2003 01:26:43 GMT Message-ID: <013301c3a405$05e21440$ed1e0a0a@obsidian> To: "l0t3k" Cc: References: <20031106005832.41913.qmail@pb1.pair.com> Date: Thu, 6 Nov 2003 02:26:37 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Status: No, hits=-0.7 required=5.0 tests=AWL,QUOTED_EMAIL_TEXT,REFERENCES version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) X-TBR-Filter: Virus scanned and defanged Subject: Re: [PHP-DEV] Repost : 64 Bit Integer support From: wez@thebrainroom.com ("Wez Furlong") 64 bit integer support is really a function of the compiler, not the OS. The windows compiler certainly does support a 64 bit integer type (INT64 iirc). There is probably a configure check somewhere (the bundled mysql client library from 4.3 branch comes to mind) that you can use to make the decision on 64 bit support. --Wez. ----- Original Message ----- From: "l0t3k" To: Sent: Thursday, November 06, 2003 1:58 AM Subject: [PHP-DEV] Repost : 64 Bit Integer support > Question : > is there any one of the supported platforms that dont support a 64 bit > integer > type. i'm not referring to the native int size. > for one i can think of Windows 95/98. > > i'm porting a library and i need to know this so i can determine how to > proceed.