Skip to content

Commit 395d125

Browse files
committed
Add PGFILEDESC description to Makefiles for all /contrib executables.
Add PGAPPICON to all executable makefiles.
1 parent 561afa5 commit 395d125

File tree

16 files changed

+57
-23
lines changed

16 files changed

+57
-23
lines changed

contrib/oid2name/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.10 2007/11/10 23:59:51 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/oid2name/Makefile,v 1.11 2010/05/12 11:33:07 momjian Exp $
2+
3+
PGFILEDESC = "oid2name - examine the file structure"
4+
PGAPPICON=win32
25

36
PROGRAM = oid2name
47
OBJS = oid2name.o

contrib/pg_standby/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.5 2009/07/16 09:59:46 heikki Exp $
1+
# $PostgreSQL: pgsql/contrib/pg_standby/Makefile,v 1.6 2010/05/12 11:33:07 momjian Exp $
2+
3+
PGFILEDESC = "pg_standby - supports creation of a warm standby"
4+
PGAPPICON=win32
25

36
PROGRAM = pg_standby
47
OBJS = pg_standby.o

contrib/pg_upgrade/Makefile

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@
66
# This Makefile generates an executable and a shared object file
77
#
88

9-
PROGRAM = pg_upgrade
10-
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
11-
option.o page.o pg_upgrade.o relfilenode.o server.o \
12-
tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
9+
PGFILEDESC = "pg_upgrade - an in-place binary upgrade utility"
10+
PGAPPICON = win32
1311

14-
PG_CPPFLAGS = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
15-
PG_LIBS = $(libpq_pgport)
12+
PROGRAM = pg_upgrade
13+
OBJS = check.o controldata.o dump.o exec.o file.o function.o info.o \
14+
option.o page.o pg_upgrade.o relfilenode.o server.o \
15+
tablespace.o util.o version.o version_old_8_3.o $(WIN32RES)
16+
17+
MODULES = pg_upgrade_sysoids
1618

17-
PGFILEDESC = "pg_upgrade - In-Place Binary Upgrade Utility"
18-
PGAPPICON = win32
19-
MODULES = pg_upgrade_sysoids
19+
PG_CPPFLAGS = -DFRONTEND -DDLSUFFIX=\"$(DLSUFFIX)\" -I$(srcdir) -I$(libpq_srcdir)
20+
PG_LIBS = $(libpq_pgport)
2021

2122
ifdef USE_PGXS
2223
PG_CONFIG = pg_config

contrib/pgbench/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.17 2009/08/03 18:30:55 tgl Exp $
1+
# $PostgreSQL: pgsql/contrib/pgbench/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
2+
3+
PGFILEDESC = "pgbench - a simple program for running benchmark tests"
4+
PGAPPICON=win32
25

36
PROGRAM = pgbench
47
OBJS = pgbench.o

contrib/vacuumlo/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.17 2007/11/10 23:59:52 momjian Exp $
1+
# $PostgreSQL: pgsql/contrib/vacuumlo/Makefile,v 1.18 2010/05/12 11:33:08 momjian Exp $
2+
3+
PGFILEDESC = "vacuumlo - removes orphaned large objects"
4+
PGAPPICON=win32
25

36
PROGRAM = vacuumlo
47
OBJS = vacuumlo.o

src/backend/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.141 2010/01/20 23:12:03 tgl Exp $
8+
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.142 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "PostgreSQL Server"
13+
PGAPPICON=win32
14+
1315
subdir = src/backend
1416
top_builddir = ../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/initdb/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.59 2010/01/02 16:57:58 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/initdb/Makefile,v 1.60 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "initdb - initialize a new database cluster"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/initdb
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

src/bin/pg_config/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.23 2010/01/02 16:57:58 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_config/Makefile,v 1.24 2010/05/12 11:33:09 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "pg_config - report configuration information"
12+
PGAPPICON=win32
13+
1214
subdir = src/bin/pg_config
1315
top_builddir = ../../..
1416
include $(top_builddir)/src/Makefile.global

src/bin/pg_controldata/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
#
55
# Copyright (c) 1998-2010, PostgreSQL Global Development Group
66
#
7-
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.20 2010/01/02 16:57:58 momjian Exp $
7+
# $PostgreSQL: pgsql/src/bin/pg_controldata/Makefile,v 1.21 2010/05/12 11:33:09 momjian Exp $
88
#
99
#-------------------------------------------------------------------------
1010

1111
PGFILEDESC = "pg_controldata - reads the data from pg_control"
12+
PGAPPICON=win32
13+
1214
subdir = src/bin/pg_controldata
1315
top_builddir = ../../..
1416
include $(top_builddir)/src/Makefile.global

src/bin/pg_ctl/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
# Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
66
# Portions Copyright (c) 1994, Regents of the University of California
77
#
8-
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.28 2010/01/02 16:57:58 momjian Exp $
8+
# $PostgreSQL: pgsql/src/bin/pg_ctl/Makefile,v 1.29 2010/05/12 11:33:09 momjian Exp $
99
#
1010
#-------------------------------------------------------------------------
1111

1212
PGFILEDESC = "pg_ctl - starts/stops/restarts the PostgreSQL server"
13+
PGAPPICON=win32
14+
1315
subdir = src/bin/pg_ctl
1416
top_builddir = ../../..
1517
include $(top_builddir)/src/Makefile.global

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy