xfree86: Fix build on Linux/alpha.
A bunch of CFLAGS had gone missing, so the build failed with errors like: ../../../../../hw/xfree86/os-support/linux/lnx_ev56.c:7:19: error: input.h: No such file or directory ../../../../../hw/xfree86/os-support/linux/lnx_ev56.c:8:24: error: scrnintstr.h: No such file or directory
This commit is contained in:
parent
65a49f0ca1
commit
a1fe36b772
|
@ -11,7 +11,7 @@ PLATFORM_PCI_SUPPORT = \
|
||||||
$(srcdir)/lnx_axp.c \
|
$(srcdir)/lnx_axp.c \
|
||||||
$(srcdir)/../shared/xf86Axp.c
|
$(srcdir)/../shared/xf86Axp.c
|
||||||
|
|
||||||
liblinuxev56_la_CFLAGS = -mcpu=ev56
|
liblinuxev56_la_CFLAGS = $(AM_CFLAGS) -mcpu=ev56
|
||||||
|
|
||||||
liblinuxev56_la_SOURCES = lnx_ev56.c
|
liblinuxev56_la_SOURCES = lnx_ev56.c
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue