meson.build: drop config.h

These DBus things (service, interface, path) are not intended to be
configurable in any way.  Try to discourage them from being changed by
removing them from meson.build just in case that suggests that perhaps
they are meant to be overriden.

As the DBus names are the only content in config.h, config.h can be
removed completely.

Change-Id: I654473333932a8626a0ace5ee5a865dd14aaf296
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/src/main.cpp b/src/main.cpp
index 37f216f..d4709b4 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,5 +1,3 @@
-#include "config.h"
-
 #include "associations.hpp"
 #include "processing.hpp"
 #include "src/argument.hpp"
@@ -76,8 +74,8 @@
     // introspect right now.  Find out how to register signals in
     // sdbusplus
     sdbusplus::message::message m = system_bus->new_signal(
-        MAPPER_PATH, "xyz.openbmc_project.ObjectMapper.Private",
-        "IntrospectionComplete");
+        "/xyz/openbmc_project/object_mapper",
+        "xyz.openbmc_project.ObjectMapper.Private", "IntrospectionComplete");
     m.append(process_name);
     m.signal_send();
 }
@@ -590,7 +588,7 @@
                     // association path.
                     if ((connection_map->second.size() == 1) &&
                         (connection_map->second.begin()->first ==
-                         MAPPER_BUSNAME))
+                         "xyz.openbmc_project.ObjectMapper"))
                     {
                         // Remove the 2 association D-Bus paths and move the
                         // association to pending.
@@ -647,7 +645,8 @@
         associationChangedHandler);
 
     std::shared_ptr<sdbusplus::asio::dbus_interface> iface =
-        server.add_interface(MAPPER_PATH, MAPPER_INTERFACE);
+        server.add_interface("/xyz/openbmc_project/object_mapper",
+                             "xyz.openbmc_project.ObjectMapper");
 
     iface->register_method(
         "GetAncestors", [&interface_map](std::string& req_path,
@@ -857,7 +856,7 @@
                     associationMaps, server);
     });
 
-    system_bus->request_name(MAPPER_BUSNAME);
+    system_bus->request_name("xyz.openbmc_project.ObjectMapper");
 
     io.run();
 }