[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Odd things in configure.ac
From: |
Alexander Malmberg |
Subject: |
Odd things in configure.ac |
Date: |
Sat, 08 Mar 2003 14:15:25 +0100 |
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?
- Alexander Malmberg
- Odd things in configure.ac,
Alexander Malmberg <=