Link with libphosphor_dbus

Link with libphosphor_dbus.

Update the manager implementation to match the new server binding
in libphosphor_dbus (bool types for notify and notify
signature change).

Change-Id: I033d224965caf737591e363b3e2fd666605bff13
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/manager.cpp b/manager.cpp
index 8026bf0..bb94c21 100644
--- a/manager.cpp
+++ b/manager.cpp
@@ -144,11 +144,11 @@
     }
 }
 
-void Manager::notify(sdbusplus::message::object_path path, Object object)
+void Manager::notify(std::map<sdbusplus::message::object_path, Object> objs)
 {
     try
     {
-        createObjects({std::make_pair(path, object)});
+        createObjects(objs);
     }
     catch (const std::exception& e)
     {