Mercurial > hg > octave-shane > gnulib-hg
annotate modules/isnanf @ 17632:86af85d364e1 default tip
unistd: port readlink to Mac OS X 10.3.9
* lib/unistd.in.h (_GL_INCLUDING_UNISTD_H): New macro, to work
around self-include problem in Mac OS X 10.3.9 when combined with
readlink module. Problem reported by Klaus Zietler in
<http://bugs.gnu.org/16825>.
author | Paul Eggert <eggert@penguin.cs.ucla.edu> |
---|---|
date | Tue, 25 Feb 2014 11:16:27 -0800 |
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 |