--- devel/avarice/files/patch-src_devdescr.cc (nonexistent) +++ devel/avarice/files/patch-src_devdescr.cc (working copy) @@ -0,0 +1,22 @@ +--- src/devdescr.cc.orig 2012-11-05 16:11:07 UTC ++++ src/devdescr.cc +@@ -2247,8 +2247,8 @@ jtag_device_def_type deviceDefinitions[] + 4, 256, // 1024 bytes EEPROM + 31 * 4, // 31 interrupt vectors + DEVFL_MKII_ONLY, +- NULL, // registers not yet defined + atmega32m1_io_registers, ++ false, + 0x00, 0x0000, // fuses + { + 0 // no mkI support +@@ -2371,8 +2371,8 @@ jtag_device_def_type deviceDefinitions[] + 4, 256, // 1024 bytes EEPROM + 31 * 4, // 31 interrupt vectors + DEVFL_MKII_ONLY, +- NULL, // registers not yet defined + atmega32c1_io_registers, ++ false, + 0x00, 0x0000, // fuses + { + 0 // no mkI support --- games/ecwolf/files/patch-src_thingdef_thingdef.cpp (nonexistent) +++ games/ecwolf/files/patch-src_thingdef_thingdef.cpp (working copy) @@ -0,0 +1,11 @@ +--- src/thingdef/thingdef.cpp.orig 2020-01-05 14:29:11 UTC ++++ src/thingdef/thingdef.cpp +@@ -283,7 +283,7 @@ static const struct ExpressionFunction + { "random", TypeHierarchy::INT, 2, true, ExprRandom }, + { "sin", TypeHierarchy::FLOAT, 1, false, ExprSin }, + +- { NULL, 0, false, NULL } ++ { NULL, TypeHierarchy::VOID, 0, false, NULL } + }; + + //////////////////////////////////////////////////////////////////////////////// --- graphics/openorienteering-mapper/files/patch-src_core_objects_object.h (nonexistent) +++ graphics/openorienteering-mapper/files/patch-src_core_objects_object.h (working copy) @@ -0,0 +1,11 @@ +--- src/core/objects/object.h.orig 2019-12-05 06:33:57 UTC ++++ src/core/objects/object.h +@@ -1276,7 +1276,7 @@ float ObjectPathCoord::findClosestPointT + inline + constexpr ObjectPathCoord::operator bool() const + { +- return bool { object }; ++ return object != nullptr; + } + + } // namespace OpenOrienteering --- japanese/scim-anthy/files/patch-src_scim__anthy__prefs.cpp (revision 522139) +++ japanese/scim-anthy/files/patch-src_scim__anthy__prefs.cpp (working copy) @@ -1,9 +1,3 @@ -Add missing initializers - -scim_anthy_prefs.cpp:98:9: error: cannot initialize a member subobject of type 'void *' with an rvalue of type 'bool' - false, - ^~~~~ - --- src/scim_anthy_prefs.cpp.orig 2008-04-24 03:49:53 UTC +++ src/scim_anthy_prefs.cpp @@ -95,6 +95,7 @@ BoolConfigData config_bool_common [] = @@ -46,11 +40,22 @@ false, }, { -@@ -269,6 +274,7 @@ IntConfigData config_int_common [] = - 0, - 0, - 0, 0, 0, -+ NULL, +@@ -215,8 +220,8 @@ BoolConfigData config_bool_common [] = + }, + { NULL, +- "", +- "", ++ false, ++ false, NULL, NULL, + NULL, +@@ -273,6 +278,7 @@ IntConfigData config_int_common [] = + NULL, + NULL, + NULL, ++ NULL, + false, + }, + }; --- java/openjfx8-devel/files/patch-modules_web_src_main_native_Source_WebCore_css_StyleResolver.cpp (nonexistent) +++ java/openjfx8-devel/files/patch-modules_web_src_main_native_Source_WebCore_css_StyleResolver.cpp (working copy) @@ -0,0 +1,11 @@ +--- modules/web/src/main/native/Source/WebCore/css/StyleResolver.cpp.orig 2020-01-06 08:48:11 UTC ++++ modules/web/src/main/native/Source/WebCore/css/StyleResolver.cpp +@@ -216,7 +216,7 @@ StyleResolver::StyleResolver(Document& d + if (view) + m_mediaQueryEvaluator = MediaQueryEvaluator { view->mediaType() }; + else +- m_mediaQueryEvaluator = MediaQueryEvaluator { "all" }; ++ m_mediaQueryEvaluator = MediaQueryEvaluator { true }; + + if (root) { + m_rootDefaultStyle = styleForElement(*root, m_document.renderStyle(), nullptr, MatchOnlyUserAgentRules).renderStyle; --- www/node10/files/patch-deps_v8_src_torque_ast-generator.cc (nonexistent) +++ www/node10/files/patch-deps_v8_src_torque_ast-generator.cc (working copy) @@ -0,0 +1,20 @@ +--- deps/v8/src/torque/ast-generator.cc.orig 2020-01-06 03:35:28 UTC ++++ deps/v8/src/torque/ast-generator.cc +@@ -120,7 +120,7 @@ Statement* AstGenerator::GetOptionalHelp + + antlrcpp::Any AstGenerator::visitParameterList( + TorqueParser::ParameterListContext* context) { +- ParameterList result{{}, {}, context->VARARGS(), {}}; ++ ParameterList result{{}, {}, context->VARARGS() != nullptr, {}}; + if (context->VARARGS()) { + result.arguments_variable = context->IDENTIFIER()->getSymbol()->getText(); + } +@@ -141,7 +141,7 @@ antlrcpp::Any AstGenerator::visitTypeLis + + antlrcpp::Any AstGenerator::visitTypeListMaybeVarArgs( + TorqueParser::TypeListMaybeVarArgsContext* context) { +- ParameterList result{{}, {}, context->VARARGS(), {}}; ++ ParameterList result{{}, {}, context->VARARGS() != nullptr, {}}; + result.types.reserve(context->type().size()); + for (auto* type : context->type()) { + result.types.push_back(GetType(type)); --- www/webkit2-gtk3/files/patch-Source_WebCore_css_StyleResolver.cpp (nonexistent) +++ www/webkit2-gtk3/files/patch-Source_WebCore_css_StyleResolver.cpp (working copy) @@ -0,0 +1,11 @@ +--- Source/WebCore/css/StyleResolver.cpp.orig 2020-01-06 03:39:20 UTC ++++ Source/WebCore/css/StyleResolver.cpp +@@ -211,7 +211,7 @@ StyleResolver::StyleResolver(Document& d + if (view) + m_mediaQueryEvaluator = MediaQueryEvaluator { view->mediaType() }; + else +- m_mediaQueryEvaluator = MediaQueryEvaluator { "all" }; ++ m_mediaQueryEvaluator = MediaQueryEvaluator { true }; + + if (root) { + m_rootDefaultStyle = styleForElement(*root, m_document.renderStyle(), nullptr, RuleMatchingBehavior::MatchOnlyUserAgentRules).renderStyle;