Skip to content

Commit 1b6ea69

Browse files
committed
Release 1.4.11.
1 parent 60d10b4 commit 1b6ea69

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Source/JavaScriptCore/runtime/TypeSet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ Ref<Inspector::Protocol::Runtime::TypeSet> TypeSet::inspectorTypeSet() const
238238
.setIsNumber((m_seenTypes & TypeNumber) != TypeNothing)
239239
.setIsString((m_seenTypes & TypeString) != TypeNothing)
240240
.setIsObject((m_seenTypes & TypeObject) != TypeNothing)
241-
.setIsSymbol((m_seenTypes & TypeSymbol) != TypeNothing)
241+
//.setIsSymbol((m_seenTypes & TypeSymbol) != TypeNothing)
242242
.release();
243243
}
244244

Source/WTF/wtf/PlatformHaiku.cmake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ LIST(APPEND WTF_INCLUDE_DIRECTORIES
1818
${ICU_INCLUDE_DIRS}
1919
${JAVASCRIPTCORE_DIR}/wtf/unicode/
2020
)
21+
22+
add_definitions(-D_BSD_SOURCE=1)

Source/cmake/OptionsHaiku.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SET(PROJECT_VERSION_MAJOR 1)
22
SET(PROJECT_VERSION_MINOR 4)
3-
SET(PROJECT_VERSION_PATCH 9)
3+
SET(PROJECT_VERSION_PATCH 11)
44
SET(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH})
55

66
add_definitions(-DHAIKU_WEBKIT_VERSION=\"${PROJECT_VERSION}\")

0 commit comments

Comments
 (0)