Mercurial > hg > octave-kai > gnulib-hg
annotate modules/isnanf @ 15053:d8eeaab555f5
mktime: Respect rules for use of AC_LIBOBJ.
* m4/mktime.m4 (AC_FUNC_MKTIME): Remove macro.
(gl_FUNC_MKTIME): Inline it here. Set gl_cv_func_working_mktime. Move
AC_LIBOBJ and gl_PREREQ_MKTIME invocations from here...
(gl_FUNC_MKTIME_INTERNAL): ... and here...
* modules/mktime (configure.ac): ... to here.
* modules/mktime-internal (configure.ac): ... and here.
* m4/timegm.m4 (gl_FUNC_TIMEGM): Update.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 21 May 2011 16:14:17 +0200 |
parents | 369a2b1bfba1 |
children |
rev | line source |
---|---|
10266 | 1 Description: |
2 isnanf() function: test for NaN. | |
3 | |
4 Files: | |
5 lib/isnanf.c | |
6 lib/isnan.c | |
7 lib/float+.h | |
10286
12944217dba7
Move macros for finding floating-point exponents into separate M4 files.
Ben Pfaff <blp@cs.stanford.edu>
parents:
10266
diff
changeset
|
8 m4/exponentf.m4 |
10266 | 9 m4/isnanf.m4 |
10 | |
11 Depends-on: | |
10667
678640901735
Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
12 math |
10266 | 13 fpieee |
10748 | 14 memcmp |
10266 | 15 |
16 configure.ac: | |
17 gl_FUNC_ISNANF | |
14996
369a2b1bfba1
isnan: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14993
diff
changeset
|
18 m4_ifdef([gl_ISNAN], [ |
369a2b1bfba1
isnan: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14993
diff
changeset
|
19 AC_REQUIRE([gl_ISNAN]) |
369a2b1bfba1
isnan: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14993
diff
changeset
|
20 ]) |
369a2b1bfba1
isnan: Respect rules for use of AC_LIBOBJ.
Bruno Haible <bruno@clisp.org>
parents:
14993
diff
changeset
|
21 if test $HAVE_ISNANF = 0 || test $REPLACE_ISNAN = 1; then |
14993
0b565f0b19ad
isnanf*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10748
diff
changeset
|
22 AC_LIBOBJ([isnanf]) |
0b565f0b19ad
isnanf*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10748
diff
changeset
|
23 gl_PREREQ_ISNANF |
0b565f0b19ad
isnanf*: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
10748
diff
changeset
|
24 fi |
10667
678640901735
Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
25 gl_MATH_MODULE_INDICATOR([isnanf]) |
10266 | 26 |
27 Makefile.am: | |
28 | |
29 Include: | |
10667
678640901735
Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
Bruno Haible <bruno@clisp.org>
parents:
10286
diff
changeset
|
30 <math.h> |
10266 | 31 |
32 Link: | |
33 $(ISNANF_LIBM) | |
34 | |
35 License: | |
36 LGPL | |
37 | |
38 Maintainer: | |
39 Bruno Haible | |
40 |