summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorvlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-25 02:44:06 +0000
committervlefevre <vlefevre@280ebfd0-de03-0410-8827-d642c229c3f4>2003-01-25 02:44:06 +0000
commit97039be295b59a2635448ded7bb08194004d1abe (patch)
tree3300357cb6e31e9dd1c6557b9e414fc2d8214565 /acinclude.m4
parentb051628f1f217223717e4ce7a6e0ec73272bde5e (diff)
downloadmpfr-97039be295b59a2635448ded7bb08194004d1abe.tar.gz
Suppressed the underscores of AC_CHECK_LIBM in comments, otherwise
aclocal 1.4-p6 includes libtool code in aclocal.m4 and this leads to compilation problems. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@2233 280ebfd0-de03-0410-8827-d642c229c3f4
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 5caa4e869..9529d07a9 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -436,7 +436,7 @@ AC_DEFUN(MPFR_CHECK_LIBM,
AC_SUBST(MPFR_LIBM,'')
case $host in
*-*-beos* | *-*-cygwin* | *-*-pw32*)
- # According to libtool AC_CHECK_LIBM, these systems don't have libm
+ # According to libtool AC CHECK LIBM, these systems don't have libm
;;
*-*-hpux*)
# -lM means something subtly different to -lm, SVID style error handling
@@ -450,7 +450,7 @@ case $host in
AC_CHECK_LIB(m, main, MPFR_LIBM="$MPFR_LIBM -lm")
;;
*-ncr-sysv4.3*)
- # FIXME: What does -lmw mean? Libtool AC_CHECK_LIBM does it this way.
+ # FIXME: What does -lmw mean? Libtool AC CHECK LIBM does it this way.
AC_CHECK_LIB(mw, _mwvalidcheckl, MPFR_LIBM="-lmw")
AC_CHECK_LIB(m, main, MPFR_LIBM="$MPFR_LIBM -lm")
;;