Remove unnecessary script and macro 22/61822/1
authorSung-Jin Park <sj76.park@samsung.com>
Fri, 11 Mar 2016 00:48:04 +0000 (09:48 +0900)
committerSung-Jin Park <sj76.park@samsung.com>
Fri, 11 Mar 2016 00:48:04 +0000 (09:48 +0900)
Change-Id: If687148d4996ba04a40592e46bf33f58e22253da

configure.ac
packaging/e-mod-tizen-keyrouter.spec
scripts/keygrab_status [deleted file]

index ee80894..f0e9f2a 100644 (file)
@@ -41,16 +41,6 @@ dnl ========================================================================
 AC_CHECK_HEADERS([math.h fcntl.h stdlib.h string.h unistd.h])
 
 dnl ========================================================================
-# checks for input files
-dnl ========================================================================
-AC_ARG_WITH(tizen_keylayout_file,
-       AS_HELP_STRING([--with-tizen-keylayout-file=PATH],
-       [Tizen key layout file path (default: (/usr/share/X11/xkb/tizen_key_layout.txt))]),
-       [ KEYLAYOUT_PATH="$withval" ],
-       [ KEYLAYOUT_PATH="/usr/share/X11/xkb/tizen_key_layout.txt"])
-
-AC_DEFINE_UNQUOTED(KEYLAYOUT_PATH, "$KEYLAYOUT_PATH", [Path to tizen keylayout file])
-dnl ========================================================================
 # checks for typedefs, structures, and compiler characteristics
 AC_C_CONST
 
index a39e5dc..abdc1c2 100644 (file)
@@ -38,8 +38,7 @@ export LDFLAGS+=" -Wl,--hash-style=both -Wl,--as-needed -Wl,--rpath=/usr/lib"
 %if %{with wayland}
 %configure --prefix=/usr \
            --enable-wayland-only \
-           --enable-cynara \
-           --with-tizen-keylayout-file=/usr/share/X11/xkb/tizen_key_layout.txt
+           --enable-cynara
 %endif
 
 make
diff --git a/scripts/keygrab_status b/scripts/keygrab_status
deleted file mode 100755 (executable)
index 8f448eb..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-if [ "$1" = "" ]; then
-        VAL="1"
-else
-        VAL="$1"
-fi
-
-if [ -x /usr/bin/xprop ]; then
-        /usr/bin/xprop -root -f _GRAB_STATUS 32c -set _GRAB_STATUS ${VAL} &
-fi