Mercurial > hg > octave-shane > gnulib-hg
comparison modules/isnanl @ 14996:369a2b1bfba1
isnan: Respect rules for use of AC_LIBOBJ.
* m4/isnan.m4 (gl_ISNAN): Don't do the AC_LIBOBJ and gl_PREREQ_ISNAN*
invocations here.
* modules/isnanf (configure.ac): Require gl_ISNAN if it exists. Test
REPLACE_ISNAN.
* modules/isnand (configure.ac): Likewise.
* modules/isnanl (configure.ac): Likewise.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 02:21:30 +0200 |
parents | 4e1b0338ea60 |
children |
comparison
equal
deleted
inserted
replaced
14995:4e1b0338ea60 | 14996:369a2b1bfba1 |
---|---|
14 fpieee | 14 fpieee |
15 memcmp | 15 memcmp |
16 | 16 |
17 configure.ac: | 17 configure.ac: |
18 gl_FUNC_ISNANL | 18 gl_FUNC_ISNANL |
19 if test $HAVE_ISNANL = 0; then | 19 m4_ifdef([gl_ISNAN], [ |
20 AC_REQUIRE([gl_ISNAN]) | |
21 ]) | |
22 if test $HAVE_ISNANL = 0 || test $REPLACE_ISNAN = 1; then | |
20 AC_LIBOBJ([isnanl]) | 23 AC_LIBOBJ([isnanl]) |
21 gl_PREREQ_ISNANL | 24 gl_PREREQ_ISNANL |
22 fi | 25 fi |
23 gl_MATH_MODULE_INDICATOR([isnanl]) | 26 gl_MATH_MODULE_INDICATOR([isnanl]) |
24 | 27 |