diff options
author | Sergio Durigan Junior <sergiodj@redhat.com> | 2015-01-16 11:42:28 -0500 |
---|---|---|
committer | Sergio Durigan Junior <sergiodj@redhat.com> | 2015-01-16 11:42:28 -0500 |
commit | 4c347be60a1c25f78826fbf86d416a278740145b (patch) | |
tree | 99db2c5ebafec058b3758aa4bea22670e8e22e73 /gdb | |
parent | c54da50d66b46166e3542f64429741bd29e74eba (diff) | |
download | binutils-4c347be60a1c25f78826fbf86d416a278740145b.zip binutils-4c347be60a1c25f78826fbf86d416a278740145b.tar.gz binutils-4c347be60a1c25f78826fbf86d416a278740145b.tar.bz2 |
Fix nat/linux-personality.c regression on RHEL-5
This commit fixes the regression on RHEL-5 systems introduced by
nat/linux-personality.c's check of HAVE_DECL_ADDR_NO_RANDOMIZE.
RHEL-5 systems define HAVE_DECL_ADDR_NO_RANDOMIZE as zero, so we
cannot use #ifndef; instead this patch uses the "#if !" construction.
The regression was reported by Ulrich Weigand here:
<https://sourceware.org/ml/gdb-patches/2015-01/msg00458.html>
gdb/ChangeLog
2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com>
* nat/linux-personality.c: Replace "#ifndef
HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if
!HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5
systems.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 7 | ||||
-rw-r--r-- | gdb/nat/linux-personality.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b7ba1b2..b95abdc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com> + + * nat/linux-personality.c: Replace "#ifndef + HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if + !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5 + systems. + 2015-01-16 Eli Zaretskii <eliz@gnu.org> * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New diff --git a/gdb/nat/linux-personality.c b/gdb/nat/linux-personality.c index f61a2c6..3ea8755 100644 --- a/gdb/nat/linux-personality.c +++ b/gdb/nat/linux-personality.c @@ -22,7 +22,7 @@ #ifdef HAVE_PERSONALITY # include <sys/personality.h> -# ifndef HAVE_DECL_ADDR_NO_RANDOMIZE +# if !HAVE_DECL_ADDR_NO_RANDOMIZE # define ADDR_NO_RANDOMIZE 0x0040000 # endif /* ! HAVE_DECL_ADDR_NO_RANDOMIZE */ #endif /* HAVE_PERSONALITY */ |