diff options
author | Noah Misch <noah@leadboat.com> | 2014-07-14 14:07:52 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-07-14 14:07:52 -0400 |
commit | 0ffc201a51395ca71fe429ef86c872850a5850ee (patch) | |
tree | 982984e5beda2ea095400c604acf519b5103e82e /contrib/intarray | |
parent | c0e8fb6148ce9c539f6fbde71faa955cab85f214 (diff) | |
download | postgresql-0ffc201a51395ca71fe429ef86c872850a5850ee.tar.gz postgresql-0ffc201a51395ca71fe429ef86c872850a5850ee.zip |
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.
Diffstat (limited to 'contrib/intarray')
-rw-r--r-- | contrib/intarray/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/contrib/intarray/Makefile b/contrib/intarray/Makefile index 71f820ec4a8..920c5b1ba03 100644 --- a/contrib/intarray/Makefile +++ b/contrib/intarray/Makefile @@ -1,10 +1,12 @@ # contrib/intarray/Makefile MODULE_big = _int -OBJS = _int_bool.o _int_gist.o _int_op.o _int_tool.o _intbig_gist.o _int_gin.o +OBJS = _int_bool.o _int_gist.o _int_op.o _int_tool.o \ + _intbig_gist.o _int_gin.o $(WIN32RES) EXTENSION = intarray DATA = intarray--1.0.sql intarray--unpackaged--1.0.sql +PGFILEDESC = "intarray - functions and operators for arrays of integers" REGRESS = _int |