mirror of
https://github.com/gperftools/gperftools
synced 2024-12-25 16:52:05 +00:00
parent
4cddede399
commit
6b92e00cec
11
configure.ac
11
configure.ac
@ -242,10 +242,13 @@ else
|
||||
fi
|
||||
|
||||
# We hardcode HAVE_MMAP to 1. There are no interesting systems anymore
|
||||
# without functional mmap. And our windows builds aren't using
|
||||
# autoconf. So we keep HAVE_MMAP define, but only to distingush
|
||||
# windows and rest.
|
||||
AC_DEFINE(HAVE_MMAP, 1, [Define to 1 if you have a working `mmap' system call.])
|
||||
# without functional mmap. And our windows (except mingw) builds
|
||||
# aren't using autoconf. So we keep HAVE_MMAP define, but only to
|
||||
# distingush windows and rest.
|
||||
case "$host" in
|
||||
*-mingw*) ;;
|
||||
*) AC_DEFINE(HAVE_MMAP, 1, [Define to 1 if you have a working `mmap' system call.])
|
||||
esac
|
||||
|
||||
# If AtomicWord != Atomic32, we need to define two versions of all the
|
||||
# atomicops functions. If they're the same, we want to define only one.
|
||||
|
Loading…
Reference in New Issue
Block a user