Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit0ffc201

Browse files
committed
Add file version information to most installed Windows binaries.
Prominent binaries already had this metadata. A handful of minorbinaries, such as pg_regress.exe, still lack it; efforts to eliminatesuch exceptions are welcome.Michael Paquier, reviewed by MauMau.
1 parentc0e8fb6 commit0ffc201

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
ifdefUSE_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
ifdefUSE_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
ifdefUSE_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)

[8]ページ先頭

©2009-2025 Movatter.jp