From e25c6d9cca2c2e7d732c72e8c91daaf2fa1c68e1 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 3 Apr 2010 15:43:45 +0200 Subject: [PATCH] getpagesize: Fix C++ test error on mingw. --- ChangeLog | 11 +++++++++++ lib/unistd.in.h | 2 ++ m4/getpagesize.m4 | 5 ++++- m4/unistd_h.m4 | 3 ++- modules/unistd | 1 + 5 files changed, 20 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f39ca5a1a..fc64c562b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,16 @@ 2010-04-03 Bruno Haible + getpagesize: Fix C++ test error on mingw. + * lib/unistd.in.h (getpagesize): Don't use _GL_CXXALIASWARN if the + system does not declare the function. + * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Also check whether it's + declared. + * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize + HAVE_DECL_GETPAGESIZE. + * modules/unistd (Makefile.am): Substitute HAVE_DECL_GETPAGESIZE. + +2010-04-03 Bruno Haible + stdio: Make C++ tests work on mingw. * lib/stdio.in.h (getline): Don't use _GL_CXXALIASWARN if the system does not declare the function. diff --git a/lib/unistd.in.h b/lib/unistd.in.h index cc8a629ef..0d3946436 100644 --- a/lib/unistd.in.h +++ b/lib/unistd.in.h @@ -775,7 +775,9 @@ getpagesize () /* Need to cast, because on Cygwin 1.5.x systems, the return type is size_t. */ _GL_CXXALIAS_SYS_CAST (getpagesize, int, (void)); # endif +# if @HAVE_DECL_GETPAGESIZE@ _GL_CXXALIASWARN (getpagesize); +# endif #elif defined GNULIB_POSIXCHECK # undef getpagesize # if HAVE_RAW_DECL_GETPAGESIZE diff --git a/m4/getpagesize.m4 b/m4/getpagesize.m4 index 8968516e2..313ad7fa2 100644 --- a/m4/getpagesize.m4 +++ b/m4/getpagesize.m4 @@ -1,4 +1,4 @@ -# getpagesize.m4 serial 7 +# getpagesize.m4 serial 8 dnl Copyright (C) 2002, 2004-2005, 2007, 2009-2010 Free Software Foundation, dnl Inc. dnl This file is free software; the Free Software Foundation @@ -27,4 +27,7 @@ AC_DEFUN([gl_FUNC_GETPAGESIZE], AC_LIBOBJ([getpagesize]) ;; esac + dnl Also check whether it's declared. + dnl mingw has getpagesize() in libgcc.a but doesn't declare it. + AC_CHECK_DECL([getpagesize], , [HAVE_DECL_GETPAGESIZE=0]) ]) diff --git a/m4/unistd_h.m4 b/m4/unistd_h.m4 index 789739dff..5e4515f46 100644 --- a/m4/unistd_h.m4 +++ b/m4/unistd_h.m4 @@ -1,4 +1,4 @@ -# unistd_h.m4 serial 43 +# unistd_h.m4 serial 44 dnl Copyright (C) 2006-2010 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -122,6 +122,7 @@ AC_DEFUN([gl_UNISTD_H_DEFAULTS], HAVE_USLEEP=1; AC_SUBST([HAVE_USLEEP]) HAVE_DECL_ENVIRON=1; AC_SUBST([HAVE_DECL_ENVIRON]) HAVE_DECL_GETLOGIN_R=1; AC_SUBST([HAVE_DECL_GETLOGIN_R]) + HAVE_DECL_GETPAGESIZE=1; AC_SUBST([HAVE_DECL_GETPAGESIZE]) HAVE_DECL_GETUSERSHELL=1; AC_SUBST([HAVE_DECL_GETUSERSHELL]) HAVE_OS_H=0; AC_SUBST([HAVE_OS_H]) HAVE_SYS_PARAM_H=0; AC_SUBST([HAVE_SYS_PARAM_H]) diff --git a/modules/unistd b/modules/unistd index f4e16bf8f..9fc32c86c 100644 --- a/modules/unistd +++ b/modules/unistd @@ -96,6 +96,7 @@ unistd.h: unistd.in.h $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ + -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \ -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ -- 2.11.0