diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2018-03-02 09:50:21 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-03-22 08:47:37 -0400 |
commit | 946ed24ca5a152acc6c2d71e395eaa65111f2825 (patch) | |
tree | 477d65e2fa9b8d951407377fd1e5a709d0a3631c /configure.ac | |
parent | 54e25ab124b4ebb50f1577483ac5c08f67e8b114 (diff) | |
download | tor-946ed24ca5a152acc6c2d71e395eaa65111f2825.tar.gz tor-946ed24ca5a152acc6c2d71e395eaa65111f2825.zip |
Do not page-align mmap length. #25399
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/configure.ac b/configure.ac index 22c8a56137..d05fdcbf3d 100644 --- a/configure.ac +++ b/configure.ac @@ -553,6 +553,7 @@ AC_CHECK_FUNCS( mach_approximate_time \ memmem \ memset_s \ + mmap \ pipe \ pipe2 \ prctl \ @@ -1739,14 +1740,6 @@ AC_CHECK_DECLS([mlockall], , , [ #include <sys/mman.h> #endif]) -# Some MinGW environments don't have getpagesize in unistd.h. We don't use -# AC_CHECK_FUNCS(getpagesize), because other environments rename getpagesize -# using macros -AC_CHECK_DECLS([getpagesize], , , [ -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif]) - # Allow user to specify an alternate syslog facility AC_ARG_WITH(syslog-facility, AS_HELP_STRING(--with-syslog-facility=LOG, [syslog facility to use (default=LOG_DAEMON)]), |