diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-05-28 20:16:54 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-05-31 12:53:33 -0400 |
commit | 92789dfb8a0443d9f1dd8df4ba43c69885136574 (patch) | |
tree | 9d41394e2741d43420d05f280af3d53694f18666 /tools | |
parent | c1df54855a7eee4d904746ad7b6edc7553bda0af (diff) |
config: add AC_CHECK_LIB for math library functions
It ensures library is installed and sets LIBS = -lm
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 23b083a..2ad48f6 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -22,7 +22,7 @@ bin_PROGRAMS = synclient syndaemon AM_CPPFLAGS = -I$(top_srcdir)/include -I$(sdkdir) AM_CFLAGS = $(XI_CFLAGS) -AM_LDFLAGS = -lm $(XI_LIBS) +AM_LDFLAGS = $(XI_LIBS) synclient_SOURCES = synclient.c |