This is the mail archive of the glibc-linux@ricardo.ecn.wfu.edu mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Compile error in glibc-2.1.3


building a glibc-2.1.3 on my Sparc Station 4 fails with a compile error at
line 378 in locale/C-ctype.c. From eyeballing the code between 378 and
382, it appears someone left out a comma.

Original:
    { string: (const char *) (_nl_C_LC_CTYPE_tolower + 128) }
#if BYTE_ORDER == BIG_ENDIAN
    { string: NULL },
#endif
  }
};

Fixed:
    { string: (const char *) (_nl_C_LC_CTYPE_tolower + 128) },
#if BYTE_ORDER == BIG_ENDIAN
    { string: NULL },
#endif
  }
};

HTH.

Alex.
-- 
I fitted a microfusion reactor and antigravity
generators to my car. Now she flies.

http://www.tahallah.clara.co.uk


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]