Mercurial > hg > xemacs-beta
comparison configure.in @ 140:585fb297b004 r20-2b4
Import from CVS: tag r20-2b4
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:32:43 +0200 |
parents | b980b6286996 |
children | 318232e2a3f0 |
comparison
equal
deleted
inserted
replaced
139:2b5203979d01 | 140:585fb297b004 |
---|---|
290 --with-xim=motif (*) Used in conjunction with Mule support. | 290 --with-xim=motif (*) Used in conjunction with Mule support. |
291 Use either raw Xlib to provide XIM support, or | 291 Use either raw Xlib to provide XIM support, or |
292 the Motif XmIm* routines (when available). | 292 the Motif XmIm* routines (when available). |
293 If the XmIm* routines are autodetected, | 293 If the XmIm* routines are autodetected, |
294 then the default is --with-xim=motif, else --with-xim=no. | 294 then the default is --with-xim=motif, else --with-xim=no. |
295 NOTE: On some systems like SunOS4 use of this option | |
296 will cause XEmacs to crash at startup. | |
295 --with-canna Compile with support for Canna (a Japanese input method | 297 --with-canna Compile with support for Canna (a Japanese input method |
296 used in conjunction with Mule support). | 298 used in conjunction with Mule support). |
297 --with-wnn Compile with support for WNN (a multi-language input method | 299 --with-wnn Compile with support for WNN (a multi-language input method |
298 used in conjunction with Mule support). | 300 used in conjunction with Mule support). |
299 This is beta level code. | 301 This is beta level code. |
2641 if test -z "$with_xim" -o "$with_xim" = "yes" ; then | 2643 if test -z "$with_xim" -o "$with_xim" = "yes" ; then |
2642 xim_save_libs="$LIBS" | 2644 xim_save_libs="$LIBS" |
2643 LIBS="${motif_libs} ${LIBS}" | 2645 LIBS="${motif_libs} ${LIBS}" |
2644 AC_FUNC_CHECK(XmImMbLookupString, have_XmIm=yes, have_XmIm=no) | 2646 AC_FUNC_CHECK(XmImMbLookupString, have_XmIm=yes, have_XmIm=no) |
2645 LIBS="$xim_save_libs" | 2647 LIBS="$xim_save_libs" |
2646 if test "$have_XmIm" = "yes"; then with_xim=motif | 2648 if test "$with_xim" = "yes" -a "$have_XmIm" = "yes"; then with_xim=motif |
2647 elif test "$with_xim" = "yes"; then with_xim=xlib | 2649 elif test "$with_xim" = "yes"; then with_xim=xlib |
2648 else with_xim=no | 2650 else with_xim=no |
2649 fi | 2651 fi |
2650 fi | 2652 fi |
2651 if test "$with_xim" != "no" ; then | 2653 if test "$with_xim" != "no" ; then |