# HG changeset patch # User stephent # Date 1140451104 0 # Node ID 8d7c2461057a555e1600af44829a2cd3bc7f242a # Parent f6851356c1f67467daaeb48960eb37a87665ddd1 [xemacs-hg @ 2006-02-20 15:58:23 by stephent] configure.ac comments. <877j7qqb0z.fsf@tleepslib.sk.tsukuba.ac.jp> diff -r f6851356c1f6 -r 8d7c2461057a ChangeLog --- a/ChangeLog Mon Feb 20 15:10:13 2006 +0000 +++ b/ChangeLog Mon Feb 20 15:58:24 2006 +0000 @@ -1,3 +1,11 @@ +2006-02-18 Stephen J. Turnbull + + * configure.ac (Mule): Mark broken test with ####. + +2006-02-18 Stephen J. Turnbull + + * configure.ac (Mule): Remove obsolete comment on XIM. + 2006-01-30 Vin Shelton * configure.ac: Simplify cygwin include and no-X Xpm handling. diff -r f6851356c1f6 -r 8d7c2461057a configure.ac --- a/configure.ac Mon Feb 20 15:10:13 2006 +0000 +++ b/configure.ac Mon Feb 20 15:58:24 2006 +0000 @@ -4472,8 +4472,6 @@ AC_CHECKING([for Mule input methods]) dnl Do we have the XmIm* routines? And if so, do we want to use them? - dnl XIM seems to be flaky except on Solaris... - dnl test -z "$with_xim" -a "$opsys" != "sol2" && with_xim=no case "$with_xim" in "" | "yes" ) AC_CHECKING([for XIM]) AC_CHECK_LIB(X11, XOpenIM, with_xim=xlib, with_xim=no) @@ -4481,6 +4479,8 @@ dnl Only use Motif if linking Motif anyway, or don't have xlib XIM if test "$need_motif $have_lesstif" = "yes no"; then AC_CHECK_LIB(Xm, XmImMbLookupString, with_xim=motif) + dnl #### This is always false. + dnl Not clear what we want, although "yes no yes" is insufficient. elif test "$have_motif $have_lesstif $with_xim" = "yes no no"; then AC_CHECK_LIB(Xm, XmImMbLookupString, with_xim=motif) fi ;;