diff options
author | Bruce Momjian <bruce@momjian.us> | 1996-10-03 01:14:37 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1996-10-03 01:14:37 +0000 |
commit | dbc268ca15ef9d184d737634deeaf0efc5ca8b7e (patch) | |
tree | 84cd054364a17018c925b5ea20a15607433a3d60 | |
parent | 00ec211aa8324fed875e290808715fa1ed7b024e (diff) | |
download | postgresql-dbc268ca15ef9d184d737634deeaf0efc5ca8b7e.tar.gz postgresql-dbc268ca15ef9d184d737634deeaf0efc5ca8b7e.zip |
Fixed file to properly do SEMUN for BSDI.
Grouped some PORTNAME's for SEMUN.
-rw-r--r-- | src/include/config.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/include/config.h b/src/include/config.h index c1f9924ac58..2191ffafdd4 100644 --- a/src/include/config.h +++ b/src/include/config.h @@ -18,22 +18,14 @@ # define NEED_UNION_SEMUN #endif /* WIN32 */ -#if defined(__FreeBSD__) || defined(__NetBSD__) -# define USE_LIMITS_H -#endif - -#if defined(bsdi) -# define USE_LIMITS_H -# define NEED_UNION_SEMUN -#endif - -#if defined(bsdi_2_1) +#if defined(__FreeBSD__) || \ + defined(__NetBSD__) || \ + defined(bsdi) # define USE_LIMITS_H #endif #if defined(aix) # define NEED_SYS_SELECT_H -# define NEED_UNION_SEMUN #endif #if defined(irix5) @@ -47,13 +39,15 @@ * System V header files so we must do it ourselves. */ #if defined(sequent) || \ + defined(PORTNAME_aix) || \ defined(PORTNAME_alpha) || \ + defined(PORTNAME_bsdi) || \ defined(PORTNAME_hpux) || \ defined(PORTNAME_dgux) || \ defined(PORTNAME_i386_solaris) || \ defined(PORTNAME_sparc_solaris) || \ defined(PORTNAME_ultrix4) || \ - defined(PORTNAME_svr4) || \ + defined(PORTNAME_svr4) #define NEED_UNION_SEMUN #endif |