diff options
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rwxr-xr-x | bfd/configure | 2 | ||||
-rw-r--r-- | bfd/configure.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index de0738d..3a6b0d0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2014-04-21 Richard Henderson <rth@redhat.com> + + * configure.ac (use_secureplt): Enable by default. + * configure: Rebuild. + 2014-04-18 Tristan Gingold <gingold@adacore.com> * mach-o.h (bfd_mach_o_dyld_info_command): Add rebase_content, diff --git a/bfd/configure b/bfd/configure index c5cb2a1..66161ac 100755 --- a/bfd/configure +++ b/bfd/configure @@ -12060,7 +12060,7 @@ if test "${enable_secureplt+set}" = set; then : *) as_fn_error "bad value ${enableval} for secureplt option" "$LINENO" 5 ;; esac else - use_secureplt=false + use_secureplt=true fi if test $use_secureplt = true; then diff --git a/bfd/configure.in b/bfd/configure.in index af98f62..9fab12f 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -85,7 +85,7 @@ AC_ARG_ENABLE(secureplt, yes) use_secureplt=true ;; no) use_secureplt=false ;; *) AC_MSG_ERROR(bad value ${enableval} for secureplt option) ;; -esac],[use_secureplt=false])dnl +esac],[use_secureplt=true])dnl if test $use_secureplt = true; then AC_DEFINE(USE_SECUREPLT, 1, [Define if we should default to creating read-only plt entries]) |