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: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas Petazzoni 2013-01-02 01:26:54 +00:00 committed by Peter Korsgaard
parent b2decde6b6
commit c02a49ce19
3 changed files with 0 additions and 48 deletions

View File

@ -1,11 +0,0 @@
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

View File

@ -1,24 +0,0 @@
--- 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])

View File

@ -1,13 +0,0 @@
################################################################################
#
# 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))