diff options
| author | Peter O'Gorman | 2011-01-23 17:00:22 -0500 |
|---|---|---|
| committer | Chong Yidong | 2011-01-23 17:00:22 -0500 |
| commit | 6de1218f3cbfabdb60446cffc5013962aa434de0 (patch) | |
| tree | e282f0a03f51f935a2b9a818e3dd09e0d5eeac06 | |
| parent | fdbd21a4827f00949986733c041fa814b1e4d143 (diff) | |
| download | emacs-6de1218f3cbfabdb60446cffc5013962aa434de0.tar.gz emacs-6de1218f3cbfabdb60446cffc5013962aa434de0.zip | |
Two more hunks from the HP-UX patch at Bug#6811.
* configure.in: Add HP-UX on IA64 (Bug#6811).
* src/s/hpux11.h: Set CANNOT_DUMP on IA64 (Bug#6811).
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rwxr-xr-x | configure | 4 | ||||
| -rw-r--r-- | configure.in | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 3 | ||||
| -rw-r--r-- | src/s/hpux11.h | 6 |
5 files changed, 21 insertions, 0 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-01-23 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change) | ||
| 2 | |||
| 3 | * configure.in: Add HP-UX on IA64 (Bug#6811). | ||
| 4 | |||
| 1 | 2011-01-12 Chong Yidong <cyd@stupidchicken.com> | 5 | 2011-01-12 Chong Yidong <cyd@stupidchicken.com> |
| 2 | 6 | ||
| 3 | * configure.in [netbsd systems]: Check for tputs definition | 7 | * configure.in [netbsd systems]: Check for tputs definition |
| @@ -3182,6 +3182,10 @@ $as_echo "#define HAVE_CRTIN /**/" >>confdefs.h | |||
| 3182 | CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" | 3182 | CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" |
| 3183 | ;; | 3183 | ;; |
| 3184 | 3184 | ||
| 3185 | ia64*-hp-hpux1[1-9]* ) | ||
| 3186 | machine=hp800 opsys=hpux11 | ||
| 3187 | ;; | ||
| 3188 | |||
| 3185 | hppa*-*-linux-gnu* ) | 3189 | hppa*-*-linux-gnu* ) |
| 3186 | machine=hp800 opsys=gnu-linux | 3190 | machine=hp800 opsys=gnu-linux |
| 3187 | ;; | 3191 | ;; |
diff --git a/configure.in b/configure.in index b75f965cfa7..fd1c62ccb7d 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -493,6 +493,10 @@ dnl see the `changequote' comment above. | |||
| 493 | CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" | 493 | CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS" |
| 494 | ;; | 494 | ;; |
| 495 | 495 | ||
| 496 | ia64*-hp-hpux1[1-9]* ) | ||
| 497 | machine=hp800 opsys=hpux11 | ||
| 498 | ;; | ||
| 499 | |||
| 496 | hppa*-*-linux-gnu* ) | 500 | hppa*-*-linux-gnu* ) |
| 497 | machine=hp800 opsys=gnu-linux | 501 | machine=hp800 opsys=gnu-linux |
| 498 | ;; | 502 | ;; |
diff --git a/src/ChangeLog b/src/ChangeLog index 725ec639eb7..874a3bc5bcd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,6 @@ | |||
| 1 | 2011-01-23 Peter O'Gorman <bug-gnu-emacs@mlists.thewrittenword.com> (tiny change) | ||
| 2 | * s/hpux11.h: Set CANNOT_DUMP on IA64 (Bug#6811). | ||
| 3 | |||
| 1 | 2011-01-22 Martin Rudalics <rudalics@gmx.at> | 4 | 2011-01-22 Martin Rudalics <rudalics@gmx.at> |
| 2 | 5 | ||
| 3 | * window.c (select_window): New function. | 6 | * window.c (select_window): New function. |
diff --git a/src/s/hpux11.h b/src/s/hpux11.h index 3382395a90f..f9ce5fabe2d 100644 --- a/src/s/hpux11.h +++ b/src/s/hpux11.h | |||
| @@ -12,5 +12,11 @@ | |||
| 12 | then close and reopen it in the child. */ | 12 | then close and reopen it in the child. */ |
| 13 | #define USG_SUBTTY_WORKS | 13 | #define USG_SUBTTY_WORKS |
| 14 | 14 | ||
| 15 | /* FIXME. Peter O'Gorman reports that dumping using unexelf.o doesn't | ||
| 16 | work either: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6811 */ | ||
| 17 | #if __ia64 | ||
| 18 | #define CANNOT_DUMP 1 | ||
| 19 | #endif | ||
| 20 | |||
| 15 | /* arch-tag: f5a3d780-82cd-4a9a-832e-a4031aab788b | 21 | /* arch-tag: f5a3d780-82cd-4a9a-832e-a4031aab788b |
| 16 | (do not change this comment) */ | 22 | (do not change this comment) */ |