Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ffc201

Browse files
committed
Add file version information to most installed Windows binaries.
Prominent binaries already had this metadata. A handful of minor binaries, such as pg_regress.exe, still lack it; efforts to eliminate such exceptions are welcome. Michael Paquier, reviewed by MauMau.
1 parent c0e8fb6 commit 0ffc201

File tree

93 files changed

+147
-55
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+147
-55
lines changed

contrib/adminpack/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# contrib/adminpack/Makefile
22

33
MODULE_big = adminpack
4-
OBJS = adminpack.o
4+
OBJS = adminpack.o $(WIN32RES)
55
PG_CPPFLAGS = -I$(libpq_srcdir)
66

77
EXTENSION = adminpack
88
DATA = adminpack--1.0.sql
9+
PGFILEDESC = "adminpack - support functions for pgAdmin"
910

1011
ifdef USE_PGXS
1112
PG_CONFIG = pg_config

contrib/auth_delay/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# contrib/auth_delay/Makefile
22

33
MODULES = auth_delay
4+
PGFILEDESC = "auth_delay - delay authentication failure reports"
45

56
ifdef USE_PGXS
67
PG_CONFIG = pg_config

contrib/auto_explain/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# contrib/auto_explain/Makefile
22

33
MODULE_big = auto_explain
4-
OBJS = auto_explain.o
4+
OBJS = auto_explain.o $(WIN32RES)
5+
PGFILEDESC = "auto_explain - logging facility for execution plans"
56

67
ifdef USE_PGXS
78
PG_CONFIG = pg_config

contrib/btree_gin/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# contrib/btree_gin/Makefile
22

33
MODULE_big = btree_gin
4-
OBJS = btree_gin.o
4+
OBJS = btree_gin.o $(WIN32RES)
55

66
EXTENSION = btree_gin
77
DATA = btree_gin--1.0.sql btree_gin--unpackaged--1.0.sql
8+
PGFILEDESC = "btree_gin - B-tree equivalent GIN operator classes"
89

910
REGRESS = install_btree_gin int2 int4 int8 float4 float8 money oid \
1011
timestamp timestamptz time timetz date interval \

contrib/btree_gist/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ OBJS = btree_gist.o btree_utils_num.o btree_utils_var.o btree_int2.o \
66
btree_int4.o btree_int8.o btree_float4.o btree_float8.o btree_cash.o \
77
btree_oid.o btree_ts.o btree_time.o btree_date.o btree_interval.o \
88
btree_macaddr.o btree_inet.o btree_text.o btree_bytea.o btree_bit.o \
9-
btree_numeric.o
9+
btree_numeric.o $(WIN32RES)
1010

1111
EXTENSION = btree_gist
1212
DATA = btree_gist--1.0.sql btree_gist--unpackaged--1.0.sql
13+
PGFILEDESC = "btree_gist - B-tree equivalent GIST operator classes"
1314

1415
REGRESS = init int2 int4 int8 float4 float8 cash oid timestamp timestamptz \
1516
time timetz date interval macaddr inet cidr text varchar char bytea \

contrib/chkpass/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# contrib/chkpass/Makefile
22

33
MODULE_big = chkpass
4-
OBJS = chkpass.o
4+
OBJS = chkpass.o $(WIN32RES)
55

66
EXTENSION = chkpass
77
DATA = chkpass--1.0.sql chkpass--unpackaged--1.0.sql
8+
PGFILEDESC = "chkpass - encrypted password data type"
89

910
SHLIB_LINK = $(filter -lcrypt, $(LIBS))
1011

contrib/citext/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ MODULES = citext
44

55
EXTENSION = citext
66
DATA = citext--1.0.sql citext--unpackaged--1.0.sql
7+
PGFILEDESC = "citext - case-insensitive character string data type"
78

89
REGRESS = citext
910

contrib/cube/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# contrib/cube/Makefile
22

33
MODULE_big = cube
4-
OBJS= cube.o cubeparse.o
4+
OBJS= cube.o cubeparse.o $(WIN32RES)
55

66
EXTENSION = cube
77
DATA = cube--1.0.sql cube--unpackaged--1.0.sql
8+
PGFILEDESC = "cube - multidimensional cube data type"
89

910
REGRESS = cube
1011

contrib/dblink/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# contrib/dblink/Makefile
22

33
MODULE_big = dblink
4-
OBJS = dblink.o
4+
OBJS = dblink.o $(WIN32RES)
55
PG_CPPFLAGS = -I$(libpq_srcdir)
66
SHLIB_LINK = $(libpq)
77
SHLIB_PREREQS = submake-libpq
88

99
EXTENSION = dblink
1010
DATA = dblink--1.1.sql dblink--1.0--1.1.sql dblink--unpackaged--1.0.sql
11+
PGFILEDESC = "dblink - connect to other PostgreSQL databases"
1112

1213
REGRESS = dblink
1314

contrib/dict_int/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# contrib/dict_int/Makefile
22

33
MODULE_big = dict_int
4-
OBJS = dict_int.o
4+
OBJS = dict_int.o $(WIN32RES)
55

66
EXTENSION = dict_int
77
DATA = dict_int--1.0.sql dict_int--unpackaged--1.0.sql
8+
PGFILEDESC = "dict_int - add-on dictionary template for full-text search"
89

910
REGRESS = dict_int
1011

0 commit comments

Comments
 (0)