]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
* src/system.h (EDQUOT): Define if not already defined.
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Aug 2006 19:14:25 +0000 (19:14 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Wed, 23 Aug 2006 19:14:25 +0000 (19:14 +0000)
ChangeLog
src/system.h

index 2010825bc42025dda84dc829d5d685143ab4de9a..c046246868c2522ade0051ab09a96ca866dbfae9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * src/system.h (EDQUOT): Define if not already defined.
+       Problem reported by Bruno Haible for BeOS.
+
        * .cvsignore: Remove config.h, config.hin, as they are now
        in lib.
        * configure.ac (AC_CONFIG_HEADERS): Move config.h and config.hin
index ff1161943cbca47473d5b5159268b09484c7220d..e395fbeaebd3e89b1fdf26a4978376ac05309b12 100644 (file)
@@ -104,12 +104,15 @@ you must include <sys/types.h> before including this file
 #include <errno.h>
 
 /* Some systems don't define the following symbols.  */
-#ifndef ENOSYS
-# define ENOSYS (-1)
+#ifndef EDQUOT
+# define EDQUOT (-1)
 #endif
 #ifndef EISDIR
 # define EISDIR (-1)
 #endif
+#ifndef ENOSYS
+# define ENOSYS (-1)
+#endif
 
 #include <stdbool.h>
 #include <stdlib.h>