From 8565802348ea0bde4f5a569f1af97b901acac410 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Wed, 14 Apr 2010 21:02:37 +0000 Subject: [PATCH] ecore: enable XIM by default SVN revision: 48008 --- legacy/ecore/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/configure.ac b/legacy/ecore/configure.ac index 2bc4a2ad01..743be11b4b 100644 --- a/legacy/ecore/configure.ac +++ b/legacy/ecore/configure.ac @@ -275,7 +275,7 @@ AC_ARG_ENABLE(simple-x11, # XIM AC_ARG_ENABLE([xim], - [AC_HELP_STRING([--enable-xim], [enable X Input Method.])], + [AC_HELP_STRING([--disable-xim], [disable X Input Method.])], [ if test "x${enableval}" = "xyes" ; then want_xim="yes" @@ -283,7 +283,7 @@ AC_ARG_ENABLE([xim], want_xim="no" fi ], - [want_xim="no"]) + [want_xim="yes"]) if test "x${want_xim}" = "xyes" ; then AC_DEFINE([ENABLE_XIM], [1], [Enable X Input Method])