remove unused code 87/118487/2 accepted/tizen/unified/20170518.190013 submit/tizen/20170518.093222 tizen_4.0.m1_release
authorINSUN PYO <insun.pyo@samsung.com>
Sat, 11 Mar 2017 14:56:27 +0000 (23:56 +0900)
committerHyotaek Shim <hyotaek.shim@samsung.com>
Tue, 18 Apr 2017 06:33:56 +0000 (23:33 -0700)
Signed-off-by: INSUN PYO <insun.pyo@samsung.com>
Change-Id: I1192579e02963b0246bb99d54f415cab673abbe6

configure.ac

index 9f16e1e..e0844ac 100644 (file)
@@ -1634,20 +1634,11 @@ AC_DEFINE_UNQUOTED(DBUS_SYSTEM_SOCKET,"$DBUS_SYSTEM_SOCKET",[The name of the soc
 ## and also to connect to. If this ever changes, it'll need to be split into
 ## two variables, one for the listening address and one for the connecting
 ## address.
-#AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
-if ! test -z "$with_system_default_bus"; then
-    ## Now system bus can work on kdbus too. It is diffrent situation than
-    ## described above (daemon working with kdbus doesn't need to listen on
-    ## any socket), so variable was not splited into two.
-    DBUS_SYSTEM_BUS_DEFAULT_ADDRESS=$with_system_default_bus
-else
-    kdbus_address_path=""
-    if test x$enable_kdbus_transport = xyes; then
-       kdbus_address_path="kernel:path=/sys/fs/kdbus/0-system/bus;"
-    fi
-
-    DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="${kdbus_address_path}unix:path=$DBUS_SYSTEM_SOCKET"
+kdbus_address_path=""
+if test x$enable_kdbus_transport = xyes; then
+   kdbus_address_path="kernel:path=/sys/fs/kdbus/0-system/bus;"
 fi
+DBUS_SYSTEM_BUS_DEFAULT_ADDRESS="${kdbus_address_path}unix:path=$DBUS_SYSTEM_SOCKET"
 AC_SUBST(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS)
 AC_DEFINE_UNQUOTED(DBUS_SYSTEM_BUS_DEFAULT_ADDRESS, "$DBUS_SYSTEM_BUS_DEFAULT_ADDRESS",[The default D-Bus address of the system bus])