mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-19 19:37:58 +00:00
(TIOCSIGSEND): Don't define this if irix6.
(bcopy, bcmp, bzero): Likewise.
This commit is contained in:
parent
808903abdd
commit
ca49396408
1 changed files with 4 additions and 0 deletions
|
|
@ -137,7 +137,9 @@ Boston, MA 02111-1307, USA. */
|
|||
subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and
|
||||
this is all we need. */
|
||||
|
||||
#ifndef IRIX6
|
||||
#define TIOCSIGSEND TIOCSIGNAL
|
||||
#endif
|
||||
|
||||
/* This change means that we don't loop through allocate_pty too many
|
||||
times in the (rare) event of a failure. */
|
||||
|
|
@ -198,6 +200,8 @@ Boston, MA 02111-1307, USA. */
|
|||
So give it a try. */
|
||||
#define HAVE_SOCKETS
|
||||
|
||||
#ifndef IRIX6
|
||||
#define bcopy(src,dst,n) memmove (dst,src,n)
|
||||
#define bcmp(src,dst,n) memcmp (src,dst,n)
|
||||
#define bzero(s,n) memset (s,0,n)
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue