* sysdep-6irix.h: New file.

* configure.in (*-*-irix6*): New host; use sysdep-6irix.h.
This commit is contained in:
Ian Lance Taylor 1998-05-13 17:43:33 +00:00
parent 95d33c131a
commit cb342983ca
3 changed files with 21 additions and 0 deletions

View File

@ -49,6 +49,7 @@ rldefs.h
rltty.c
search.c
signals.c
sysdep-6irix.h
sysdep-aix.h
sysdep-cxux7.h
sysdep-irix.h

View File

@ -1,3 +1,11 @@
Wed May 13 13:41:53 1998 Ian Lance Taylor <ian@cygnus.com>
* sysdep-6irix.h: New file.
* configure.in (*-*-irix6*): New host; use sysdep-6irix.h.
* Makefile.in (isearch.o, search.o): Depend upon sysdep.h.
(Makefile): Depend upon $(srcdir)/configure.in.
Thu Apr 9 11:59:38 1998 Ian Dall (<Ian.Dall@dsto.defence.gov.au>
* configure.in (host==netbsd): Include config/mh-bsd44.

12
readline/sysdep-6irix.h Normal file
View File

@ -0,0 +1,12 @@
/* System-dependent stuff, for SGI Irix 6. */
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
#include <alloca.h>
#endif
#include <sys/types.h>
#include <sys/stream.h>
#include <sys/dir.h>
typedef struct direct dirent;