diff options
author | Richard Henderson <rth@twiddle.net> | 2014-04-21 08:05:49 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2014-04-21 08:05:49 -0700 |
commit | cc75d373fdb9668f367959f99f0b67e056a6c18a (patch) | |
tree | f5939a7fe6d1d4d4cb7a9775b13b1703bc48c45c /bfd | |
parent | a7bdd4ed3f8396e707231cbb7ee989d2e8ba9d46 (diff) | |
download | gdb-cc75d373fdb9668f367959f99f0b67e056a6c18a.zip gdb-cc75d373fdb9668f367959f99f0b67e056a6c18a.tar.gz gdb-cc75d373fdb9668f367959f99f0b67e056a6c18a.tar.bz2 |
Enable secureplt by default for alpha-linux
* configure.ac (use_secureplt): Enable by default.
* configure: Rebuild.
Diffstat (limited to 'bfd')
-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]) |