diff options
| author | Paul Eggert | 2015-07-28 21:41:59 -0700 |
|---|---|---|
| committer | Paul Eggert | 2015-07-28 21:42:24 -0700 |
| commit | afb497408f273bb11f88738cc3ed76ecd3d7ac3b (patch) | |
| tree | 13ce6751db08c605dc756eed2e2d0c7a7b9c0ca3 | |
| parent | 87b8992ca357e180bf87f4a8df3ef58b7de89695 (diff) | |
| download | emacs-afb497408f273bb11f88738cc3ed76ecd3d7ac3b.tar.gz emacs-afb497408f273bb11f88738cc3ed76ecd3d7ac3b.zip | |
Remove unnecessary stack overflow dependency
* configure.ac (HAVE_STACK_OVERFLOW_HANDLING):
Don't worry about $ac_cv_header_sys_resource_h and
$ac_cv_func_getrlimit, as they're no longer needed for this.
Problem reported by Eli Zaretskii in:
http://lists.gnu.org/archive/html/emacs-devel/2015-07/msg00443.html
| -rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 19b8b9d69ae..45008d86807 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -4557,9 +4557,7 @@ if test $emacs_cv_func_sigsetjmp = yes; then | |||
| 4557 | fi | 4557 | fi |
| 4558 | 4558 | ||
| 4559 | # We need all of these features to handle C stack overflows. | 4559 | # We need all of these features to handle C stack overflows. |
| 4560 | if test "$ac_cv_header_sys_resource_h" = "yes" && | 4560 | if test "$emacs_cv_func_sigsetjmp" = "yes" && |
| 4561 | test "$ac_cv_func_getrlimit" = "yes" && | ||
| 4562 | test "$emacs_cv_func_sigsetjmp" = "yes" && | ||
| 4563 | test "$emacs_cv_alternate_stack" = yes; then | 4561 | test "$emacs_cv_alternate_stack" = yes; then |
| 4564 | AC_DEFINE([HAVE_STACK_OVERFLOW_HANDLING], 1, | 4562 | AC_DEFINE([HAVE_STACK_OVERFLOW_HANDLING], 1, |
| 4565 | [Define to 1 if C stack overflow can be handled in some cases.]) | 4563 | [Define to 1 if C stack overflow can be handled in some cases.]) |