We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentd4b8539 commit38251d0Copy full SHA for 38251d0
GNUmakefile.in
@@ -107,6 +107,7 @@ distdir:
107
done
108
$(MAKE) -C $(distdir) distprep
109
$(MAKE) -C $(distdir)/doc/src/sgml/ INSTALL
110
+$(MAKE) -C $(distdir)/contrib/pg_arman/doc pg_arman.1 XMLTO=/usr/bin/xmlto ASCIIDOC=/usr/bin/asciidoc
111
cp $(distdir)/doc/src/sgml/INSTALL $(distdir)/
112
$(MAKE) -C $(distdir) distclean
113
rm -f $(distdir)/README.git
src/include/pg_config.h.win32
@@ -596,6 +596,9 @@
596
/* A string containing the version number, platform, and C compiler */
597
#define PG_VERSION_STR "Uninitialized version string (win32)"
598
599
+/* A string containing the PostgresPro version number, platform, and C compiler */
600
+#define PGPRO_VERSION_STR "Uninitialized version string (win32)"
601
+
602
/* The size of `long', as computed by sizeof. */
603
#define SIZEOF_LONG 4
604
src/tools/msvc/Install.pm
@@ -464,6 +464,7 @@ sub CopyContribFiles
464
nextif ($deq"hstore_plpython" && !defined($config->{python}));
465
nextif ($deq"ltree_plpython" && !defined($config->{python}));
466
nextif ($deq"sepgsql");
467
+nextif ($deq'pg_arman');
468
469
CopySubdirFiles($subdir,$d,$config,$target);
470
}
src/tools/msvc/Mkvcbuild.pm
@@ -46,7 +46,8 @@ my $contrib_extrasource = {
46
47
my@contrib_excludes = (
48
'commit_ts','hstore_plperl','hstore_plpython','intagg',
49
-'ltree_plpython','pgcrypto','sepgsql','brin');
+'ltree_plpython','pgcrypto','sepgsql','brin',
50
+'pg_arman');
51
52
# Set of variables for frontend modules
53
my$frontend_defines = {'initdb'=>'FRONTEND' };
src/tools/msvc/Solution.pm
@@ -162,7 +162,8 @@ sub GenerateFiles
162
{
163
s{PG_VERSION "[^"]+"}{PG_VERSION "$self->{strver}$extraver"};
164
s{PG_VERSION_NUM\d+}{PG_VERSION_NUM$self->{numver}};
165
-s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY(z)\n#define PG_VERSION_STR "PostgreSQL$self->{strver}$extraver, compiled by Visual C++ build " __STRINGIFY2(_MSC_VER) ",$bits-bit"};
+s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY(z)\n#define PG_VERSION_STR "PostgreSQL$self->{strver}$extraver, compiled by Visual C++ build " __STRINGIFY2(_MSC_VER) ",$bits-bit"};
166
+s{#define PGPRO_VERSION_STR "[^"]+"}{#define PGPRO_VERSION_STR PGPRO_PACKAGE_STR " compiled by Visual C++ build" __STRINGIFY2(_MSC_VER) ",$bits-bit"};
167
print O;
168
169
print O"#define PG_MAJORVERSION\"$self->{majorver}\"\n";
src/tools/msvc/vcregress.pl
@@ -371,6 +371,7 @@ sub contribcheck
371
nextif ($moduleeq"hstore_plpython" && !defined($config->{python}));
372
nextif ($moduleeq"ltree_plpython" && !defined($config->{python}));
373
nextif ($moduleeq"sepgsql");
374
+nextif ($moduleeq"pg_arman");
375
# Need database with UTF8 encoding, not SQL_ASCII
376
nextif ($moduleeq"hunspell_ru_ru");
377