Mercurial > hg > octave-kai > gnulib-hg
annotate modules/copysignl @ 17431:744044c581c4
getcwd-lgpl: port to Tru64
* lib/getcwd-lgpl.c: Include <stdlib.h>, for malloc etc.
Problem reported by Steven M. Schweda in
<http://lists.gnu.org/archive/html/bug-gzip/2013-06/msg00010.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Tue, 11 Jun 2013 19:52:46 -0700 |
parents | fdbe3125f81a |
children |
rev | line source |
---|---|
15913 | 1 Description: |
2 copysignl() function: copy sign into another 'long double' number. | |
3 | |
4 Files: | |
5 lib/copysignl.c | |
6 m4/copysignl.m4 | |
7 m4/mathfunc.m4 | |
8 | |
9 Depends-on: | |
10 math | |
16580
fdbe3125f81a
math: Ensure declarations of math functions.
Bruno Haible <bruno@clisp.org>
parents:
15922
diff
changeset
|
11 extensions |
15922
e8d90530f5fd
copysignl: Simplify for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
15913
diff
changeset
|
12 copysign [test $HAVE_COPYSIGNL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 1] |
e8d90530f5fd
copysignl: Simplify for platforms where 'long double' == 'double'.
Bruno Haible <bruno@clisp.org>
parents:
15913
diff
changeset
|
13 signbit [test $HAVE_COPYSIGNL = 0 && test $HAVE_SAME_LONG_DOUBLE_AS_DOUBLE = 0] |
15913 | 14 |
15 configure.ac: | |
16 gl_FUNC_COPYSIGNL | |
17 if test $HAVE_COPYSIGNL = 0; then | |
18 AC_LIBOBJ([copysignl]) | |
19 fi | |
20 gl_MATH_MODULE_INDICATOR([copysignl]) | |
21 | |
22 Makefile.am: | |
23 | |
24 Include: | |
25 <math.h> | |
26 | |
27 Link: | |
28 $(COPYSIGNL_LIBM) | |
29 | |
30 License: | |
31 LGPL | |
32 | |
33 Maintainer: | |
34 Bruno Haible |