comparison configure.ac @ 5767:4e69b24a2301

Disable ASLR on Mavericks.
author Marcus Crestani <crestani@informatik.uni-tuebingen.de>
date Mon, 28 Oct 2013 16:03:53 +0100
parents e88d026f3917
children 0f2338afbabf a216b3c2b09e
comparison
equal deleted inserted replaced
5766:182d01410b8d 5767:4e69b24a2301
2815 fi 2815 fi
2816 2816
2817 dnl Disable ASLR on systems where it breaks pdump. 2817 dnl Disable ASLR on systems where it breaks pdump.
2818 AC_MSG_CHECKING([whether ASLR needs to be disabled]) 2818 AC_MSG_CHECKING([whether ASLR needs to be disabled])
2819 case `uname -s`:`uname -r` in 2819 case `uname -s`:`uname -r` in
2820 dnl Mac OS X 10.7 Lion, 10.8 Mountain Lion 2820 dnl Mac OS X 10.7 Lion, 10.8 Mountain Lion, 10.9 Mavericks
2821 Darwin:1[[12]].*) 2821 Darwin:1[[123]].*)
2822 AC_MSG_RESULT(yes) 2822 AC_MSG_RESULT(yes)
2823 XE_APPEND([-Wl,-no_pie], LDFLAGS) 2823 XE_APPEND([-Wl,-no_pie], LDFLAGS)
2824 ;; 2824 ;;
2825 *) AC_MSG_RESULT(no) ;; 2825 *) AC_MSG_RESULT(no) ;;
2826 esac 2826 esac