bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Odd things in configure.ac


From: Adam Fedor
Subject: Re: Odd things in configure.ac
Date: Tue, 11 Mar 2003 16:27:11 -0700
User-agent: Mozilla/5.0 (X11; U; Linux ppc; en-US; rv:1.1) Gecko/20020905



Alexander Malmberg wrote:
I've been trying to make sense of configure.ac, and noticed a couple of
odd things (I haven't noticed anything being broken on my system,
though).

On line 293 we have:


  else
#     64-bit ints not supported - but we need a dummy type for byte-swapping
#     of 64-bit values arriving from another system.
    GS_SINT64="struct { gsu8 a[8]; }"
    GS_SINT64="struct { gsu8 a[9]; }"
    GS_HAVE_I64=0
  fi


Which seems very odd. Shouldn't it be:

    GS_SINT64="struct { gsu8 a[8]; }"
    GS_UINT64="struct { gsu8 a[8]; }"



On line 372:

if test $ac_cv_sizeof_long = 8; then
  _GSC_S_LNG=_GSC_I64
v  else
  if test $ac_cv_sizeof_long = 16; then


Is the 'v' supposed to be there?


Good catch. I fixed those.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]