Fix : remove the utilX APIs 62/50462/1 submit/tizen_mobile/20151029.051733 submit/tizen_tv/20151029.051736 submit/tizen_wearable/20151029.051740
authorHyuk Lee <hyuk0512.lee@samsung.com>
Thu, 29 Oct 2015 04:56:27 +0000 (13:56 +0900)
committerHyuk Lee <hyuk0512.lee@samsung.com>
Thu, 29 Oct 2015 04:56:27 +0000 (13:56 +0900)
It is unnecessary in Tizen 3.x based on wayland

Change-Id: I27f03f5373edfa958692e64777342e163d7c9f6b
Signed-off-by: Hyuk Lee <hyuk0512.lee@samsung.com>
CMakeLists.txt
packaging/org.tizen.bt-syspopup.spec
src/bt-syspopup-w.c

index 5c3a7f3..8ef9214 100644 (file)
@@ -43,7 +43,6 @@ pkg_check_modules(pkgs REQUIRED
        aul
        efl-assist
        edbus
-       utilX
        vconf)
 ELSEIF("$ENV{CFLAGS}" MATCHES "-DTIZEN_MOBILE")
 pkg_check_modules(pkgs REQUIRED
index abca62f..fc64b41 100644 (file)
@@ -38,7 +38,6 @@ BuildRequires:  pkgconfig(capi-system-device)
 BuildRequires:  pkgconfig(capi-media-player)
 BuildRequires:  pkgconfig(deviced)
 BuildRequires:  pkgconfig(capi-network-bluetooth)
-BuildRequires:  pkgconfig(utilX)
 BuildRequires:  pkgconfig(vconf)
 
 BuildRequires:  cmake
index 218f212..6462295 100644 (file)
@@ -25,7 +25,6 @@
 #include <dd-display.h>
 #include <app.h>
 #include <Ecore_X.h>
-#include <utilX.h>
 #include <vconf.h>
 #include <vconf-keys.h>
 #include <syspopup.h>
@@ -175,8 +174,12 @@ static void __bluetooth_set_win_level(Evas_Object *parent)
                BT_DBG("Setting window type");
                ecore_x_netwm_window_type_set(xwin,
                                ECORE_X_WINDOW_TYPE_NOTIFICATION);
+
+               /* utilx APIs are unnecessary in Tizen 3.x based on wayland */
+#if 0
                utilx_set_system_notification_level(ecore_x_display_get(),
                                xwin, UTILX_NOTIFICATION_LEVEL_HIGH);
+#endif
        }
 }