changeset 15460:ec2cc408342a

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".
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 25 Jul 2011 07:38:52 -0700
parents 1b5ac5980a11
children f8d00d05e879
files ChangeLog m4/close.m4
diffstat 2 files changed, 11 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- a/m4/close.m4
+++ b/m4/close.m4
@@ -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_REQUIRE([gl_UNISTD_H_DEFAULTS])
   REPLACE_CLOSE=1
   AC_LIBOBJ([close])
-  gl_REPLACE_FCLOSE
+  m4_ifdef([gl_REPLACE_FCLOSE], [gl_REPLACE_FCLOSE])
 ])