Move declaration of getpagesize() from getpagesize.h to unistd.h.
[pspp] / m4 / getpagesize.m4
1 # getpagesize.m4 serial 7
2 dnl Copyright (C) 2002, 2004-2005, 2007 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_GETPAGESIZE],
8 [
9   AC_REQUIRE([gl_UNISTD_H_DEFAULTS])
10   AC_CHECK_FUNCS([getpagesize])
11   if test $ac_cv_func_getpagesize = no; then
12     HAVE_GETPAGESIZE=0
13     AC_CHECK_HEADERS([OS.h])
14     if test $ac_cv_header_OS_h = yes; then
15       HAVE_OS_H=1
16     fi
17     AC_CHECK_HEADERS([sys/param.h])
18     if test $ac_cv_header_sys_param_h = yes; then
19       HAVE_SYS_PARAM_H=1
20     fi
21   fi
22 ])