summaryrefslogtreecommitdiff
path: root/packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch
diff options
context:
space:
mode:
authorPhilipp Zabel <philipp.zabel@gmail.com>2007-03-29 10:10:26 +0000
committerPhilipp Zabel <philipp.zabel@gmail.com>2007-03-29 10:10:26 +0000
commit5b092eca308028230d8e65384c2eeef3652e25a9 (patch)
tree87ac96aace802d2050337f8cabc9a9a2917c4d8b /packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch
parent29ecffc666e166906ccaa73f65c2e12ea17a1769 (diff)
xserver-kdrive: clean up different patch versions, drop imageon from 1.2 for now
Diffstat (limited to 'packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch')
-rw-r--r--packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch b/packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch
new file mode 100644
index 0000000000..1e72a3ea53
--- /dev/null
+++ b/packages/xorg-xserver/xserver-kdrive-1.2/enable-tslib.patch
@@ -0,0 +1,28 @@
+Index: xorg-server-1.2.0/hw/kdrive/fbdev/Makefile.am
+===================================================================
+--- xorg-server-1.2.0.orig/hw/kdrive/fbdev/Makefile.am 2007-03-29 11:53:24.000000000 +0200
++++ xorg-server-1.2.0/hw/kdrive/fbdev/Makefile.am 2007-03-29 11:53:27.000000000 +0200
+@@ -6,6 +6,10 @@
+
+ bin_PROGRAMS = Xfbdev
+
++if TSLIB
++TSLIB_FLAG = -lts
++endif
++
+ libfbdev_a_SOURCES = \
+ fbdev.c \
+ fbdev.h
+@@ -16,7 +20,10 @@
+ Xfbdev_LDADD = \
+ libfbdev.a \
+ @KDRIVE_LIBS@ \
+- @XSERVER_LIBS@
++ @XSERVER_LIBS@ \
++ $(TSLIB_FLAG)
+
+ Xfbdev_DEPENDENCIES = \
+- libfbdev.a
++ libfbdev.a \
++ @KDRIVE_LIBS@
++