diff options
author | Michael Paquier | 2012-05-23 00:09:23 +0000 |
---|---|---|
committer | Michael Paquier | 2012-05-23 00:10:53 +0000 |
commit | e1df051ccd64fa9eee5562f8a64be7007003120d (patch) | |
tree | 2dcfa64a1014a82dda69025e3085fde7605e0b5e | |
parent | 6a2c5e37ccd26e9bf85d5f7ccd6f7102cc252bd4 (diff) |
Update GTM makefiles and copyright dates
Some 2012 copyrights were missing and headers of GTM makefiles are
updated to be more consistent with system.
-rw-r--r-- | src/backend/parser/gram.y | 2 | ||||
-rw-r--r-- | src/backend/pgxc/Makefile | 10 | ||||
-rw-r--r-- | src/backend/pgxc/barrier/Makefile | 2 | ||||
-rw-r--r-- | src/backend/pgxc/locator/Makefile | 3 | ||||
-rw-r--r-- | src/backend/pgxc/nodemgr/Makefile | 2 | ||||
-rw-r--r-- | src/backend/pgxc/plan/Makefile | 3 | ||||
-rw-r--r-- | src/backend/pgxc/pool/Makefile | 2 | ||||
-rw-r--r-- | src/backend/pgxc/xc_maintenance_mode/Makefile | 4 | ||||
-rw-r--r-- | src/gtm/Makefile | 13 | ||||
-rw-r--r-- | src/gtm/Makefile.port | 11 | ||||
-rw-r--r-- | src/gtm/client/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/client/test/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/client/test/test_proxy.sh | 2 | ||||
-rw-r--r-- | src/gtm/common/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/gtm_ctl/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/libpq/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/main/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/path/Makefile | 9 | ||||
-rw-r--r-- | src/gtm/proxy/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/recovery/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/test/Makefile | 11 | ||||
-rw-r--r-- | src/gtm/test2/Makefile | 11 | ||||
-rw-r--r-- | src/pgxc/bin/pgxc_ddl/pgxc_ddl | 2 | ||||
-rw-r--r-- | src/pgxc/tools/makesgml/Makefile | 2 | ||||
-rw-r--r-- | src/pgxc/tools/makesgml/makesgml.c | 2 |
25 files changed, 132 insertions, 47 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y index fdce3d3145..8f6893c9dd 100644 --- a/src/backend/parser/gram.y +++ b/src/backend/parser/gram.y @@ -8,7 +8,7 @@ * * Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California - * Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation + * Portions Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation * * * IDENTIFICATION diff --git a/src/backend/pgxc/Makefile b/src/backend/pgxc/Makefile index 312b4d330c..863d781b8e 100644 --- a/src/backend/pgxc/Makefile +++ b/src/backend/pgxc/Makefile @@ -1,12 +1,12 @@ +#---------------------------------------------------------------------------- # -# Makefile for the access methods module +# Postgres-XC backend method makefile # +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation # -# Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# src/backend/pgxc/Makefile # -# $PostgreSQL$ -# - +#----------------------------------------------------------------------------- subdir = src/backend/pgxc top_builddir = ../../.. include $(top_builddir)/src/Makefile.global diff --git a/src/backend/pgxc/barrier/Makefile b/src/backend/pgxc/barrier/Makefile index 9505889209..2779b529de 100644 --- a/src/backend/pgxc/barrier/Makefile +++ b/src/backend/pgxc/barrier/Makefile @@ -3,7 +3,7 @@ # Makefile-- # Makefile for barrier # -# Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Portions Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/backend/pgxc/locator/Makefile b/src/backend/pgxc/locator/Makefile index 026a247940..962ef7aff9 100644 --- a/src/backend/pgxc/locator/Makefile +++ b/src/backend/pgxc/locator/Makefile @@ -3,8 +3,7 @@ # Makefile-- # Makefile for locator # -# -# Copyright(C) 2010 Nippon Telegraph and Telephone Corporation +# Copyright(C) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/backend/pgxc/nodemgr/Makefile b/src/backend/pgxc/nodemgr/Makefile index 74cd60aaf3..1ac592b1f5 100644 --- a/src/backend/pgxc/nodemgr/Makefile +++ b/src/backend/pgxc/nodemgr/Makefile @@ -3,7 +3,7 @@ # Makefile-- # Makefile for node management routines # -# Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Portions Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/backend/pgxc/plan/Makefile b/src/backend/pgxc/plan/Makefile index c0e65741f1..e859aea93e 100644 --- a/src/backend/pgxc/plan/Makefile +++ b/src/backend/pgxc/plan/Makefile @@ -3,8 +3,7 @@ # Makefile-- # Makefile for rewrite # -# -# Portions Copyright(C) 2010 Nippon Telegraph and Telephone Corporation +# Portions Copyright(C) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/backend/pgxc/pool/Makefile b/src/backend/pgxc/pool/Makefile index f0701c52ca..06be1be541 100644 --- a/src/backend/pgxc/pool/Makefile +++ b/src/backend/pgxc/pool/Makefile @@ -3,7 +3,7 @@ # Makefile-- # Makefile for pool # -# Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Portions Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/backend/pgxc/xc_maintenance_mode/Makefile b/src/backend/pgxc/xc_maintenance_mode/Makefile index 940cb52ec2..e8e981bcf9 100644 --- a/src/backend/pgxc/xc_maintenance_mode/Makefile +++ b/src/backend/pgxc/xc_maintenance_mode/Makefile @@ -1,9 +1,9 @@ #------------------------------------------------------------------------- # # Makefile-- -# Makefile for barrier +# Makefile for XC maintenance mode # -# Portions Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Portions Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation # # IDENTIFICATION # $PostgreSQL$ diff --git a/src/gtm/Makefile b/src/gtm/Makefile index 05a962e30d..28c5c1384f 100644 --- a/src/gtm/Makefile +++ b/src/gtm/Makefile @@ -1,11 +1,12 @@ -#------------------------------------------------------------------------- +#---------------------------------------------------------------------------- # -# Makefile for src/gtm -# GTM and GTM proxy +# Postgres-XC GTM makefile # -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation -#------------------------------------------------------------------------- - +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/Makefile +# +#----------------------------------------------------------------------------- PGFILEDESC = "gtm - Global Transaction Manager for Postgres-XC" subdir = src/gtm top_builddir = ../.. diff --git a/src/gtm/Makefile.port b/src/gtm/Makefile.port index e616574be7..5f19eb8d29 100644 --- a/src/gtm/Makefile.port +++ b/src/gtm/Makefile.port @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC port makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/pgxc/tools/makesgml/Makefile.port +# +#----------------------------------------------------------------------------- AROPT = crs export_dynamic = -Wl,-E rpath = -Wl,-rpath,'$(rpathdir)' diff --git a/src/gtm/client/Makefile b/src/gtm/client/Makefile index 02ae2ebe02..ef956ec20e 100644 --- a/src/gtm/client/Makefile +++ b/src/gtm/client/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM client makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/client/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/client diff --git a/src/gtm/client/test/Makefile b/src/gtm/client/test/Makefile index f2fe3b77fe..deed904214 100644 --- a/src/gtm/client/test/Makefile +++ b/src/gtm/client/test/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM client test makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/client/test/Makefile +# +#----------------------------------------------------------------------------- top_build_dir=../../../ include $(top_build_dir)/gtm/Makefile.global diff --git a/src/gtm/client/test/test_proxy.sh b/src/gtm/client/test/test_proxy.sh index 5c68745b3f..0ae353fa8a 100644 --- a/src/gtm/client/test/test_proxy.sh +++ b/src/gtm/client/test/test_proxy.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation GTM_SERVER_HOSTNAME=gtm GTM_SERVER_PORT=16667 diff --git a/src/gtm/common/Makefile b/src/gtm/common/Makefile index 48f9e7a3b2..3b07a2dfa9 100644 --- a/src/gtm/common/Makefile +++ b/src/gtm/common/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM common makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/common/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. subdir=src/gtm/common diff --git a/src/gtm/gtm_ctl/Makefile b/src/gtm/gtm_ctl/Makefile index eb4c210dca..0ed82b34bd 100644 --- a/src/gtm/gtm_ctl/Makefile +++ b/src/gtm/gtm_ctl/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM gtm_ctl makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/gtm_ctl/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/gtm_ctl diff --git a/src/gtm/libpq/Makefile b/src/gtm/libpq/Makefile index bdf921ffb6..d0ff7d2404 100644 --- a/src/gtm/libpq/Makefile +++ b/src/gtm/libpq/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM libpq makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/libpq/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/libpq diff --git a/src/gtm/main/Makefile b/src/gtm/main/Makefile index b24f0c28a3..30d4708ced 100644 --- a/src/gtm/main/Makefile +++ b/src/gtm/main/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM main Makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/main/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/main diff --git a/src/gtm/path/Makefile b/src/gtm/path/Makefile index fd3d609f38..6f8229d2cc 100644 --- a/src/gtm/path/Makefile +++ b/src/gtm/path/Makefile @@ -1,3 +1,12 @@ +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM path makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/path/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/path diff --git a/src/gtm/proxy/Makefile b/src/gtm/proxy/Makefile index 8395a4539b..6d6f32b0e3 100644 --- a/src/gtm/proxy/Makefile +++ b/src/gtm/proxy/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM proxy Makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/proxy/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/proxy diff --git a/src/gtm/recovery/Makefile b/src/gtm/recovery/Makefile index a55e6aa3c6..c52b2aa5b7 100644 --- a/src/gtm/recovery/Makefile +++ b/src/gtm/recovery/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM recovery makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/recovery/Makefile +# +#----------------------------------------------------------------------------- top_builddir=../../.. include $(top_builddir)/src/Makefile.global subdir=src/gtm/recovery diff --git a/src/gtm/test/Makefile b/src/gtm/test/Makefile index e6155ea7f6..192d0223d4 100644 --- a/src/gtm/test/Makefile +++ b/src/gtm/test/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM test makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/test/Makefile +# +#----------------------------------------------------------------------------- top_build_dir=../.. include $(top_build_dir)/gtm/Makefile.global diff --git a/src/gtm/test2/Makefile b/src/gtm/test2/Makefile index e6155ea7f6..6c5a1ed032 100644 --- a/src/gtm/test2/Makefile +++ b/src/gtm/test2/Makefile @@ -1,5 +1,12 @@ -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation - +#---------------------------------------------------------------------------- +# +# Postgres-XC GTM test2 makefile +# +# Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation +# +# src/gtm/test2/Makefile +# +#----------------------------------------------------------------------------- top_build_dir=../.. include $(top_build_dir)/gtm/Makefile.global diff --git a/src/pgxc/bin/pgxc_ddl/pgxc_ddl b/src/pgxc/bin/pgxc_ddl/pgxc_ddl index 658a3b3b5f..04680294d6 100644 --- a/src/pgxc/bin/pgxc_ddl/pgxc_ddl +++ b/src/pgxc/bin/pgxc_ddl/pgxc_ddl @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2010-2011 Nippon Telegraph and Telephone Corporation +# Copyright (c) 2010-2012 Nippon Telegraph and Telephone Corporation #Scripts to launch DDL in PGXC cluster using a cold_backup method #Be sure to have set a correct ssl environment in all the servers of the cluster diff --git a/src/pgxc/tools/makesgml/Makefile b/src/pgxc/tools/makesgml/Makefile index d3b50ba090..771cd705b8 100644 --- a/src/pgxc/tools/makesgml/Makefile +++ b/src/pgxc/tools/makesgml/Makefile @@ -4,7 +4,7 @@ # # Copyright(c) 2010-2012 Nippon Telegraph and Telephone Corporation # -# doc-xc/tools/makesgml/Makefile +# src/pgxc/tools/makesgml/Makefile # #----------------------------------------------------------------------------- diff --git a/src/pgxc/tools/makesgml/makesgml.c b/src/pgxc/tools/makesgml/makesgml.c index a5f257238d..5d5972b17a 100644 --- a/src/pgxc/tools/makesgml/makesgml.c +++ b/src/pgxc/tools/makesgml/makesgml.c @@ -5,7 +5,7 @@ * Copyright (c) 2010-2012, Nippon Telegraph and Telephone Corporation * * IDENTIFICATION - * doc-xc/tools/makesgml/makesgml.c + * src/pgxc/tools/makesgml/makesgml.c * * This tools converts .sgmlin files into .sgml files to be handled by * many tools to generate Postgres-XC documants. |