From a7dfc07d792199e258a2e3bcb95138d0fddf4d34 Mon Sep 17 00:00:00 2001 From: zimoch Date: Tue, 25 Jun 2013 07:31:58 +0000 Subject: [PATCH] link libraries with version numbers to unnumbered libs for compatibility with already built extensions --- configure/RULES_BUILD | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure/RULES_BUILD b/configure/RULES_BUILD index 561ef9f88..9c5bcd405 100644 --- a/configure/RULES_BUILD +++ b/configure/RULES_BUILD @@ -387,6 +387,9 @@ ifneq ($(SHRLIB_SUFFIX),.dll) ifneq (,$(strip $(SHRLIB_VERSION))) @$(RM) $(subst .$(SHRLIB_VERSION),,$@) ln -s $< $(subst .$(SHRLIB_VERSION),,$@) +else + @$(RM) $@.3.14 + ln -s $< $@.3.14 endif # SHRLIB_VERSION endif # SHRLIB_SUFFIX