Bug 1517539
| Summary: | qt5-qtwebkit FTBFS using cmake-3.10.0 | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Rex Dieter <rdieter> |
| Component: | qt5-qtwebkit | Assignee: | Than Ngo <than> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | rawhide | CC: | besser82, jgrulich, jreznik, kde-sig, orion, rdieter, than, walter.pete |
| Target Milestone: | --- | Keywords: | Regression |
| Target Release: | --- | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-11-26 16:53:18 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Rex Dieter
2017-11-26 15:15:02 UTC
That was caused by a typo in the project's CMake config files and is *NOT* related to the new version 3.10.0… See successful scratch build after applying a simple patch: https://koji.fedoraproject.org/koji/taskinfo?taskID=23396739 ``` Index: qtwebkit-5.212.0-alpha2/Source/WebKit/PlatformQt.cmake =================================================================== --- qtwebkit-5.212.0-alpha2.orig/Source/WebKit/PlatformQt.cmake +++ qtwebkit-5.212.0-alpha2/Source/WebKit/PlatformQt.cmake @@ -786,6 +786,7 @@ if (COMPILER_IS_GCC_OR_CLANG) set_source_files_properties( qt/Api/qwebdatabase.cpp qt/Api/qwebelement.cpp + qt/Api/qwebfullscreenrequest.cpp qt/Api/qwebhistory.cpp qt/Api/qwebhistoryinterface.cpp qt/Api/qwebpluginfactory.cpp @@ -795,7 +796,6 @@ if (COMPILER_IS_GCC_OR_CLANG) qt/WidgetApi/qgraphicswebview.cpp qt/WidgetApi/qwebframe.cpp - qt/WidgetApi/qwebfullscreenrequest.cpp qt/WidgetApi/qwebinspector.cpp qt/WidgetApi/qwebpage.cpp qt/WidgetApi/qwebview.cpp ``` Triaging to proper component (qt5-qtwebkit), and thanks for the hand in fixing it quickly, https://src.fedoraproject.org/rpms/qt5-qtwebkit/c/320889cc2a0f5866bfb6fc80c68824ccd3ad5db3?branch=master |