517e5395a1
mesa3d now generates some C files at build time (related to the OpenGL API) from XML files. This generation process is done using Python scripts that require the libxml2 Python module. Patch based on the initial work of Will Wagner (Thanks Will). Signed-off-by: Vellemans Noel <noel.vellemans@visionbms.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
36 lines
732 B
Makefile
36 lines
732 B
Makefile
#############################################################
|
|
#
|
|
# mesa3d
|
|
#
|
|
#############################################################
|
|
|
|
MESA3D_VERSION = 7.10.1
|
|
MESA3D_SOURCE = MesaLib-$(MESA3D_VERSION).tar.gz
|
|
MESA3D_SITE = ftp://ftp.freedesktop.org/pub/mesa/$(MESA3D_VERSION)
|
|
MESA3D_AUTORECONF = YES
|
|
MESA3D_INSTALL_STAGING = YES
|
|
|
|
MESA3D_CONF_OPT = \
|
|
--disable-egl \
|
|
--disable-glu \
|
|
--disable-glw \
|
|
--disable-glut \
|
|
--disable-gallium \
|
|
--with-driver=dri \
|
|
--with-dri-drivers=swrast \
|
|
--disable-static
|
|
|
|
MESA3D_DEPENDENCIES = \
|
|
xproto_glproto \
|
|
xlib_libXxf86vm \
|
|
xlib_libXdamage \
|
|
xlib_libXfixes \
|
|
xproto_dri2proto \
|
|
libdrm \
|
|
expat \
|
|
host-xutil_makedepend \
|
|
host-libxml2 \
|
|
host-python
|
|
|
|
$(eval $(autotools-package))
|