fcntl-h: Fix for use of C++ on glibc systems.
authorBruno Haible <bruno@clisp.org>
Fri, 12 Nov 2010 02:20:13 +0000 (03:20 +0100)
committerBruno Haible <bruno@clisp.org>
Fri, 12 Nov 2010 02:20:13 +0000 (03:20 +0100)
* lib/fcntl.in.h: Include <sys/stat.h> before include_next <fcntl.h>
also on glibc systems in C++ mode.
Reported by Gary V. Vaughan <gary@gnu.org>.

ChangeLog
lib/fcntl.in.h

index 8c4cde9581f6ce389ea41fbb9f22794c730255bd..d9e32a88f4da21a3abddce145b7887fa7b008f96 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2010-11-11  Bruno Haible  <bruno@clisp.org>
+
+       fcntl-h: Fix for use of C++ on glibc systems.
+       * lib/fcntl.in.h: Include <sys/stat.h> before include_next <fcntl.h>
+       also on glibc systems in C++ mode.
+       Reported by Gary V. Vaughan <gary@gnu.org>.
+
 2010-11-11  Christian Weisgerber  <naddy@mips.inka.de>  (tiny change)
 
        mknod: avoid false failure with dash
index 663e49f32beefe0c2cef9851bd1e16419fca88c9..13f5dde97ba738fed18f55ec1ed6cbc361f132f2 100644 (file)
 /* Special invocation convention.  */
 
 #include <sys/types.h>
-#ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems.  */
+/* On some systems other than glibc, <sys/stat.h> is a prerequisite of
+   <fcntl.h>.  On glibc systems, we would like to avoid namespace pollution.
+   But on glibc systems, <fcntl.h> includes <sys/stat.h> inside an
+   extern "C" { ... } block, which leads to errors in C++ mode with the
+   overridden <sys/stat.h> from gnulib.  These errors are known to be gone
+   with g++ version >= 4.3.  */
+#if !defined __GLIBC__ || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)))
 # include <sys/stat.h>
 #endif
 #@INCLUDE_NEXT@ @NEXT_FCNTL_H@