1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-21 00:42:43 +03:00

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.
This commit is contained in:
Noah Misch
2014-07-14 14:07:52 -04:00
parent c0e8fb6148
commit 0ffc201a51
93 changed files with 147 additions and 55 deletions

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = ascii_and_mic
PGFILEDESC = "ascii <-> mic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = cyrillic_and_mic
PGFILEDESC = "cyrillic <-> mic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = euc2004_sjis2004
PGFILEDESC = "euc2004 <-> sjis2004 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = euc_cn_and_mic
PGFILEDESC = "euc_cn <-> mic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = euc_jp_and_sjis
PGFILEDESC = "euc_jp <-> sjis text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = euc_kr_and_mic
PGFILEDESC = "euc_kr <-> mic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,6 +8,7 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = euc_tw_and_big5
PGFILEDESC = "euc_tw <-> big5 text conversions"
SRCS += big5.c
OBJS += big5.o

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = latin2_and_win1250
PGFILEDESC = "latin2 <-> win1250 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = latin_and_mic
PGFILEDESC = "latin <-> mic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -1,5 +1,5 @@
SRCS += $(NAME).c
OBJS += $(NAME).o
OBJS += $(NAME).o $(WIN32RES)
rpath =

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_ascii
PGFILEDESC = "utf8 <-> ascii text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_big5
PGFILEDESC = "utf8 <-> big5 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_cyrillic
PGFILEDESC = "utf8 <-> cyrillic text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_euc2004
PGFILEDESC = "utf8 <-> euc2004 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_euc_cn
PGFILEDESC = "utf8 <-> euc_cn text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_euc_jp
PGFILEDESC = "utf8 <-> euc_jp text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_euc_kr
PGFILEDESC = "utf8 <-> euc_kr text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_euc_tw
PGFILEDESC = "utf8 <-> euc_tw text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_gb18030
PGFILEDESC = "utf8 <-> gb18030 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_gbk
PGFILEDESC = "utf8 <-> gbk text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_iso8859
PGFILEDESC = "utf8 <-> iso8859 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_iso8859_1
PGFILEDESC = "utf8 <-> iso8859_1 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_johab
PGFILEDESC = "utf8 <-> johab text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_sjis
PGFILEDESC = "utf8 <-> sjis text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_sjis2004
PGFILEDESC = "utf8 <-> sjis2004 text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_uhc
PGFILEDESC = "utf8 <-> uhc text conversions"
include $(srcdir)/../proc.mk

View File

@@ -8,5 +8,6 @@ top_builddir = ../../../../../..
include $(top_builddir)/src/Makefile.global
NAME = utf8_and_win
PGFILEDESC = "utf8 <-> win text conversions"
include $(srcdir)/../proc.mk