Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Install the correct javafx.web jar.
· ab72e697
Markus Koschany
authored
Oct 07, 2018
ab72e697
Add build-on-non-JIT-architectures.patch.
· 0d9b275b
Markus Koschany
authored
Oct 07, 2018
0d9b275b
Start new changelog entry
· 01ceddd7
Markus Koschany
authored
Oct 07, 2018
01ceddd7
Update changelog
· 78066b24
Markus Koschany
authored
Oct 07, 2018
78066b24
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
78066b24
openjfx (11+26-3) unstable; urgency=medium
* Team upload.
* Install the correct javafx.web jar. (Closes: #910501)
* Add build-on-non-JIT-architectures.patch and try to fix the
build failure on !x86 architectures.
-- Markus Koschany <apo@debian.org> Sun, 07 Oct 2018 15:51:48 +0200
openjfx (11+26-2) unstable; urgency=medium
* Keep the profiles of the parent pom
...
...
debian/libopenjfx-java.poms
View file @
78066b24
...
...
@@ -5,4 +5,4 @@ debian/poms/javafx-fxml.pom --java-lib --classifier=linux --artifact=build/
debian/poms/javafx-graphics.pom --java-lib --classifier=linux --artifact=build/sdk/lib/javafx.graphics.jar
debian/poms/javafx-media.pom --java-lib --classifier=linux --artifact=build/sdk/lib/javafx.media.jar
debian/poms/javafx-swing.pom --java-lib --classifier=linux --artifact=build/sdk/lib/javafx.swing.jar
debian/poms/javafx-web.pom --java-lib --classifier=linux --artifact=build/sdk/lib/javafx.
controls
.jar
debian/poms/javafx-web.pom --java-lib --classifier=linux --artifact=build/sdk/lib/javafx.
web
.jar
debian/patches/build-on-non-JIT-architectures.patch
0 → 100644
View file @
78066b24
From: Markus Koschany <apo@debian.org>
Date: Sun, 7 Oct 2018 14:43:53 +0200
Subject: build on non-JIT architectures
---
.../main/native/Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/modules/javafx.web/src/main/native/Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp b/modules/javafx.web/src/main/native/Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp
index c4a1f2c..d3d974a 100644
--- a/modules/javafx.web/src/main/native/Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp
+++ b/modules/javafx.web/src/main/native/Source/JavaScriptCore/llint/LLIntOffsetsExtractor.cpp
@@ -73,6 +73,7 @@
public:
const int64_t* LLIntOffsetsExtractor::dummy()
{
+#if ENABLE(JIT)
// This is a file generated by offlineasm/generate_offsets_extractor.rb, and contains code
// to create a table of offsets, sizes, and a header identifying what combination of
// Platform.h macros we have set. We include it inside of a method on LLIntOffsetsExtractor
@@ -82,6 +83,9 @@
const int64_t* LLIntOffsetsExtractor::dummy()
#include "LLIntDesiredOffsets.h"
return extractorTable;
}
+#else
+ return 0;
+#endif
} // namespace JSC
debian/patches/series
View file @
78066b24
...
...
@@ -14,3 +14,4 @@ fix-arm32-build.patch
25-webkit-debug-level.patch
26-disable-webkit-jit-for-armv4.patch
29-glibc-compatibility.patch
build-on-non-JIT-architectures.patch