diff options
| author | Glenn Morris | 2011-01-24 19:55:12 -0800 |
|---|---|---|
| committer | Glenn Morris | 2011-01-24 19:55:12 -0800 |
| commit | 4004ef46616e81d969392861ac23e7d9947d33d4 (patch) | |
| tree | 2a277b50025c51a4bd7fc8879a236225f6b939b5 | |
| parent | 06d8ace51597cd41e110560a56a1abeb6cce23d6 (diff) | |
| download | emacs-4004ef46616e81d969392861ac23e7d9947d33d4.tar.gz emacs-4004ef46616e81d969392861ac23e7d9947d33d4.zip | |
* configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 15 |
2 files changed, 13 insertions, 6 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-01-25 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Set CANNOT_DUMP on ia64 hpux (port from emacs-23). | ||
| 4 | |||
| 1 | 2011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change) | 5 | 2011-01-25 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change) |
| 2 | 6 | ||
| 3 | * configure.in: Add HP-UX on IA64 (Bug#6811). | 7 | * configure.in: Add HP-UX on IA64 (Bug#6811). |
diff --git a/configure.in b/configure.in index 4e8a31ecc56..a3ff7f1e3c4 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -517,6 +517,9 @@ case "${canonical}" in | |||
| 517 | 517 | ||
| 518 | ia64*-hp-hpux1[1-9]* ) | 518 | ia64*-hp-hpux1[1-9]* ) |
| 519 | machine=hp800 opsys=hpux11 | 519 | machine=hp800 opsys=hpux11 |
| 520 | ## FIXME. Peter O'Gorman reports that dumping using unexelf.o doesn't | ||
| 521 | ## work either: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6811 | ||
| 522 | CANNOT_DUMP=yes | ||
| 520 | ;; | 523 | ;; |
| 521 | 524 | ||
| 522 | hppa*-*-linux-gnu* ) | 525 | hppa*-*-linux-gnu* ) |
| @@ -851,16 +854,16 @@ AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])], | |||
| 851 | CPP=`eval "echo $CPP"` | 854 | CPP=`eval "echo $CPP"` |
| 852 | 855 | ||
| 853 | 856 | ||
| 854 | dnl Not used by any currently supported platform. | ||
| 855 | dnl The function dump-emacs will not be defined and temacs will do | 857 | dnl The function dump-emacs will not be defined and temacs will do |
| 856 | dnl (load "loadup") automatically unless told otherwise. | 858 | dnl (load "loadup") automatically unless told otherwise. |
| 857 | CANNOT_DUMP=no | 859 | test "x$CANNOT_DUMP" = "x" && CANNOT_DUMP=no |
| 858 | case "$opsys" in | 860 | case "$opsys" in |
| 859 | your-opsys-here) | 861 | your-opsys-here) CANNOT_DUMP=yes ;; |
| 860 | CANNOT_DUMP=yes | ||
| 861 | AC_DEFINE(CANNOT_DUMP, 1, [Define if Emacs cannot be dumped on your system.]) | ||
| 862 | ;; | ||
| 863 | esac | 862 | esac |
| 863 | |||
| 864 | test "$CANNOT_DUMP" = "yes" && \ | ||
| 865 | AC_DEFINE(CANNOT_DUMP, 1, [Define if Emacs cannot be dumped on your system.]) | ||
| 866 | |||
| 864 | AC_SUBST(CANNOT_DUMP) | 867 | AC_SUBST(CANNOT_DUMP) |
| 865 | 868 | ||
| 866 | 869 | ||