Remove unused feedback dependency in isf-panel-efl 29/167729/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Fri, 19 Jan 2018 10:10:39 +0000 (19:10 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Fri, 19 Jan 2018 10:18:33 +0000 (19:18 +0900)
Change-Id: Ibd8457632e546523711ae3a22197b5bcff6a0dab
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
ism/extras/efl_panel/Makefile.am
ism/extras/efl_panel/websocketserver.cpp
packaging/isf.spec

index a814004..b1186da 100644 (file)
@@ -52,7 +52,6 @@ isf_panel_efl_CXXFLAGS = @ECOREX_CFLAGS@ \
                          @BLUETOOTH_CFLAGS@ \
                          @LIBWEBSOCKETS_CFLAGS@ \
                          @XKBCOMMON_CFLAGS@ \
-                         @FEEDBACK_CFLAGS@ \
                          @APP_CONTROL_CFLAGS@ \
                          @PKGMGR_INFO_CFLAGS@ \
                          @AUL_CFLAGS@ \
@@ -73,7 +72,6 @@ isf_panel_efl_LDFLAGS  = @LTLIBINTL@ -rpath $(libdir) \
                          @BLUETOOTH_LIBS@ \
                          @LIBWEBSOCKETS_LIBS@ \
                          @XKBCOMMON_LIBS@ \
-                         @FEEDBACK_LIBS@ \
                          @APP_CONTROL_LIBS@ \
                          @PKGMGR_INFO_LIBS@ \
                          @AUL_LIBS@ \
index f0d53c3..94c743a 100644 (file)
@@ -36,7 +36,6 @@
 #include <fcntl.h>
 #include <assert.h>
 #include <dlog.h>
-#include <feedback.h>
 
 #include "websocketserver.h"
 #include "remote_input.h"
@@ -499,8 +498,6 @@ bool WebSocketServer::init()
     info.uid = -1;
     info.options = 0;
 
-    feedback_initialize(); // Initialize feedback
-
     /* The WebSocket server is running on a separate thread, and let the thread send a message
         through this pipe to guarantee thread safety */
     m_recv_message_pipe = ecore_pipe_add(recv_message_pipe_handler, NULL);
@@ -543,8 +540,6 @@ bool WebSocketServer::exit()
 
     g_ws_server_exit = true;
 
-    feedback_deinitialize(); //Deinitialize feedback
-
     if (m_recv_message_pipe) {
         ecore_pipe_del(m_recv_message_pipe);
         m_recv_message_pipe = NULL;
index b9a7ad4..76cb491 100644 (file)
@@ -31,7 +31,6 @@ BuildRequires:  pkgconfig(dlog)
 BuildRequires:  pkgconfig(edbus)
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(capi-network-bluetooth)
-BuildRequires:  pkgconfig(feedback)
 BuildRequires:  pkgconfig(efl-extension)
 BuildRequires:  pkgconfig(libtzplatform-config)
 BuildRequires:  pkgconfig(pkgmgr-info)