Revision: 6000 Author: ek.kato Date: Wed Sep 16 19:05:24 2009 Log: * configure.ac: Don't enable knotify3 when qt4-immodule is enabled (bug #19877).
http://code.google.com/p/uim/source/detail?r=6000 Modified: /trunk/configure.ac ======================================= --- /trunk/configure.ac Mon Aug 17 04:12:15 2009 +++ /trunk/configure.ac Wed Sep 16 19:05:24 2009 @@ -1421,7 +1421,10 @@ AC_MSG_CHECKING([whether knotify3 is requested]) if test "x$au_enable_knotify3" = xyes; then AC_MSG_RESULT([yes]) - if test "x$use_qt" = "xyes"; then + if test "x$use_qt4_immodule" = "xyes"; then + AC_MSG_WARN([knotify3 couldn't be used with qt4-immodule enabled]) + use_knotify3="no" + elif test "x$use_qt" = "xyes"; then if test "x$KDE_CONFIG" != "xno"; then KNOTIFY3_PREFIX=`kde-config --prefix` KNOTIFY3_LIB_DIR=`kde-config --expandvars --install lib`
