diff --git a/hw/kdrive/neomagic/ChangeLog b/hw/kdrive/neomagic/ChangeLog index 8ea6bf91f..2889d90f3 100644 --- a/hw/kdrive/neomagic/ChangeLog +++ b/hw/kdrive/neomagic/ChangeLog @@ -1,3 +1,8 @@ +2004-07-21 Phil Blundell + + * Makefile.am (Xneomagic_LDADD): Include -lts if appropriate. + Patch from pattieja@bentham.ispvip.biz. + 2004-06-07 Franco Catrin L. * Small fix for depth calculation diff --git a/hw/kdrive/neomagic/Makefile.am b/hw/kdrive/neomagic/Makefile.am index 1ed4aae99..58f80c230 100644 --- a/hw/kdrive/neomagic/Makefile.am +++ b/hw/kdrive/neomagic/Makefile.am @@ -16,6 +16,10 @@ INCLUDES = \ bin_PROGRAMS = Xneomagic +if TSLIB +TSLIB_FLAG = -lts +endif + noinst_LIBRARIES = libneomagic.a libneomagic_a_SOURCES = \ @@ -37,6 +41,7 @@ NEOMAGIC_LIBS = \ Xneomagic_LDADD = \ $(NEOMAGIC_LIBS) \ @KDRIVE_LIBS@ \ - @XSERVER_LIBS@ + @XSERVER_LIBS@ \ + $(TSLIB_FLAG) Xneomagic_DEPENDENCIES = $(NEOMAGIC_LIBS) @KDRIVE_LIBS@