Mercurial > hg > xemacs-beta
changeset 5817:a58070ee1f31
Disable ASLR on Yosemite.
author | Marcus Crestani <marcus@crestani.de> |
---|---|
date | Sun, 12 Oct 2014 07:17:55 +0200 |
parents | 5de7b6d1e752 |
children | 15b0715c204d |
files | ChangeLog configure configure.ac |
diffstat | 3 files changed, 8 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Oct 09 15:45:16 2014 -0600 +++ b/ChangeLog Sun Oct 12 07:17:55 2014 +0200 @@ -1,3 +1,8 @@ +2014-10-10 Marcus Crestani <crestani@xemacs.org> + + * configure.ac: Disable ASLR on Yosemite. + * configure: Rebuild. + 2014-10-09 Jerry James <james@xemacs.org> * configure.ac: Check for TLS headers as well as libraries.
--- a/configure Thu Oct 09 15:45:16 2014 -0600 +++ b/configure Sun Oct 12 07:17:55 2014 +0200 @@ -12226,7 +12226,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[123].*) + Darwin:1[1234].*) { $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 Thu Oct 09 15:45:16 2014 -0600 +++ b/configure.ac Sun Oct 12 07:17:55 2014 +0200 @@ -2820,8 +2820,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, 10.9 Mavericks - Darwin:1[[123]].*) + dnl Mac OS X 10.7 Lion, 10.8 Mountain Lion, 10.9 Mavericks, 10.10 Yosemite + Darwin:1[[1234]].*) AC_MSG_RESULT(yes) XE_APPEND([-Wl,-no_pie], LDFLAGS) ;;