summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorSteev Klimaszewski <[email protected]>2012-08-17 23:06:46 -0500
committerSteev Klimaszewski <[email protected]>2012-08-17 23:06:46 -0500
commit4053dc79086125f9196cccffb998db38d36eae3e (patch)
tree2def61165ef3041d014af0d99dad3486a9d1d39c /configure.in
parent180afd9f410efa8c2ca9ee03bd183cbd97afbe01 (diff)
downloadmate-desktop-4053dc79086125f9196cccffb998db38d36eae3e.tar.bz2
mate-desktop-4053dc79086125f9196cccffb998db38d36eae3e.tar.xz
Add -lm since we use sqrt, floor, fmod and pow.
Just like with libmatekbd, we are underlinking so we need -lm when using sqrt, floor, fmod and pow. Signed-off-by: Steev Klimaszewski <[email protected]>
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index a70113c..5256117 100644
--- a/configure.in
+++ b/configure.in
@@ -286,6 +286,8 @@ if test "x$enable_rebuilds" = "xyes" && \
fi
AC_SUBST(REBUILD)
+AC_SEARCH_LIBS([sqrt], [m])
+
# check for gtk-doc
GTK_DOC_CHECK([1.4])