Extension modules
-----------------
+- Patch #1005568: Use _SC_PAGESIZE on Irix in resourcemoudle.
+
- Patch #924294: Do no check for AF_INET6 if it is not defined.
- Patch #954115: Properly handle UNC roots in nt.stat.
#if defined(HAVE_GETPAGESIZE)
pagesize = getpagesize();
#elif defined(HAVE_SYSCONF)
+#if defined(_SC_PAGE_SIZE)
pagesize = sysconf(_SC_PAGE_SIZE);
+#else
+ /* Irix 5.3 has _SC_PAGESIZE, but not _SC_PAGE_SIZE */
+ pagesize = sysconf(_SC_PAGESIZE);
+#endif
#endif
return Py_BuildValue("i", pagesize);