* m4/isnanf.m4 (gl_FUNC_ISNANF, gl_FUNC_ISNANF_NO_LIBM): Move AC_LIBOBJ
invocation from here...
* modules/isnanf (configure.ac): ... to here.
* modules/isnanf-nolibm (configure.ac): ... and here.
+2011-05-20 Bruno Haible <bruno@clisp.org>
+
+ isnanf*: Move AC_LIBOBJ invocations to module description.
+ * m4/isnanf.m4 (gl_FUNC_ISNANF, gl_FUNC_ISNANF_NO_LIBM): Move AC_LIBOBJ
+ invocation from here...
+ * modules/isnanf (configure.ac): ... to here.
+ * modules/isnanf-nolibm (configure.ac): ... and here.
+
2011-05-20 Bruno Haible <bruno@clisp.org>
isnan*: Separate the AC_LIBOBJ invocations.
-# isnanf.m4 serial 13
+# isnanf.m4 serial 14
dnl Copyright (C) 2007-2011 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
fi
if test $gl_func_isnanf != yes; then
HAVE_ISNANF=0
- AC_LIBOBJ([isnanf])
- gl_PREREQ_ISNANF
fi
AC_SUBST([ISNANF_LIBM])
])
*) false;;
esac
}; then
+ gl_func_isnanf_no_libm=yes
AC_DEFINE([HAVE_ISNANF_IN_LIBC], [1],
[Define if the isnan(float) function is available in libc.])
else
- AC_LIBOBJ([isnanf])
- gl_PREREQ_ISNANF
+ gl_func_isnanf_no_libm=no
fi
])
configure.ac:
gl_FUNC_ISNANF
+if test $HAVE_ISNANF = 0; then
+ AC_LIBOBJ([isnanf])
+ gl_PREREQ_ISNANF
+fi
gl_MATH_MODULE_INDICATOR([isnanf])
Makefile.am:
configure.ac:
gl_FUNC_ISNANF_NO_LIBM
+if test $gl_func_isnanf_no_libm != yes; then
+ AC_LIBOBJ([isnanf])
+ gl_PREREQ_ISNANF
+fi
Makefile.am: