1) reorder union definition of _FcChar;
2) omit .stats =.
+2006-04-07 Patrick Lam <plam@mit.edu>
+ * src/fcint.h:
+ * fc-lang/fc-lang.c (main):
+
+ SGI compilation fixes (reported by Christoph Bauer):
+ 1) reorder union definition of _FcChar;
+ 2) omit .stats =.
+
2006-04-07 Dominic Lachowicz <cinamod@hotmail.com>
reviewed by: plam
* configure.in:
printf (" { (FcChar8 *) \"%s\",\n"
" { FC_REF_CONSTANT, %d, FC_BANK_LANGS, "
- "{ .stat = { %d, %d } } } }, /* %d */\n",
+ "{ { %d, %d } } } }, /* %d */\n",
langs[i],
sets[j]->num, offsets[j], offsets[j], j);
}
int num; /* size of leaves and numbers arrays */
int bank;
union {
- struct {
- FcCharLeaf **leaves;
- FcChar16 *numbers;
- } dyn;
struct {
int leafidx_offset;
int numbers_offset;
} stat;
+ struct {
+ FcCharLeaf **leaves;
+ FcChar16 *numbers;
+ } dyn;
} u;
};