xaa: Fix compiler warning (implicit declaration)
xaaInit.c: In function 'XAAInit': xaaInit.c:201: warning: implicit declaration of function 'miInitializeCompositeWrapper' xaaInit.c:201: warning: nested extern declaration of 'miInitializeCompositeWrapper'
This commit is contained in:
parent
aee514cfb5
commit
eadf90aa65
|
@ -69,6 +69,6 @@ EXTRA_DIST = xaacexp.h xaawrap.h xaaLine.c xaaDashLine.c \
|
|||
xaaStipple.c xaaTEGlyph.c xaaNonTEGlyph.c xaaBitmap.c \
|
||||
XAA.HOWTO
|
||||
|
||||
INCLUDES = $(XORG_INCS)
|
||||
INCLUDES = $(XORG_INCS) -I$(srcdir)/../../../miext/cw
|
||||
|
||||
AM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS)
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
#include "xaawrap.h"
|
||||
#include "xf86fbman.h"
|
||||
#include "servermd.h"
|
||||
#ifdef COMPOSITE
|
||||
#include "cw.h"
|
||||
#endif
|
||||
|
||||
#define MAX_PREALLOC_MEM 65536 /* MUST be >= 1024 */
|
||||
|
||||
|
|
Loading…
Reference in New Issue