Add detection of getpagesize() function in libc. Declare empty "NO_GETPAGESIZE" macro in case if getpagesize() exists and "NO_GETPAGESIZE=YesPlease" if no.
Signed-off-by: Mike Gorchak <mike.gorchak....@gmail.com> --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index d0e82c1..3963429 100644 --- a/configure.ac +++ b/configure.ac @@ -993,6 +993,11 @@ GIT_CHECK_FUNC(initgroups, [NO_INITGROUPS=YesPlease]) GIT_CONF_SUBST([NO_INITGROUPS]) # +# Define NO_GETPAGESIZE if you don't have getpagesize in the C library. +GIT_CHECK_FUNC(getpagesize, +[NO_GETPAGESIZE=], +[NO_GETPAGESIZE=YesPlease]) +GIT_CONF_SUBST([NO_GETPAGESIZE]) # # Define NO_MMAP if you want to avoid mmap. # -- 1.8.2-rc0 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html