diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-04-18 01:03:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-04-18 01:03:42 +0000 |
commit | 4d4953fc4187567f73e7e5ccd6678d19a156c240 (patch) | |
tree | 37b702cafe9076bd1e6fccc058fb908b5b0e32f1 /src/include/pg_config_manual.h | |
parent | cb7fb3ca958ec8bd5a14e740c067f1d096af3454 (diff) | |
download | postgresql-4d4953fc4187567f73e7e5ccd6678d19a156c240.tar.gz postgresql-4d4953fc4187567f73e7e5ccd6678d19a156c240.zip |
Make Win32 tests to match existing Cygwin tests, where appropriate.
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 1629638ebed..27493956703 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.1 2003/04/06 22:45:23 petere Exp $ + * $Id: pg_config_manual.h,v 1.2 2003/04/18 01:03:42 momjian Exp $ *------------------------------------------------------------------------ */ @@ -135,6 +135,22 @@ #endif /* + * Define this if your operating system supports link() + */ +#if !defined(__QNX__) && !defined(__BEOS__) && \ + !defined(__CYGWIN__) && !defined(WIN32) +# define HAVE_WORKING_LINK 1 +#endif + +/* + * Define this if your operating system has _timezone rather than timezone + */ +#if defined(__CYGWIN__) || defined(WIN32) +# define HAVE_INT_TIMEZONE /* has int _timezone */ +# define HAVE_UNDERSCORE_TIMEZONE 1 +#endif + +/* * This is the default directory in which AF_UNIX socket files are * placed. Caution: changing this risks breaking your existing client * applications, which are likely to continue to look in the old |