From 3f479d3b6728217e11882f087b6024803b5b6a07 Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Fri, 11 Apr 2008 17:57:01 +0200 Subject: [PATCH] Remove pagesize check from configure. It is unused, and not a good thing to compile this in. --- configure.ac | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/configure.ac b/configure.ac index ee756cf75..78a7a45c0 100644 --- a/configure.ac +++ b/configure.ac @@ -255,44 +255,6 @@ AC_CHECK_SIZEOF(int) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(long long) -dnl Memory manager -dnl ============== - -AC_MSG_CHECKING([the system's memory page size]) -pagesize="no" -AC_TRY_RUN([ -#include -#if HAVE_UNISTD_H -# include -#endif - -int main(void) { - FILE *fp = fopen("conftest.malloc", "w"); - - if (fp != NULL) { - fprintf(fp, "%d\n", getpagesize()); - fclose(fp); - } else - exit(1); - exit(0); -}],[ -if test -f "conftest.malloc" ; then - pagesize=`cat conftest.malloc` -fi -]) -if test "$pagesize" != "no" ; then - AC_MSG_RESULT($pagesize) -else - if test "$ac_cv_sizeof_int" = "4" ; then - pagesize=4096 - else - pagesize=8192 - fi - AC_MSG_RESULT([$pagesize (guessing)]) -fi -AC_DEFINE_UNQUOTED(MALLOC_PAGESIZE, $pagesize, - [the system's memory page size]) - dnl Networking Functions dnl ====================