diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-06-12 07:36:51 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-06-12 07:36:51 +0000 |
commit | b4cea00a1fc9d2270bfe9aeeee44915378d5f733 (patch) | |
tree | 16a6702b864f8e8795a498c4e2bf5f91fee54862 /src/include/pg_config_manual.h | |
parent | e5549a272d922c5d9ed177a823914fdee6ada08d (diff) |
IPv6 cleanups.
Kurt Roeckx
Andrew Dunstan
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index e8699c2f4a0..3bf316a5805 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -6,7 +6,7 @@ * for developers. If you edit any of these, be sure to do a *full* * rebuild (and an initdb if noted). * - * $Id: pg_config_manual.h,v 1.3 2003/05/15 16:35:29 momjian Exp $ + * $Id: pg_config_manual.h,v 1.4 2003/06/12 07:36:51 momjian Exp $ *------------------------------------------------------------------------ */ @@ -127,11 +127,10 @@ #define BITS_PER_BYTE 8 /* - * Define this if your operating system supports AF_UNIX family - * sockets. + * Disable UNIX sockets for those operating system. */ -#if !defined(__QNX__) && !defined(__BEOS__) && !defined(WIN32) -# define HAVE_UNIX_SOCKETS 1 +#if defined(__QNX__) || defined(__BEOS__) || defined(WIN32) +# undef HAVE_UNIX_SOCKETS #endif /* |