From: Eric Blake Date: Mon, 13 Sep 2010 20:33:22 +0000 (-0600) Subject: float: fix broken MirBSD header X-Git-Tag: v0.1~3812 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=2ce5b03dcb01f6554b59e19719396803ad34ca01;p=gnulib.git float: fix broken MirBSD header * m4/float_h.m4 (gl_FLOAT_H): MirBSD copied OpenBSD's bug. * doc/posix-headers/float.texi (float.h): Document it. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index f2c83018f..76fdacb1e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-09-13 Eric Blake + + float: fix broken MirBSD header + * m4/float_h.m4 (gl_FLOAT_H): MirBSD copied OpenBSD's bug. + * doc/posix-headers/float.texi (float.h): Document it. + 2010-09-13 Paul Eggert fts: use O_NOFOLLOW to avoid race condition when opening a directory diff --git a/doc/posix-headers/float.texi b/doc/posix-headers/float.texi index 7d2e79eaa..476fd1600 100644 --- a/doc/posix-headers/float.texi +++ b/doc/posix-headers/float.texi @@ -9,7 +9,7 @@ Portability problems fixed by Gnulib: @itemize @item The values of @code{LDBL_*} macros are incorrect on some platforms: -On OpenBSD 4.0 and BeOS, they are the same as the values of the +On OpenBSD 4.0, MirBSD 10, and BeOS, they are the same as the values of the @code{DBL_*} macros, although @samp{long double} is a larger type than @samp{double}. @end itemize diff --git a/m4/float_h.m4 b/m4/float_h.m4 index a74a0d957..f6099db40 100644 --- a/m4/float_h.m4 +++ b/m4/float_h.m4 @@ -1,4 +1,4 @@ -# float_h.m4 serial 3 +# float_h.m4 serial 4 dnl Copyright (C) 2007, 2009, 2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -10,7 +10,7 @@ AC_DEFUN([gl_FLOAT_H], AC_REQUIRE([AC_CANONICAL_HOST]) FLOAT_H= case "$host_os" in - beos* | openbsd*) + beos* | openbsd* | mirbsd*) FLOAT_H=float.h gl_CHECK_NEXT_HEADERS([float.h]) ;;