[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/configure.in
From: |
Jan Djärv |
Subject: |
[Emacs-diffs] Changes to emacs/configure.in |
Date: |
Wed, 06 Oct 2004 08:35:54 -0400 |
Index: emacs/configure.in
diff -c emacs/configure.in:1.372 emacs/configure.in:1.373
*** emacs/configure.in:1.372 Wed Oct 6 07:24:40 2004
--- emacs/configure.in Wed Oct 6 12:28:31 2004
***************
*** 1613,1628 ****
AC_DEFINE(HAVE_RANDOM_HEAPSTART, 1,
[Define to 1 if this OS randomizes the start address of the heap.])
else
! AC_MSG_WARN([
! **********************************************************************
!
! Heap start address is randomized and no workaround is known.
! Emacs will probably dump core when temacs is run in the build phase.
! Maybe exec-shield is turned on. Read about exec-shield in `etc/PROBLEMS'
! for further information.
!
! **********************************************************************
! ])
fi
fi
--- 1613,1620 ----
AC_DEFINE(HAVE_RANDOM_HEAPSTART, 1,
[Define to 1 if this OS randomizes the start address of the heap.])
else
! dnl We do the warning at the end of the configure run so it is seen.
! emacs_cv_randomheap=warn
fi
fi
***************
*** 3094,3099 ****
--- 3086,3104 ----
echo " Does Emacs use X toolkit scroll bars?
${USE_TOOLKIT_SCROLL_BARS}"
echo
+ if test "$emacs_cv_randomheap" = warn; then
+ AC_MSG_WARN([
+ **********************************************************************
+
+ Heap start address is randomized and no workaround is known.
+ Emacs will probably dump core when temacs is run in the build phase.
+ Maybe exec-shield is turned on. Read about exec-shield in `etc/PROBLEMS'
+ for further information.
+
+ **********************************************************************
+ ])
+ fi
+
# Remove any trailing slashes in these variables.
[test "${prefix}" != NONE &&
prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`