diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-04-26 19:43:20 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2013-04-26 20:07:30 +0900 |
commit | f35e4aa7c9ebd752006429a7f53f842fecc63ced (patch) | |
tree | 55bec56c7253ebaefe6f2062e91c0460c2f45bde | |
parent | 0d677a8cc8fa0eaebc798217f57bbe52869e882d (diff) |
fix libm linking
http://trac.enlightenment.org/e/ticket/2339
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c6f7d3ee8..ad4b05aae 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -183,6 +183,7 @@ dnl managed by evil | |||
183 | have_dlopen="yes" | 183 | have_dlopen="yes" |
184 | else | 184 | else |
185 | AC_CHECK_LIB(dl, dlopen, res=yes, res=no) | 185 | AC_CHECK_LIB(dl, dlopen, res=yes, res=no) |
186 | AC_CHECK_LIB(m, sincos) | ||
186 | if test "x$res" = "xyes"; then | 187 | if test "x$res" = "xyes"; then |
187 | AC_CHECK_LIB(dl, dladdr, AC_DEFINE(HAVE_DLADDR)) | 188 | AC_CHECK_LIB(dl, dladdr, AC_DEFINE(HAVE_DLADDR)) |
188 | dlopen_libs=-ldl | 189 | dlopen_libs=-ldl |