summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2010-06-03 15:08:55 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2010-06-03 15:08:55 +0000
commit10ddb83325c3cca05d3489c03a4115daaa6fbf12 (patch)
treee0570f72b015146dfac5c5771d9b95c5ad481728 /acinclude.m4
parente2d8931fe9dcf4bda26f7bd20c0eb7f5b3def08f (diff)
downloadmpfr-10ddb83325c3cca05d3489c03a4115daaa6fbf12.tar.gz
[acinclude.m4] Math library check: removed rule specific to HP-UX
(only -lM was tested while this library may not be available; so, let's use the default rule as -lm works). [merged changeset r6915 from the trunk] git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/branches/3.0@6916 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m45
1 files changed, 0 insertions, 5 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 001bfbc42..0548daf4d 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -716,11 +716,6 @@ case $host in
*-*-beos* | *-*-cygwin* | *-*-pw32*)
# According to libtool AC CHECK LIBM, these systems don't have libm
;;
- *-*-hpux*)
- # -lM means something subtly different to -lm, SVID style error handling
- # or something. FIXME: Why exactly do we want this?
- AC_CHECK_LIB(M, main, MPFR_LIBM="-lM")
- ;;
*-*-solaris*)
# On Solaris the math functions new in C99 are in -lm9x.
# FIXME: Do we need -lm9x as well as -lm, or just instead of?