Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 089334c

Browse files
committed
Merge branch 'PGPRO10' into PGPROEE10
2 parents 44a2e85 + 6c4307e commit 089334c

File tree

4 files changed

+17
-0
lines changed

4 files changed

+17
-0
lines changed

configure

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,7 @@ build_os
763763
build_vendor
764764
build_cpu
765765
build
766+
PGPRO_EDN
766767
PGPRO_EDITION
767768
PGPRO_PACKAGE_NAME
768769
PG_MAJORVERSION
@@ -2788,7 +2789,11 @@ fi
27882789
PGPRO_VERSION="$PACKAGE_VERSION.1"
27892790
PGPRO_PACKAGE_NAME="PostgresPro"
27902791
PGPRO_EDITION="enterprise"
2792+
PGPRO_EDN="ent"
27912793
PRODUCT_NAME="Postgres Pro Enterprise"
2794+
PGPRO_EDITION="standard"
2795+
PRODUCT_NAME="Postgres Pro Standard"
2796+
27922797

27932798

27942799

@@ -2807,6 +2812,11 @@ cat >>confdefs.h <<_ACEOF
28072812
_ACEOF
28082813

28092814

2815+
cat >>confdefs.h <<_ACEOF
2816+
#define PGPRO_EDN "$PGPRO_EDN"
2817+
_ACEOF
2818+
2819+
28102820
cat >>confdefs.h <<_ACEOF
28112821
#define PGPRO_VERSION "$PGPRO_VERSION"
28122822
_ACEOF

configure.in

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,17 @@ PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],
4141
PGPRO_VERSION="$PACKAGE_VERSION.1"
4242
PGPRO_PACKAGE_NAME="PostgresPro"
4343
PGPRO_EDITION="enterprise"
44+
PGPRO_EDN="ent"
4445
PRODUCT_NAME="Postgres Pro Enterprise"
46+
PGPRO_EDITION="standard"
47+
PRODUCT_NAME="Postgres Pro Standard"
4548
AC_SUBST(PGPRO_PACKAGE_NAME)
4649
AC_SUBST(PGPRO_EDITION)
50+
AC_SUBST(PGPRO_EDN)
4751
AC_DEFINE_UNQUOTED(PG_VERSION, "$PG_VERSION", [PostgreSQL version as a string])
4852
AC_DEFINE_UNQUOTED(PGPRO_PACKAGE_NAME, "$PGPRO_PACKAGE_NAME", [PostgresPro name as a string])
4953
AC_DEFINE_UNQUOTED(PGPRO_EDITION,"$PGPRO_EDITION",[PostgresPro edition])
54+
AC_DEFINE_UNQUOTED(PGPRO_EDN,"$PGPRO_EDN",[PostgresPro edition abbreviated])
5055
AC_DEFINE_UNQUOTED(PGPRO_VERSION, "$PGPRO_VERSION", [PostgresPro
5156
version as a string])
5257

doc/src/sgml/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ version.sgml: $(top_srcdir)/configure
104104
echo "<!ENTITY majorversion \"$(MAJORVERSION)\">"; \
105105
echo "<!ENTITY productname \"$(PRODUCT_NAME)\">"; \
106106
echo "<!ENTITY edition \"$(PGPRO_EDITION)\">"; \
107+
echo "<!ENTITY edn \"$(PGPRO_EDN)\">"; \
107108
} > $@
108109

109110
features-supported.sgml: $(top_srcdir)/src/backend/catalog/sql_feature_packages.txt $(top_srcdir)/src/backend/catalog/sql_features.txt

src/Makefile.global.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ PGPRO_VERSION = @PGPRO_VERSION@
4343
PGPRO_PACKAGE_NAME = @PGPRO_PACKAGE_NAME@
4444
PACKAGE_TARNAME = @PACKAGE_TARNAME@
4545
PGPRO_EDITION = @PGPRO_EDITION@
46+
PGPRO_EDN = @PGPRO_EDN@
4647
PRODUCT_NAME = @PRODUCT_NAME@
4748

4849
# Set top_srcdir, srcdir, and VPATH.

0 commit comments

Comments
 (0)