mirror of
git://slackware.nl/current.git
synced 2025-01-12 08:03:03 +01:00
85535b49c4
a/kernel-generic-5.4.55-x86_64-1.txz: Upgraded. a/kernel-huge-5.4.55-x86_64-1.txz: Upgraded. a/kernel-modules-5.4.55-x86_64-1.txz: Upgraded. ap/sysstat-12.4.0-x86_64-1.txz: Upgraded. d/cmake-3.18.1-x86_64-1.txz: Upgraded. d/kernel-headers-5.4.55-x86-1.txz: Upgraded. d/python-pip-20.2-x86_64-1.txz: Upgraded. d/re2c-2.0.1-x86_64-1.txz: Upgraded. d/rust-1.45.1-x86_64-1.txz: Upgraded. k/kernel-source-5.4.55-noarch-1.txz: Upgraded. l/libvpx-1.9.0-x86_64-1.txz: Upgraded. l/mozjs60-60.9.0esr-x86_64-1.txz: Removed. l/mozjs68-68.11.0esr-x86_64-1.txz: Added. IMPORTANT: This is needed for polkit-0.117. l/polkit-0.117-x86_64-1.txz: Upgraded. x/libX11-1.6.10-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-68.11.0-x86_64-1.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/68.11.0/releasenotes/ https://www.mozilla.org/en-US/security/advisories/mfsa2020-35/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15652 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6514 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-6463 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-15659 (* Security fix *) isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
72 lines
2.7 KiB
Diff
72 lines
2.7 KiB
Diff
Description: Remove unused LLVM and Rust build dependencies
|
|
Since the Javascript engine is normally part of Firefox, its build
|
|
system has dependencies on the LLVM and Rust toolchains. This limits
|
|
the number of architectures which mozjs68 can be built on.
|
|
.
|
|
It turns out, however, that neither LLVM nor Rust are used when mozjs68
|
|
is being built and these build dependencies are therefore not necessary.
|
|
.
|
|
This patch removes them and allows mozjs68 to be built on any architecture.
|
|
.
|
|
Author: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
|
|
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=959144
|
|
Forwarded: no
|
|
Last-Update: 2020-04-30
|
|
|
|
Index: mozjs68-68.6.0/js/moz.configure
|
|
===================================================================
|
|
--- mozjs68-68.6.0.orig/js/moz.configure
|
|
+++ mozjs68-68.6.0/js/moz.configure
|
|
@@ -18,11 +18,6 @@ def building_js(build_project):
|
|
option(env='JS_STANDALONE', default=building_js,
|
|
help='Reserved for internal use')
|
|
|
|
-include('../build/moz.configure/rust.configure',
|
|
- when='--enable-compile-environment')
|
|
-include('../build/moz.configure/bindgen.configure',
|
|
- when='--enable-compile-environment')
|
|
-
|
|
@depends('JS_STANDALONE')
|
|
def js_standalone(value):
|
|
if value:
|
|
Index: mozjs68-68.6.0/moz.configure
|
|
===================================================================
|
|
--- mozjs68-68.6.0.orig/moz.configure
|
|
+++ mozjs68-68.6.0/moz.configure
|
|
@@ -598,36 +598,6 @@ set_config('MAKENSISU_FLAGS', nsis_flags
|
|
|
|
check_prog('7Z', ('7z', '7za'), allow_missing=True, when=target_is_windows)
|
|
|
|
-
|
|
-@depends(host_c_compiler, c_compiler, bindgen_config_paths)
|
|
-def llvm_objdump(host_c_compiler, c_compiler, bindgen_config_paths):
|
|
- clang = None
|
|
- for compiler in (host_c_compiler, c_compiler):
|
|
- if compiler and compiler.type == 'clang':
|
|
- clang = compiler.compiler
|
|
- break
|
|
- elif compiler and compiler.type == 'clang-cl':
|
|
- clang = os.path.join(os.path.dirname(compiler.compiler), 'clang')
|
|
- break
|
|
-
|
|
- if not clang and bindgen_config_paths:
|
|
- clang = bindgen_config_paths.clang_path
|
|
- llvm_objdump = 'llvm-objdump'
|
|
- if clang:
|
|
- out = check_cmd_output(clang, '--print-prog-name=llvm-objdump',
|
|
- onerror=lambda: None)
|
|
- if out:
|
|
- llvm_objdump = out.rstrip()
|
|
- return (llvm_objdump,)
|
|
-
|
|
-
|
|
-llvm_objdump = check_prog('LLVM_OBJDUMP', llvm_objdump, what='llvm-objdump',
|
|
- when='--enable-compile-environment',
|
|
- paths=toolchain_search_path)
|
|
-
|
|
-add_old_configure_assignment('LLVM_OBJDUMP', llvm_objdump)
|
|
-
|
|
-
|
|
# Please do not add configure checks from here on.
|
|
|
|
# Fallthrough to autoconf-based configure
|