summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/include/pg_config.h.win3214
-rw-r--r--src/interfaces/libpq/libpq.rc.in14
-rw-r--r--src/port/win32ver.rc4
-rwxr-xr-xsrc/tools/version_stamp.pl4
4 files changed, 18 insertions, 18 deletions
diff --git a/src/include/pg_config.h.win32 b/src/include/pg_config.h.win32
index ba860ee6d2..585f64cd8e 100644
--- a/src/include/pg_config.h.win32
+++ b/src/include/pg_config.h.win32
@@ -563,25 +563,25 @@
#define MEMSET_LOOP_LIMIT 1024
/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "pgsql-bugs@postgresql.org"
+#define PACKAGE_BUGREPORT "postgres-xc-developers@lists.sourceforge.net"
/* Define to the full name of this package. */
-#define PACKAGE_NAME "PostgreSQL"
+#define PACKAGE_NAME "Postgres-XC"
/* Define to the full name and version of this package. */
-#define PACKAGE_STRING "PostgreSQL 9.1beta2"
+#define PACKAGE_STRING "Postgres-XC 1.0devel"
/* Define to the version of this package. */
-#define PACKAGE_VERSION "9.1beta2"
+#define PACKAGE_VERSION "1.0devel"
/* PostgreSQL version as a string */
-#define PG_VERSION "9.1beta2"
+#define PG_VERSION "1.0devel"
/* PostgreSQL version as a number */
-#define PG_VERSION_NUM 90100
+#define PG_VERSION_NUM 10000
/* Define to the one symbol short name of this package. */
-#define PACKAGE_TARNAME "postgresql"
+#define PACKAGE_TARNAME "postgres-xc"
/* Define to the name of the default PostgreSQL service principal in Kerberos.
(--with-krb-srvnam=NAME) */
diff --git a/src/interfaces/libpq/libpq.rc.in b/src/interfaces/libpq/libpq.rc.in
index adf00b1a28..fff85bb351 100644
--- a/src/interfaces/libpq/libpq.rc.in
+++ b/src/interfaces/libpq/libpq.rc.in
@@ -1,8 +1,8 @@
#include <winver.h>
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 9,1,0,0
- PRODUCTVERSION 9,1,0,0
+ FILEVERSION 1,0,0,0
+ PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK 0x3fL
FILEFLAGS 0
FILEOS VOS__WINDOWS32
@@ -14,14 +14,14 @@ BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "\0"
- VALUE "FileDescription", "PostgreSQL Access Library\0"
- VALUE "FileVersion", "9.1.0\0"
+ VALUE "FileDescription", "Postgres-XC Access Library\0"
+ VALUE "FileVersion", "1.0.0\0"
VALUE "InternalName", "libpq\0"
- VALUE "LegalCopyright", "Copyright (C) 2011\0"
+ VALUE "LegalCopyright", "Copyright (C) 2012\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "libpq.dll\0"
- VALUE "ProductName", "PostgreSQL\0"
- VALUE "ProductVersion", "9.1.0\0"
+ VALUE "ProductName", "Postgres-XC\0"
+ VALUE "ProductVersion", "1.0.0\0"
END
END
BLOCK "VarFileInfo"
diff --git a/src/port/win32ver.rc b/src/port/win32ver.rc
index a6fddc38bc..9b902e5490 100644
--- a/src/port/win32ver.rc
+++ b/src/port/win32ver.rc
@@ -2,8 +2,8 @@
#include "pg_config.h"
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 9,1,0,0
- PRODUCTVERSION 9,1,0,0
+ FILEVERSION 1,0,0,0
+ PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK 0x17L
FILEFLAGS 0x0L
FILEOS VOS_NT_WINDOWS32
diff --git a/src/tools/version_stamp.pl b/src/tools/version_stamp.pl
index ef945da2dd..29f51b1c3c 100755
--- a/src/tools/version_stamp.pl
+++ b/src/tools/version_stamp.pl
@@ -22,8 +22,8 @@
# Major version is hard-wired into the script. We update it when we branch
# a new development version.
-$major1 = 9;
-$major2 = 1;
+$major1 = 1;
+$major2 = 0;
# Validate argument and compute derived variables
$minor = shift;