projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
40cb8a4
)
Fix last patch for real.
author
Bruno Haible
<bruno@clisp.org>
Tue, 29 May 2007 22:56:54 +0000
(22:56 +0000)
committer
Bruno Haible
<bruno@clisp.org>
Tue, 29 May 2007 22:56:54 +0000
(22:56 +0000)
ChangeLog
patch
|
blob
|
history
m4/isnanf.m4
patch
|
blob
|
history
diff --git
a/ChangeLog
b/ChangeLog
index 2f97fc610f628c55b4c255761c20fc39a9af5196..01766c425870ea914b1e80b53ff125b6dad0e3db 100644
(file)
--- a/
ChangeLog
+++ b/
ChangeLog
@@
-1,4
+1,5
@@
2007-05-29 Eric Blake <ebb9@byu.net>
+ Bruno Haible <bruno@clisp.org>
* m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
cross compiles.
diff --git
a/m4/isnanf.m4
b/m4/isnanf.m4
index ea75d951e07484257753a14c75fd6be22589b2ff..99f2b2eddad671adbc0ffbcd3b4b274a6f983711 100644
(file)
--- a/
m4/isnanf.m4
+++ b/
m4/isnanf.m4
@@
-13,7
+13,11
@@
AC_DEFUN([gl_FUNC_ISNANF_NO_LIBM],
gl_ISNANF_WORKS
fi
if test $gl_cv_func_isnanf_no_libm = yes \
- && test "$gl_cv_func_isnanf_works" = yes; then
+ && { case "$gl_cv_func_isnanf_works" in
+ *yes) true;;
+ *) false;;
+ esac
+ }; then
AC_DEFINE([HAVE_ISNANF_IN_LIBC], 1,
[Define if the isnan(float) function is available in libc.])
else