23 lines
864 B
Diff
23 lines
864 B
Diff
|
"Carried over from mozjs68"
|
||
|
--- a/js/src/build/Makefile.in
|
||
|
+++ b/js/src/build/Makefile.in
|
||
|
@@ -78,6 +78,8 @@
|
||
|
endif
|
||
|
ifneq (,$(SHARED_LIBRARY))
|
||
|
$(SYSINSTALL) $(SHARED_LIBRARY) $(DESTDIR)$(libdir)
|
||
|
+ mv -f $(DESTDIR)$(libdir)/$(SHARED_LIBRARY) $(DESTDIR)$(libdir)/$(SHARED_LIBRARY).0
|
||
|
+ ln -s $(SHARED_LIBRARY).0 $(DESTDIR)$(libdir)/$(SHARED_LIBRARY)
|
||
|
ifeq ($(OS_ARCH),Darwin)
|
||
|
install_name_tool -id $(abspath $(libdir)/$(SHARED_LIBRARY)) $(DESTDIR)$(libdir)/$(SHARED_LIBRARY)
|
||
|
endif
|
||
|
--- a/js/src/build/moz.build
|
||
|
+++ b/js/src/build/moz.build
|
||
|
@@ -25,6 +25,7 @@
|
||
|
if CONFIG['JS_SHARED_LIBRARY']:
|
||
|
GeckoSharedLibrary('js', linkage=None)
|
||
|
SHARED_LIBRARY_NAME = CONFIG['JS_LIBRARY_NAME']
|
||
|
+ LDFLAGS += ['-Wl,-soname,lib{}.so.0'.format(SHARED_LIBRARY_NAME)]
|
||
|
|
||
|
# Ensure symbol versions of shared library on Linux do not conflict
|
||
|
# with those in libxul.
|