system.h: Prototype getpagesize if missing.
authorAaron W. LaFramboise <aaronraolete36@aaronwl.com>
Thu, 8 Jul 2004 23:05:29 +0000 (23:05 +0000)
committerPer Bothner <bothner@gcc.gnu.org>
Thu, 8 Jul 2004 23:05:29 +0000 (16:05 -0700)
* system.h: Prototype getpagesize if missing.
* configure.ac: Add getpagesize to gcc_AC_CHECK_DECLS.
* configure: Regenerate.
* config.in: Regenerate.

From-SVN: r84323

gcc/ChangeLog
gcc/config.in
gcc/configure
gcc/configure.ac
gcc/system.h

index 0540720b3b933958e5d23c97b7c9cd5807208ade..e6886763fd830fdd6f35ddbaa8dc33bedc43ed85 100644 (file)
@@ -1,3 +1,10 @@
+2004-05-31  Aaron W. LaFramboise <aaronraolete36@aaronwl.com>
+
+       * system.h: Prototype getpagesize if missing.
+       * configure.ac: Add getpagesize to gcc_AC_CHECK_DECLS.
+       * configure: Regenerate.
+       * config.in: Regenerate.
+
 2004-07-08  Richard Henderson  <rth@redhat.com>
 
        * config/fr30/fr30-protos.h (fr30_va_arg): Remove.
index ab3a67083291117c3c80008597bd773af9e72d29..2b213a2fdff3ccf5d62a9f7eab4526833fd36f22 100644 (file)
    */
 #undef HAVE_DECL_GETOPT
 
+/* Define to 1 if we found a declaration for 'getpagesize', otherwise define
+   to 0. */
+#undef HAVE_DECL_GETPAGESIZE
+
 /* Define to 1 if we found a declaration for 'getrlimit', otherwise define to
    0. */
 #undef HAVE_DECL_GETRLIMIT
index b3cfb37828333a6d8cec6da80f42fe5769b02d6c..f2a5e6775f3978c029fa37753387253f41f0ade1 100755 (executable)
@@ -8206,12 +8206,13 @@ CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
 
 
 
+
 
 
 for ac_func in getenv atol sbrk abort atof getcwd getwd \
        strsignal putc_unlocked fputs_unlocked fwrite_unlocked \
         fprintf_unlocked strstr errno snprintf vasprintf \
-       malloc realloc calloc free basename getopt clock
+       malloc realloc calloc free basename getopt clock getpagesize
 do
   ac_tr_decl=`echo "HAVE_DECL_$ac_func" | $as_tr_cpp`
 echo "$as_me:$LINENO: checking whether $ac_func is declared" >&5
index d965c1147b34e89129a126b1787fc716b3f5cfbb..7535bc93b3dc183ed22229022d78205dbcd5ea95 100644 (file)
@@ -998,7 +998,7 @@ CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
 gcc_AC_CHECK_DECLS(getenv atol sbrk abort atof getcwd getwd \
        strsignal putc_unlocked fputs_unlocked fwrite_unlocked \
         fprintf_unlocked strstr errno snprintf vasprintf \
-       malloc realloc calloc free basename getopt clock, , ,[
+       malloc realloc calloc free basename getopt clock getpagesize, , ,[
 #include "ansidecl.h"
 #include "system.h"])
 
index 90d906b3b3a078d99155efdc534c41b7e235f9d8..c23a34954c6c33b4b37854e7001320dfff16327c 100644 (file)
@@ -303,6 +303,10 @@ extern char *getenv (const char *);
 extern int getopt (int, char * const *, const char *);
 #endif
 
+#if defined(HAVE_DECL_GETPAGESIZE) && !HAVE_DECL_GETPAGESIZE
+extern long getpagesize (void);
+#endif
+
 #if defined (HAVE_DECL_GETWD) && !HAVE_DECL_GETWD
 extern char *getwd (char *);
 #endif