summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian2004-04-30 16:58:48 +0000
committerBruce Momjian2004-04-30 16:58:48 +0000
commit46050a3b7589a83c41dc4a693d64e73c1dac2e85 (patch)
tree59fc0bd851023918fd3b33e04d6dd477ed59983d
parent82700281d0939242392da1247dd2a4c79df9d6b6 (diff)
Timezone code checks for HAVE_SYMLINK of zero, so use in pgtz.h:
#ifndef HAVE_SYMLINK #define HAVE_SYMLINK 0 #endif
-rw-r--r--src/timezone/pgtz.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/timezone/pgtz.h b/src/timezone/pgtz.h
index d30ac7aac3a..6be10367c46 100644
--- a/src/timezone/pgtz.h
+++ b/src/timezone/pgtz.h
@@ -1,5 +1,9 @@
#include "postgres.h"
+#ifndef HAVE_SYMLINK
+#define HAVE_SYMLINK 0
+#endif
+
#define NOID
#define TZDIR pgwin32_TZDIR()