Blame SOURCES/00114-statvfs-f_flag-constants.patch

6e8c2f
diff -up Python-2.7rc1/Modules/posixmodule.c.statvfs-f-flag-constants Python-2.7rc1/Modules/posixmodule.c
6e8c2f
--- Python-2.7rc1/Modules/posixmodule.c.statvfs-f-flag-constants	2010-05-15 17:45:30.000000000 -0400
6e8c2f
+++ Python-2.7rc1/Modules/posixmodule.c	2010-06-07 22:54:16.162068624 -0400
6e8c2f
@@ -9174,6 +9174,43 @@ all_ins(PyObject *d)
6e8c2f
 #endif
6e8c2f
 #endif
6e8c2f
 
6e8c2f
+    /* These came from statvfs.h */
6e8c2f
+#ifdef ST_RDONLY
6e8c2f
+    if (ins(d, "ST_RDONLY", (long)ST_RDONLY)) return -1;
6e8c2f
+#endif /* ST_RDONLY */
6e8c2f
+#ifdef ST_NOSUID
6e8c2f
+    if (ins(d, "ST_NOSUID", (long)ST_NOSUID)) return -1;
6e8c2f
+#endif /* ST_NOSUID */
6e8c2f
+    
6e8c2f
+    /* GNU extensions */
6e8c2f
+#ifdef ST_NODEV
6e8c2f
+    if (ins(d, "ST_NODEV", (long)ST_NODEV)) return -1;
6e8c2f
+#endif /* ST_NODEV */
6e8c2f
+#ifdef ST_NOEXEC
6e8c2f
+    if (ins(d, "ST_NOEXEC", (long)ST_NOEXEC)) return -1;
6e8c2f
+#endif /* ST_NOEXEC */
6e8c2f
+#ifdef ST_SYNCHRONOUS
6e8c2f
+    if (ins(d, "ST_SYNCHRONOUS", (long)ST_SYNCHRONOUS)) return -1;
6e8c2f
+#endif /* ST_SYNCHRONOUS */
6e8c2f
+#ifdef ST_MANDLOCK
6e8c2f
+    if (ins(d, "ST_MANDLOCK", (long)ST_MANDLOCK)) return -1;
6e8c2f
+#endif /* ST_MANDLOCK */
6e8c2f
+#ifdef ST_WRITE
6e8c2f
+    if (ins(d, "ST_WRITE", (long)ST_WRITE)) return -1;
6e8c2f
+#endif /* ST_WRITE */
6e8c2f
+#ifdef ST_APPEND
6e8c2f
+    if (ins(d, "ST_APPEND", (long)ST_APPEND)) return -1;
6e8c2f
+#endif /* ST_APPEND */
6e8c2f
+#ifdef ST_NOATIME
6e8c2f
+    if (ins(d, "ST_NOATIME", (long)ST_NOATIME)) return -1;
6e8c2f
+#endif /* ST_NOATIME */
6e8c2f
+#ifdef ST_NODIRATIME
6e8c2f
+    if (ins(d, "ST_NODIRATIME", (long)ST_NODIRATIME)) return -1;
6e8c2f
+#endif /* ST_NODIRATIME */
6e8c2f
+#ifdef ST_RELATIME
6e8c2f
+    if (ins(d, "ST_RELATIME", (long)ST_RELATIME)) return -1;
6e8c2f
+#endif /* ST_RELATIME */
6e8c2f
+    
6e8c2f
 #if defined(PYOS_OS2)
6e8c2f
     if (insertvalues(d)) return -1;
6e8c2f
 #endif