diff options
author | Noah Misch <noah@leadboat.com> | 2014-08-18 22:59:53 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-08-18 22:59:53 -0400 |
commit | ee9569e4df1c3bdb6858f4f65d0770783c32a84d (patch) | |
tree | 4abc544d89e41c6bccbc01eb578919411fcd1461 /src/backend | |
parent | fb2aece8ae4e6f23310d7c87c7da3fec6f5df3a1 (diff) | |
download | postgresql-ee9569e4df1c3bdb6858f4f65d0770783c32a84d.tar.gz postgresql-ee9569e4df1c3bdb6858f4f65d0770783c32a84d.zip |
Finish adding file version information to installed Windows binaries.
In support of this, have the MSVC build follow GNU make in preferring
GNUmakefile over Makefile when a directory contains both.
Michael Paquier, reviewed by MauMau.
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/snowball/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/backend/snowball/Makefile b/src/backend/snowball/Makefile index ac80efeb7d1..50cbace41da 100644 --- a/src/backend/snowball/Makefile +++ b/src/backend/snowball/Makefile @@ -6,6 +6,9 @@ # #------------------------------------------------------------------------- +PGFILEDESC = "snowball - natural language stemmers" +PGAPPICON = win32 + subdir = src/backend/snowball top_builddir = ../../.. include $(top_builddir)/src/Makefile.global @@ -13,7 +16,7 @@ include $(top_builddir)/src/Makefile.global override CPPFLAGS := -I$(top_srcdir)/src/include/snowball \ -I$(top_srcdir)/src/include/snowball/libstemmer $(CPPFLAGS) -OBJS= dict_snowball.o api.o utilities.o \ +OBJS= $(WIN32RES) dict_snowball.o api.o utilities.o \ stem_ISO_8859_1_danish.o \ stem_ISO_8859_1_dutch.o \ stem_ISO_8859_1_english.o \ |