comparison configure.in @ 98:0d2f883870bc r20-1b1

Import from CVS: tag r20-1b1
author cvs
date Mon, 13 Aug 2007 09:13:56 +0200
parents 6a43545367ac
children 4be1180a9e89
comparison
equal deleted inserted replaced
97:498bf5da1c90 98:0d2f883870bc
114 internal_makefile_list='Makefile lib-src/Makefile.in src/Makefile.in lwlib/Makefile.in dynodump/Makefile.in' 114 internal_makefile_list='Makefile lib-src/Makefile.in src/Makefile.in lwlib/Makefile.in dynodump/Makefile.in'
115 energize_version='no' 115 energize_version='no'
116 native_sound_lib='' 116 native_sound_lib=''
117 # make normal error-checking be the default in alpha and beta versions, so 117 # make normal error-checking be the default in alpha and beta versions, so
118 # that bugs get noticed. Change this for released versions. 118 # that bugs get noticed. Change this for released versions.
119 error_check_default='no' 119 error_check_default='yes'
120 error_check_extents=$error_check_default 120 error_check_extents=$error_check_default
121 error_check_typecheck=$error_check_default 121 error_check_typecheck=$error_check_default
122 error_check_bufpos=$error_check_default 122 error_check_bufpos=$error_check_default
123 error_check_gc=$error_check_default 123 error_check_gc=$error_check_default
124 error_check_malloc=$error_check_default 124 error_check_malloc=$error_check_default
287 --with-xim=motif (*) Used in conjunction with Mule support. 287 --with-xim=motif (*) Used in conjunction with Mule support.
288 Use either raw Xlib to provide XIM support, or 288 Use either raw Xlib to provide XIM support, or
289 the Motif XmIm* routines (when available). 289 the Motif XmIm* routines (when available).
290 If the XmIm* routines are autodetected, 290 If the XmIm* routines are autodetected,
291 then the default is --with-xim=motif, else --with-xim=no. 291 then the default is --with-xim=motif, else --with-xim=no.
292 --with-canna Compile with support for Canna (an input method 292 --with-canna Compile with support for Canna (a Japanese input method
293 used in conjunction with Mule support). 293 used in conjunction with Mule support).
294 --with-wnn Compile with support for WNN (an input method 294 --with-wnn Compile with support for WNN (a multi-language input method
295 used in conjunction with Mule support). 295 used in conjunction with Mule support).
296 This doesn't work yet. 296 This is beta level code.
297 --with-wnn6 Compile with support for WNN version 6
298 This is alpha level code.
297 --with-i18n3 Compile with I18N level 3 (support for message 299 --with-i18n3 Compile with I18N level 3 (support for message
298 translation). This doesn't currently work. 300 translation). This doesn't currently work.
299 301
300 302
301 Debugging options: 303 Debugging options:
423 with_tty | \ 425 with_tty | \
424 with_i18n3 | \ 426 with_i18n3 | \
425 with_mule | \ 427 with_mule | \
426 with_canna | \ 428 with_canna | \
427 with_wnn | \ 429 with_wnn | \
430 with_wnn6 | \
428 with_mocklisp | \ 431 with_mocklisp | \
429 with_energize | \ 432 with_energize | \
430 with_sparcworks | \ 433 with_sparcworks | \
431 with_tooltalk | \ 434 with_tooltalk | \
432 external_widget | \ 435 external_widget | \
2633 if test "$with_xim" != "no" ; then 2636 if test "$with_xim" != "no" ; then
2634 AC_DEFINE(HAVE_XIM) 2637 AC_DEFINE(HAVE_XIM)
2635 test "$with_xim" = "xlib" && AC_DEFINE(XIM_XLIB) 2638 test "$with_xim" = "xlib" && AC_DEFINE(XIM_XLIB)
2636 test "$with_xim" = "motif" && AC_DEFINE(XIM_MOTIF) 2639 test "$with_xim" = "motif" && AC_DEFINE(XIM_MOTIF)
2637 fi 2640 fi
2641 # wnn6 implies wnn support
2642 if test "$with_wnn6" = "yes" ; then
2643 with_wnn=yes
2644 fi
2638 else # Other internationalization features depend on Mule 2645 else # Other internationalization features depend on Mule
2639 with_mule="no" 2646 with_mule="no"
2640 for feature in xim canna wnn ; do 2647 for feature in xim canna wnn wnn6 ; do
2641 if eval "test -n \"\$with_$feature\" -a \"\$with_$feature\" != no" ; then 2648 if eval "test -n \"\$with_$feature\" -a \"\$with_$feature\" != no" ; then
2642 AC_WARN(--with-$feature ignored: Not valid without Mule support) 2649 AC_WARN(--with-$feature ignored: Not valid without Mule support)
2643 fi 2650 fi
2644 eval "with_$feature=no" 2651 eval "with_$feature=no"
2645 done 2652 done
3053 IF_YES_AC_DEFINE(with_tooltalk, TOOLTALK) 3060 IF_YES_AC_DEFINE(with_tooltalk, TOOLTALK)
3054 IF_YES_AC_DEFINE(with_i18n3, I18N3) 3061 IF_YES_AC_DEFINE(with_i18n3, I18N3)
3055 IF_YES_AC_DEFINE(with_mule, MULE) 3062 IF_YES_AC_DEFINE(with_mule, MULE)
3056 IF_YES_AC_DEFINE(with_canna, HAVE_CANNA) 3063 IF_YES_AC_DEFINE(with_canna, HAVE_CANNA)
3057 IF_YES_AC_DEFINE(with_wnn, HAVE_WNN) 3064 IF_YES_AC_DEFINE(with_wnn, HAVE_WNN)
3065 IF_YES_AC_DEFINE(with_wnn6, WNN6)
3058 IF_YES_AC_DEFINE(with_mock, MOCKLISP_SUPPORT) 3066 IF_YES_AC_DEFINE(with_mock, MOCKLISP_SUPPORT)
3059 IF_YES_AC_DEFINE(with_sparcworks,SUNPRO) 3067 IF_YES_AC_DEFINE(with_sparcworks,SUNPRO)
3060 IF_YES_AC_DEFINE(usage_tracking, USAGE_TRACKING) 3068 IF_YES_AC_DEFINE(usage_tracking, USAGE_TRACKING)
3061 IF_YES_AC_DEFINE(need_dynodump, DYNODUMP) 3069 IF_YES_AC_DEFINE(need_dynodump, DYNODUMP)
3062 IF_YES_AC_DEFINE(need_xildoff, NEED_XILDOFF) 3070 IF_YES_AC_DEFINE(need_xildoff, NEED_XILDOFF)
3158 test "$with_mule" = yes && echo " Compiling in Mule (multi-lingual) support." 3166 test "$with_mule" = yes && echo " Compiling in Mule (multi-lingual) support."
3159 test "$with_xim" != no && echo " Compiling in XIM (X11R5+ I18N input method) support." 3167 test "$with_xim" != no && echo " Compiling in XIM (X11R5+ I18N input method) support."
3160 test "$with_xim" = motif && echo " Using Motif to provide XIM support." 3168 test "$with_xim" = motif && echo " Using Motif to provide XIM support."
3161 test "$with_xim" = xlib && echo " Using raw Xlib to provide XIM support." 3169 test "$with_xim" = xlib && echo " Using raw Xlib to provide XIM support."
3162 test "$with_canna" = yes && echo " Compiling in support for Canna on Mule." 3170 test "$with_canna" = yes && echo " Compiling in support for Canna on Mule."
3163 test "$with_wnn" = yes && echo " Compiling in support for WNN on Mule (doesn't currently work)." 3171 test "$with_wnn" = yes && echo " Compiling in support for WNN on Mule."
3172 test "$with_wnn6" = yes && echo " WNN support for version 6."
3164 test "$with_i18n3" = yes && echo " Compiling in I18N support, level 3 (doesn't currently work)." 3173 test "$with_i18n3" = yes && echo " Compiling in I18N support, level 3 (doesn't currently work)."
3165 3174
3166 test "$with_cde" = yes && echo " Compiling in support for CDE." 3175 test "$with_cde" = yes && echo " Compiling in support for CDE."
3167 test "$with_offix" = yes && echo " Compiling in support for OffiX." 3176 test "$with_offix" = yes && echo " Compiling in support for OffiX."
3168 test "$with_mocklisp" = yes && echo " Compiling in support for Mocklisp." 3177 test "$with_mocklisp" = yes && echo " Compiling in support for Mocklisp."