Mercurial > hg > xemacs-beta
changeset 5767:4e69b24a2301
Disable ASLR on Mavericks.
author | Marcus Crestani <crestani@informatik.uni-tuebingen.de> |
---|---|
date | Mon, 28 Oct 2013 16:03:53 +0100 |
parents | 182d01410b8d |
children | 3bfcdeb65578 |
files | ChangeLog configure configure.ac |
diffstat | 3 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Mon Sep 16 00:00:12 2013 +0200 +++ b/ChangeLog Mon Oct 28 16:03:53 2013 +0100 @@ -1,3 +1,8 @@ +2013-10-28 Marcus Crestani <crestani@xemacs.org> + + * configure.ac: Disable ASLR on Mavericks. + * configure: Rebuild. + 2013-09-08 Marcus Crestani <crestani@xemacs.org> * configure.ac: x86_64 Macs also use POSIX virtual-dirty-bit write
--- a/configure Mon Sep 16 00:00:12 2013 +0200 +++ b/configure Mon Oct 28 16:03:53 2013 +0100 @@ -12205,7 +12205,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ASLR needs to be disabled" >&5 $as_echo_n "checking whether ASLR needs to be disabled... " >&6; } case `uname -s`:`uname -r` in - Darwin:1[12].*) + Darwin:1[123].*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } LDFLAGS="$LDFLAGS -Wl,-no_pie" && if test "$verbose" = "yes"; then echo " Appending \"-Wl,-no_pie\" to \$LDFLAGS"; fi
--- a/configure.ac Mon Sep 16 00:00:12 2013 +0200 +++ b/configure.ac Mon Oct 28 16:03:53 2013 +0100 @@ -2817,8 +2817,8 @@ dnl Disable ASLR on systems where it breaks pdump. AC_MSG_CHECKING([whether ASLR needs to be disabled]) case `uname -s`:`uname -r` in - dnl Mac OS X 10.7 Lion, 10.8 Mountain Lion - Darwin:1[[12]].*) + dnl Mac OS X 10.7 Lion, 10.8 Mountain Lion, 10.9 Mavericks + Darwin:1[[123]].*) AC_MSG_RESULT(yes) XE_APPEND([-Wl,-no_pie], LDFLAGS) ;;