Add external pixman CFLAGS after all internal include paths

With the pixman CFLAGS at the beginning of the command line, my build
was picking up the glcore.h from glproto, which doesn't have any of the
TFP fields in __GLcontextmodes.

Signed-off-by: Dan Nicholson <dbn.lists@gmail.com>
This commit is contained in:
Dan Nicholson 2009-02-11 09:55:20 -08:00
parent 36b83f5198
commit 277bf235f1
1 changed files with 1 additions and 1 deletions

View File

@ -7,13 +7,13 @@ TOP = ../../../..
include ${TOP}/configs/current
CFLAGS += -g -Wall -Werror=implicit-function-declaration -fPIC \
$(shell pkg-config --cflags pixman-1 xorg-server) \
-I${GALLIUMDIR}/include \
-I${GALLIUMDIR}/auxiliary \
-I${TOP}/src/mesa/drivers/dri/common \
-I${TOP}/src/mesa \
-I$(TOP)/include \
-I$(TOP)/src/egl/main \
$(shell pkg-config --cflags pixman-1 xorg-server) \
${LIBDRM_CFLAGS}
#############################################