diff options
author | Robert Schuster <thebohemian@gmx.net> | 2008-07-26 20:07:54 +0000 |
---|---|---|
committer | Robert Schuster <thebohemian@gmx.net> | 2008-07-26 20:07:54 +0000 |
commit | f42b906bc4359d4a18b51fefa3423716c0af30a8 (patch) | |
tree | e55f7294941844761601fffa104ab9e51321e16d /packages/openmoko-projects/illume/configure-keyboard.patch | |
parent | 38c0392e6849f181119aef9b231e97c64a77e1d4 (diff) | |
parent | 7cff782b984312bb9d3226d9e44cb2b9a9401a81 (diff) |
merge of '3f2ba26557bb371913a11a48aa9bcb4f58fd6fe5'
and '4a6eea520cb0bded1313d57689af2993701d4e87'
Diffstat (limited to 'packages/openmoko-projects/illume/configure-keyboard.patch')
-rw-r--r-- | packages/openmoko-projects/illume/configure-keyboard.patch | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/packages/openmoko-projects/illume/configure-keyboard.patch b/packages/openmoko-projects/illume/configure-keyboard.patch new file mode 100644 index 0000000000..589fe53f38 --- /dev/null +++ b/packages/openmoko-projects/illume/configure-keyboard.patch @@ -0,0 +1,39 @@ +Index: configure.in +=================================================================== +--- configure.in (Revision 170) ++++ configure.in (Arbeitskopie) +@@ -95,6 +95,21 @@ + AC_SUBST(e_libs) + AC_SUBST(e_modules) + ++want_illume_virtual_keyboard=no ++AC_ARG_ENABLE(illume-keyboard, ++ AC_HELP_STRING( ++ [--enable-illume-keyboard], ++ [Enable the illume virtual keyboard.] ++ ), ++ [want_illume_virtual_keyboard=$enableval] ++ ) ++AC_MSG_CHECKING(whether the illume virtual keyboard is to be built in) ++AC_MSG_RESULT($want_illume_virtual_keyboard) ++ ++if test "x$want_illume_virtual_keyboard" = "xyes"; then ++ AC_DEFINE(BUILD_ILLUME_VIRTUAL_KEYBOARD, 1, [Build the virtual keyboard in]) ++fi ++ + AC_OUTPUT([ + Makefile + src/Makefile +Index: src/e_mod_win.c +=================================================================== +--- src/e_mod_win.c (Revision 170) ++++ src/e_mod_win.c (Arbeitskopie) +@@ -102,7 +102,7 @@ + e_module_dir_get(m), + e_module_dir_get(m)); + // FIXME: run kbd app or use internal +-#if 0 ++#ifdef BUILD_ILLUME_VIRTUAL_KEYBOARD + //enable for now to test internal kbd + vkbd_int = e_kbd_int_new(e_module_dir_get(m), + e_module_dir_get(m), |