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.
_______________________________________________ Bug-gnustep mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-gnustep
