Commit c02a49ce authored by Thomas Petazzoni's avatar Thomas Petazzoni Committed by Peter Korsgaard
Browse files

xdriver_xf86-video-xgixp: remove package



This X.org driver has been removed from upstream X.org releases and is
related to a very specific type of hardware that isn't likely to be used
in a Buildroot context.

Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent b2decde6
Loading
Loading
Loading
Loading
+0 −11
Original line number Diff line number Diff line
config BR2_PACKAGE_XDRIVER_XF86_VIDEO_XGIXP
	bool "xf86-video-xgixp"
	select BR2_PACKAGE_MESA3D
	select BR2_PACKAGE_XSERVER_XORG_SERVER
	select BR2_PACKAGE_XPROTO_FONTSPROTO
	select BR2_PACKAGE_XPROTO_RANDRPROTO
	select BR2_PACKAGE_XPROTO_RENDERPROTO
	select BR2_PACKAGE_XPROTO_XEXTPROTO
	select BR2_PACKAGE_XPROTO_XPROTO
	help
	  XGIXP based chips video driver
+0 −24
Original line number Diff line number Diff line
--- xdriver_xf86-video-xgixp-1.7.99.4/configure.ac.orig	2009-09-07 08:09:14.000000000 +0300
+++ xdriver_xf86-video-xgixp-1.7.99.4/configure.ac	2010-02-04 00:12:22.159108635 +0200
@@ -63,12 +63,18 @@ sdkdir=$(pkg-config --variable=sdkdir xo
 # Checks for header files.
 AC_HEADER_STDC
 
-AC_CHECK_FILE([${sdkdir}/dri.h],
+if test "$cross_compiling" = "no" ; then
+        AC_CHECK_FILE([${sdkdir}/dri.h],
               [have_dri_h="yes"], [have_dri_h="no"])
-AC_CHECK_FILE([${sdkdir}/sarea.h],
+        AC_CHECK_FILE([${sdkdir}/sarea.h],
               [have_sarea_h="yes"], [have_sarea_h="no"])
-AC_CHECK_FILE([${sdkdir}/dristruct.h],
+        AC_CHECK_FILE([${sdkdir}/dristruct.h],
               [have_dristruct_h="yes"], [have_dristruct_h="no"])
+else
+        have_dri_h="yes"
+        have_sarea_h="yes"
+        have_dristruct_h="yes"
+fi
 
 AC_DEFINE(XF86DRI_DEVEL,1,[Enable developmental DRI driver support])
 
+0 −13
Original line number Diff line number Diff line
################################################################################
#
# xdriver_xf86-video-xgixp -- XGIXP video driver
#
################################################################################

XDRIVER_XF86_VIDEO_XGIXP_VERSION = 1.8.0
XDRIVER_XF86_VIDEO_XGIXP_SOURCE = xf86-video-xgixp-$(XDRIVER_XF86_VIDEO_XGIXP_VERSION).tar.bz2
XDRIVER_XF86_VIDEO_XGIXP_SITE = http://xorg.freedesktop.org/releases/individual/driver
XDRIVER_XF86_VIDEO_XGIXP_AUTORECONF = YES
XDRIVER_XF86_VIDEO_XGIXP_DEPENDENCIES = xserver_xorg-server xproto_fontsproto xproto_randrproto xproto_renderproto xproto_xextproto xproto_xproto

$(eval $(autotools-package))