Mercurial > hg > octave-kai > gnulib-hg
changeset 15983:19adf9aa1ea0
perror: Fix indentation.
* m4/perror.m4 (gl_FUNC_PERROR): Fix indentation.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 22 Oct 2011 14:21:19 +0200 (2011-10-22) |
parents | a63613865d90 |
children | 38d63be28832 |
files | ChangeLog m4/perror.m4 |
diffstat | 2 files changed, 18 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-10-22 Bruno Haible <bruno@clisp.org> + + perror: Fix indentation. + * m4/perror.m4 (gl_FUNC_PERROR): Fix indentation. + 2011-10-22 Bruno Haible <bruno@clisp.org> isfinite, isinf, isnan, signbit: Don't define as a macro in C++.
--- a/m4/perror.m4 +++ b/m4/perror.m4 @@ -1,4 +1,4 @@ -# perror.m4 serial 4 +# perror.m4 serial 5 dnl Copyright (C) 2008-2011 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -46,12 +46,17 @@ rm -rf conftest.txt1 conftest.txt2], [gl_cv_func_perror_works=no], [dnl Guess no when cross-compiling. - gl_cv_func_perror_works="guessing no"])]) - if test "$gl_cv_func_perror_works" != yes; then - REPLACE_PERROR=1 - fi ;; - *) dnl The system's perror() probably inherits the bugs in the - dnl system's strerror_r(). Replace it. - REPLACE_PERROR=1 ;; + gl_cv_func_perror_works="guessing no" + ]) + ]) + if test "$gl_cv_func_perror_works" != yes; then + REPLACE_PERROR=1 + fi + ;; + *) + dnl The system's perror() probably inherits the bugs in the + dnl system's strerror_r(). Replace it. + REPLACE_PERROR=1 + ;; esac ])