>extern typeobject Fonttype; /* Really static forward */
[ ... ]
>static typeobject Fonttype = {
[ ... ]
and complains about the redefinition.
substitute the following.
#ifdef _AIX
static typeobject Fonttype; /* Really static FORWARD */
#else
extern typeobject Fonttype; /* Really STATIC forward */
#endif
- Steve Majewski