diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2018-11-02 16:45:41 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2018-11-02 16:45:54 -0700 |
commit | 34156b23862e9719355569182d594c7a9e38047e (patch) | |
tree | 88da9a926440f5bba8feaca47f30a73b26a7afc6 /binutils/config.in | |
parent | e8bf1ce461df242811e49de807f85c2e7ae17b77 (diff) | |
download | gdb-34156b23862e9719355569182d594c7a9e38047e.zip gdb-34156b23862e9719355569182d594c7a9e38047e.tar.gz gdb-34156b23862e9719355569182d594c7a9e38047e.tar.bz2 |
binutils: Add AC_FUNC_MMAP to configure.ac
Add AC_FUNC_MMAP to configure.ac so that HAVE_MMAP will be checked in
objdump.c and mmap is used if available.
* configure.ac (AC_FUNC_MMAP): New.
* config.in: Regenerated.
* configure: Likewise.
Diffstat (limited to 'binutils/config.in')
-rw-r--r-- | binutils/config.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/binutils/config.in b/binutils/config.in index 64de38b..72ead4e 100644 --- a/binutils/config.in +++ b/binutils/config.in @@ -94,6 +94,9 @@ /* Define to 1 if you have the `getc_unlocked' function. */ #undef HAVE_GETC_UNLOCKED +/* Define to 1 if you have the `getpagesize' function. */ +#undef HAVE_GETPAGESIZE + /* Does <utime.h> define struct utimbuf? */ #undef HAVE_GOOD_UTIME_H @@ -127,6 +130,9 @@ /* Define to 1 if you have the `mkstemp' function. */ #undef HAVE_MKSTEMP +/* Define to 1 if you have a working `mmap' system call. */ +#undef HAVE_MMAP + /* Define to 1 if you have the `sbrk' function. */ #undef HAVE_SBRK |