changeset 16600:4f9e6148ce6a libc-961120

If no sys/param.h, default to 8k.
author David J. MacKenzie <djm@gnu.org>
date Tue, 19 Nov 1996 18:40:34 +0000
parents ae726fd5403b
children 7361b2115a77
files src/getpagesize.h
diffstat 1 files changed, 24 insertions(+), 20 deletions(-) [+]
line wrap: on
line diff
--- a/src/getpagesize.h	Tue Nov 19 18:34:08 1996 +0000
+++ b/src/getpagesize.h	Tue Nov 19 18:40:34 1996 +0000
@@ -12,26 +12,30 @@
 
 # ifdef _SC_PAGESIZE
 #  define getpagesize() sysconf(_SC_PAGESIZE)
-# else
-#  include <sys/param.h>
-#  ifdef EXEC_PAGESIZE
-#   define getpagesize() EXEC_PAGESIZE
-#  else /* no EXEC_PAGESIZE */
-#   ifdef NBPG
-#    define getpagesize() NBPG * CLSIZE
-#    ifndef CLSIZE
-#     define CLSIZE 1
-#    endif /* no CLSIZE */
-#   else /* no NBPG */
-#    ifdef NBPC
-#     define getpagesize() NBPC
-#    else /* no NBPC */
-#     ifdef PAGESIZE
-#      define getpagesize() PAGESIZE
-#     endif /* PAGESIZE */
-#    endif /* no NBPC */
-#   endif /* no NBPG */
-#  endif /* no EXEC_PAGESIZE */
+# else /* no _SC_PAGESIZE */
+#  ifdef HAVE_SYS_PARAM_H
+#   include <sys/param.h>
+#   ifdef EXEC_PAGESIZE
+#    define getpagesize() EXEC_PAGESIZE
+#   else /* no EXEC_PAGESIZE */
+#    ifdef NBPG
+#     define getpagesize() NBPG * CLSIZE
+#     ifndef CLSIZE
+#      define CLSIZE 1
+#     endif /* no CLSIZE */
+#    else /* no NBPG */
+#     ifdef NBPC
+#      define getpagesize() NBPC
+#     else /* no NBPC */
+#      ifdef PAGESIZE
+#       define getpagesize() PAGESIZE
+#      endif /* PAGESIZE */
+#     endif /* no NBPC */
+#    endif /* no NBPG */
+#   endif /* no EXEC_PAGESIZE */
+#  else /* no HAVE_SYS_PARAM_H */
+#   define getpagesize() 8192	/* punt totally */
+#  endif /* no HAVE_SYS_PARAM_H */
 # endif /* no _SC_PAGESIZE */
 
 #endif /* no HAVE_GETPAGESIZE */