Build fixes

This commit is contained in:
David Reveman 2005-06-13 16:38:06 +00:00
parent 49476ca73c
commit 2eab094816
5 changed files with 30 additions and 14 deletions

View File

@ -12,7 +12,11 @@ noinst_LIBRARIES = libepson.a
libepson_a_SOURCES = \
epson13806.c \
epson13806draw.c
epson13806.h \
epson13806draw.c\
epson13806draw.h\
epson13806reg.h
Xepson_SOURCES = \
epson13806stub.c

View File

@ -15,7 +15,7 @@ libi810_a_SOURCES = \
i810_video.c \
i810draw.c \
i810draw.h \
i810reg.h \
i810_reg.h \
i810.c \
i810.h

View File

@ -1,4 +1,12 @@
SUBDIRS = . $(XGLX_DIRS) $(XEGL_DIRS)
if XGLXSERVER
XGLX_SUBDIRS = glx
endif
if XEGLSERVER
XEGL_SUBDIRS = egl
endif
SUBDIRS = . $(XGLX_SUBDIRS) $(XEGL_SUBDIRS)
INCLUDES = \
@XGL_INCS@ \
@ -8,6 +16,7 @@ INCLUDES = \
noinst_LIBRARIES = libxgl.a
libxgl_a_SOURCES = \
xgl.h \
xglinput.c \
xgloutput.c \
xglcmap.c \

View File

@ -1,16 +1,22 @@
INCLUDES = \
@XGL_INCS@ \
@XSERVER_CFLAGS@
@XSERVER_CFLAGS@ \
@XGLXSERVER_CFLAGS@
bin_PROGRAMS = Xegl
Xegl_SOURCES = xegl.c xeglinput.c kinput.c evdev.c
Xegl_SOURCES = \
xegl.h \
xegl.c \
xeglinput.c \
kkeymap.h \
kinput.c \
evdev.c
Xegl_LDADD = \
@XGL_LIBS@ \
@XEGL_LIBS@ \
@XEGLSERVER_LIBS@ \
@XSERVER_LIBS@
Xegl_LDADD = \
@XGL_LIBS@ \
@XSERVER_LIBS@ \
@XEGLSERVER_LIBS@
Xegl_DEPENDENCIES = @XGL_LIBS@

View File

@ -456,10 +456,7 @@ xglPictureInit (ScreenPtr pScreen)
if (!fbPictureInit (pScreen, pFormats, nformats))
return FALSE;
if (PictureAddFilter (pScreen,
FilterConvolution,
miFilterValidateParams) < 0)
return FALSE;
PictureAddFilter (pScreen, FilterConvolution, miFilterValidateParams);
return TRUE;
}