summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorJan Djärv <jan.h.d@swipnet.se>2004-09-25 20:41:08 +0000
committerJan Djärv <jan.h.d@swipnet.se>2004-09-25 20:41:08 +0000
commitdd571c2fb007f7a2fc5f32dcc08fe4e7f0a703f2 (patch)
tree149878951035a184bf91a111e8d97422168905c3 /configure
parent1f02a4ba8d725336e678baf503d12a9d063bea39 (diff)
* configure.in (HAVE_EXECSHIELD): Only define on x86.
* configure: Rebuild.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure18
1 files changed, 15 insertions, 3 deletions
diff --git a/configure b/configure
index 204bf90b06d..6cbdf0b2e99 100755
--- a/configure
+++ b/configure
@@ -4302,7 +4302,7 @@ else
fi
if test "$emacs_cv_execshield" = 1; then
- # Extract the first word of "setarch", so it can be a program name with args.
+ # Extract the first word of "setarch", so it can be a program name with args.
set dummy setarch; ac_word=$2
echo "$as_me:$LINENO: checking for $ac_word" >&5
echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
@@ -4343,13 +4343,25 @@ echo "${ECHO_T}no" >&6
fi
- if test "$setarch" != no; then
+ if test "$setarch" != no && test "$machine" = "intel386"; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_EXECSHIELD 1
_ACEOF
- fi
+ else
+ case "`cat /proc/sys/kernel/exec-shield`" in
+ 0) ;;
+ *)
+ { { echo "$as_me:$LINENO: error: Exec-shield is turned on.
+Emacs can not dump itself if exec-shield is turned on.
+See \`etc/PROBLEMS' for further information." >&5
+echo "$as_me: error: Exec-shield is turned on.
+Emacs can not dump itself if exec-shield is turned on.
+See \`etc/PROBLEMS' for further information." >&2;}
+ { (exit 1); exit 1; }; }
+ esac
+ fi
fi
#### Extract some information from the operating system and machine files.