* m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): Move AC_LIBOBJ
invocation from here...
* modules/frexpl (configure.ac): ... to here.
* modules/frexpl-nolibm (configure.ac): ... and here.
+2011-05-20 Bruno Haible <bruno@clisp.org>
+
+ frexpl*: Respect rules for use of AC_LIBOBJ.
+ * m4/frexpl.m4 (gl_FUNC_FREXPL, gl_FUNC_FREXPL_NO_LIBM): Move AC_LIBOBJ
+ invocation from here...
+ * modules/frexpl (configure.ac): ... to here.
+ * modules/frexpl-nolibm (configure.ac): ... and here.
+
2011-05-20 Bruno Haible <bruno@clisp.org>
frexp, frexp-nolibm: Move AC_LIBOBJ invocations to module description.
-# frexpl.m4 serial 13
+# frexpl.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,
[Define if the frexpl() function is available.])
fi
fi
- if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; then
- AC_LIBOBJ([frexpl])
- fi
AC_SUBST([FREXPL_LIBM])
])
[Define if the frexpl() function is available in libc.])
fi
fi
- if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl_no_libm = no; then
- AC_LIBOBJ([frexpl])
- fi
])
dnl Test whether frexpl() can be used without linking with libm.
configure.ac:
gl_FUNC_FREXPL
+if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl = no; then
+ AC_LIBOBJ([frexpl])
+fi
gl_MATH_MODULE_INDICATOR([frexpl])
Makefile.am:
configure.ac:
gl_FUNC_FREXPL_NO_LIBM
+if test $HAVE_DECL_FREXPL = 0 || test $gl_func_frexpl_no_libm = no; then
+ AC_LIBOBJ([frexpl])
+fi
gl_MATH_MODULE_INDICATOR([frexpl])
Makefile.am: