Title: [294177] trunk/Source
- Revision
- 294177
- Author
- [email protected]
- Date
- 2022-05-13 15:02:46 -0700 (Fri, 13 May 2022)
Log Message
Non-unified build broken in debug mode
https://bugs.webkit.org/show_bug.cgi?id=240378
Unreviewed non-unified build fixes.
* heap/StructureAlignedMemoryAllocator.cpp: Include <sys/mman.h> if needed.
Non-unified build broken in debug mode
https://bugs.webkit.org/show_bug.cgi?id=240378
Unreviewed non-unified build fixes.
* contentextensions/ContentExtensionCompiler.cpp: Add missing wtf/CrossThreadCopier.h header.
* workers/service/ServiceWorkerClients.cpp: Add missing Logging.h header.
Canonical link: https://commits.webkit.org/250544@main
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (294176 => 294177)
--- trunk/Source/_javascript_Core/ChangeLog 2022-05-13 21:55:56 UTC (rev 294176)
+++ trunk/Source/_javascript_Core/ChangeLog 2022-05-13 22:02:46 UTC (rev 294177)
@@ -1,3 +1,12 @@
+2022-05-13 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build broken in debug mode
+ https://bugs.webkit.org/show_bug.cgi?id=240378
+
+ Unreviewed non-unified build fixes.
+
+ * heap/StructureAlignedMemoryAllocator.cpp: Include <sys/mman.h> if needed.
+
2022-05-13 Ross Kirsling <[email protected]>
TemporalPlainTime::toTemporalTimeRecord shouldn't require all properties to be provided
Modified: trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp (294176 => 294177)
--- trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp 2022-05-13 21:55:56 UTC (rev 294176)
+++ trunk/Source/_javascript_Core/heap/StructureAlignedMemoryAllocator.cpp 2022-05-13 22:02:46 UTC (rev 294177)
@@ -32,6 +32,10 @@
#include <wtf/OSAllocator.h>
+#if OS(UNIX) && ASSERT_ENABLED
+#include <sys/mman.h>
+#endif
+
namespace JSC {
StructureAlignedMemoryAllocator::StructureAlignedMemoryAllocator(CString name)
Modified: trunk/Source/WebCore/ChangeLog (294176 => 294177)
--- trunk/Source/WebCore/ChangeLog 2022-05-13 21:55:56 UTC (rev 294176)
+++ trunk/Source/WebCore/ChangeLog 2022-05-13 22:02:46 UTC (rev 294177)
@@ -1,3 +1,13 @@
+2022-05-13 Adrian Perez de Castro <[email protected]>
+
+ Non-unified build broken in debug mode
+ https://bugs.webkit.org/show_bug.cgi?id=240378
+
+ Unreviewed non-unified build fixes.
+
+ * contentextensions/ContentExtensionCompiler.cpp: Add missing wtf/CrossThreadCopier.h header.
+ * workers/service/ServiceWorkerClients.cpp: Add missing Logging.h header.
+
2022-05-13 Tim Nguyen <[email protected]>
[css-ui] Remove caret/progress-bar-value/listitem values from appearance property
Modified: trunk/Source/WebCore/contentextensions/ContentExtensionCompiler.cpp (294176 => 294177)
--- trunk/Source/WebCore/contentextensions/ContentExtensionCompiler.cpp 2022-05-13 21:55:56 UTC (rev 294176)
+++ trunk/Source/WebCore/contentextensions/ContentExtensionCompiler.cpp 2022-05-13 22:02:46 UTC (rev 294177)
@@ -40,6 +40,7 @@
#include "NFA.h"
#include "NFAToDFA.h"
#include "URLFilterParser.h"
+#include <wtf/CrossThreadCopier.h>
#include <wtf/DataLog.h>
#include <wtf/text/CString.h>
#include <wtf/text/StringBuilder.h>
Modified: trunk/Source/WebCore/workers/service/ServiceWorkerClients.cpp (294176 => 294177)
--- trunk/Source/WebCore/workers/service/ServiceWorkerClients.cpp 2022-05-13 21:55:56 UTC (rev 294176)
+++ trunk/Source/WebCore/workers/service/ServiceWorkerClients.cpp 2022-05-13 22:02:46 UTC (rev 294177)
@@ -30,6 +30,7 @@
#include "JSDOMPromiseDeferred.h"
#include "JSServiceWorkerWindowClient.h"
+#include "Logging.h"
#include "SWContextManager.h"
#include "ServiceWorker.h"
#include "ServiceWorkerGlobalScope.h"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes