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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10266
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
1 Description:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
2 isnanf() function: test for NaN.
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
3
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
4 Files:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
5 lib/isnanf.c
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
6 lib/isnan.c
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
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
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
9 m4/isnanf.m4
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
10
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
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
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
13 fpieee
10748
0ef26bffcbe1 Mark 'memcmp' obsolete.
Bruno Haible <bruno@clisp.org>
parents: 10667
diff changeset
14 memcmp
10266
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
15
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
16 configure.ac:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
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
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
26
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
27 Makefile.am:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
28
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
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
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
31
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
32 Link:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
33 $(ISNANF_LIBM)
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
34
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
35 License:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
36 LGPL
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
37
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
38 Maintainer:
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
39 Bruno Haible
c0565d2cba32 Add isnanf module.
Ben Pfaff <blp@cs.stanford.edu>
parents:
diff changeset
40