diff options
author | Jeff Law <law@redhat.com> | 1998-07-28 15:44:30 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1998-07-28 15:44:30 +0000 |
commit | ce2387877633a091dd33498817c818ce871be0df (patch) | |
tree | 1073e279692ec6d2798a02aa8f54c90b97c923e6 /readline/sysdep-hpux11.h | |
parent | f6b7bfcfa02171cfab029d89546ea3e0ee60c277 (diff) | |
download | gdb-ce2387877633a091dd33498817c818ce871be0df.zip gdb-ce2387877633a091dd33498817c818ce871be0df.tar.gz gdb-ce2387877633a091dd33498817c818ce871be0df.tar.bz2 |
* sysdep-hpux11.h: New file.
* configure.in (*-*-*-hpux11*): Use sysdep-hpux11.h.
Diffstat (limited to 'readline/sysdep-hpux11.h')
-rw-r--r-- | readline/sysdep-hpux11.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/readline/sysdep-hpux11.h b/readline/sysdep-hpux11.h new file mode 100644 index 0000000..da8a864 --- /dev/null +++ b/readline/sysdep-hpux11.h @@ -0,0 +1,40 @@ +/* System-dependent stuff, for hpux11 systems */ +/* If you think you need to change this file, then you are wrong. In order to + avoid a huge ugly mass of nested #ifdefs, you should create a new file just + for your system, which contains exactly those #includes and definitions that + your system needs, AND NOTHING MORE! Then, add that file to the appropriate + place in configure.in, and viola, you are done. sysdep-sunos4.h is a good + example of how to do this. */ + +#ifdef __GNUC__ +#define alloca __builtin_alloca +#else +#include <alloca.h> +#ifndef alloca /* May be a macro, with args. */ +extern char *alloca (); +#endif +#endif + +#include <sys/types.h> /* Needed by dirent.h */ + +#if defined (USG) && defined (TIOCGWINSZ) +#include <sys/stream.h> +#if defined (USGr4) || defined (USGr3) +#include <sys/ptem.h> +#endif /* USGr4 */ +#endif /* USG && TIOCGWINSZ */ + +#ifndef _WIN32 +#include <dirent.h> +typedef struct dirent dirent; +#endif + +/* SVR4 systems should use <termios.h> rather than <termio.h>. */ + +#if defined (USGr4) +#define _POSIX_VERSION +#endif + +#if defined _WIN32 && !defined __GNUC__ +#include <malloc.h> +#endif |