openjfx11: fix build

Remove -Werror=implicit-function-declaration, which when passed to cmake
for webkit build breaks C++ compiler configuration due to spurious warnings:
`cc1plus: warning: '-Werror=' argument '-Werror=implicit-function-declaration' is not valid for C++`
This commit is contained in:
Ryan Burns
2021-09-09 18:17:33 -07:00
committed by Raphael Megzari
parent 3f7ad651c7
commit 554d86af20

View File

@@ -24,6 +24,11 @@ let
dontUseCmakeConfigure = true;
postPatch = ''
substituteInPlace buildSrc/linux.gradle \
--replace ', "-Werror=implicit-function-declaration"' ""
'';
config = writeText "gradle.properties" (''
CONF = Release
JDK_HOME = ${openjdk11-bootstrap.home}