GNU bug report logs -
#6811
add dump support for hpux ia64
Previous Next
Reported by: "Peter O'Gorman" <pogma <at> thewrittenword.com>
Date: Fri, 6 Aug 2010 16:34:02 UTC
Severity: wishlist
Merged with 7387
Found in version 23.2
Fixed in version 27.1
Done: Glenn Morris <rgm <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Jan Djärv <jan.h.d <at> swipnet.se> writes:
> Dan Nicolaescu skrev 2010-08-09 11.47:
>> "Peter O'Gorman"<pogma <at> thewrittenword.com> writes:
>>>
>>> -#define HAVE_TERMIO
>>> +#define NO_TERMIO
>>> +#define HAVE_TERMIOS
>>
>> I'll check these in. The last hunk is especially interesting, as hpux
>> was the last platform to use HAVE_TERMIO, so that will allow for a lot
>> of simplifications in the code...
>>
>
> This must have been a leftover from a very old HP-UX. AFAIK, HP-UX
> has had termios since HP-UX 7 or 8.
How about this code from systty.h:
/* EMACS_HAVE_TTY_PGRP is true if we can get and set the tty's current
controlling process group.
EMACS_GET_TTY_PGRP(int FD, int *PGID) sets *PGID the terminal FD's
current process group. Return -1 if there is an error.
EMACS_SET_TTY_PGRP(int FD, int *PGID) sets the terminal FD's
current process group to *PGID. Return -1 if there is an error. */
/* HPUX tty process group stuff doesn't work, says the anonymous voice
from the past. */
#ifndef HPUX
#ifdef TIOCGPGRP
#define EMACS_HAVE_TTY_PGRP
#else
#ifdef HAVE_TERMIOS
#define EMACS_HAVE_TTY_PGRP
#endif /* HAVE_TERMIOS */
#endif /* TIOCGPGRP */
#endif /* not HPUX */
can the HPUX special case be removed now?
This bug report was last modified 5 years and 263 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.