emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 23.0.60; Building from cvs on Hurd


From: Glenn Morris
Subject: Re: 23.0.60; Building from cvs on Hurd
Date: Fri, 09 May 2008 20:05:04 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

Evans Winner wrote:

> sysdep.c: In function 'child_setup_tty':
> sysdep.c:605: error: 'FFDLY' undeclared (first use in this function)
> sysdep.c:605: error: (Each undeclared identifier is reported only once
> sysdep.c:605: error: for each function it appears in.)

Looks like you have NLDLY defined, but not FFDLY. Can you find the
include file that defines the former and see which *DLY it defines?

Try:

*** sysdep.c.~1.296.~   2008-04-09 00:07:23.000000000 -0700
--- sysdep.c            2008-05-09 16:57:06.000000000 -0700
***************
*** 601,607 ****
  #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
    s.main.c_oflag |= OPOST;   /* Enable output postprocessing */
    s.main.c_oflag &= ~ONLCR;  /* Disable map of NL to CR-NL on output
    */
! #ifdef NLDLY
    s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
                            /* No output delays */
  #endif
--- 601,607 ----
  #if defined (HAVE_TERMIO) || defined (HAVE_TERMIOS)
    s.main.c_oflag |= OPOST;   /* Enable output postprocessing */
    s.main.c_oflag &= ~ONLCR;  /* Disable map of NL to CR-NL on output
    */
! #if defined NLDLY && defined FFDLY
    s.main.c_oflag &= ~(NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
                            /* No output delays */
  #endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]