(AT_FDCWD): Work around a bug in Solaris 9 and 10, where
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 21 Feb 2006 06:42:29 +0000 (06:42 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 21 Feb 2006 06:42:29 +0000 (06:42 +0000)
AT_FDCWD exceeds INT_MAX.

lib/ChangeLog
lib/getcwd.c
lib/openat.h

index a216120606b91bfd646308e53551e3ed54ae8d21..3756ac55cf72a2bf2cd539e0002cbedb21a8d4a3 100644 (file)
@@ -1,3 +1,9 @@
+2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
+       AT_FDCWD exceeds INT_MAX.
+       * openat.h (AT_FDCWD): Likewise.
+
 2006-02-17  Jim Meyering  <jim@meyering.net>
 
        * openat.c: Include lstat.h, so that uses of lstat are converted
index ec1771b83d87ed90d6f0b23cf467f8d539f852ef..5bb9e4be14eb61de5be91734fb4cacd065624d56 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2004,2005 Free Software
+/* Copyright (C) 1991,92,93,94,95,96,97,98,99,2004,2005,2006 Free Software
    Foundation, Inc.
    This file is part of the GNU C Library.
 
 
 #include <limits.h>
 
+/* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its
+   value exceeds INT_MAX, so its use as an int doesn't conform to the
+   C standard, and GCC and Sun C complain in some cases.  */
+#if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
+# undef AT_FDCWD
+# define AT_FDCWD (-3041965)
+#endif
+
 #ifdef ENAMETOOLONG
 # define is_ENAMETOOLONG(x) ((x) == ENAMETOOLONG)
 #else
index aa900c72eb0fdcbcf1e2c574318e6bcc5bd66f94..017cf5cb05101d6bd3ff0ee6db7bfefd8905a86c 100644 (file)
 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
 #endif
 
+/* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive.  Its
+   value exceeds INT_MAX, so its use as an int doesn't conform to the
+   C standard, and GCC and Sun C complain in some cases.  If the bug
+   is present, undef AT_FDCWD here, so it can be redefined below.  */
+#if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553
+# undef AT_FDCWD
+#endif
+
+/* Use the same bit pattern as Solaris 9, but with the proper
+   signedness.  The bit pattern is important, in case this actually is
+   Solaris with the above workaround.  */
 #ifndef AT_FDCWD
+# define AT_FDCWD (-3041965)
+#endif
+
 /* Use the same values as Solaris 9.  This shouldn't matter, but
    there's no real reason to differ.  */
-# define AT_FDCWD (-3041965)
+#ifndef AT_SYMLINK_NOFOLLOW
 # define AT_SYMLINK_NOFOLLOW 4096
 # define AT_REMOVEDIR 1
 #endif