summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2012-03-09 02:01:15 +0200
committerMart Raudsepp <leio@gentoo.org>2012-03-09 02:01:15 +0200
commitfa55ac5c69796572ad6638878ecd92f1666f8bc7 (patch)
tree40f60fbe2e87c208feb6c53b7ffeaf5e231c9531 /x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch
parentRemove ancient xorg-server-1.8 version (diff)
downloadloongson-fa55ac5c69796572ad6638878ecd92f1666f8bc7.tar.gz
loongson-fa55ac5c69796572ad6638878ecd92f1666f8bc7.tar.bz2
loongson-fa55ac5c69796572ad6638878ecd92f1666f8bc7.zip
Remove older xorg-server-1.9.x versions
Diffstat (limited to 'x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch')
-rw-r--r--x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch b/x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch
deleted file mode 100644
index 3675822..0000000
--- a/x11-base/xorg-server/files/1.7.5.902-fix-tslib-1.0-check.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- configure.ac 2010-03-16 22:24:14.000000000 +0100
-+++ configure.ac.new 2010-03-16 22:33:10.000000000 +0100
-@@ -1915,8 +1915,14 @@
- AC_DEFINE(KDRIVEFBDEV, 1, [Build fbdev-based kdrive server])
- fi
-
--
-- PKG_CHECK_MODULES([TSLIB], [tslib-0.0], [HAVE_TSLIB="yes"], [HAVE_TSLIB="no"])
-+dnl Do tripple check for tslib in the transition phase to unversioned pkgconfig files...
-+ PKG_CHECK_MODULES([TSLIB], [tslib], [HAVE_TSLIB="yes"], [
-+ PKG_CHECK_MODULES([TSLIB], [tslib-1.0], [HAVE_TSLIB="yes"], [
-+ PKG_CHECK_MODULES([TSLIB], [tslib-0.0], [HAVE_TSLIB="yes"], [
-+ HAVE_TSLIB="no"
-+ ])
-+ ])
-+ ])
- if test "x$HAVE_TSLIB" = xno; then
- AC_CHECK_LIB(ts, ts_open, [HAVE_TSLIB="yes"])
- fi