$OpenBSD: patch-dbus_property_cc,v 1.9 2018/01/30 07:57:25 robert Exp $
Index: dbus/property.cc
--- dbus/property.cc.orig
+++ dbus/property.cc
@@ -563,6 +563,7 @@ void Property<std::vector<uint8_t>>::AppendSetValueToW
   writer->CloseContainer(&variant_writer);
 }
 
+#if !defined(OS_BSD)
 //
 // Property<std::map<std::string, std::string>> specialization.
 //
@@ -787,6 +788,7 @@ void Property<std::unordered_map<uint16_t, std::vector
   variant_writer.CloseContainer(&dict_writer);
   writer->CloseContainer(&variant_writer);
 }
+#endif
 
 template class Property<uint8_t>;
 template class Property<bool>;
@@ -802,8 +804,10 @@ template class Property<ObjectPath>;
 template class Property<std::vector<std::string>>;
 template class Property<std::vector<ObjectPath>>;
 template class Property<std::vector<uint8_t>>;
+#if !defined(OS_BSD)
 template class Property<std::map<std::string, std::string>>;
 template class Property<std::vector<std::pair<std::vector<uint8_t>, uint16_t>>>;
+#endif
 template class Property<std::unordered_map<std::string, std::vector<uint8_t>>>;
 template class Property<std::unordered_map<uint16_t, std::vector<uint8_t>>>;
 
