aboutsummaryrefslogtreecommitdiff
path: root/src/backend
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend')
-rw-r--r--src/backend/snowball/Makefile4
-rw-r--r--src/backend/utils/mb/conversion_procs/Makefile4
2 files changed, 0 insertions, 8 deletions
diff --git a/src/backend/snowball/Makefile b/src/backend/snowball/Makefile
index c528be9d532..ac80efeb7d1 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)'
diff --git a/src/backend/utils/mb/conversion_procs/Makefile b/src/backend/utils/mb/conversion_procs/Makefile
index 0848d963356..8481721c25a 100644
--- a/src/backend/utils/mb/conversion_procs/Makefile
+++ b/src/backend/utils/mb/conversion_procs/Makefile
@@ -166,7 +166,6 @@ CONVERSIONS = \
all: $(SQLSCRIPT)
$(SQLSCRIPT): Makefile
-ifeq ($(enable_shared), yes)
@set -e; \
set $(CONVERSIONS) ; \
while [ "$$#" -gt 0 ] ; \
@@ -183,9 +182,6 @@ ifeq ($(enable_shared), yes)
echo "CREATE DEFAULT CONVERSION pg_catalog.$$name FOR '$$se' TO '$$de' FROM $$func;"; \
echo "COMMENT ON CONVERSION pg_catalog.$$name IS 'conversion for $$se to $$de';"; \
done > $@
-else
- echo "-- No conversion support, for lack of shared library support" > $@
-endif
$(REGRESSION_SCRIPT): Makefile
@set -e; \