another change for compiling python0.9.9 on AIX ( Fontmodule.c/X11 )

Steven D. Majewski (sdm7g@elvis.med.virginia.edu)
Tue, 7 Sep 1993 16:01:21 -0400

The AIX C compiler does not appear to like this pair of
declarations in Fontobject.c ( when compiling with X11 option ):

>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