Merge pull request #104 from tseeker/remove-unused-libm

Build files: remove extraneous dependency
This commit is contained in:
blueness 2015-01-23 14:59:26 -05:00
commit 5e7fcb69f1
2 changed files with 2 additions and 2 deletions

View File

@ -99,7 +99,7 @@ AC_CHECK_FUNCS(
[AC_MSG_ERROR([*** POSIX function not found])]
)
AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([*** POSIX librt not found])])
AC_SEARCH_LIBS([sqrt], [m], [], [AC_MSG_ERROR([*** POSIX libm not found])])
LT_LIB_M
# ------------------------------------------------------------------------------

View File

@ -13,4 +13,4 @@ accelerometer_SOURCES = \
accelerometer_LDADD = \
$(top_builddir)/src/libudev/libudev-private.la \
$(top_builddir)/src/udev/libudev-core.la \
-lm
$(LIBM)