Fix nat/linux-personality.c regression on RHEL-5
authorSergio Durigan Junior <sergiodj@redhat.com>
Fri, 16 Jan 2015 16:42:28 +0000 (11:42 -0500)
committerSergio Durigan Junior <sergiodj@redhat.com>
Fri, 16 Jan 2015 16:42:28 +0000 (11:42 -0500)
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.

gdb/ChangeLog
gdb/nat/linux-personality.c

index b7ba1b2adff6307dff7555935c94342f324eaeee..b95abdcdecc22f9ae5d9ccb5bad1360a97129fc2 100644 (file)
@@ -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
index f61a2c65c0292dfe554ac11b65266423b79dd52d..3ea8755515e6e66b2ef5fdbb888e577b4c1358e8 100644 (file)
@@ -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 */