1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
Description: Append missing -lm to ld libraries.
Author: Alessio Treglia <alessio@debian.org>
Forwarded: no
---
src/Makefile.am | 2 +-
src/Makefile.in | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- timemachine.orig/src/Makefile.am
+++ timemachine/src/Makefile.am
@@ -17,4 +17,4 @@ timemachine_SOURCES = \
meters.c meters.h \
threads.c threads.h
-timemachine_LDADD = @PACKAGE_LIBS@
+timemachine_LDADD = @PACKAGE_LIBS@ -lm
--- timemachine.orig/src/Makefile.in
+++ timemachine/src/Makefile.in
@@ -175,7 +175,7 @@ timemachine_SOURCES = \
meters.c meters.h \
threads.c threads.h
-timemachine_LDADD = @PACKAGE_LIBS@
+timemachine_LDADD = @PACKAGE_LIBS@ -lm
all: all-am
.SUFFIXES:
|