summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xCMakeLists.txt1
-rw-r--r--debian/control2
-rwxr-xr-xsrc/_genlist.c2
-rwxr-xr-xsrc/_logic.c4
-rwxr-xr-xsrc/taskmanager.c2
-rwxr-xr-xsrc/taskmanager.h2
6 files changed, 8 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6ceb23b..e9162ef 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,7 +38,6 @@ pkg_check_modules(pkgs REQUIRED
ecore
ecore-file
ecore-input
- ecore-x
edje
eina
evas
diff --git a/debian/control b/debian/control
index 86b9915..6418b45 100644
--- a/debian/control
+++ b/debian/control
@@ -3,7 +3,7 @@ Section: devel
Priority: extra
Maintainer: Junghyun Kim <jh1114.kim>, hhh.kwon <hhh.kwon@samsung.com>
Uploaders: Noha Park <noha.park@samsung.com>
-Build-Depends: debhelper (>= 5), libappcore-efl-dev, libelm-dev, libaul-1-dev, libslp-utilx-dev, librua-dev, libslp-sysman-dev, libail-0-dev, dlog-dev
+Build-Depends: debhelper (>= 5), libappcore-efl-dev, libelm-dev, libaul-1-dev librua-dev, libslp-sysman-dev, libail-0-dev, dlog-dev
Standards-Version: 3.7.2
Package: org.tizen.taskmgr
diff --git a/src/_genlist.c b/src/_genlist.c
index a2e29af..ea3d6c7 100755
--- a/src/_genlist.c
+++ b/src/_genlist.c
@@ -23,9 +23,9 @@
#include <vconf.h>
#if HAVE_X
#include <utilX.h>
+#include <Ecore_X.h>
#endif
#include <aul.h>
-#include <Ecore_X.h>
#include <Eina.h>
#include <unistd.h>
#include <time.h>
diff --git a/src/_logic.c b/src/_logic.c
index 1cbdd5a..041074a 100755
--- a/src/_logic.c
+++ b/src/_logic.c
@@ -19,7 +19,9 @@
#include <appcore-common.h>
#include <aul.h>
+#if HAVE_X
#include <Ecore_X.h>
+#endif
#include <vconf.h>
#include "taskmanager.h"
@@ -223,7 +225,9 @@ static Eina_Bool __climsg_cb(void *data, int type, void *event)
pid_a = ev->data.l[1];
pid_d = ev->data.l[3];
+#if HAVE_X
a_deact = ecore_x_atom_get("_X_ILLUME_DEACTIVATE_WINDOW");
+#endif
/* when pid_a == pid_d, this is useless data */
if (pid_a == pid_d) {
diff --git a/src/taskmanager.c b/src/taskmanager.c
index 77eaf42..26fa6df 100755
--- a/src/taskmanager.c
+++ b/src/taskmanager.c
@@ -21,8 +21,8 @@
#include <unistd.h>
#include <appcore-efl.h>
#include <Elementary.h>
-#include <Ecore_X.h>
#if HAVE_X
+#include <Ecore_X.h>
#include <utilX.h>
#endif
#include <vconf.h>
diff --git a/src/taskmanager.h b/src/taskmanager.h
index c1d47a0..d21b4d5 100755
--- a/src/taskmanager.h
+++ b/src/taskmanager.h
@@ -23,8 +23,8 @@
#define __TASKMANAGER_H__
#include <Elementary.h>
-#include <Ecore_X.h>
#if HAVE_X
+#include <Ecore_X.h>
#include <utilX.h>
#endif
#include <bundle.h>