X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=configure.ac;h=a751e17a8555a6190257962d8ecb425c660e1ed0;hb=d9a2eefd17cd91e7193616d955056fddf3dab305;hp=15b3c8547aa23c3340eea56d029dbe9fcad2719a;hpb=f2bfd33806f1339ecd16eb76b0146544b65dc68e;p=ghc-hetmet.git diff --git a/configure.ac b/configure.ac index 15b3c85..a751e17 100644 --- a/configure.ac +++ b/configure.ac @@ -728,11 +728,8 @@ dnl Keep that check as early as possible. dnl as we need to know whether we need libm dnl for math functions or not dnl (see http://hackage.haskell.org/trac/ghc/ticket/3730) -AC_CHECK_FUNC(atan,[fp_libm_not_needed=yes;LIBM=],[fp_libm_not_needed=dunno]) -if test x"$fp_libm_not_needed" = xdunno; then - AC_CHECK_LIB([m], [atan], [LIBS="-lm $LIBS"; LIBM="-lm"],[LIBM=]) -fi -AC_SUBST([LIBM]) +AC_SEARCH_LIBS(atan, m, + [AC_DEFINE([HAVE_LIBM], [1], [Define to 1 if you need to link with libm])]) dnl ** check whether this machine has BFD and liberty installed (used for debugging) dnl the order of these tests matters: bfd needs liberty