diff options
author | Matthew Allum <breakfast@10.am> | 2004-09-07 19:00:04 +0000 |
---|---|---|
committer | Matthew Allum <breakfast@10.am> | 2004-09-07 19:00:04 +0000 |
commit | 20918ab480c8c8285a68e9f974b0208a18acec94 (patch) | |
tree | 5943b2dceed1c9b3675974f6e0052559be4d9aa9 /hw/kdrive/ephyr/Makefile.am | |
parent | 8bf6ea903be4c052c747e3e81fc977155072299d (diff) |
avoid ephyr breakage when tslib enabled
Diffstat (limited to 'hw/kdrive/ephyr/Makefile.am')
-rw-r--r-- | hw/kdrive/ephyr/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hw/kdrive/ephyr/Makefile.am b/hw/kdrive/ephyr/Makefile.am index 1a38e5934..18b498006 100644 --- a/hw/kdrive/ephyr/Makefile.am +++ b/hw/kdrive/ephyr/Makefile.am @@ -4,6 +4,11 @@ INCLUDES = \ noinst_LIBRARIES = libxephyr.a libxephyr-hostx.a +if TSLIB +TSLIB_LIBS = -lts +endif + + bin_PROGRAMS = Xephyr libxephyr_a_SOURCES = \ @@ -26,7 +31,9 @@ Xephyr_LDADD = \ libxephyr-hostx.a \ @KDRIVE_LIBS@ \ @XSERVER_LIBS@ \ + $(TSLIB_LIBS) \ @XEPHYR_LIBS@ + Xephyr_DEPENDENCIES = \ libxephyr.a \ |