close: use gl_REPLACE_FCLOSE only if defined
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Jul 2011 14:38:52 +0000 (07:38 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 25 Jul 2011 14:39:36 +0000 (07:39 -0700)
* m4/close.m4 (gl_REPLACE_CLOSE): Use gl_REPLACE_FCLOSE only if it
is defined.  The close module doesn't depend on the fclose module
any more, so gl_REPLACE_CLOSE's existence cannot be assumed.  See
<http://lists.gnu.org/archive/html/bug-gnulib/2011-07/msg00392.html>.
I reproduced the problem with "./gnulib-tool --test close sys_socket".

ChangeLog
m4/close.m4

index e7ca0e6..b8da59a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2011-07-25  Paul Eggert  <eggert@cs.ucla.edu>
+
+       close: use gl_REPLACE_FCLOSE only if defined
+       * m4/close.m4 (gl_REPLACE_CLOSE): Use gl_REPLACE_FCLOSE only if it
+       is defined.  The close module doesn't depend on the fclose module
+       any more, so gl_REPLACE_CLOSE's existence cannot be assumed.  See
+       <http://lists.gnu.org/archive/html/bug-gnulib/2011-07/msg00392.html>.
+       I reproduced the problem with "./gnulib-tool --test close sys_socket".
+
 2011-07-24  Jim Meyering  <meyering@redhat.com>
 
        test-select.h: avoid warning when using gcc's -Wmissing-declarations
index fc13138..0d8f67a 100644 (file)
@@ -1,4 +1,4 @@
-# close.m4 serial 5
+# close.m4 serial 6
 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,
@@ -22,5 +22,5 @@ AC_DEFUN([gl_REPLACE_CLOSE],
   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
   REPLACE_CLOSE=1
   AC_LIBOBJ([close])
-  gl_REPLACE_FCLOSE
+  m4_ifdef([gl_REPLACE_FCLOSE], [gl_REPLACE_FCLOSE])
 ])