aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-05-30 12:43:28 +0000
committerBruce Momjian <bruce@momjian.us>2006-05-30 12:43:28 +0000
commit39b031d417b0d66438f80d39335298d069fb6d88 (patch)
treefb21c38e45275ff0ddf79cb4796bfe41868e93d2 /src
parent6216cc7e25e7bebb712526685ca565b31edd28c8 (diff)
downloadpostgresql-39b031d417b0d66438f80d39335298d069fb6d88.tar.gz
postgresql-39b031d417b0d66438f80d39335298d069fb6d88.zip
Add "inline" compile fix for MSVC/BCC:
#define inline __inline Backpatch to 8.1.X. Hiroshi Saito
Diffstat (limited to 'src')
-rw-r--r--src/include/pg_config.h.win325
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32
index c79624e8fa4..d76b14a2dac 100644
--- a/src/include/pg_config.h.win32
+++ b/src/include/pg_config.h.win32
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.28 2006/03/11 04:38:38 momjian Exp $ */
+/* $PostgreSQL: pgsql/src/include/pg_config.h.win32,v 1.29 2006/05/30 12:43:28 momjian Exp $ */
#ifndef pg_config_h_win32__
#define pg_config_h_win32__
@@ -26,6 +26,9 @@
#define HAVE_RANDOM
#endif
+#undef inline
+#define inline __inline
+
#define INT64_FORMAT "%I64d"
#define HAVE_DECL_VSNPRINTF 1