summaryrefslogtreecommitdiff
path: root/src/backend/snowball/Makefile
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2012-08-30 16:26:53 -0400
committerBruce Momjian <bruce@momjian.us>2012-08-30 16:26:53 -0400
commit381a9ed66d8a601eb972be172e7251ca7f0e9d78 (patch)
tree67d32ad436304b8de5fe2a72ea60f1e3f006d79d /src/backend/snowball/Makefile
parent9bedfbd02b48096f435c5b111591d4e5b717e547 (diff)
downloadpostgresql-381a9ed66d8a601eb972be172e7251ca7f0e9d78.tar.gz
Remove configure flag --disable-shared, as it is no longer used by any
port. The last use was QNX, per Peter Eisentraut.
Diffstat (limited to 'src/backend/snowball/Makefile')
-rw-r--r--src/backend/snowball/Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/backend/snowball/Makefile b/src/backend/snowball/Makefile
index c528be9d53..ac80efeb7d 100644
--- a/src/backend/snowball/Makefile
+++ b/src/backend/snowball/Makefile
@@ -81,7 +81,6 @@ all: all-shared-lib $(SQLSCRIPT)
include $(top_srcdir)/src/Makefile.shlib
$(SQLSCRIPT): Makefile snowball_func.sql.in snowball.sql.in
-ifeq ($(enable_shared), yes)
echo '-- Language-specific snowball dictionaries' > $@
cat $(srcdir)/snowball_func.sql.in >> $@
@set -e; \
@@ -104,9 +103,6 @@ ifeq ($(enable_shared), yes)
sed -e "s#_NONASCDICTNAME_#$${nonascdictname}_stem#g" | \
sed -e "s#_STOPWORDS_#$$stop#g" ; \
done >> $@
-else
- echo "-- No language-specific snowball dictionaries, for lack of shared library support" > $@
-endif
install: all installdirs install-lib
$(INSTALL_DATA) $(SQLSCRIPT) '$(DESTDIR)$(datadir)'