bfd: Change the --with-mmap default to true
Change the configure default to using mmap. * configure.ac: Change the --with-mmap default to true. * configure: Regenerated.
This commit is contained in:
parent
433b4f8ab7
commit
cdabd12b18
2 changed files with 2 additions and 2 deletions
2
bfd/configure
vendored
2
bfd/configure
vendored
|
@ -12018,7 +12018,7 @@ if test "${with_mmap+set}" = set; then :
|
|||
*) as_fn_error $? "bad value ${withval} for BFD with-mmap option" "$LINENO" 5 ;;
|
||||
esac
|
||||
else
|
||||
want_mmap=false
|
||||
want_mmap=true
|
||||
fi
|
||||
|
||||
# Check whether --enable-secureplt was given.
|
||||
|
|
|
@ -113,7 +113,7 @@ AC_ARG_WITH(mmap,
|
|||
yes) want_mmap=true ;;
|
||||
no) want_mmap=false ;;
|
||||
*) AC_MSG_ERROR(bad value ${withval} for BFD with-mmap option) ;;
|
||||
esac],[want_mmap=false])dnl
|
||||
esac],[want_mmap=true])dnl
|
||||
|
||||
AC_ARG_ENABLE(secureplt,
|
||||
[ --enable-secureplt Default to creating read-only plt entries],
|
||||
|
|
Loading…
Add table
Reference in a new issue