avoid ephyr breakage when tslib enabled
This commit is contained in:
parent
8bf6ea903b
commit
20918ab480
|
@ -4,6 +4,11 @@ INCLUDES = \
|
||||||
|
|
||||||
noinst_LIBRARIES = libxephyr.a libxephyr-hostx.a
|
noinst_LIBRARIES = libxephyr.a libxephyr-hostx.a
|
||||||
|
|
||||||
|
if TSLIB
|
||||||
|
TSLIB_LIBS = -lts
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
bin_PROGRAMS = Xephyr
|
bin_PROGRAMS = Xephyr
|
||||||
|
|
||||||
libxephyr_a_SOURCES = \
|
libxephyr_a_SOURCES = \
|
||||||
|
@ -26,8 +31,10 @@ Xephyr_LDADD = \
|
||||||
libxephyr-hostx.a \
|
libxephyr-hostx.a \
|
||||||
@KDRIVE_LIBS@ \
|
@KDRIVE_LIBS@ \
|
||||||
@XSERVER_LIBS@ \
|
@XSERVER_LIBS@ \
|
||||||
|
$(TSLIB_LIBS) \
|
||||||
@XEPHYR_LIBS@
|
@XEPHYR_LIBS@
|
||||||
|
|
||||||
|
|
||||||
Xephyr_DEPENDENCIES = \
|
Xephyr_DEPENDENCIES = \
|
||||||
libxephyr.a \
|
libxephyr.a \
|
||||||
libxephyr-hostx.a \
|
libxephyr-hostx.a \
|
||||||
|
|
Loading…
Reference in New Issue