mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
entered into RCS
This commit is contained in:
parent
07a784100e
commit
2102829e7d
2 changed files with 24 additions and 0 deletions
10
src/s/esix5r4.h
Normal file
10
src/s/esix5r4.h
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
/* Definitions for ESIX System V 4.0.4, a variant of V.4 for the 386. */
|
||||
|
||||
#include "usg5-4.h"
|
||||
|
||||
#define LIB_X11_LIB -lsocket -lc -lX11
|
||||
#undef LIB_STANDARD
|
||||
#define LIB_STANDARD -lnsl -lns -lelf /usr/ucblib/libucb.a /usr/ccs/lib/crtn.o
|
||||
|
||||
/* Resolve BSD string functions in X Window library from libucb.a. */
|
||||
#define BSTRING
|
||||
14
src/systty.h
14
src/systty.h
|
|
@ -106,6 +106,20 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|||
#undef SIGIO
|
||||
#endif
|
||||
|
||||
|
||||
/* Try to establish the correct character to disable terminal functions
|
||||
in a system-independent manner. Note that USG (at least) define
|
||||
_POSIX_VDISABLE as 0! */
|
||||
|
||||
#ifdef _POSIX_VDISABLE
|
||||
#define CDISABLE _POSIX_VDISABLE
|
||||
#else /* not _POSIX_VDISABLE */
|
||||
#ifdef CDEL
|
||||
#define CDISABLE CDEL
|
||||
#else /* not CDEL */
|
||||
#define CDISABLE 255
|
||||
#endif /* not CDEL */
|
||||
#endif /* not _POSIX_VDISABLE */
|
||||
|
||||
/* Get the number of characters queued for output. */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue