From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23056 invoked from network); 18 May 1999 16:07:54 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 18 May 1999 16:07:54 -0000 Received: (qmail 13812 invoked by alias); 18 May 1999 16:07:41 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6309 Received: (qmail 13805 invoked from network); 18 May 1999 16:07:40 -0000 From: "Andrej Borsenkow" To: "Peter Stephenson" , "Zsh hackers list" Subject: RE: PATCH: pws-18: 64-bit integer support Date: Tue, 18 May 1999 20:07:04 +0400 Message-ID: <003101bea148$786a9240$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 In-Reply-To: <9905181431.AA28595@ibmth.df.unipi.it> checking if long is 64 bits... yes ./configure: syntax error at line 3371: `zsh_64_BIT_TYPE' unexpected zsh_64_BIT_TYPE is not defined anywhere (as far a I can tell) [AC_TRY_RUN([int main() { return sizeof(long) < 8; }], zsh_cv_long_is_64_bit=yes, zsh_cv_long_is_64_bit=no, zsh_cv_long_is_64_bit=no)]) Should it not be "return sizeof(long) >= 8"? Or at least sizeof(long) == 8? /andrej