diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-01-05 03:01:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-01-05 03:01:38 +0000 |
commit | 44f90212236bfb6fc1279e95dc8fa315104d964e (patch) | |
tree | 2f63a7547c3d27de26003be69d60d48fb03d855f /src/include/pg_config_manual.h | |
parent | 6f84b2da75d3c5d4d401c94f92c9ac184a6faf5a (diff) | |
download | postgresql-44f90212236bfb6fc1279e95dc8fa315104d964e.tar.gz postgresql-44f90212236bfb6fc1279e95dc8fa315104d964e.zip |
Remove BEOS port.
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 138251df435..a5170b5f22d 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). * - * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.19 2006/01/05 01:56:29 momjian Exp $ + * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.20 2006/01/05 03:01:37 momjian Exp $ *------------------------------------------------------------------------ */ @@ -155,15 +155,14 @@ /* * Disable UNIX sockets for those operating system. */ -#if defined(__BEOS__) || defined(WIN32) +#if defined(WIN32) #undef HAVE_UNIX_SOCKETS #endif /* * Define this if your operating system supports link() */ -#if !defined(__BEOS__) && \ - !defined(WIN32) && !defined(__CYGWIN__) +#if !defined(WIN32) && !defined(__CYGWIN__) #define HAVE_WORKING_LINK 1 #endif |