diff options
author | Pavan Deolasee | 2016-02-18 12:19:09 +0000 |
---|---|---|
committer | Pavan Deolasee | 2016-02-18 12:19:09 +0000 |
commit | 77962ed8fd59b983a452451ccf51c92f5b21b7b1 (patch) | |
tree | 189e92c295d3ac8e6adead3735c7425098627fe3 | |
parent | e0c4c9a6abde57997e5045405ecd015baf5bc34f (diff) |
Make some adjustments to the way documentation headers are printed
-rw-r--r-- | doc/src/sgml/Makefile | 2 | ||||
-rw-r--r-- | doc/src/sgml/legal.sgml | 4 | ||||
-rw-r--r-- | src/Makefile.global.in | 1 |
3 files changed, 6 insertions, 1 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 24b895f3c3..22ef50b899 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -141,7 +141,7 @@ endif # changes. version.sgml: $(top_srcdir)/configure { \ - echo "<!ENTITY version \"$(VERSION)\">"; \ + echo "<!ENTITY version \"$(XLVERSION)\">"; \ echo "<!ENTITY majorversion \"$(MAJORVERSION)\">"; \ } > $@ diff --git a/doc/src/sgml/legal.sgml b/doc/src/sgml/legal.sgml index 91fe0f56f4..ae7f5a7d31 100644 --- a/doc/src/sgml/legal.sgml +++ b/doc/src/sgml/legal.sgml @@ -7,6 +7,10 @@ <holder>The PostgreSQL Global Development Group</holder> </copyright> <copyright> + <year>2014-2016</year> + <holder>Postgres-XL Development Group</holder> +</copyright> +<copyright> <year>2009-2012</year> <holder>Postgres-XC Development Group</holder> </copyright> diff --git a/src/Makefile.global.in b/src/Makefile.global.in index a91595a425..c6bade1db3 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -37,6 +37,7 @@ all: # PostgreSQL version number VERSION = @PACKAGE_VERSION@ +XLVERSION = @PACKAGE_XC_VERSION@ MAJORVERSION = @PG_MAJORVERSION@ VERSION_NUM = @PG_VERSION_NUM@ |