Merge r21-4-10-utf-2000-0_19-b1.
[chise/xemacs-chise.git-] / configure.in
1 dnl Define our own header notice with own copyright
2 define([AC_INIT_NOTICE],
3 [#### Configuration script for XEmacs.  Largely divergent from FSF.
4 #### Guess values for system-dependent variables and create Makefiles.
5 #### Generated automatically using autoconf version] AC_ACVERSION [
6 #### Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
7 #### Copyright (C) 1993-1995 Board of Trustees, University of Illinois.
8 #### Copyright (C) 1996, 1997 Sun Microsystems, Inc.
9 #### Copyright (C) 1995, 1996 Ben Wing.
10 #### Copyright (C) 2000, 2001 Martin Buchholz.
11 #### Copyright (C) 1998, 1999 J. Kean Johnston.
12
13 ### Don't edit this script!
14 ### This script was automatically generated by the `autoconf' program
15 ### from the file `./configure.in'.
16 ### To rebuild it, execute the command
17 ###     autoconf
18 ### in the this directory.  You must have autoconf version 2.13 or later.
19 ### Note: this script has not yet been ported to autoconf version 2.5x.
20
21 ### This file is part of XEmacs.
22
23 ### XEmacs is free software; you can redistribute it and/or modify it
24 ### under the terms of the GNU General Public License as published by
25 ### the Free Software Foundation; either version 2, or (at your
26 ### option) any later version.
27
28 ### XEmacs is distributed in the hope that it will be useful, but
29 ### WITHOUT ANY WARRANTY; without even the implied warranty of
30 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
31 ### General Public License for more details.
32
33 ### You should have received a copy of the GNU General Public License
34 ### along with XEmacs; see the file COPYING.  If not, write to the Free
35 ### Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
36 ### 02111-1307, USA.
37
38 ### For usage, run `./configure --help'
39 ### For more detailed information on building and installing XEmacs,
40 ### read the file `INSTALL'.
41 ###
42 ### If configure succeeds, it leaves its status in config.status.
43 ### A log of configuration tests can be found in config.log.
44 ### If configure fails after disturbing the status quo,
45 ###     config.status is removed.
46 ])
47
48 dnl Since XEmacs has configuration requirements that autoconf cannot
49 dnl meet, this file is an unholy marriage of custom-baked
50 dnl configuration code and autoconf macros.
51
52 dnl We use the m4 quoting characters [ ] (as established by the
53 dnl autoconf system), so quote them like this: [[foo]]
54
55 AC_PREREQ(2.13)dnl
56 dnl Redefine some standard autoconf macros
57 dnl here is how XEmacs is different:
58 dnl - no cache file
59 dnl - non-standard options
60 dnl - support for extra-verbosity
61 dnl - ordinary libs are handled separately from X libs (might be a mistake)
62 dnl - various random kludges (e.g. -with-dnet=no)
63
64 dnl PRINT_VAR(var var ...)  prints values of shell variables
65 define([PRINT_VAR],[for var in patsubst([$1],[[
66 ]+],[ ]); do eval "echo \"$var = '\$$var'\""; done])
67
68 dnl Disable cache files:
69 dnl This is controversial, but I am convinced this is the right way to go,
70 dnl at least by default.  Otherwise there are too many surprises.
71 define([AC_CACHE_LOAD], )dnl
72 define([AC_CACHE_SAVE], )dnl
73 define([AC_CACHE_VAL], [
74 $2
75 ])dnl
76
77 dnl Redefine AC_TRY_RUN_NATIVE to not throw away stderr while running
78 dnl AC_TRY_RUN_NATIVE(PROGRAM, [ACTION-IF-TRUE [, ACTION-IF-FALSE]])
79 define([AC_TRY_RUN_NATIVE],
80 [cat > conftest.$ac_ext <<EOF
81 [#]line __oline__ "configure"
82 #include "confdefs.h"
83 [$1]
84 EOF
85 if AC_TRY_EVAL(ac_link) && test -s conftest && (./conftest; exit $?) 2>&AC_FD_CC
86 then
87 dnl Do not remove the temporary files here, so they can be examined.
88   ifelse([$2], , :, [$2])
89 else
90   conftest_rc="$?"
91   echo "configure: failed program was:" >&AC_FD_CC
92   cat conftest.$ac_ext >&AC_FD_CC
93 ifelse([$3], , , [  rm -fr conftest*
94   $3
95 ])dnl
96 fi
97 rm -fr conftest*])dnl AC_TRY_RUN_NATIVE
98
99
100 dnl Avoid spurious cross-compiling warnings from AC_TRY_RUN
101 dnl XEmacs is unlikely to ever cross-compile
102 define([AC_TRY_RUN],[AC_TRY_RUN_NATIVE([$1], [$2], [$3])])dnl
103
104 dnl Redefine AC_DEFINE* to provide more output if extra_verbose
105 dnl Set VARIABLE to VALUE, verbatim, or 1.
106 dnl AC_DEFINE(VARIABLE [, VALUE])
107 define([AC_DEFINE],
108 [{ test "$extra_verbose" = "yes" && cat << \EOF
109     Defining $1[]ifelse($#, 2, [ = $2],)
110 EOF
111 cat >> confdefs.h <<\EOF
112 [#define] $1 ifelse($#, 2, [$2], 1)
113 EOF
114 }
115 ])dnl AC_DEFINE
116
117 define([AC_DEFINE_UNQUOTED],
118 [{ test "$extra_verbose" = "yes" && cat << EOF
119     Defining $1[]ifelse($#, 2, [ = $2],)
120 EOF
121 cat >> confdefs.h <<EOF
122 [#define] $1 ifelse($#, 2, [$2], 1)
123 EOF
124 }
125 ])dnl AC_DEFINE_UNQUOTED
126
127 dnl redefine AC_CHECK_LIB in accordance with our own value of ac_link
128 dnl Add in extra kludgy check to support with_dnet=no
129 dnl Add in extra LDFLAGS arg, which PRECEDES libs
130 dnl Support --with-dnet=no
131
132 dnl AC_CHECK_LIB(LIBRARY, FUNCTION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND
133 dnl             [, OTHER-LIBRARIES] [, LDFLAGS]]]])
134 define([AC_CHECK_LIB],
135 [ifelse([$1],dnet, [if test "$with_dnet" = "no" ; then
136 ac_cv_lib_dnet_dnet_ntoa=no
137 ifelse([$4], , , [$4]
138 )dnl
139 else
140 ])]
141 AC_CHECK_LIB_ORIG_HACKED([$1],[$2],[$3],[$4],[$5], [$6])
142 [ifelse([$1],dnet,[fi
143 ])]dnl
144 )dnl AC_CHECK_LIB
145
146 define([AC_CHECK_LIB_ORIG_HACKED],
147 [ifelse([$5],,AC_MSG_CHECKING([for $2 in -l$1]),
148 xe_msg_checking="for [$2] in -l[$1]"
149 test -n "[$5]" && xe_msg_checking="$xe_msg_checking using extra libs [$5]"
150 AC_MSG_CHECKING("$xe_msg_checking"))
151 dnl Use a cache variable name containing both the library and function name,
152 dnl because the test really is for library $1 defining function $2, not
153 dnl just for library $1.  Separate tests with the same $1 and different $2s
154 dnl may have different results.
155 ac_lib_var=`echo $1['_']$2 | sed 'y%./+-%__p_%'`
156 AC_CACHE_VAL(ac_cv_lib_$ac_lib_var,
157 [xe_check_libs="$6 -l$1 $5"
158 AC_TRY_LINK(dnl
159 ifelse([$2], [main], , dnl Avoid conflicting decl of main.
160 [/* Override any gcc2 internal prototype to avoid an error.  */
161 ]ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
162 extern "C"
163 #endif
164 ])dnl
165 [/* We use char because int might match the return type of a gcc2
166     builtin and then its argument prototype would still apply.  */
167 char $2();
168 ]),
169             [$2()],
170             eval "ac_cv_lib_$ac_lib_var=yes",
171             eval "ac_cv_lib_$ac_lib_var=no")
172 xe_check_libs=""
173 ])dnl
174 if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes" ; then
175   AC_MSG_RESULT(yes)
176   ifelse([$3], ,
177 [changequote(, )dnl
178   ac_tr_lib=HAVE_LIB`echo $1 | sed -e 's/[^a-zA-Z0-9_]/_/g' \
179     -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'`
180 changequote([, ])dnl
181   AC_DEFINE_UNQUOTED($ac_tr_lib)
182   XE_PREPEND([-l$1], LIBS)
183 ], [$3])
184 else
185   AC_MSG_RESULT(no)
186 ifelse([$4], , , [$4
187 ])dnl
188 fi
189 ])dnl AC_CHECK_LIB_ORIG_HACKED
190
191
192 dnl AC_LANG_C()
193 define([AC_LANG_C],
194 [define([AC_LANG], [C])dnl
195 ac_ext=c
196 dnl CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
197 dnl ac_cpp='$CPP $CPPFLAGS'
198 dnl ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&AC_FD_CC'
199 dnl ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&AC_FD_CC'
200 xe_cppflags='$CPPFLAGS $c_switch_site $c_switch_machine $c_switch_system $c_switch_x_site $X_CFLAGS'
201 xe_ldflags='$LDFLAGS $ld_switch_site $ld_switch_machine $ld_switch_system $ld_switch_x_site $ld_switch_run'
202 xe_libs='$ld_call_shared $xe_check_libs $X_EXTRA_LIBS $libs_x $libs_gtk $X_PRE_LIBS $LIBS $libs_machine $libs_system $libs_standard'
203 ac_cpp='$CPP '"$xe_cppflags"
204 ac_compile='${CC-cc} -c $CFLAGS '"$xe_cppflags"' conftest.$ac_ext 1>&AC_FD_CC'
205 ac_link='${CC-cc} -o conftest $CFLAGS '"$xe_cppflags $xe_ldflags"' conftest.$ac_ext '"$xe_libs"' 1>&AC_FD_CC'
206 cross_compiling=no
207 ]) dnl AC_LANG_C
208
209 dnl The construct foo=`echo $w1 $w2 $w3` fails on some systems if $w1 = -e or -n
210 dnl So we use the following instead.
211 dnl XE_SPACE(var, words)
212 define([XE_SPACE],[
213 T=""
214 for W in $2; do if test -z "$T"; then T="$W"; else T="$T $W"; fi; done
215 $1="$T"
216 ])dnl XE_SPACE
217
218 dnl XE_ADD_OBJS(foo.o ...)
219 define([XE_ADD_OBJS],
220 [extra_objs="$extra_objs [$1]" && dnl
221  if test "$extra_verbose" = "yes"; then
222    echo "    xemacs will be linked with \"[$1]\""
223  fi])dnl XE_ADD_OBJS
224
225 dnl XE_APPEND(value, varname)
226 define([XE_APPEND],
227 [[$2]="$[$2] [$1]" && dnl
228  if test "$extra_verbose" = "yes"; then echo "    Appending \"[$1]\" to \$[$2]"; fi])
229
230 dnl XE_PREPEND(value, varname)
231 define([XE_PREPEND],
232 [[$2]="[$1] $[$2]" && dnl
233  if test "$extra_verbose" = "yes"; then echo "    Prepending \"[$1]\" to \$[$2]"; fi])
234
235 dnl XE_DIE(message)
236 define([XE_DIE], [{ echo "Error:" $1 >&2; exit 1; }])
237
238 dnl XE_STRIP_4TH_COMPONENT(var)
239 dnl Changes i986-pc-linux-gnu to i986-pc-linux, as God (not RMS) intended.
240 define([XE_STRIP_4TH_COMPONENT],
241 [$1=`echo "$$1" | sed '[s/^\([^-][^-]*-[^-][^-]*-[^-][^-]*\)-.*$/\1/]'`])
242
243 dnl Initialize some variables set by options.
244 dnl The variables have the same names as the options, with
245 dnl dashes changed to underlines.
246
247 define([AC_INIT_PARSE_ARGS],[
248
249 dnl Get sane consistent behavior from various shells
250 dnl Avoid losing with weird user CDPATHs
251
252 if test -n "$ZSH_VERSION"; then
253   dnl zsh's Bourne shell emulation options
254   setopt NO_BAD_PATTERN NO_BANG_HIST NO_BG_NICE NO_EQUALS NO_FUNCTION_ARGZERO
255   setopt GLOB_SUBST NO_HUP INTERACTIVE_COMMENTS KSH_ARRAYS NO_MULTIOS NO_NOMATCH
256   setopt RM_STAR_SILENT POSIX_BUILTINS SH_FILE_EXPANSION SH_GLOB SH_OPTION_LETTERS
257   setopt SH_WORD_SPLIT BSD_ECHO IGNORE_BRACES
258   dnl zsh-3.1-beta drops core on the following
259   dnl unset CDPATH
260   if test -n "$CDPATH"; then CDPATH="."; export CDPATH; fi
261 elif test -n "$BASH_VERSION"; then
262   dnl Use Posix mode with bash
263   set -o posix
264   unset CDPATH
265 else
266   if test -n "$CDPATH"; then CDPATH="."; export CDPATH; fi
267 fi
268
269 dnl Initialize some variables set by options.
270 dnl The variables have the same names as the options, with
271 dnl dashes changed to underlines.
272 exec_prefix=NONE
273 host=NONE
274 no_create=
275 nonopt=NONE
276 no_recursion=
277 prefix=NONE
278 program_prefix=NONE
279 program_suffix=NONE
280 program_transform_name=s,x,x,
281 silent=
282 site=
283 srcdir=
284 target=NONE
285 verbose=
286 x_includes=NONE
287 x_libraries=NONE
288
289 dnl Initialize some other variables.
290 subdirs=
291 MFLAGS= MAKEFLAGS=
292 SHELL=${CONFIG_SHELL-/bin/sh}
293 dnl Maximum number of lines to put in a shell here document.
294 ac_max_here_lines=12
295 ])dnl AC_INIT_PARSE_ARGS
296
297 AC_INIT(src/lisp.h)dnl
298 AC_CONFIG_HEADER(src/config.h lwlib/config.h)
299 dnl Remove any more than one leading "." element from the path name.
300 dnl If we do not remove them, then another "./" will be prepended to
301 dnl the file name each time we use config.status, and the program name
302 dnl will get larger and larger.  This would not be a problem, except
303 dnl that since progname gets recorded in all the Makefiles this script
304 dnl produces, move-if-change thinks they're different when they're
305 dnl not.
306 dnl
307 dnl It would be nice if we could put the ./ in a \( \) group and then
308 dnl apply the * operator to that, so we remove as many leading './././'s
309 dnl as are present, but some seds (like Ultrix's sed) don't allow you to
310 dnl apply * to a \( \) group.  Bleah.
311 progname="`echo $0 | sed 's:^\./\./:\./:'`"
312
313 dnl -----------------------------
314 dnl Establish some default values
315 dnl -----------------------------
316
317 XE_APPEND(lib-src, MAKE_SUBDIR)
318 XE_APPEND(lib-src, INSTALL_ARCH_DEP_SUBDIR)
319
320 prefix='/usr/local'
321 exec_prefix='${prefix}'
322 bindir='${exec_prefix}/bin'
323 dnl FSF 19.29 changes to:
324 dnl datadir='${prefix}/share'
325 dnl sharedstatedir='${prefix}/com'
326 dnl libexecdir='${exec_prefix}/libexec'
327 datadir='${prefix}/lib'
328 statedir='${prefix}/lib'
329 libdir='${exec_prefix}/lib'
330 mandir='${prefix}/man/man1'
331 inststaticdir='${PROGNAME}'
332 instvardir='${PROGNAME}-${version}'
333 infodir='${datadir}/${instvardir}/info'
334 infopath=''
335 install_pp=''
336 lispdir='${datadir}/${instvardir}/lisp'
337 moduledir='${libdir}/${instvardir}/${configuration}/modules'
338 sitelispdir='${datadir}/${inststaticdir}/site-lisp'
339 sitemoduledir='${libdir}/${inststaticdir}/site-modules'
340 pkgdir='${datadir}/${instvardir}/lisp'
341 package_path=''
342 etcdir='${datadir}/${instvardir}/etc'
343 archlibdir='${libdir}/${instvardir}/${configuration}'
344 docdir='${archlibdir}'
345 with_netinstall="no"
346 with_prefix='yes'
347 with_site_lisp='no'
348 with_site_modules='yes'
349 with_menubars=''
350 with_scrollbars=''
351 with_widgets=''
352 with_dialogs=''
353 with_file_coding=''
354 cpp='' cppflags='' libs='' ldflags=''
355 extra_includes=''
356 dynamic=''
357 with_x11=''
358 with_msw=''
359 rel_alloc='default'
360 with_system_malloc='default'
361 with_dlmalloc='default'
362 dnl ESD is associated with crashes and lockups due to incorrect signal use.
363 with_esd_sound='no'
364 native_sound_lib=''
365 dnl These should be set to the empty string when we want gtk / gnome to
366 dnl be auto-detected instead of manually specified.
367 with_gtk='no'
368 with_gnome='no'
369 dnl use_assertions should be 'yes' by default.  Too many people in this
370 dnl world have core dumps turned off by default or \"cannot find where the
371 dnl core file went\".  At least we should get some useful output ...
372 use_assertions="yes"
373 dnl the following is set to yes or no later.
374 with_toolbars=""
375 with_tty=""
376 use_union_type="no"
377 with_dnet=""
378 pdump="no"
379 dnl dragndrop is still experimental.  When it is stable, comment out the following line:
380 with_dragndrop="no"
381 dnl Too annoying, even if mandated by IPv6 (and I'm not even sure of that)
382 with_ipv6_cname="no"
383
384 dnl ------------------
385 dnl Options Processing
386 dnl ------------------
387
388 define([USAGE_ERROR],
389 [(echo "$progname: Usage error:"
390 echo " " $1
391 echo "  Use \`$progname --help' to show usage.") >&2 && exit 1])
392
393 dnl Record all the arguments, so we can save them in config.status.
394 arguments="$@"
395
396 dnl Shell Magic: Quote the quoted arguments in ARGUMENTS.  At a later date,
397 dnl in order to get the arguments back in $@, we have to do an
398 dnl 'eval set x "$quoted_arguments"; shift'
399 dnl # We use sed to turn embedded ' into '"'"'.  I truly hate sh quoting.
400 quoted_sed_magic=s/"'"/"'"'"'"'"'"'"'"/g
401 quoted_arguments=
402 for i in "$@"; do
403    case "$i" in
404    -no-create | --no-create | --no-creat | --no-crea | --no-cre \
405    | --no-cr | --no-c) ;;
406    -no-recursion | --no-recursion | --no-recursio | --no-recursi \
407    | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
408    *)
409    quoted_i="`echo '' $i | sed -e 's:^ ::' -e $quoted_sed_magic`"
410    quoted_arguments="$quoted_arguments '$quoted_i'" ;;
411    esac
412 done
413
414 dnl Do not use shift -- that destroys the argument list, which autoconf needs
415 dnl to produce config.status.  It turns out that "set - $arguments" does not
416 dnl work portably.
417 dnl However, it also turns out that many shells cannot expand ${10} at all.
418 dnl So using an index variable does not work either.  It is possible to use
419 dnl some shell magic to make 'set x "$arguments"; shift' work portably.
420 while test $# != 0; do
421   arg="$1"; shift
422   case "$arg" in
423     --no-create|--no-recursion) ;;
424     dnl Anything starting with a hyphen we assume is an option.
425     -* )
426       dnl Separate the switch name from the value it is being given.
427       case "$arg" in
428         -*=*)
429           opt=`echo '' $arg | sed -e 's:^ ::' -e 's:^-*\([[^=]]*\)=.*$:\1:'`
430           val=`echo '' $arg | sed -e 's:^ ::' -e 's:^-*[[^=]]*=\(.*\)$:\1:'`
431           valomitted=no
432         ;;
433            dnl special case these strings since echo may silently eat them:
434            dnl --help ) opt=help val=yes valomitted=yes ;;
435            dnl --version ) opt=version val=yes valomitted=yes ;;
436            dnl -e ) opt=e val=yes valomitted=yes ;;
437            dnl -E ) opt=E val=yes valomitted=yes ;;
438            dnl -n ) opt=n val=yes valomitted=yes ;;
439         -*)
440            dnl If FOO is a boolean argument, --FOO is equivalent to
441            dnl --FOO=yes.  Otherwise, the value comes from the next
442            dnl argument - see below.
443           opt=`echo '' $arg | sed -e 's:^ ::' -e 's:^-*\(.*\)$:\1:'`
444           val="yes" valomitted=yes
445         ;;
446       esac
447
448       dnl translate "-" in option string to "_"
449       optname="$opt"
450       opt="`echo '' $opt | sed -e 's:^ ::' | tr - _`"
451
452       dnl Support --without-FOO as a synonym for --with-FOO=no
453       case "${valomitted}-${opt}" in yes-without_* )
454         opt=`echo $opt | sed 's/without/with/'`
455         valomitted="no" val="no" ;;
456       esac
457
458       dnl Process the option.
459       case "$opt" in
460
461       dnl Process (many) boolean options
462         with_site_lisp  | \
463         with_prefix     | \
464         with_site_modules | \
465         with_x          | \
466         with_x11        | \
467         with_gtk        | \
468         with_gnome      | \
469         with_msw        | \
470         with_gcc        | \
471         dynamic         | \
472         with_ncurses    | \
473         with_dnet       | \
474         with_socks      | \
475         with_dragndrop  | \
476         with_cde        | \
477         with_offix      | \
478         with_gpm        | \
479         with_xpm        | \
480         with_xface      | \
481         with_gif        | \
482         with_jpeg       | \
483         with_png        | \
484         with_tiff       | \
485         with_wmcommand  | \
486         with_xmu        | \
487         with_purify     | \
488         with_quantify   | \
489         with_toolbars   | \
490         with_tty        | \
491         with_xfs        | \
492         with_i18n3      | \
493         with_mule       | \
494         with_utf_2000   | \
495         with_text_coding| \
496         with_file_coding| \
497         with_canna      | \
498         with_wnn        | \
499         with_wnn6       | \
500         with_workshop   | \
501         with_sparcworks | \
502         with_tooltalk   | \
503         with_ldap       | \
504         with_postgresql | \
505         with_pop        | \
506         with_kerberos   | \
507         with_hesiod     | \
508         with_dnet       | \
509         with_infodock   | \
510         with_netinstall | \
511         with_ipv6_cname | \
512         external_widget | \
513         verbose         | \
514         extra_verbose   | \
515         usage_tracking  | \
516         use_union_type  | \
517         pdump           | \
518         debug           | \
519         use_assertions  | \
520         memory_usage_stats | \
521         with_clash_detection | \
522         with_modules | \
523         quick_build )
524           dnl Make sure the value given was either "yes" or "no".
525           case "$val" in
526             y | ye | yes )      val=yes ;;
527             n | no )            val=no  ;;
528             * ) USAGE_ERROR("The \`--$optname' option requires a boolean value: \`yes' or \`no'.") ;;
529           esac
530           eval "$opt=\"$val\"" ;;
531
532
533         dnl Options that take a user-supplied value, as in --x-includes=/usr/X11R6/include
534         dnl The cache-file option is ignored (for compatibility with other configures)
535         srcdir          | \
536         compiler        | \
537         cflags          | \
538         cpp             | \
539         cppflags        | \
540         libs            | \
541         ldflags         | \
542         cache_file      | \
543         native_sound_lib| \
544         site_lisp       | \
545         x_includes      | \
546         x_libraries     | \
547         site_includes   | \
548         site_libraries  | \
549         site_prefixes   | \
550         site_runtime_libraries )
551           dnl If the value was omitted, get it from the next argument.
552           if test "$valomitted" = "yes" ; then
553             dnl Get the next argument from the argument list, if there is one.
554             if test "$#" = 0 ; then
555               USAGE_ERROR("The \`--$optname' option requires a value.");
556             fi
557             val="$1"; shift
558           fi
559           eval "$opt=\"$val\""
560         ;;
561
562         dnl Options that take "yes", "no", or "default" values
563         rel_alloc | \
564         with_dlmalloc | \
565         with_debug_malloc  | use_debug_malloc | \
566         with_system_malloc | use_system_malloc )
567           case "$val" in
568             y | ye | yes )      val=yes ;;
569             n | no )            val=no  ;;
570             d | de | def | defa | defau | defaul | default ) val=default ;;
571             * ) USAGE_ERROR(["The \`--$optname' option requires one of these values:
572   \`yes', \`no', or \`default'."]) ;;
573           esac
574           case "$opt" in use_* ) opt="`echo $opt | sed s/use/with/`" ;; esac
575           eval "$opt=\"$val\""
576         ;;
577
578         dnl Has the user requested database support?
579         "with_database" )
580           with_database_berkdb=no
581           with_database_dbm=no
582           with_database_gdbm=no
583           for x in `echo "$val" | sed -e 's/,/ /g'` ; do
584             case "$x" in
585               no ) ;;
586               b | be | ber | berk | berkd | berkdb )       with_database_berkdb=yes ;;
587               d | db | dbm )                               with_database_dbm=yes    ;;
588               g | gn | gnu | gnud | gnudb | gnudbm | gdbm) with_database_gdbm=yes   ;;
589               * ) USAGE_ERROR(["The \`--$optname' option value
590   must be either \`no' or a comma-separated list
591   of one or more of \`berkdb' and either \`dbm' or \`gnudbm'."]) ;;
592             esac
593           done
594           if test "$with_database_dbm"  = "yes" -a \
595                   "$with_database_gdbm" = "yes"; then
596           USAGE_ERROR("Only one of \`dbm' and \`gnudbm' may be specified
597   with the \`--$optname' option.")
598           fi
599         ;;
600
601         dnl Has the user requested sound support?
602         "with_sound" )
603         dnl values is a subset of all,native,nas,esd
604         dnl or their negatives: none,nonative,nonas,noesd
605           for x in `echo "$val" | sed -e 's/,/ /g'` ; do
606             case "$x" in
607               dnl all and none are only permitted as the first in the list.
608               n | no | non | none ) new_sdefault=no ;;
609               a | al | all | both ) new_sdefault=yes ;;
610
611               native )       with_native_sound=yes ;;
612               nonative )     with_native_sound=no ;;
613
614               nas )          with_nas_sound=yes ;;
615               nonas )        with_nas_sound=no ;;
616
617               esd )          with_esd_sound=yes ;;
618               noesd )        with_esd_sound=no ;;
619
620               * ) bogus_sound=yes ;;
621             esac
622             if test "$bogus_sound" -o \
623                  \( -n "$new_sdefault" -a -n "$sound_notfirst" \) ; then
624                 types="\`all', \`none', \`(no)native', \`no(nas)', \`(no)esd'."
625                 USAGE_ERROR(["Valid types for the \`--$optname' option are:
626   $types.
627 Option \`all' or \`none' must be first in the list.
628 The default is to autodetect native and NAS sound support."])
629             elif test -n "$new_sdefault" ; then
630                 with_native_sound=$new_sdefault
631                 with_nas_sound=$new_sdefault
632                 with_esd_sound=$new_sdefault
633                 new_sdefault=   # reset this
634             fi
635             sound_notfirst=true
636           done
637         ;;
638
639         dnl Has the user specified a preferred Athena widget set?
640         dnl This bit expands any alias names out for us...
641         "with_athena" )
642           case "$val" in
643             xa | xaw )                    val=xaw    ;;
644             3 | 3d | xaw3d )              val=3d     ;;
645             dnl No `n' for next, someone may try `no'
646             ne | nex | next | naxtaw)     val=next   ;;
647             dnl Have not tested the next two...
648             9 | 95 | xaw95 )              val=95     ;;
649             xp | xpm | xawxpm )           val=xpm    ;;
650             * ) USAGE_ERROR(["The \`--$optname' option must have one of these values:
651   \`xaw', \`3d', \`next', \`95', or \`xpm'."]) ;;
652           esac
653           eval "$opt=\"$val\""
654         ;;
655
656         dnl Has the user requested XIM support?
657         "with_xim" )
658           case "$val" in
659             y | ye | yes )                val=yes   ;;
660             n | no | non | none )         val=no    ;;
661             x | xl | xli | xlib )         val=xlib  ;;
662             m | mo | mot | moti | motif ) val=motif ;;
663             * ) USAGE_ERROR(["The \`--$optname' option must have one of these values:
664   \`motif', \`xlib', \`yes', or \`no'."]) ;;
665           esac
666           eval "$opt=\"$val\""
667         ;;
668
669         dnl Mail locking specification
670         "mail_locking" )
671           case "$val" in
672             lockf )     val=lockf ;;
673             flock )     val=flock ;;
674             file | dot ) val=file  ;;
675             locking )   val=locking  ;;
676             * ) USAGE_ERROR(["The \`--$optname' option must have one of these values:
677   \`lockf', \`flock', \`file', \`locking', or \`mmdf'."]) ;;
678           esac
679           eval "$opt=\"$val\""
680         ;;
681
682         dnl Has the user requested error-checking?
683         "error_checking" )
684           dnl value can be all, none, and/or a list of categories to check.
685           dnl Example: --error-checking=all,noextents,nobufpos
686           dnl Example: --error-checking=none,malloc,gc
687
688           for x in `echo "$val" | sed -e 's/,/ /g'` ; do
689             case "$x" in
690               dnl all and none are only permitted as the first in the list.
691               n | no | non | none ) new_default=no ;;
692               a | al | all )        new_default=yes ;;
693
694               extents )       error_check_extents=yes ;;
695               noextents )     error_check_extents=no ;;
696
697               typecheck )     error_check_typecheck=yes ;;
698               notypecheck )   error_check_typecheck=no ;;
699
700               bufpos )        error_check_bufpos=yes ;;
701               nobufpos )      error_check_bufpos=no ;;
702
703               gc )            error_check_gc=yes ;;
704               nogc )          error_check_gc=no ;;
705
706               malloc )        error_check_malloc=yes ;;
707               nomalloc )      error_check_malloc=no ;;
708
709               byte_code )     error_check_byte_code=yes ;;
710               nobyte_code )   error_check_byte_code=no ;;
711
712               glyphs )     error_check_glyphs=yes ;;
713               noglyphs )   error_check_glyphs=no ;;
714
715               * ) bogus_error_check=yes ;;
716             esac
717             if test "$bogus_error_check" -o \
718                  \( -n "$new_default" -a -n "$echeck_notfirst" \) ; then
719                 if test "$error_check_default" = yes ; then
720                   types="\`all' (default), \`none', \`noextents', \`notypecheck', \`nobufpos', \`nogc', \`nomalloc', \`noglyphs' and \`nobyte-code'."
721                 else
722                   types="\`all', \`none' (default), \`extents', \`typecheck', \`bufpos', \`gc', \`malloc', \`glyphs' and \`byte-code'."
723                 fi
724                 USAGE_ERROR(["Valid types for the \`--$optname' option are:
725   $types."])
726             elif test -n "$new_default" ; then
727                 error_check_extents=$new_default
728                 error_check_typecheck=$new_default
729                 error_check_bufpos=$new_default
730                 error_check_gc=$new_default
731                 error_check_malloc=$new_default
732                 error_check_byte_code=$new_default
733                 error_check_glyphs=$new_default
734                 new_default=    # reset this
735             fi
736             echeck_notfirst=true
737           done
738         ;;
739
740         dnl Has the user tried to tell us where the X files are?
741         dnl I think these are dopey, but no less than three alpha
742         dnl testers, at large sites, have said they have their X files
743         dnl installed in odd places.
744
745         dnl Has the user specified one of the path options?
746         prefix | exec_prefix | bindir | datadir | statedir | libdir | \
747         mandir | infodir | infopath | lispdir | etcdir | pkgdir | \
748         archlibdir | docdir | package_path | moduledir )
749            dnl If the value was omitted, get it from the next argument.
750            if test "$valomitted" = "yes"; then
751              if test "$#" = 0; then
752                  USAGE_ERROR("The \`--$optname' option requires a value.");
753              fi
754              val="$1"; shift
755            fi
756            eval "$opt=\"$val\""
757
758            dnl You need to synchronize this with the way the
759            dnl default values are built.
760            case "$opt" in
761              dnl prefix is taken care of by --with-prefix
762              exec_prefix ) AC_DEFINE(EXEC_PREFIX_USER_DEFINED) ;;
763              lispdir ) AC_DEFINE(LISPDIR_USER_DEFINED) ;;
764              sitelispdir ) AC_DEFINE(SITELISPDIR_USER_DEFINED) ;;
765              moduledir ) AC_DEFINE(MODULEDIR_USER_DEFINED) ;;
766              etcdir  )  AC_DEFINE(ETCDIR_USER_DEFINED) ;;
767              infodir ) AC_DEFINE(INFODIR_USER_DEFINED) ;;
768              infopath ) AC_DEFINE(INFOPATH_USER_DEFINED) ;;
769              package_path ) AC_DEFINE(PACKAGE_PATH_USER_DEFINED) ;;
770              datadir )
771                 AC_DEFINE(INFODIR_USER_DEFINED)
772                 AC_DEFINE(LISPDIR_USER_DEFINED)
773                 AC_DEFINE(MODULEDIR_USER_DEFINED)
774                 AC_DEFINE(ETCDIR_USER_DEFINED)
775                 AC_DEFINE(DOCDIR_USER_DEFINED)
776                 AC_DEFINE(ARCHLIBDIR_USER_DEFINED) ;;
777              docdir ) AC_DEFINE(DOCDIR_USER_DEFINED) ;;
778              exec_prefix | libdir | archlibdir ) AC_DEFINE(ARCHLIBDIR_USER_DEFINED) ;;
779            esac
780         ;;
781
782         dnl --no-create added by autoconf for use by config.status
783         "no_create" ) ;;
784
785         dnl Has the user asked for some help?
786         "usage" | "help" ) ${PAGER-more} ${srcdir}/configure.usage; exit 0 ;;
787
788         dnl Has the user specified the toolkit(s) to use for GUI elements?
789         "with_menubars"   | \
790         "with_scrollbars" | \
791         "with_dialogs"    | \
792         "with_widgets" )
793           case "$val" in
794             l | lu | luc | luci | lucid )               val=lucid  ;;
795             mo | mot | moti | motif )                   val=motif  ;;
796             a | at | ath | athe | athen | athena )      val=athena ;;
797             n | no | non | none )                       val=no     ;;
798             y | ye | yes )                              val=yes    ;;
799             dnl Explicit --with-widgets on command line means yes.
800             "")                                         val=yes    ;;
801             g | gt | gtk )                              val=gtk    ;;
802             ms | msw )                                  val=msw    ;;
803             * ) USAGE_ERROR(["The \`--$optname' option must have one of these values:
804   \`gtk', \`lucid', \`motif', \`athena', \`yes', or \`no'."]) ;;
805           esac
806           eval "$opt=\"$val\""
807         ;;
808
809         dnl Obsolete legacy argument?  Warn, but otherwise ignore.
810         "use_minimal_tagbits" | \
811         "use_indexed_lrecord_implementation" | \
812         "run_in_place"  | \
813         "const_is_losing" | \
814         "with_gnu_make" )
815           AC_MSG_WARN([Obsolete option \`--$optname' ignored.])
816         ;;
817
818         dnl Unrecognized option?  No mercy for user errors.
819         * ) USAGE_ERROR("Unrecognized option: $arg") ;;
820
821       esac
822     ;;
823
824     dnl Assume anything with multiple hyphens is a configuration name.
825     *-*-*) configuration="$arg" ;;
826
827     dnl Unrecognized argument?  No mercy for user errors.
828     *) USAGE_ERROR("Unrecognized argument: $arg") ;;
829
830   esac
831 done
832
833 dnl -------------------------
834 dnl Finish options processing
835 dnl -------------------------
836
837 dnl Several options are equivalent to, and override, environment variables.
838 test -n "$cpp"      && CPP="$cpp"
839 test -n "$cppflags" && CPPFLAGS="$cppflags"
840 test -n "$libs"     && LIBS="$libs"
841 test -n "$ldflags"  && LDFLAGS="$ldflags"
842
843 dnl Get the arguments back.  See the diatribe on Shell Magic above.
844 eval set x "$quoted_arguments"; shift
845
846 dnl --extra-verbose implies --verbose
847 test "$extra_verbose" = "yes" && verbose=yes
848
849 dnl with_x is an obsolete synonym for with_x11
850 test -n "$with_x" && with_x11="$with_x"
851
852 dnl --with-quantify or --with-purify imply --use-system-malloc
853 if test "$with_purify" = "yes" -o "$with_quantify" = "yes"; then
854   test "$with_system_malloc" = "default" && with_system_malloc=yes
855 fi
856
857 dnl XE_CHECK_FEATURE_DEPENDENCY(feature1, feature2)
858 define([XE_CHECK_FEATURE_DEPENDENCY],
859 [if test "$with_$1 $with_$2" = "yes no"; then
860   USAGE_ERROR("--with-$1 requires --with-$2")
861 elif test "$with_$2" = "no" ; then with_$1=no
862 elif test "$with_$1" = "yes"; then with_$2=yes
863 fi
864 ])
865
866 dnl CDE requires tooltalk
867 XE_CHECK_FEATURE_DEPENDENCY(cde, tooltalk)
868
869 dnl Find the source directory.
870 case "$srcdir" in
871
872   dnl If srcdir is not specified, see if  "." or ".." might work.
873   "" )
874     for dir in "`echo $0 | sed 's|//|/|' | sed 's|/[[^/]]*$||'`" "." ".." ; do
875       if test -f "$dir/src/lisp.h" -a \
876               -f "$dir/lisp/version.el" ; then
877         srcdir="$dir"
878         break
879       fi
880     done
881     if test -z "$srcdir" ; then
882       USAGE_ERROR(["Neither the current directory nor its parent seem to
883   contain the XEmacs sources.  If you do not want to build XEmacs in its
884   source tree, you should run \`$progname' in the directory in which
885   you wish to build XEmacs, using the \`--srcdir' option to say where the
886   sources may be found."])
887     fi
888   ;;
889
890   dnl Otherwise, check if the directory they specified is okay.
891   * )
892     if test ! -f "$srcdir/src/lisp.h" -o \
893             ! -f "$srcdir/lisp/version.el" ; then
894       USAGE_ERROR(["The directory specified with the \`--srcdir' option,
895   \`$srcdir', doesn't seem to contain the XEmacs sources.  You should
896   either run the \`$progname' script at the top of the XEmacs source
897   tree, or use the \`--srcdir' option to specify the XEmacs source directory."])
898     fi
899   ;;
900 esac
901
902 dnl ###########################################################################
903 if test -z "$configuration"; then
904   dnl Guess the configuration
905   configuration=`${CONFIG_SHELL-/bin/sh} $srcdir/config.guess`
906   if test -z "$configuration"; then
907     USAGE_ERROR(["XEmacs has not been ported to this host type.
908 Try explicitly specifying the CONFIGURATION when rerunning configure."])
909   fi
910 fi
911
912 AC_PROG_LN_S
913
914 dnl Make symlinks for etc, lisp, and info directories while the path
915 dnl is still relative.  We do not symlink lock because someone may
916 dnl have stuck the source on a read-only partition.  Instead we
917 dnl create it as an actual directory later on if it does not already
918 dnl exist.
919 for dir in lisp etc man info tests; do
920   if test ! -d "$dir" ; then
921     echo Making symbolic link to "$srcdir/$dir"
922     ${LN_S} "$srcdir/$dir" "$dir"
923   fi
924 done
925
926 dnl Do our best to deal with automounter brokenness
927 dnl CANONICALIZE_PATH(varname)
928 define([CANONICALIZE_PATH],
929 [if test -d "/net"; then
930   if test -d "/tmp_mnt/net"; then tdir="tmp_mnt/net"; else tdir="tmp_mnt"; fi
931   $1=`echo "[$]$1" | \
932    sed -e "s|^${tdir}/|/net/|" -e "s|^/a/|/net/|" -e "s|^/amd/|/net/|"`
933 fi])dnl
934
935 dnl Calculate canonical name for blddir (i.e. current directory).
936 dnl PWD may already be the preferable absolute name for ".",
937 dnl but we can't trust it - it is sometimes inaccurate.
938 absolute_pwd="`pwd`";
939 if test -n "$PWD" -a "`cd $PWD && pwd`" = "$absolute_pwd"
940 then blddir="$PWD"
941 else blddir="$absolute_pwd"; CANONICALIZE_PATH(blddir)
942 fi
943 AC_SUBST(blddir)
944
945 dnl Make srcdir absolute, if not already.  It is important to
946 dnl avoid running the path through pwd unnecessary, since pwd can
947 dnl give you automounter prefixes, which can go away.
948 case "$srcdir" in
949   /* ) ;;
950   .  ) srcdir="$blddir" ;;
951   *  ) srcdir="`cd $srcdir && pwd`"; CANONICALIZE_PATH(srcdir) ;;
952 esac
953
954 dnl Check if the source directory already has a configured system in it.
955 if test `pwd` != `sh -c cd $srcdir && pwd`  \
956    && test -f "$srcdir/src/config.h"; then
957   (echo "$progname: WARNING: The directory tree \`$srcdir' is being used"
958    echo "   as a build directory right now; it has been configured in its own"
959    echo "   right.  To configure in another directory as well, you MUST"
960    echo "   use GNU make.  If you do not have GNU make, then you must"
961    echo "   now do \`make distclean' in $srcdir,"
962    echo "   and then run $progname again.") >&2
963   extrasub='/^VPATH[[    ]]*=/c\
964 vpath %.c $(srcdir)\
965 vpath %.h $(srcdir)\
966 vpath %.y $(srcdir)\
967 vpath %.l $(srcdir)\
968 vpath %.s $(srcdir)\
969 vpath %.in $(srcdir)'
970 fi
971
972 dnl ----------------------------------------
973 dnl Find out which version of XEmacs this is
974 dnl ----------------------------------------
975 . "$srcdir/version.sh" || exit 1;
976 dnl Must do the following first to determine verbosity for AC_DEFINE
977 if test -n "$emacs_is_beta"; then beta=yes; else beta=no; fi
978 : "${extra_verbose=$beta}"
979 version="${emacs_major_version}.${emacs_minor_version}"
980 AC_DEFINE_UNQUOTED(EMACS_MAJOR_VERSION, $emacs_major_version)
981 AC_DEFINE_UNQUOTED(EMACS_MINOR_VERSION, $emacs_minor_version)
982 if test -n "$emacs_beta_version" ; then
983   if test "$beta" = "yes"; then
984         version="${version}-b${emacs_beta_version}"
985         AC_DEFINE_UNQUOTED(EMACS_BETA_VERSION, $emacs_beta_version)
986   else
987         version="${version}.${emacs_beta_version}"
988         AC_DEFINE_UNQUOTED(EMACS_PATCH_LEVEL, $emacs_beta_version)
989   fi
990 fi
991 AC_DEFINE_UNQUOTED(XEMACS_CODENAME, "$xemacs_codename")
992 AC_DEFINE_UNQUOTED(EMACS_VERSION, "$version")
993
994 if test "$with_infodock" = "yes"; then
995   if test ! -f ../../ID-INSTALL; then
996     echo "Cannot build InfoDock without InfoDock sources"
997     with_infodock=no
998   fi
999 fi
1000
1001 if test "$with_infodock" = "yes"; then
1002   dnl InfoDock version numbers.  XEmacs will use the same style of numbering
1003   dnl after the release of XEmacs 21.0.
1004   AC_DEFINE_UNQUOTED(INFODOCK_MAJOR_VERSION, $infodock_major_version)
1005   AC_DEFINE_UNQUOTED(INFODOCK_MINOR_VERSION, $infodock_minor_version)
1006   AC_DEFINE_UNQUOTED(INFODOCK_BUILD_VERSION, $infodock_build_version)
1007   version=${infodock_major_version}.${infodock_minor_version}.${infodock_build_version}
1008   PROGNAME=infodock
1009   CPPFLAGS="$CPPFLAGS -DINFODOCK"
1010 else
1011   PROGNAME=xemacs
1012 fi
1013
1014 AC_DEFINE_UNQUOTED(EMACS_PROGNAME, "$PROGNAME")
1015
1016 dnl ----------------------------------
1017 dnl Error checking and debugging flags
1018 dnl ----------------------------------
1019 dnl Error checking default to "yes" in beta versions, to "no" in releases.
1020 dnl Same goes for --debug and --extra-verbosity.
1021 if test -n "$emacs_is_beta"; then beta=yes; else beta=no; fi
1022 test "${error_check_extents=$beta}"   = yes && AC_DEFINE(ERROR_CHECK_EXTENTS)
1023 test "${error_check_typecheck=$beta}" = yes && AC_DEFINE(ERROR_CHECK_TYPECHECK)
1024 test "${error_check_bufpos=$beta}"    = yes && AC_DEFINE(ERROR_CHECK_BUFPOS)
1025 test "${error_check_gc=$beta}"        = yes && AC_DEFINE(ERROR_CHECK_GC)
1026 test "${error_check_malloc=$beta}"    = yes && AC_DEFINE(ERROR_CHECK_MALLOC)
1027 test "${error_check_byte_code=$beta}" = yes && AC_DEFINE(ERROR_CHECK_BYTE_CODE)
1028 test "${error_check_glyphs=$beta}" = yes && AC_DEFINE(ERROR_CHECK_GLYPHS)
1029 dnl debug=yes must be set when error checking is present.  This should be
1030 dnl fixed up.
1031 dnl debug implies other options
1032 if test "${debug:=$beta}" = "yes"; then
1033   use_assertions=yes memory_usage_stats=yes
1034   XE_ADD_OBJS(debug.o)
1035   XE_ADD_OBJS(tests.o)
1036   AC_DEFINE(DEBUG_XEMACS)
1037 fi
1038 test "$use_assertions"     = "yes" && AC_DEFINE(USE_ASSERTIONS)
1039 test "$memory_usage_stats" = "yes" && AC_DEFINE(MEMORY_USAGE_STATS)
1040
1041 dnl ------------------------------
1042 dnl Determine the s&m files to use
1043 dnl ------------------------------
1044 dnl Given the configuration name, set machfile and opsysfile to the
1045 dnl names of the m/*.h and s/*.h files we should use.
1046
1047 dnl Canonicalize the configuration name.
1048 AC_MSG_CHECKING("host system type")
1049 dnl allow -workshop suffix on configuration name
1050 internal_configuration=`echo $configuration | sed 's/-\(workshop\)//'`
1051 canonical=`${CONFIG_SHELL-/bin/sh} $srcdir/config.sub "$internal_configuration"`
1052 XE_STRIP_4TH_COMPONENT(configuration)
1053 XE_STRIP_4TH_COMPONENT(canonical)
1054 AC_MSG_RESULT($configuration)
1055
1056 dnl If you add support for a new configuration, add code to this
1057 dnl switch statement to recognize your configuration name and select
1058 dnl the appropriate operating system and machine description files.
1059
1060 dnl You would hope that you could choose an m/*.h file pretty much
1061 dnl based on the machine portion of the configuration name, and an s-
1062 dnl file based on the operating system portion.  However, it turns out
1063 dnl that each m/*.h file is pretty manufacturer-specific - for
1064 dnl example, apollo.h, hp9000s300.h, mega68k, news.h, and tad68k are
1065 dnl all 68000 machines; mips.h, pmax.h, and news-risc are all MIPS
1066 dnl machines.  So we basically have to have a special case for each
1067 dnl configuration name.
1068
1069 dnl As far as handling version numbers on operating systems is
1070 dnl concerned, make sure things will fail in a fixable way.  If
1071 dnl /etc/MACHINES says nothing about version numbers, be
1072 dnl prepared to handle anything reasonably.  If version numbers
1073 dnl matter, be sure /etc/MACHINES says something about it.
1074
1075 dnl Eric Raymond says we should accept strings like "sysvr4" to mean
1076 dnl "System V Release 4"; he writes, "The old convention encouraged"
1077 dnl "confusion between `system' and `release' levels'."
1078
1079 machine='' opsys=''
1080
1081 dnl Straightforward machine determination
1082 case "$canonical" in
1083   sparc-*-*        ) machine=sparc ;;
1084   alpha*-*-*       ) machine=alpha ;;
1085   vax-*-*          ) machine=vax ;;
1086   mips-dec-*       ) machine=pmax ;;
1087   mips-sgi-irix6*  ) machine=iris6d ;;
1088   mips-sgi-*       ) machine=iris4d ;;
1089   mips*-linux      ) machine=mips ;;
1090   romp-ibm-*       ) machine=ibmrt ;;
1091   rs6000-ibm-aix*  ) machine=ibmrs6000 ;;
1092   powerpc-ibm-aix* ) machine=ibmrs6000 ;;
1093   powerpc*-*       ) machine=powerpc ;;
1094   hppa-*-*         ) machine=hp800 ;;
1095   m88k-dg-*        ) machine=aviion ;;
1096   m68*-sony-*      ) machine=news ;;
1097   mips-sony-*      ) machine=news-risc ;;
1098   clipper-*        ) machine=clipper ;;
1099   arm*             ) machine=arm ;;
1100   ns32k-*          ) machine=ns32000 ;;
1101 esac
1102
1103 dnl Straightforward OS determination
1104 case "$canonical" in
1105   *-*-linux*    ) opsys=linux ;;
1106   *-*-netbsd*   ) opsys=netbsd ;;
1107   *-*-openbsd*  ) opsys=openbsd ;;
1108   *-*-nextstep* ) opsys=nextstep ;;
1109   *-*-vms       ) opsys=vms ;;
1110
1111   dnl DEC OSF
1112   *-dec-osf1.3 | *-dec-osf2* ) opsys=decosf1-3 ;;
1113   *-dec-osf1.2 | *-dec-osf1* ) opsys=decosf1-2 ;;
1114   *-dec-osf3.[[2-9]]         ) opsys=decosf3-2 ;;
1115   *-dec-osf3*                ) opsys=decosf3-1 ;;
1116   *-dec-osf[[4-9]]*          ) opsys=decosf4-0 ;;
1117
1118   dnl DEC Ultrix
1119   *-*-ultrix[[0-3]].* | *-*-ultrix4.0* ) opsys=bsd4-2 ;;
1120   *-*-ultrix4.[[12]]* ) opsys=bsd4-3 ;;
1121   *-*-ultrix* )         opsys=ultrix4-3 ;;
1122
1123   dnl AIX
1124   *-*-aix3.1*  ) opsys=aix3-1   ;;
1125   *-*-aix3.2.5 ) opsys=aix3-2-5 ;;
1126   *-*-aix3*    ) opsys=aix3-2   ;;
1127   *-*-aix4.0*  ) opsys=aix4     ;;
1128   *-*-aix4.1*  ) opsys=aix4-1   ;;
1129   *-*-aix4*    ) opsys=aix4-2   ;;
1130
1131   dnl Other generic OSes
1132   *-gnu* )                      opsys=gnu    ;;
1133   *-*-bsd4.[[01]] )             opsys=bsd4-1 ;;
1134   *-*-bsd4.2 )                  opsys=bsd4-2 ;;
1135   *-*-bsd4.3 )                  opsys=bsd4-3 ;;
1136   *-*-aos4.2 )                  opsys=bsd4-2 ;;
1137   *-*-aos*   )                  opsys=bsd4-3 ;;
1138   *-*-sysv0    | *-*-sysvr0 )   opsys=usg5-0 ;;
1139   *-*-sysv2    | *-*-sysvr2 )   opsys=usg5-2 ;;
1140   *-*-sysv2.2  | *-*-sysvr2.2 ) opsys=usg5-2-2 ;;
1141   *-*-sysv3*   | *-*-sysvr3* )  opsys=usg5-3 ;;
1142   *-*-sysv4.1* | *-*-sysvr4.1* )opsys=usg5-4 NON_GNU_CPP=/usr/lib/cpp ;;
1143   *-*-sysv4.[[2-9]]* | *-sysvr4.[[2-9]]* )
1144         if test -z "$NON_GNU_CPP" ; then
1145           for prog in "/usr/ccs/lib/cpp" "/lib/cpp"; do
1146             if test -f "$prog"; then NON_GNU_CPP="$prog"; break; fi
1147           done
1148         fi
1149         opsys=usg5-4-2 ;;
1150     *-sysv4* | *-sysvr4* )      opsys=usg5-4 ;;
1151     *-*-mach_bsd4.3* )          opsys=mach-bsd4-3 ;;
1152 esac
1153
1154 case "$canonical" in
1155
1156   dnl NetBSD ports
1157   *-*-netbsd* )
1158     case "$canonical" in
1159       i[[3-9]]86-*-netbsd*) machine=intel386 ;;
1160       hp300-*-netbsd* | amiga-*-netbsd* | sun3-*-netbsd* | mac68k-*-netbsd* | da30-*-netbsd* | m68k-*-netbsd* )
1161                       dnl Yes, this is somewhat bogus.
1162                       machine=hp9000s300 ;;
1163       pc532-*-netbsd* | ns32k-*-netbsd* )  machine=ns32000 ;;
1164       pmax-*-netbsd*  | mips-*-netbsd*  )  machine=pmax ;;
1165     esac
1166   ;;
1167
1168   dnl OpenBSD ports
1169   *-*-openbsd* )
1170     case "${canonical}" in
1171       i386-*-openbsd*)          machine=intel386 ;;
1172       m68k-*-openbsd*)          machine=hp9000s300 ;;
1173       mipsel-*-openbsd*)        machine=pmax ;;
1174      esac
1175    ;;
1176
1177   dnl Acorn RISCiX:
1178   arm-acorn-riscix1.1* ) machine=acorn opsys=riscix1-1 ;;
1179   arm-acorn-riscix1.2* | arm-acorn-riscix ) machine=acorn opsys=riscix1-2 ;;
1180
1181   dnl Alliant machines
1182   fx80-alliant-* ) machine=alliant4     opsys=bsd4-2 ;;
1183   i860-alliant-* ) machine=alliant-2800 opsys=bsd4-3 ;;
1184
1185   dnl Altos 3068
1186   m68*-altos-sysv* ) machine=altos opsys=usg5-2 ;;
1187
1188   dnl Amdahl UTS
1189   580-amdahl-sysv* ) machine=amdahl opsys=usg5-2-2 ;;
1190
1191   dnl Apollo, Domain/OS
1192   m68*-apollo-* ) machine=apollo opsys=bsd4-3 ;;
1193
1194   dnl AT&T 3b2, 3b5, 3b15, 3b20
1195   we32k-att-sysv* ) machine=att3b opsys=usg5-2-2 ;;
1196
1197   dnl AT&T 3b1 - The Mighty Unix PC!
1198   m68*-att-sysv* ) machine=7300 opsys=usg5-2-2 ;;
1199
1200   dnl Bull machines
1201   rs6000-bull-bosx* ) machine=ibmrs6000 opsys=aix3-2 ;; # dpx20
1202   m68*-bull-sysv3*  ) machine=dpx2      opsys=usg5-3 ;; # dpx2
1203   m68*-bull-sysv2*  ) machine=sps7      opsys=usg5-2 ;; # sps7
1204
1205   dnl CCI 5/32, 6/32 -- see "Tahoe".
1206
1207   dnl Celerity
1208   celerity-celerity-bsd* ) machine=celerity opsys=bsd4-2 ;;
1209
1210   dnl Convex
1211   *-convex-bsd* | *-convex-convexos* )
1212     machine=convex opsys=bsd4-3
1213     NON_GNU_CPP="cc -E -P"
1214   ;;
1215
1216   dnl Cubix QBx/386
1217   i[[3-9]]86-cubix-sysv* ) machine=intel386 opsys=usg5-3 ;;
1218
1219   dnl Darwin, a.k.a. MacOS X (based on Mach and Freebsd)
1220   *-*-darwin*)
1221     opsys=darwin
1222     RANLIB="ranlib -c" dnl Avoids a link error with lwlib-config.c
1223     pdump=yes          dnl No "native" working dumper available
1224     ;;
1225
1226   dnl Data General AViiON Machines
1227   i586-dg-dgux*R4*   | i586-dg-dgux5.4.4* ) machine=aviion opsys=dgux5-4r4 ;;
1228   m88k-dg-dgux5.4R3* | m88k-dg-dgux5.4.3* ) opsys=dgux5-4r3 ;;
1229   m88k-dg-dgux5.4R2* | m88k-dg-dgux5.4.2* ) opsys=dgux5-4r2 ;;
1230   m88k-dg-dgux*                           ) opsys=dgux     ;;
1231
1232   dnl Motorola Delta machines
1233   m68k-motorola-sysv* | m68000-motorola-sysv* ) machine=delta opsys=usg5-3 ;;
1234   m88k-motorola-sysv4* )
1235     dnl jbotte@bnr.ca says that UNIX_System_V <hostName> 4.0 R40V4.3 m88k mc88110
1236     dnl needs POSIX_SIGNALS and therefore needs usg5-4-2.
1237     dnl I hope there are not other 4.0 versions for this machine
1238     dnl which really need usg5-4 instead.
1239     machine=delta88k opsys=usg5-4-2
1240   ;;
1241   m88k-motorola-sysv* | m88k-motorola-m88kbcs* ) machine=delta88k opsys=usg5-3 ;;
1242
1243   dnl Dual machines
1244   m68*-dual-sysv*    ) machine=dual opsys=usg5-2   ;;
1245   m68*-dual-uniplus* ) machine=dual opsys=unipl5-2 ;;
1246
1247   dnl Encore machines
1248   ns16k-encore-bsd* ) machine=ns16000 opsys=umax ;;
1249
1250   dnl Gould Power Node and NP1
1251   pn-gould-bsd4.2* ) machine=gould     opsys=bsd4-2 ;;
1252   pn-gould-bsd4.3* ) machine=gould     opsys=bsd4-3 ;;
1253   np1-gould-bsd* )   machine=gould-np1 opsys=bsd4-3 ;;
1254
1255   dnl Harris Night Hawk machines running CX/UX (a 5000 looks just like a 4000
1256   dnl as far as XEmacs is concerned).
1257   m88k-harris-cxux* )
1258     dnl Build needs to be different on 7.0 and later releases
1259     case "`uname -r`" in
1260        [[56]].[[0-9]] ) machine=nh4000 opsys=cxux  ;;
1261        [[7]].[[0-9]]  ) machine=nh4000 opsys=cxux7 ;;
1262     esac
1263     NON_GNU_CPP="/lib/cpp"
1264   ;;
1265   dnl Harris ecx or gcx running CX/UX (Series 1200, Series 3000)
1266   m68k-harris-cxux* ) machine=nh3000 opsys=cxux ;;
1267   dnl Harris power pc NightHawk running Power UNIX (Series 6000)
1268   powerpc-harris-powerunix ) machine=nh6000 opsys=powerunix NON_GNU_CPP="cc -Xo -E -P" ;;
1269
1270   dnl Honeywell XPS100
1271   xps*-honeywell-sysv* ) machine=xps100 opsys=usg5-2 ;;
1272
1273   dnl HP 9000 series 200 or 300
1274   m68*-hp-bsd* ) machine=hp9000s300 opsys=bsd4-3 ;;
1275
1276   dnl HP-UX
1277   *-hp-hpux* )
1278     dnl Figure out machine and opsys orthogonally
1279     case "$canonical" in
1280       m68*  ) machine=hp9000s300 ;;
1281       hppa* ) machine=hp800      ;;
1282     esac
1283
1284     case "$canonical" in
1285       *-hp-hpux7*  )  opsys=hpux   ;;
1286       *-hp-hpux8*  )  opsys=hpux8  ;;
1287       *-hp-hpux9*  )  opsys=hpux9  ;;
1288       *-hp-hpux10* )  opsys=hpux10 ;;
1289       *-hp-hpux11* )  opsys=hpux11 ;;
1290       *            )  opsys=hpux   ;;
1291     esac
1292
1293     dnl HP has a broken "strcat"
1294     case "$opsys" in hpux9 | hpux10 ) XE_ADD_OBJS(strcat.o) ;; esac
1295
1296     if test "$opsys" = "hpux10" -o "$opsys" = "hpux11"; then \
1297         ansi_flag="-Ae"; else ansi_flag="-Aa"; fi
1298     NON_GNU_CC="cc $ansi_flag" NON_GNU_CPP="cc $ansi_flag -E"
1299
1300     case "$canonical" in *-hp-hpux*shr* ) opsys="${opsys}-shr" ;; esac
1301   ;;
1302
1303   dnl Orion machines
1304   orion-orion-bsd*   ) machine=orion    opsys=bsd4-2 ;;
1305   clipper-orion-bsd* ) machine=orion105 opsys=bsd4-2 ;;
1306
1307   dnl IBM machines
1308   i[[3-9]]86-ibm-aix1.1* ) machine=ibmps2-aix opsys=usg5-2-2 ;;
1309   i[[3-9]]86-ibm-aix1.[[23]]* | i[[3-9]]86-ibm-aix* ) machine=ibmps2-aix opsys=usg5-3 ;;
1310   i370-ibm-aix*) machine=ibm370aix opsys=usg5-3 ;;
1311   romp-ibm-aos*    ) opsys=bsd4-3 ;;
1312   romp-ibm-bsd*    ) opsys=bsd4-3 ;;
1313   romp-ibm-mach*   ) opsys=mach-bsd4-3 ;;
1314
1315   dnl Integrated Solutions "Optimum V"
1316   m68*-isi-bsd4.2* ) machine=isi-ov opsys=bsd4-2 ;;
1317   m68*-isi-bsd4.3* ) machine=isi-ov opsys=bsd4-3 ;;
1318
1319   dnl Intel 386 machines where we do care about the manufacturer
1320   i[[3-9]]86-intsys-sysv* ) machine=is386 opsys=usg5-2-2 ;;
1321
1322   dnl Prime EXL
1323   i[[3-9]]86-prime-sysv* ) machine=i386 opsys=usg5-3 ;;
1324
1325   dnl Sequent Symmetry running Dynix
1326   i[[3-9]]86-sequent-bsd* ) machine=symmetry opsys=bsd4-3 ;;
1327
1328   dnl Sequent Symmetry running DYNIX/ptx
1329   i[[3-9]]86-sequent-ptx* ) machine=sequent-ptx opsys=ptx NON_GNU_CPP="/lib/cpp" ;;
1330
1331   dnl Unspecified sysv on an ncr machine defaults to svr4.2.
1332   dnl (Plain usg5-4 does not turn on POSIX signals, which we need.)
1333   i[[3-9]]86-ncr-sysv* ) machine=ncr386 opsys=usg5-4-2 ;;
1334
1335   dnl Intel Paragon OSF/1
1336   i860-intel-osf1* ) machine=paragon opsys=osf1 NON_GNU_CPP=/usr/mach/lib/cpp ;;
1337
1338   dnl Intel 860
1339   i860-*-sysv4* ) machine=i860 opsys=usg5-4 NON_GNU_CC="/bin/cc" NON_GNU_CPP="/usr/ccs/lib/cpp" ;;
1340
1341   dnl Masscomp machines
1342   m68*-masscomp-rtu* ) machine=masscomp opsys=rtu ;;
1343
1344   dnl Megatest machines
1345   m68*-megatest-bsd* ) machine=mega68 opsys=bsd4-2 ;;
1346
1347   dnl Workstations sold by MIPS
1348   dnl This is not necessarily all workstations using the MIPS processor -
1349   dnl Irises are produced by SGI, and DECstations by DEC.
1350   mips-mips-usg* ) machine=mips4 ;;
1351   mips-mips-riscos4 )
1352     machine=mips4
1353     NON_GNU_CC="cc -systype bsd43"
1354     NON_GNU_CPP="cc -systype bsd43 -E"
1355     case "$canonical" in
1356       mips-mips-riscos4* ) opsys=bsd4-3  ;;
1357       mips-mips-riscos5* ) opsys=riscos5 ;;
1358     esac
1359   ;;
1360   mips-mips-bsd* ) machine=mips opsys=bsd4-3 ;;
1361   mips-mips-*    ) machine=mips opsys=usg5-2-2 ;;
1362
1363   dnl NeXT
1364   m68*-next-* | m68k-*-nextstep* ) machine=m68k opsys=nextstep ;;
1365
1366   dnl The complete machine from National Semiconductor
1367   ns32k-ns-genix* ) machine=ns32000 opsys=usg5-2 ;;
1368
1369   dnl NCR machines
1370   m68*-ncr-sysv2* | m68*-ncr-sysvr2* ) machine=tower32   opsys=usg5-2-2 ;;
1371   m68*-ncr-sysv3* | m68*-ncr-sysvr3* ) machine=tower32v3 opsys=usg5-3 ;;
1372
1373   dnl Nixdorf Targon 31
1374   m68*-nixdorf-sysv* ) machine=targon31 opsys=usg5-2-2 ;;
1375
1376   dnl Nu (TI or LMI)
1377   m68*-nu-sysv* ) machine=nu opsys=usg5-2 ;;
1378
1379   dnl Plexus
1380   m68*-plexus-sysv* ) machine=plexus opsys=usg5-2 ;;
1381
1382   dnl Pyramid machines
1383   pyramid-pyramid-bsd* ) machine=pyramid opsys=bsd4-2 ;;
1384
1385   dnl Sequent Balance
1386   ns32k-sequent-bsd4.2* ) machine=sequent opsys=bsd4-2 ;;
1387   ns32k-sequent-bsd4.3* ) machine=sequent opsys=bsd4-3 ;;
1388
1389   dnl Siemens Nixdorf
1390   mips-siemens-sysv* | mips-sni-sysv*)
1391     machine=mips-siemens opsys=usg5-4
1392     NON_GNU_CC=/usr/ccs/bin/cc
1393     NON_GNU_CPP=/usr/ccs/lib/cpp
1394   ;;
1395
1396   dnl NEC
1397   mips-nec-sysv*)
1398     machine=mips-nec
1399     NON_GNU_CC=/usr/ccs/bin/cc
1400     NON_GNU_CPP=/usr/ccs/lib/cpp
1401   ;;
1402
1403   dnl Silicon Graphics machines
1404   dnl Iris 2500 and Iris 2500 Turbo (aka the Iris 3030)
1405   m68*-sgi-iris3.5* ) machine=irist opsys=iris3-5 ;;
1406   m68*-sgi-iris3.6* | m68*-sgi-iris*) machine=irist opsys=iris3-6 ;;
1407   dnl Iris 4D
1408   mips-sgi-irix3.*    ) opsys=irix3-3 ;;
1409   mips-sgi-irix4.*    ) opsys=irix4-0 ;;
1410   mips-sgi-irix6*     ) opsys=irix6-0 ;;
1411   mips-sgi-irix5.1*   ) opsys=irix5-1 ;;
1412   mips-sgi-irix5.2*   ) opsys=irix5-2 ;;
1413   mips-sgi-irix5.*    ) opsys=irix5-3 ;;
1414   mips-sgi-irix*      ) opsys=irix5-0 ;;
1415
1416   dnl SONY machines
1417   *-sony-newsos[[34]]* | *-sony-news[[34]]* ) opsys=bsd4-3 ;;
1418   *-sony-news* ) opsys=newsos5 ;;
1419
1420   dnl Stride
1421   m68*-stride-sysv* ) machine=stride opsys=usg5-2 ;;
1422
1423   dnl Suns
1424   *-*-solaris* | *-*-sunos* | *-sun-mach* | *-sun-bsd* )
1425     dnl Hardware type
1426     case "$canonical" in
1427       m68*-sunos1* )             machine=sun1     ;;
1428       m68*-sunos2* )             machine=sun2     ;;
1429       m68* )                     machine=sun3     ;;
1430       i*86*-sun-sunos[[34]]* )   machine=sun386   ;;
1431       i*86-*-* )                 machine=intel386 ;;
1432       rs6000* )                  machine=rs6000   ;;
1433     esac
1434
1435     dnl Make $canonical even more so.
1436     case "$canonical" in *-sunos5*)
1437       canonical=`echo $canonical | sed -e s/sunos5/solaris2/`;;
1438     esac
1439
1440     dnl On SunOS 4, use /usr/lib/cpp, sans dynodump, /bin/ranlib
1441     dnl On SunOS 5, use cc -E,        need dynodump, RANLIB not needed
1442     dnl But, SunOS 5.6 no longer needs dynodump because it has a similar
1443     dnl function integrated.
1444     case "$canonical" in
1445       *-sunos4* )
1446         #test -f /usr/lib/cpp     && NON_GNU_CPP=/usr/lib/cpp ;;
1447         : ;;
1448       *-solaris2* )
1449         #test -f /usr/ccs/lib/cpp && NON_GNU_CPP=/usr/ccs/lib/cpp
1450         RANLIB=':' ;;
1451     esac
1452
1453     case "$canonical" in
1454       *-solaris*          )
1455         opsys=sol2
1456         os_release=`uname -r | sed -e 's/^\([[0-9]]\)\.\([[0-9]]\).*/\1\2/'`
1457         AC_DEFINE_UNQUOTED(OS_RELEASE, $os_release) ;;
1458
1459       dnl The last Sun386 ran 4.0.
1460       i*86-*-sunos4*      ) opsys=sunos4-0      ;;
1461       *-sunos4.0*         ) opsys=sunos4-0      ;;
1462       *-sunos4.1.2*       ) opsys=sunos4-1-2    ;;
1463       *-sunos4.1.3*       ) opsys=sunos4-1-3    ;;
1464       *-sunos4.1.[[4-9]]* ) opsys=sunos4-1-4    ;;
1465       *-sunos4* | *-sunos ) opsys=sunos4-1      ;;
1466       *-mach*             ) opsys=mach-bsd4-3   ;;
1467       *                   ) opsys=bsd4-2        ;;
1468     esac
1469
1470     case "$canonical" in *-sunos4*shr* ) opsys="${opsys}-shr" ;; esac
1471
1472     dnl Watch out for a compiler guaranteed not to work.
1473     test "$opsys $CC" = "sol2 /usr/ucb/cc" && CC=""
1474   ;;
1475
1476   dnl Tadpole 68k
1477   m68*-tadpole-sysv* ) machine=tad68k opsys=usg5-3 ;;
1478
1479   dnl Tahoe machines
1480   tahoe-tahoe-bsd4.2* ) machine=tahoe opsys=bsd4-2 ;;
1481   tahoe-tahoe-bsd4.3* ) machine=tahoe opsys=bsd4-3 ;;
1482
1483   dnl Tandem Integrity S2
1484   mips-tandem-sysv* ) machine=tandem-s2 opsys=usg5-3 ;;
1485
1486   dnl Tektronix XD88
1487   m88k-tektronix-sysv3* ) machine=tekxd88 opsys=usg5-3 ;;
1488
1489   dnl Tektronix 16000 box (6130?)
1490   ns16k-tektronix-bsd* ) machine=ns16000 opsys=bsd4-2 ;;
1491   dnl Tektronix 4300
1492   dnl src/m/tek4300.h hints that this is a m68k machine.
1493   m68*-tektronix-bsd* ) machine=tek4300 opsys=bsd4-3 ;;
1494
1495   dnl Titan P2 or P3
1496   titan-titan-sysv* ) machine=titan opsys=usg5-3 ;;
1497
1498   dnl Ustation E30 (SS5E)
1499   m68*-unisys-uniplus* ) machine=ustation opsystem=unipl5-2 ;;
1500
1501   dnl Vaxen.
1502   vax-dec-* )
1503     case "$canonical" in
1504       *-sysv[[01]]* | *-sysvr[[01]]* )  opsys=usg5-0 ;;
1505       *-sysv2* | *-sysvr2* )            opsys=usg5-2 ;;
1506       *-mach* )                         opsys=mach-bsd4-3 ;;
1507     esac
1508   ;;
1509
1510   dnl Whitechapel MG1
1511   ns16k-whitechapel-* ) machine=mg1 ;;
1512
1513   dnl Wicat
1514   m68*-wicat-sysv* ) machine=wicat opsys=usg5-2 ;;
1515
1516   dnl Intel 386 machines where we do not care about the manufacturer
1517   i[[3-9]]86-*-* )
1518     machine=intel386
1519     case "$canonical" in
1520       *-isc1.* | *-isc2.[[01]]* ) opsys=386-ix ;;
1521       *-isc2.2* )               opsys=isc2-2 ;;
1522       *-isc4.0* )               opsys=isc4-0 ;;
1523       *-isc4.* )                opsys=isc4-1
1524                                 GCC_TEST_OPTIONS=-posix
1525                                 NON_GCC_TEST_OPTIONS=-Xp
1526                                 ;;
1527       *-isc* )                  opsys=isc3-0 ;;
1528       *-esix5* )                opsys=esix5r4 NON_GNU_CPP=/usr/lib/cpp ;;
1529       *-esix* )                 opsys=esix ;;
1530       *-mach* )                 opsys=mach-bsd4-3 ;;
1531       *-xenix* )                opsys=xenix ;;
1532       *-sco3.2v4* )             opsys=sco4 NON_GNU_CPP=/lib/cpp  ;;
1533       *-bsd386* | *-bsdi1* )    opsys=bsd386 ;;
1534       *-bsdi4* )                opsys=bsdos4 ;;
1535       *-bsdi3* )                opsys=bsdos3 ;;
1536       *-bsdi2.1* )              opsys=bsdos2-1 ;;
1537       *-bsdi2* )                opsys=bsdos2 ;;
1538       *-sco3.2v5* )             opsys=sco5 ;;
1539       *-sysv5* )                opsys=sco7 ;;
1540       *-386bsd* )               opsys=386bsd ;;
1541       *-freebsd* )              opsys=freebsd ;;
1542       *-nextstep* )             opsys=nextstep ;;
1543       *-pc-cygwin* )            opsys=cygwin32 ;;
1544       *-pc-mingw* )             opsys=mingw32 ;
1545                                 test -z "$with_tty" && with_tty="no";;
1546       dnl Otherwise, we fall through to the generic opsys code at the bottom.
1547     esac
1548   ;;
1549
1550   dnl Linux/68k
1551   m68k-*-linux* ) machine=m68k opsys=linux ;;
1552
1553 esac
1554
1555 dnl Initialize machine from $canonical if not in our database above.
1556 test -z "$machine" && machine=`echo $canonical | sed 's/-.*$//'`
1557
1558 dnl Initialize opsys from `uname -s` if not in our database above.
1559 test -z "$opsys"   && opsys=`uname -s | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
1560
1561 dnl Use configure-time autodetection if s&m not available
1562 if test -r "${srcdir}/src/m/${machine}.h"; then
1563   machfile="m/${machine}.h"
1564   AC_DEFINE_UNQUOTED(config_machfile, "$machfile")
1565 else
1566   echo "XEmacs has no builtin knowledge of \`$machine' machines."
1567   echo "Using configure-time autodetection only."
1568 fi
1569
1570 if test -r "${srcdir}/src/s/${opsys}.h"; then
1571   opsysfile="s/${opsys}.h"
1572   AC_DEFINE_UNQUOTED(config_opsysfile, "$opsysfile")
1573 else
1574   echo "XEmacs has no builtin knowledge of \`$opsys' operating systems."
1575   echo "Using configure-time autodetection only."
1576 fi
1577
1578
1579 if test -z "$dynamic"; then
1580   case "$opsys" in
1581     hpux* | sunos4* ) dynamic=no ;;
1582     *) dynamic=yes ;;
1583   esac
1584 fi
1585 if test "$dynamic" = "yes"; then
1586   case "$opsys" in
1587     hpux* | sunos4* | sco5 ) opsys="${opsys}-shr" ;;
1588     decosf* ) ld_call_shared="-call_shared" ;;
1589   esac
1590 else dnl "$dynamic" = "no"
1591   case "$opsys" in
1592     sol2 )
1593       echo "Static linking is not supported on Solaris 2."
1594       echo "Rerun configure without specifying --dynamic=no."
1595       exit 1 ;;
1596     linux   ) ld_call_shared="-Bstatic" ;;
1597     decosf* ) ld_call_shared="-non_shared" ;;
1598   esac
1599 fi
1600
1601 dnl Use xlc by default on AIX
1602 case "$opsys" in aix*) NON_GNU_CC=xlc ;; esac
1603
1604 stack_trace_eye_catcher=`echo ${PROGNAME}_${version}_${canonical} | sed 'y/.-/__/'`
1605 AC_DEFINE_UNQUOTED(STACK_TRACE_EYE_CATCHER, $stack_trace_eye_catcher)
1606
1607 dnl --------------------------------------------------
1608 dnl Determine the compiler, set up for feature testing
1609 dnl --------------------------------------------------
1610
1611 dnl Sun Development environment support
1612 test "$with_sparcworks" = "yes" && with_workshop=yes # compatibility alias
1613 XE_CHECK_FEATURE_DEPENDENCY(workshop, tooltalk)
1614 if test "$with_workshop" = "yes"; then
1615   AC_DEFINE(SUNPRO)
1616   XE_ADD_OBJS(sunpro.o)
1617 fi
1618
1619 if test "$with_clash_detection" != "no"; then
1620   AC_DEFINE(CLASH_DETECTION)
1621   XE_ADD_OBJS(filelock.o)
1622 fi
1623
1624 dnl Choose a compiler from (in order)
1625 dnl --compiler, env var CC, with_gcc=no && ${NON_GNU_CC:-cc}, AC_PROG_CC
1626 test -n "$compiler" && CC="$compiler"
1627 if test "$with_gcc" = "no"; then dnl Try to find a non-gcc compiler
1628   case "$CC" in "" | *gcc* ) CC="${NON_GNU_CC-cc}" ;; esac
1629 fi
1630
1631 dnl If we don't set CFLAGS here, AC_PROG_CC will set it.
1632 dnl But we know better what's good for us, so we do our own
1633 dnl computation of real CFLAGS later.
1634 dnl --cflags overrides environment variable CFLAGS
1635 test "${cflags-unset}" != unset && CFLAGS="$cflags"
1636 if test "${CFLAGS-unset}" != unset
1637   then cflags_specified=yes;
1638   else cflags_specified=no;
1639 fi
1640
1641 xe_save_CFLAGS="$CFLAGS"
1642
1643 AC_PROG_CC dnl Autoconf has its own magic for compiler autodetection
1644
1645 dnl Retry using random guesswork if AC_PROG_CC got it wrong...
1646 if   test "$with_gcc" = "no"  -a "$GCC" = "yes"; then
1647   CC=${NON_GNU_CC-cc}
1648   AC_PROG_CC
1649 elif test "$with_gcc" = "yes" -a "$GCC" != "yes" ; then
1650   CC=gcc
1651   AC_PROG_CC
1652 fi
1653 CFLAGS="$xe_save_CFLAGS"
1654
1655 dnl Figure out what C preprocessor to use.
1656
1657 dnl On Sun systems, people sometimes set up the variable CPP
1658 dnl with a value that is a directory, not an executable at all.
1659 dnl Detect that case, and ignore that value.
1660 test -n "$CPP" -a -d "$CPP" && CPP=
1661
1662 test -n "$NON_GNU_CPP" -a "$GCC" != "yes" -a -z "$CPP" && CPP="$NON_GNU_CPP"
1663
1664 AC_PROG_CPP
1665
1666 dnl --------------------------------------------------------------------
1667 dnl Compiler feature macros
1668 dnl --------------------------------------------------------------------
1669
1670 AC_AIX dnl Defines _ALL_SOURCE on AIX.
1671
1672 dnl We want feature macros defined here *and* in config.h.in, so that
1673 dnl the compilation environment at configure time and compile time agree.
1674
1675 AC_MSG_CHECKING(for GNU libc)
1676 AC_TRY_COMPILE([#include <features.h>],[
1677 #if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
1678 #error Not a GNU libc system :-(
1679 ******* ======= ******** &&&&&&&&
1680 #endif
1681 ], have_glibc=yes, have_glibc=no)
1682 AC_MSG_RESULT($have_glibc)
1683 dnl I'm tired of pop being broken with GLIBC -slb
1684 dnl Well. then why not fix fucking pop?
1685 test "$have_glibc" = "yes" && AC_DEFINE(_GNU_SOURCE)
1686
1687 dnl We'd like to use vendor extensions, where available.
1688 dnl We'd like to use functions from the latest Unix98 standards.
1689 dnl See http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html
1690 case "$opsys" in
1691   sol2)
1692    AC_DEFINE(__EXTENSIONS__)
1693    dnl Solaris 2 before 2.5 had some bugs with feature test macro interaction.
1694    if test "$os_release" -ge 55; then
1695      AC_DEFINE(_XOPEN_SOURCE,500)
1696      AC_DEFINE(_XOPEN_SOURCE_EXTENDED)
1697    fi ;;
1698   linux)
1699     AC_DEFINE(_POSIX_C_SOURCE,199506L)
1700     AC_DEFINE(_XOPEN_SOURCE,500)
1701     AC_DEFINE(_XOPEN_SOURCE_EXTENDED)
1702     ;;
1703 esac
1704
1705 dnl Identify compilers to enable compiler-specific hacks.
1706 dnl Add support for other compilers HERE!
1707 dnl GCC is already identified elsewhere.
1708 AC_TRY_RUN([int main () {
1709 #if defined __SUNPRO_C
1710 return 11;
1711 #elif defined __DECC
1712 return 12;
1713 #elif defined __USLC__ && defined __SCO_VERSION__
1714 return 13;
1715 #else
1716 return 0;
1717 #endif
1718 }], [],
1719 [case "$conftest_rc" in
1720   11) echo "You appear to be using the SunPro C compiler."; __SUNPRO_C=yes ;;
1721   12) echo "You appear to be using the DEC C compiler."   ; __DECC=yes ;;
1722   13) echo "You appear to be using the SCO C compiler."   ; __USLC__=yes ;;
1723 esac])
1724
1725
1726 dnl case "$canonical" in
1727 dnl   *-sun-sunos* ) test "$CPP" = "acc -E" && CPP="acc -E -Xs" ;;
1728 dnl esac
1729
1730 dnl --------------------------------------------------------------------
1731 dnl Extract some information from the operating system and machine files
1732 dnl --------------------------------------------------------------------
1733
1734 echo "Extracting information from the machine- and system-dependent headers..."
1735
1736 dnl It is not important that this name contain the PID; you cannot run
1737 dnl two configures in the same directory and have anything work
1738 dnl anyway.
1739 tempcname="conftest.c"
1740
1741 dnl CPP_to_sh(CPP_SYMBOL, SH_VAR, DEFAULT_VALUE)
1742 define([CPP_to_sh],
1743 [[#]ifndef [$1]
1744 [#]define [$1]ifelse([$3],,, [ "$3"])
1745 [#]endif
1746 configure___ [$2]=[$1]
1747 ])dnl CPP_to_sh
1748
1749 dnl CPP_boolean_to_sh(CPP_SYMBOL, SH_VAR)
1750 define([CPP_boolean_to_sh],
1751 [[#]ifdef [$1]
1752 configure___ [$2]=yes
1753 [#]else
1754 configure___ [$2]=no
1755 [#]endif
1756 ])dnl CPP_boolean_to_sh
1757
1758 cat > $tempcname < confdefs.h
1759 cat >> $tempcname <<EOF
1760 #define NOT_C_CODE
1761 #define C_SWITCH_SITE
1762 #define C_SWITCH_X_SITE
1763 #define LD_SWITCH_SITE
1764 #define LD_SWITCH_X_SITE
1765 #define LD_SWITCH_X_SITE_AUX
1766 #define OS_RELEASE $os_release
1767
1768 #ifdef config_opsysfile
1769 #include "$srcdir/src/$opsysfile"
1770 #endif
1771
1772 #ifdef config_machfile
1773 #include "$srcdir/src/$machfile"
1774 #endif
1775
1776 CPP_to_sh(LIBS_MACHINE, libs_machine)
1777 CPP_to_sh(LIBS_SYSTEM,  libs_system)
1778 CPP_to_sh(LIBS_TERMCAP, libs_termcap)
1779 CPP_to_sh(LIB_STANDARD, libs_standard)
1780
1781 CPP_to_sh(OBJECTS_MACHINE, objects_machine)
1782 CPP_to_sh(OBJECTS_SYSTEM,  objects_system)
1783
1784 CPP_to_sh(C_SWITCH_MACHINE,   c_switch_machine)
1785 CPP_to_sh(C_SWITCH_SYSTEM,    c_switch_system)
1786
1787 CPP_to_sh(LD_SWITCH_MACHINE,  ld_switch_machine)
1788 CPP_to_sh(LD_SWITCH_SYSTEM,   ld_switch_system)
1789
1790 CPP_to_sh(UNEXEC, unexec, unexec.o)
1791
1792 CPP_to_sh(LD_SWITCH_SHARED, ld_switch_shared, -c)
1793
1794 #define ORDINARY_LD "\$(CC) \$(CFLAGS)"
1795 configure___ ordinary_ld=ORDINARY_LD
1796
1797 #ifdef ORDINARY_LINK
1798 #define LD ORDINARY_LD
1799 #else /* no ORDINARY LINK */
1800 #ifdef COFF_ENCAPSULATE
1801 #define LD "\$(CC) -nostdlib"
1802 #else /* not COFF_ENCAPSULATE */
1803 #ifdef LINKER
1804 #define LD LINKER
1805 #else /* ! defined (LINKER) */
1806 #define LD "ld"
1807 #endif /* ! defined (LINKER) */
1808 #endif /* ! defined (COFF_ENCAPSULATE) */
1809 #endif /* not ORDINARY_LINK */
1810 configure___ ld=LD
1811
1812 CPP_to_sh(LIB_GCC, lib_gcc)
1813 CPP_to_sh(LD_TEXT_START_ADDR, ld_text_start_addr)
1814
1815 #if ! defined (ORDINARY_LINK) && !defined (START_FILES)
1816 #ifdef NO_REMAP
1817 #ifdef COFF_ENCAPSULATE
1818 #define START_FILES "pre-crt0.o /usr/local/lib/gcc-crt0.o"
1819 #else /* ! defined (COFF_ENCAPSULATE) */
1820 #define START_FILES "pre-crt0.o /lib/crt0.o"
1821 #endif /* ! defined (COFF_ENCAPSULATE) */
1822 #else /* ! defined (NO_REMAP) */
1823 #define START_FILES "ecrt0.o"
1824 #endif /* ! defined (NO_REMAP) */
1825 #endif /* no ORDINARY_LINK */
1826 #ifndef START_FILES
1827 #define START_FILES
1828 #endif
1829 configure___ start_files=START_FILES
1830
1831 CPP_boolean_to_sh(ORDINARY_LINK, ordinary_link)
1832 CPP_boolean_to_sh(SYSTEM_MALLOC, system_malloc)
1833 CPP_boolean_to_sh(TERMINFO, have_terminfo)
1834 dnl The MAIL_USE_xxx variables come from the s&m headers
1835 CPP_boolean_to_sh(MAIL_USE_FLOCK, mail_use_flock)
1836 CPP_boolean_to_sh(MAIL_USE_LOCKF, mail_use_lockf)
1837 CPP_boolean_to_sh(MAIL_USE_LOCKING, mail_use_locking)
1838 CPP_boolean_to_sh(HAVE_WIN32_PROCESSES, win32_processes)
1839 EOF
1840
1841 dnl The value of CPP is a quoted variable reference, so we need to do this
1842 dnl to get its actual value...
1843 CPP=`eval "echo $CPP $CPPFLAGS"`
1844 define(TAB, [   ])dnl
1845 changequote(, )dnl
1846 eval `$CPP -Isrc $tempcname \
1847         | sed -n -e "s/[ TAB]*=[ TAB\"]*/='/" -e "s/[ TAB\"]*\$/'/" -e "s/^configure___//p"`
1848 changequote([, ])dnl
1849
1850 rm $tempcname
1851
1852 if test "$pdump" = "yes"; then
1853   ordinary_link="yes"
1854   ld="${ordinary_ld}"
1855   start_files=
1856   libs_standard=
1857   unexec=
1858   lib_gcc=
1859 fi
1860
1861 dnl For debugging...
1862 test "$extra_verbose" = "yes" && \
1863   PRINT_VAR(libs_machine libs_system libs_termcap libs_standard
1864   objects_machine objects_system c_switch_machine c_switch_system
1865   ld_switch_machine ld_switch_system unexec ld_switch_shared
1866   ld lib_gcc ld_text_start_addr start_files ordinary_link
1867   have_terminfo mail_use_flock mail_use_lockf) && echo ""
1868
1869 dnl Pick up mingw include path
1870 dnl We only cope with headers in mingw, not mingw32: no previous version of
1871 dnl XEmacs supported mingw and cygnus have made this incompatible change
1872 dnl so we just go with the flow.
1873 case "$opsys" in mingw* | cygwin*)
1874   cygwin_include=`eval "gcc -print-file-name=libc.a"` ;
1875   cygwin_include=`eval "dirname $cygwin_include"` ;
1876   cygwin_include="-I$cygwin_include/../include" ;
1877   extra_includes="$cygwin_include/mingw $cygwin_include" ;
1878   case "$opsys" in mingw*)
1879     XE_APPEND($extra_includes, c_switch_system) ;;
1880   esac
1881   ;;
1882 esac
1883
1884 dnl Non-ordinary link usually requires -lc
1885 test "$ordinary_link" = "no" -a -z "$libs_standard" && libs_standard="-lc"
1886
1887 dnl -----------------------
1888 dnl Compiler-specific hacks
1889 dnl -----------------------
1890
1891 dnl DEC C `-std1' means ANSI C mode
1892 test "$__DECC" = "yes" && XE_APPEND(-std1, c_switch_site)
1893
1894 dnl Some versions of SCO native compiler need -Kalloca
1895 if test "$__USLC__" = yes; then
1896   AC_MSG_CHECKING(for whether the -Kalloca compiler flag is needed)
1897   need_kalloca=no
1898   AC_TRY_LINK([], [void *x = alloca(4);], [:], [
1899     xe_save_c_switch_system="$c_switch_system"
1900     c_switch_system="$c_switch_system -Kalloca"
1901     AC_TRY_LINK([], [void *x = alloca(4);], [ need_kalloca=yes ])
1902     c_switch_system="$xe_save_c_switch_system"])
1903   AC_MSG_RESULT($need_kalloca)
1904   test "$need_kalloca" = "yes" && XE_APPEND(-Kalloca,c_switch_system)
1905 fi
1906
1907 dnl Calculate value of CFLAGS:
1908 dnl Use either command line flag, environment var, or autodetection
1909 if test "$cflags_specified" = "no"; then
1910   dnl Following values of CFLAGS are known to work well.
1911   dnl Should we take debugging options into consideration?
1912   if   test "$GCC" = "yes"; then
1913     CFLAGS="-g -O3 -Wall -Wno-switch -Winline -Wmissing-prototypes"
1914     dnl Yuck, bad compares have been worth at least 3 crashes!
1915     CFLAGS="$CFLAGS -Wsign-compare"
1916     dnl You get five zillion shadowing warnings with g++.
1917     dnl Even with gcc, -Wshadow is questionable because of its complaints
1918     dnl about parameters with the same names as global functions.
1919     if test "$xemacs_compiler" != "g++"; then
1920       CFLAGS="$CFLAGS -Wshadow"
1921     fi
1922     dnl glibc is intentionally not `-Wpointer-arith'-clean.
1923     dnl Ulrich Drepper has rejected patches to fix the glibc header files.
1924     test "$have_glibc" != "yes" && CFLAGS="$CFLAGS -Wpointer-arith"
1925     dnl I'm not convinced this is a good idea any more. -sb
1926     dnl test "$opsys $machine" = "linux intel386" && \
1927     dnl CFLAGS="$CFLAGS -fno-strength-reduce -malign-loops=2 -malign-jumps=2 -malign-functions=2"
1928   elif test "$__SUNPRO_C" = "yes"; then
1929     case "$opsys" in
1930       sol2    ) CFLAGS="-v -xO4" ;;
1931       sunos4* ) CFLAGS="-xO2";;
1932     esac
1933   elif test "$__DECC" = "yes"; then
1934     CFLAGS="-O3"
1935   elif test "$CC" = "xlc"; then
1936     CFLAGS="-g -O3 -qstrict -qnoansialias -qlibansi -qinfo -qro -qmaxmem=20000"
1937   dnl ### Add optimal CFLAGS support for other compilers HERE!
1938   else
1939     CFLAGS="-O" ;dnl The only POSIX-approved flag
1940   fi
1941 fi
1942
1943 dnl Search for GCC specific build problems we know about
1944 if test "$GCC" = "yes"; then
1945 AC_MSG_CHECKING(for buggy gcc versions)
1946 GCC_VERSION=`$CC --version`
1947 case `uname -s`:`uname -m`:$GCC_VERSION in
1948         dnl egcs 2.90.21 (egcs-1.00 release)
1949         dnl egcs 2.90.29 (egcs-1.0.3 release)
1950     *:sun4*:2.8.1|*:sun4*:egcs-2.90.*)
1951         dnl Don't use -O2 with gcc 2.8.1 and egcs 1.0 under SPARC architectures
1952         dnl without also using `-fno-schedule-insns'.
1953         case "$CFLAGS" in
1954             *-O2*|*-O3*)
1955                 case "$CFLAGS" in
1956                     *-fno-schedule-insns*) ;;
1957                     *)
1958                         AC_MSG_RESULT(yes)
1959                         AC_MSG_WARN(Don't use -O2 with gcc 2.8.1 and egcs 1.0 under SPARC architectures)
1960                         AC_MSG_WARN(without also using -fno-schedule-insns.)
1961                         AC_MSG_ERROR(Aborting due to known problem)
1962                         ;;
1963                 esac
1964                 ;;
1965         esac
1966         ;;
1967         dnl egcs-2.91.57 (egcs-1.1 release)
1968         dnl egcs-2.91.66 (egcs-1.1.2 release)
1969     Linux:alpha:egcs-2.91.*)
1970         AC_MSG_RESULT(yes)
1971         AC_MSG_WARN(There have been reports of egcs-1.1 not compiling XEmacs correctly on)
1972         AC_MSG_WARN(Alpha Linux.  There have also been reports that egcs-1.0.3a is O.K.)
1973         AC_MSG_ERROR(Aborting due to known problem)
1974         ;;
1975     *:i*86*:2.7.2*)
1976         case "$CFLAGS" in
1977             *-O2*|*-O3*)
1978                 case "$GCC_VERSION" in
1979                     2.7.2)
1980                         case "$CFLAGS" in
1981                             *-fno-strength-reduce*) ;;
1982                             *)
1983                                 AC_MSG_RESULT(yes)
1984                                 AC_MSG_WARN(Don't use -O2 with gcc 2.7.2 under Intel/XXX without also using)
1985                                 AC_MSG_WARN(-fno-strength-reduce.)
1986                                 AC_MSG_ERROR(Aborting due to known problem)
1987                                 ;;
1988                         esac
1989                         ;;
1990                 esac
1991                 case "$CFLAGS" in
1992                  *-fno-caller-saves*) ;;
1993                  *)
1994                     AC_MSG_RESULT(yes)
1995                     AC_MSG_WARN(Don't use -O2 with gcc 2.7.2 under Intel/XXX without also using)
1996                     AC_MSG_WARN(-fno-caller-saves.)
1997                     AC_MSG_ERROR(Aborting due to known problem)
1998                     ;;
1999                 esac
2000                 ;;
2001         esac
2002         ;;
2003 esac
2004 AC_MSG_RESULT(no)
2005 fi
2006
2007 dnl GNU ld now defaults to combreloc, which screws up unexec, but not pdump.
2008 dnl Note that it's OK if the GNU style long option causes non-GNU ld to barf
2009 dnl a usage message, that's often good enough.  Please report it, though.
2010 dnl #### Should make this Solaris-friendly.
2011 dnl Link with -z nocombreloc for now.
2012 if test "$pdump" != "yes"; then
2013   AC_MSG_CHECKING(for \"-z nocombreloc\" linker flag)
2014   case "`ld --help 2>&1`" in
2015     *-z\ nocombreloc* ) AC_MSG_RESULT(yes)
2016       XE_PREPEND(-z nocombreloc, ld_switch_site) ;;
2017     *) AC_MSG_RESULT(no) ;;
2018   esac
2019 fi
2020
2021
2022 dnl Inform compiler that certain flags are meant for the linker
2023 dnl XE_PROTECT_LINKER_FLAGS(shell_var)
2024 define([XE_PROTECT_LINKER_FLAGS], [
2025 if test "$GCC" = "yes"; then
2026   set x $[$1]; shift; [$1]=""
2027   while test -n "[$]1"; do
2028     case [$]1 in
2029       -L  | -l  | -u               ) [$1]="$[$1] [$]1 [$]2"; shift ;;
2030       -L* | -l* | -u* | -Wl* | -pg ) [$1]="$[$1] [$]1" ;;
2031       -Xlinker* ) ;;
2032       * ) [$1]="$[$1] -Xlinker [$]1" ;;
2033     esac
2034     shift
2035   done
2036 fi])dnl
2037 XE_PROTECT_LINKER_FLAGS(ld_switch_system)
2038 XE_PROTECT_LINKER_FLAGS(ld_switch_machine)
2039 XE_PROTECT_LINKER_FLAGS(ld_switch_site)
2040 XE_PROTECT_LINKER_FLAGS(LDFLAGS)
2041 XE_PROTECT_LINKER_FLAGS(ld_call_shared)
2042
2043 dnl Add s&m-determined objects (including unexec) to link line
2044 test -n "$objects_machine" && XE_ADD_OBJS($objects_machine)
2045 test -n "$objects_system"  && XE_ADD_OBJS($objects_system)
2046 test -n "$unexec"          && test ! "$pdump" = "yes" && XE_ADD_OBJS($unexec)
2047 test "$pdump" = "yes" && XE_ADD_OBJS(dumper.o)
2048
2049 dnl Dynodump (Solaris 2.x, x<6)
2050 AC_MSG_CHECKING(for dynodump)
2051 if test "$unexec" != "unexsol2.o"; then
2052   AC_MSG_RESULT(no)
2053 else
2054   AC_MSG_RESULT(yes)
2055   AC_DEFINE(DYNODUMP)
2056   XE_APPEND(dynodump, MAKE_SUBDIR)
2057   XE_APPEND(dynodump, SRC_SUBDIR_DEPS)
2058   case "$machine" in
2059     sparc   ) dynodump_arch=sparc ;;
2060     *86*    ) dynodump_arch=i386  ;;
2061     powerpc ) dynodump_arch=ppc   ;;
2062   esac
2063   dnl Dynodump requires the system linker
2064   test "$GCC" = "yes" && XE_APPEND(-fno-gnu-linker, ld_switch_site)
2065 fi
2066
2067 dnl Feed s&m crud to src/Makefile
2068
2069 dnl Linux/powerpc needs the following magic for some reason
2070 test "$machine$opsys" = "powerpclinux" && start_flags="-T $srcdir/src/ppc.ldscript"
2071
2072 if test "$unexec" = "unexaix.o"; then
2073 dnl AIX needs various hacks to make static linking work.
2074   if   test "$dynamic" = "no"; then
2075   start_flags="-Wl,-bnso,-bnodelcsect"
2076   test "$GCC" = "yes" && start_flags="-B/bin/ ${start_flags}"
2077   for f in "/lib/syscalls.exp" "/lib/threads.exp"; do
2078     if test -r "$f"; then start_flags="${start_flags},-bI:${f}"; fi
2079   done
2080   for f in "/usr/lpp/X11/bin/smt.exp" "/usr/bin/X11/smt.exp"; do
2081     if test -r "$f"; then start_flags="${start_flags},-bI:${f}"; break; fi
2082   done
2083   AC_CHECK_LIB(C, terminateAndUnload, XE_APPEND(-lC, libs_system))
2084   fi
2085 elif test -n "$ld_text_start_addr"; then
2086   start_flags="-T $ld_text_start_addr -e __start"
2087 fi
2088 AC_SUBST(start_flags)
2089
2090 AC_SUBST(ld_switch_shared)
2091 AC_SUBST(start_files)
2092 if test "$ordinary_link" = "no" -a "$GCC" = "yes"; then
2093  test -z "$linker" &&  linker='$(CC) -nostdlib'
2094  test -z "$lib_gcc" && lib_gcc='`$(CC) -print-libgcc-file-name`'
2095 fi
2096 test "$GCC" != "yes" && lib_gcc=
2097 AC_SUBST(ld)
2098 AC_SUBST(lib_gcc)
2099
2100 dnl ---------------------------------------------------------------
2101 dnl Add site and system specific flags to compile and link commands
2102 dnl ---------------------------------------------------------------
2103
2104 dnl Allow use of either ":" or spaces for lists of directories
2105 define(COLON_TO_SPACE,
2106   [case "$[$1]" in *:* [)] [$1]="`echo '' $[$1] | sed -e 's/^ //' -e 's/:/ /g'`";; esac])dnl
2107
2108 dnl --site-libraries (multiple dirs)
2109 COLON_TO_SPACE(site_libraries)
2110 if test -n "$site_libraries"; then
2111   for arg in $site_libraries; do
2112     case "$arg" in
2113      -* ) ;;
2114      * ) test -d "$arg" || \
2115            XE_DIE("Invalid site library \`$arg': no such directory")
2116        arg="-L${arg}" ;;
2117     esac
2118     XE_APPEND($arg, ld_switch_site)
2119   done
2120 fi
2121
2122 dnl --site-includes (multiple dirs)
2123 COLON_TO_SPACE(site_includes)
2124 if test -n "$site_includes"; then
2125   for arg in $site_includes; do
2126     case "$arg" in
2127       -* ) ;;
2128       * ) test -d "$arg" || \
2129            XE_DIE("Invalid site include \`$arg': no such directory")
2130       arg="-I${arg}" ;;
2131     esac
2132     XE_APPEND($arg, c_switch_site)
2133   done
2134 fi
2135
2136 dnl --site-prefixes (multiple dirs)
2137 dnl --site-prefixes=dir1:dir2 is a convenient shorthand for
2138 dnl --site-libraries=dir1/lib:dir2/lib --site-includes=dir1/include:dir2/include
2139 dnl Site prefixes take precedence over the standard places, but not over
2140 dnl site-includes and site-libraries.
2141 COLON_TO_SPACE(site_prefixes)
2142 if test -n "$site_prefixes"; then
2143   for dir in $site_prefixes; do
2144     lib_dir="${dir}/lib"
2145     inc_dir="${dir}/include"
2146     if test ! -d "$dir"; then
2147       XE_DIE("Invalid site prefix \`$dir': no such directory")
2148     elif test ! -d "$lib_dir"; then
2149       XE_DIE("Invalid site prefix \`$dir': no such directory \`$lib_dir'")
2150     else
2151       if test -d "$inc_dir"; then
2152         XE_APPEND("-I$inc_dir", c_switch_site)
2153       fi
2154       XE_APPEND("-L$lib_dir", ld_switch_site)
2155     fi
2156   done
2157 fi
2158
2159 dnl GNU software installs by default into /usr/local/{include,lib}
2160 dnl if test -d "/usr/local/include" -a -d "/usr/local/lib"; then
2161 dnl   XE_APPEND("-L/usr/local/lib",    ld_switch_site)
2162 dnl   XE_APPEND("-I/usr/local/include", c_switch_site)
2163 dnl fi
2164
2165 dnl Extra system-specific library directories - please add to list
2166 for dir in "/usr/ccs/lib"; do
2167   test -d "$dir" && XE_APPEND(-L${dir}, ld_switch_system)
2168 done
2169
2170 dnl --site-runtime-libraries (multiple dirs)
2171 COLON_TO_SPACE(site_runtime_libraries)
2172 if test -n "$site_runtime_libraries"; then
2173   LD_RUN_PATH="`echo $site_runtime_libraries | sed -e 's/  */:/g'`"
2174   export LD_RUN_PATH
2175 fi
2176
2177 dnl Linux systems have dynamic runtime library directories listed in
2178 dnl /etc/ld.so.conf.  Since those are used at run time, it seems pretty
2179 dnl safe to use them at link time, and less controversial than forcing
2180 dnl the run-time to use the link-time libraries.  This also helps avoid
2181 dnl mismatches between the link-time and run-time libraries.
2182
2183 dnl #### Unfortunately, there are horrible libc4 and libc5 libraries
2184 dnl listed in /etc/ld.so.conf on some systems, and including them on
2185 dnl the link path leads to linking in utterly broken libc's.
2186 dnl There are many clever ways of approaching this problem,
2187 dnl but finding one that actually works...
2188
2189 dnl if test -z "$LD_RUN_PATH" -a -r "/etc/ld.so.conf"; then
2190 dnl   for dir in `cat /etc/ld.so.conf`; do
2191 dnl     test -d "$dir" && XE_APPEND(-L${dir}, ld_switch_system)
2192 dnl   done
2193 dnl   add_runtime_path=no
2194 dnl fi
2195
2196 dnl -------------------------------------
2197 dnl Compute runtime library path
2198 dnl -------------------------------------
2199
2200 if test -n "$add_runtime_path"; then :;
2201 elif test "$dynamic" = "no"; then add_runtime_path=no
2202 elif test -n "$LD_RUN_PATH"; then add_runtime_path=yes
2203 else case "$opsys" in
2204        sol2 | irix* | *bsd* | decosf* ) add_runtime_path=yes ;;
2205        * ) add_runtime_path=no ;;
2206      esac
2207 fi
2208
2209 if test "$add_runtime_path" = "yes"; then
2210   dnl Try to autodetect runtime library flag (usually -R),
2211   dnl and whether it works (or at least does no harm)
2212   AC_MSG_CHECKING("for runtime libraries flag")
2213   case "$opsys" in
2214     sol2 ) dash_r="-R" ;;
2215     decosf* | linux* | irix*) dash_r="-rpath " ;;
2216     *)
2217       dash_r=""
2218       for try_dash_r in "-R" "-R " "-rpath "; do
2219         xe_check_libs="${try_dash_r}/no/such/file-or-directory"
2220         XE_PROTECT_LINKER_FLAGS(xe_check_libs)
2221         AC_TRY_LINK(, , dash_r="$try_dash_r")
2222         xe_check_libs=""
2223         test -n "$dash_r" && break
2224       done ;;
2225   esac
2226   if test -n "$dash_r";
2227     then AC_MSG_RESULT("\"${dash_r}\"")
2228     else AC_MSG_RESULT(NONE)
2229   fi
2230 fi
2231
2232 xe_add_unique_runpath_dir='
2233   xe_add_p=yes
2234   for xe_dir in $runpath_dirs; do   dnl Uniquify
2235     test "$xe_dir" = "$xe_runpath_dir" && xe_add_p=no
2236   done
2237   if test "$xe_add_p" = "yes"; then
2238     test -n "$runpath" && runpath="${runpath}:"
2239     runpath="${runpath}${xe_runpath_dir}"
2240     runpath_dirs="$runpath_dirs $xe_runpath_dir"
2241   fi'
2242
2243
2244 dnl XE_ADD_RUNPATH_DIR(directory)
2245 define([XE_ADD_RUNPATH_DIR],[{
2246 xe_runpath_dir=$1
2247 dnl PRINT_VAR(ld_switch_site ld_switch_x_site runpath xe_runpath_dir LD_RUN_PATH xe_ldflags)
2248   test "$xe_runpath_dir" != "/lib"     -a \
2249         "$xe_runpath_dir" != "/usr/lib" -a \
2250         -n "`ls ${xe_runpath_dir}/*.s[[ol]] 2>/dev/null`" && \
2251   eval "$xe_add_unique_runpath_dir"
2252 }])dnl
2253
2254 dnl XE_COMPUTE_RUNPATH()
2255 define([XE_COMPUTE_RUNPATH],[
2256 if test "$add_runtime_path" = "yes" -a -n "$dash_r"; then
2257   dnl Remove runtime paths from current ld switches
2258   ld_switch_site=`echo   '' $ld_switch_site   | sed -e 's:^ ::' -e "s/$dash_r[[^ ]]*//g"`
2259   ld_switch_x_site=`echo '' $ld_switch_x_site | sed -e 's:^ ::' -e "s/$dash_r[[^ ]]*//g"`
2260   dnl PRINT_VAR(ld_switch_site ld_switch_x_site)
2261
2262   dnl Fix up Runtime path
2263   dnl If LD_RUN_PATH is set in environment, use that.
2264   dnl In this case, assume user has set the right value.
2265   runpath="" runpath_dirs=""
2266   if test -n "$LD_RUN_PATH"; then
2267     runpath="$LD_RUN_PATH"
2268   elif test "$GCC" = "yes"; then
2269     dnl Compute runpath from gcc's -v output
2270     ld_switch_run_save="$ld_switch_run"; ld_switch_run=""
2271     echo "int main(int argc, char *argv[[]]) {return 0;}" > conftest.c
2272     xe_runpath_link='${CC-cc} -o conftest -v $CFLAGS '"$xe_ldflags"' conftest.$ac_ext 2>&1 1>/dev/null'
2273     for arg in `eval "$xe_runpath_link" | grep ' -L'`; do
2274       case "$arg" in P,* | -L* | -R* )
2275         for dir in `echo '' "$arg" | sed -e 's:^ ::' -e 's/^..//' -e 'y/:/ /'`; do
2276           XE_ADD_RUNPATH_DIR("$dir")
2277         done ;;
2278       esac
2279     done
2280     ld_switch_run="$ld_switch_run_save"
2281     rm -f conftest*
2282   else
2283     dnl Add all directories with .so files to runpath
2284     for arg in $ld_switch_site $ld_switch_x_site; do
2285       case "$arg" in -L*) XE_ADD_RUNPATH_DIR(`echo '' "$arg" | sed -e 's:^ ::' -e 's/^-L//'`);; esac
2286     done
2287     dnl Sometimes /opt/SUNWdt/lib is the only installed Motif available
2288     if test "$opsys $need_motif" = "sol2 yes"; then
2289       xe_runpath_dir="/opt/SUNWdt/lib";
2290       eval "$xe_add_unique_runpath_dir";
2291     fi
2292   fi dnl Compute $runpath
2293
2294   if test -n "$runpath"; then
2295     ld_switch_run="${dash_r}${runpath}"
2296     XE_PROTECT_LINKER_FLAGS(ld_switch_run)
2297     test "$extra_verbose" = "yes" && echo "Setting runpath to $runpath"
2298   fi
2299 fi
2300 ])dnl
2301 XE_COMPUTE_RUNPATH()
2302
2303 dnl -----------------------------------
2304 dnl Do some misc autoconf-special tests
2305 dnl -----------------------------------
2306
2307 dnl Do the opsystem or machine files prohibit the use of the GNU malloc?
2308 dnl Assume not, until told otherwise.
2309 GNU_MALLOC=yes
2310 if test "$with_dlmalloc" != "no"; then
2311         doug_lea_malloc=yes
2312 else
2313         doug_lea_malloc=no
2314 fi
2315 after_morecore_hook_exists=yes
2316 AC_CHECK_FUNC(malloc_set_state, ,doug_lea_malloc=no)
2317 AC_MSG_CHECKING(whether __after_morecore_hook exists)
2318 AC_TRY_LINK([extern void (* __after_morecore_hook)();],[__after_morecore_hook = 0],
2319   [AC_MSG_RESULT(yes)],
2320   [AC_MSG_RESULT(no)
2321    after_morecore_hook_exists=no])
2322 if test "$system_malloc" = "yes" ; then
2323   GNU_MALLOC=no
2324   GNU_MALLOC_reason="
2325     - The GNU allocators don't work with this system configuration."
2326 elif test "$with_system_malloc" = "yes" ; then
2327   GNU_MALLOC=no
2328   GNU_MALLOC_reason="
2329     - User chose not to use GNU allocators."
2330 elif test "$with_debug_malloc" = "yes" ; then
2331   GNU_MALLOC=no
2332   GNU_MALLOC_reason="
2333     - User chose to use Debugging Malloc."
2334 fi
2335
2336 if test "$doug_lea_malloc" = "yes" -a "$GNU_MALLOC" = "yes" ; then
2337   GNU_MALLOC_reason="
2338     - Using Doug Lea's new malloc from the GNU C Library."
2339   AC_DEFINE(DOUG_LEA_MALLOC)
2340   if test "$after_morecore_hook_exists" = "no" ; then
2341     GNU_MALLOC_reason="
2342     - Using Doug Lea's new malloc from the Linux C Library."
2343     AC_DEFINE(_NO_MALLOC_WARNING_)
2344   fi
2345 fi
2346
2347 dnl #### mcheck is broken in all versions of Linux libc and glibc.
2348 dnl Try this again when 2.1 hits the streets.
2349 dnl Avoid using free-hook.c if support exists for malloc debugging in libc
2350 dnl have_libmcheck=no
2351 dnl if test "$error_check_malloc" = "yes" -a \
2352 dnl    "$have_glibc" = "yes" -a \
2353 dnl    "$doug_lea_malloc" = "yes"; then
2354 dnl   AC_CHECK_HEADERS(mcheck.h)
2355 dnl   AC_CHECK_LIB(mcheck, mcheck, have_libmcheck=yes, have_libmcheck=no)
2356 dnl fi
2357
2358 dnl if test "$have_libmcheck" = "yes"; then
2359 dnl   AC_DEFINE(HAVE_LIBMCHECK)
2360 dnl   libmcheck=-lmcheck
2361 dnl   AC_SUBST(libmcheck)
2362 dnl fi
2363
2364 dnl Some other nice autoconf tests.  If you add a test here which
2365 dnl should make an entry in src/config.h, do not forget to add an
2366 dnl #undef clause to src/config.h.in for autoconf to modify.
2367
2368 AC_PROG_RANLIB
2369 AC_PROG_INSTALL
2370 AC_PROG_YACC
2371
2372 dnl checks for header files
2373 AC_CHECK_HEADERS(dnl
2374   a.out.h dnl
2375   elf.h dnl
2376   cygwin/version.h dnl
2377   fcntl.h dnl
2378   inttypes.h dnl
2379   libgen.h dnl
2380   locale.h dnl
2381   mach/mach.h dnl
2382   sys/param.h dnl
2383   sys/pstat.h dnl
2384   sys/time.h dnl
2385   sys/timeb.h dnl
2386   sys/un.h dnl
2387   ulimit.h dnl
2388   unistd.h dnl
2389 )
2390 AC_HEADER_SYS_WAIT
2391 AC_HEADER_STDC
2392 AC_HEADER_TIME
2393 AC_DECL_SYS_SIGLIST
2394
2395
2396 dnl ----------------------------------------------------------------
2397 dnl Checking for utime() or utimes().
2398 dnl We prefer utime, since it is more standard.
2399 dnl Some systems have utime.h but do not declare the struct anyplace,
2400 dnl so we use a more sophisticated test for utime than AC_CHECK_FUNCS.
2401 dnl ----------------------------------------------------------------
2402 AC_MSG_CHECKING(for utime)
2403 AC_TRY_COMPILE([#include <sys/types.h>
2404 #include <utime.h>],
2405 [struct utimbuf x; x.actime = x.modtime = 0; utime ("/", &x);],
2406   [AC_MSG_RESULT(yes)
2407    AC_DEFINE(HAVE_UTIME)],
2408   [AC_MSG_RESULT(no)
2409    dnl We don't have utime(); how about utimes()?
2410    AC_CHECK_FUNCS(utimes)])
2411
2412
2413 dnl checks for typedefs
2414 AC_TYPE_SIGNAL
2415 AC_TYPE_SIZE_T
2416 AC_TYPE_PID_T
2417 AC_TYPE_UID_T
2418 AC_TYPE_MODE_T
2419 AC_TYPE_OFF_T
2420 AC_CHECK_TYPE(ssize_t, int)
2421
2422 dnl check for Unix98 socklen_t
2423 AC_MSG_CHECKING(for socklen_t)
2424 AC_TRY_COMPILE([#include <sys/types.h>
2425 #include <sys/socket.h>
2426 socklen_t x;
2427 ],[],[AC_MSG_RESULT(yes)],[
2428 AC_TRY_COMPILE([#include <sys/types.h>
2429 #include <sys/socket.h>
2430 int accept (int, struct sockaddr *, size_t *);
2431 ],[],[
2432 AC_MSG_RESULT(size_t)
2433 AC_DEFINE(socklen_t,size_t)], [
2434 AC_MSG_RESULT(int)
2435 AC_DEFINE(socklen_t,int)])])
2436
2437 AC_MSG_CHECKING(for struct timeval)
2438 AC_TRY_COMPILE([#ifdef TIME_WITH_SYS_TIME
2439 #include <sys/time.h>
2440 #include <time.h>
2441 #else
2442 #ifdef HAVE_SYS_TIME_H
2443 #include <sys/time.h>
2444 #else
2445 #include <time.h>
2446 #endif
2447 #endif], [static struct timeval x; x.tv_sec = x.tv_usec;],
2448   [AC_MSG_RESULT(yes)
2449   HAVE_TIMEVAL=yes
2450   AC_DEFINE(HAVE_TIMEVAL)],
2451   [AC_MSG_RESULT(no)
2452    HAVE_TIMEVAL=no])
2453
2454 dnl checks for structure members
2455 AC_STRUCT_TM
2456 AC_STRUCT_TIMEZONE
2457
2458 dnl checks for compiler characteristics
2459 AC_C_CONST
2460
2461 dnl check for Make feature
2462 AC_PROG_MAKE_SET
2463
2464 dnl check byte order
2465 AC_C_BIGENDIAN
2466
2467 dnl define SIZEOF_TYPE
2468 AC_CHECK_SIZEOF(short)
2469 if test "$ac_cv_sizeof_short" = 0; then
2470   echo ""
2471   echo "*** PANIC *** Configure tests are not working - compiler is broken."
2472   echo "*** PANIC *** Please examine config.log for compilation errors."
2473   exit 1
2474 fi
2475 AC_CHECK_SIZEOF(int)
2476 AC_CHECK_SIZEOF(long)
2477 AC_CHECK_SIZEOF(long long)
2478 AC_CHECK_SIZEOF(void *)
2479
2480 dnl check for long file names
2481 AC_SYS_LONG_FILE_NAMES
2482
2483 dnl -lm is required by LISP_FLOAT_TYPE, among other things
2484 AC_CHECK_FUNC(sin, ,AC_CHECK_LIB(m, sin))
2485
2486 dnl Floating operation support is now unconditional
2487 AC_DEFINE(LISP_FLOAT_TYPE)
2488
2489 AC_TRY_LINK([#include <math.h>],
2490   [return atanh(1.0) + asinh(1.0) + acosh(1.0); ],
2491   AC_DEFINE(HAVE_INVERSE_HYPERBOLIC))
2492
2493 dnl Determine type of mail locking from configure args and s&m headers
2494 AC_CHECKING(type of mail spool file locking)
2495 AC_CHECK_FUNCS(lockf flock)
2496 dnl The mail_use_xxx variables are set according to the s&m headers.
2497 test -z "$mail_locking" -a "$mail_use_flock" = "yes" && mail_locking=flock
2498 test -z "$mail_locking" -a "$mail_use_lockf" = "yes" && mail_locking=lockf
2499 test -z "$mail_locking" -a "$mail_use_locking" = "yes" && mail_locking=locking
2500 if   test -z "$mail_locking"; then
2501   case "$opsys" in cygwin* | mingw*)
2502     mail_locking=pop ;;
2503   esac
2504 fi
2505
2506 if   test "$mail_locking" = "lockf"; then AC_DEFINE(MAIL_LOCK_LOCKF)
2507 elif test "$mail_locking" = "flock"; then AC_DEFINE(MAIL_LOCK_FLOCK)
2508 elif test "$mail_locking" = "locking"; then AC_DEFINE(MAIL_LOCK_LOCKING)
2509 elif test "$mail_locking" = "pop"; then
2510   with_pop=yes
2511   mail_locking=
2512 else mail_locking="dot-locking"; AC_DEFINE(MAIL_LOCK_DOT)
2513 fi
2514 test "$mail_locking" = "lockf" -a "$ac_cv_func_lockf" != "yes" && \
2515   XE_DIE("lockf mail locking requested but not available.")
2516 test "$mail_locking" = "flock" -a "$ac_cv_func_flock" != "yes" && \
2517   XE_DIE("flock mail locking requested but not available.")
2518 test "$mail_locking" = "locking" -a "$ac_cv_func_locking" != "yes" && \
2519   XE_DIE("locking mail locking requested but not available.")
2520
2521 case "$opsys" in decosf*)
2522   AC_CHECK_LIB(pthreads, cma_open)
2523   test "$ac_cv_lib_pthreads_cma_open" = "yes" && \
2524     c_switch_site="$c_switch_site -threads" ;;
2525 esac
2526
2527 dnl ----------------------------------------------------------------
2528 dnl Miscellaneous flags
2529 dnl ----------------------------------------------------------------
2530
2531 AC_MSG_CHECKING(whether the -xildoff compiler flag is required)
2532 if   ${CC-cc} '-###' -xildon  no_such_file.c 2>&1 | grep '^[^ ]*/ild ' > /dev/null ; then
2533   if ${CC-cc} '-###' -xildoff no_such_file.c 2>&1 | grep '^[^ ]*/ild ' > /dev/null ;
2534     then AC_MSG_RESULT(no);
2535     else AC_MSG_RESULT(yes); XE_APPEND(-xildoff, ld_switch_site)
2536   fi
2537   else AC_MSG_RESULT(no)
2538 fi
2539
2540 dnl Link with "-z ignore" on Solaris if supported
2541 if test "$opsys" = "sol2"; then
2542   if test "$os_release" -ge 56; then
2543     AC_MSG_CHECKING(for \"-z ignore\" linker flag)
2544     case "`ld -h 2>&1`" in
2545       *-z\ ignore\|record* ) AC_MSG_RESULT(yes)
2546         XE_PREPEND(-z ignore, ld_switch_site) ;;
2547       *) AC_MSG_RESULT(no) ;;
2548     esac
2549   fi
2550 fi
2551
2552 dnl ----------------------
2553 dnl Choose a window system
2554 dnl ----------------------
2555
2556 AC_CHECKING("for specified window system")
2557
2558 dnl Autodetection of Gdk libraries and includes
2559 dnl -------------------------------------------
2560 dnl On some systems (FreeBSD springs to mind), they use
2561 dnl versions on the utility routines, so instead of gtk-config
2562 dnl you must use gtk12-config, etc, etc.
2563
2564 GNOME_CONFIG=no
2565 GTK_CONFIG=no
2566
2567 if test "$with_gnome" != "no"; then
2568    AC_MSG_CHECKING(for GNOME configuration script)
2569    for possible in gnome-config
2570    do
2571       possible_version=`${possible} --version 2> /dev/null`
2572       if test "x${possible_version}" != "x"; then
2573               GNOME_CONFIG="${possible}"
2574               with_gnome=yes
2575               with_gtk=yes
2576               break
2577       fi
2578    done
2579    AC_MSG_RESULT([${GNOME_CONFIG}])
2580 fi
2581
2582 if test "${GNOME_CONFIG}" != "no"; then
2583       GNOME_LIBS=`${GNOME_CONFIG} --libs gnomeui`
2584       GNOME_CFLAGS=`${GNOME_CONFIG} --cflags gnomeui`
2585       AC_DEFINE(HAVE_GNOME)
2586       XE_APPEND(${GNOME_LIBS}, libs_gtk)
2587       XE_APPEND(${GNOME_CFLAGS}, c_switch_gtk)
2588 fi
2589
2590 if test "$with_gtk" != "no";then
2591    AC_MSG_CHECKING(for GTK configuration script)
2592    for possible in gtk12-config gtk14-config gtk-config
2593    do
2594       possible_version=`${possible} --version 2> /dev/null`
2595       if test "x${possible_version}" != "x"; then
2596               GTK_CONFIG="${possible}"
2597       fi
2598       case "${possible_version}" in
2599         1.0.*) AC_MSG_WARN([GTK 1.2 is required, please upgrade your version of GTK.]); with_gtk=no;;
2600         1.3.*) AC_MSG_WARN([GTK 1.3 is not supported right now]); with_gtk=no;;
2601         1.2.*)
2602                 with_gtk=yes
2603                 break
2604                 ;;
2605         *)     AC_MSG_WARN([Found unsupported version of GTK: $possible_version]);;
2606       esac
2607    done
2608    AC_MSG_RESULT([${GTK_CONFIG}])
2609 fi
2610
2611 if test "${GTK_CONFIG}" != "no"; then
2612       AC_MSG_CHECKING(gtk version)
2613       GTK_VERSION=`${GTK_CONFIG} --version`
2614       AC_MSG_RESULT(${GTK_VERSION})
2615
2616       AC_MSG_CHECKING(gtk libs)
2617       GTK_LIBS=`${GTK_CONFIG} --libs`
2618       XE_APPEND(${GTK_LIBS}, libs_gtk)
2619       AC_MSG_RESULT(${GTK_LIBS})
2620
2621       AC_MSG_CHECKING(gtk cflags)
2622       GTK_CFLAGS=`${GTK_CONFIG} --cflags`
2623       if test "$GCC" = "yes"; then
2624         GTK_CFLAGS="${GTK_CFLAGS} -Wno-shadow"
2625       fi
2626       XE_APPEND(${GTK_CFLAGS}, c_switch_gtk)
2627       AC_MSG_RESULT(${GTK_CFLAGS})
2628
2629       AC_CHECK_LIB(gdk_imlib, main, XE_PREPEND(-lgdk_imlib, libs_gtk))
2630       AC_CHECK_LIB(Imlib, Imlib_init, XE_APPEND(-lImlib, libs_gtk))
2631       AC_CHECK_FUNCS(gdk_imlib_init)
2632
2633       AC_DEFINE(HAVE_XPM)
2634       AC_DEFINE(HAVE_GTK)
2635       AC_SUBST(GTK_CONFIG)
2636
2637       window_system=gtk
2638       with_gtk=yes
2639       with_x11=no
2640
2641       test "${with_scrollbars}" != "no" && with_scrollbars=gtk
2642       test "${with_toolbars}" != no && with_toolbars=gtk
2643       test "${with_menubars}" != "no" && with_menubars=gtk
2644       test "${with_dialogs}" != "no" && with_dialogs=gtk
2645       test "${with_widgets}" != "no" && with_widgets=gtk
2646
2647       XE_ADD_OBJS(console-gtk.o device-gtk.o event-gtk.o frame-gtk.o)
2648       XE_ADD_OBJS(objects-gtk.o redisplay-gtk.o glyphs-gtk.o)
2649       XE_ADD_OBJS(select-gtk.o gccache-gtk.o)
2650       XE_ADD_OBJS(gtk-xemacs.o ui-gtk.o)
2651
2652       dnl Check for libglade support (it rocks)
2653       OLD_CFLAGS="${CFLAGS}"
2654       OLD_CPPFLAGS="${CPPFLAGS}"
2655       OLD_LDFLAGS="${LDFLAGS}"
2656       CFLAGS="${GTK_CFLAGS} ${CFLAGS}"
2657       CPPFLAGS="${GTK_CFLAGS} ${CFLAGS}"
2658       LDFLAGS="${LDFLAGS} ${GTK_LIBS}"
2659       AC_CHECK_HEADERS(glade/glade.h glade.h)
2660       AC_CHECK_LIB(xml, main, XE_PREPEND(-lxml, libs_gtk))
2661       AC_CHECK_LIB(glade, main, XE_PREPEND(-lglade, libs_gtk))
2662       AC_CHECK_LIB(glade-gnome, main, XE_PREPEND(-lglade-gnome, libs_gtk))
2663       AC_EGREP_HEADER([char \*txtdomain;], [glade/glade-xml.h],
2664                       [AC_MSG_RESULT(yes)
2665                        AC_DEFINE(LIBGLADE_XML_TXTDOMAIN,1)],
2666                       [AC_MSG_RESULT(no)])
2667       CFLAGS="${OLD_CFLAGS}"
2668       CPPFLAGS="${OLD_CPPFLAGS}"
2669       LDFLAGS="${OLD_LDFLAGS}"
2670 fi
2671
2672 dnl We may eventually prefer gtk/gdk over vanilla X11...
2673
2674 if test "$with_x11" != "no"; then
2675   dnl User-specified --x-includes or --x-libraries implies --with-x11.
2676   test "$x_includes $x_libraries" != "NONE NONE" && \
2677    window_system=x11 with_x11=yes
2678
2679   dnl Autodetection of X11 libraries and includes
2680   dnl -------------------------------------------
2681   dnl AC_PATH_XTRA thinks it can find our X headers and includes, but
2682   dnl it often gets it wrong, so we only use it as a last resort.
2683
2684   dnl $OPENWINHOME implies --x-includes and --x-libraries
2685   dnl Not (yet) handled by autoconf2
2686   if test "$x_includes $x_libraries" = "NONE NONE" \
2687     -a -n "$OPENWINHOME" \
2688     -a "$OPENWINHOME" != "/usr/openwin" \
2689     -a -d "$OPENWINHOME"; then
2690       test -d "$OPENWINHOME/lib"           && x_libraries="$OPENWINHOME/lib"
2691       test -d "$OPENWINHOME/include"       && x_includes="$OPENWINHOME/include"
2692       test -d "$OPENWINHOME/share/include" && x_includes="$OPENWINHOME/share/include"
2693   fi
2694
2695   if test "$x_includes" = "NONE"; then
2696     dnl AC_PATH_XTRA often guesses /usr/include, when some other
2697     dnl include directory is a MUCH better guess (Linux, HP-UX 10.20).
2698     dnl This is a workaround for idiot (esp. HP) system vendors, who
2699     dnl provide a /usr/include/X11, but DON'T FULLY POPULATE IT.
2700     for dir in "/usr/X11" "/usr/X11R6"; do
2701       if test -d "$dir/include/X11"; then x_includes="$dir/include"; break; fi
2702     done
2703   fi
2704
2705   if test "$x_libraries" = "NONE"; then
2706     for dir in "/usr/X11/lib" "/usr/X11R6/lib" "/usr/lib/X11R6"; do
2707       if test -r "$dir/libX11.a"; then x_libraries="$dir"; break; fi
2708     done
2709   fi
2710
2711   AC_PATH_XTRA # Autoconf claims to find X library and include dirs for us.
2712   if test "$no_x" = "yes"
2713   then with_x11=no  window_system=none HAVE_X_WINDOWS=no
2714   else with_x11=yes window_system=x11  HAVE_X_WINDOWS=yes
2715   fi
2716 fi
2717
2718 dnl #### wmperry:: !x11 != NONE
2719 dnl case "$with_x11" in
2720 dnl  yes ) window_system=x11  HAVE_X_WINDOWS=yes ;;
2721 dnl  no  ) window_system=none HAVE_X_WINDOWS=no  ;;
2722 dnl esac
2723
2724 if test "$with_x11" = "yes"; then
2725   AC_DEFINE(HAVE_X_WINDOWS)
2726   XE_APPEND(lwlib, MAKE_SUBDIR)
2727   XE_APPEND(lwlib, SRC_SUBDIR_DEPS)
2728
2729   dnl Try to find Motif/CDE/Tooltalk dirs
2730   dnl These take precedence over other X libs/includes, so PRE-pend
2731   for lib_dir in "/usr/dt/lib" "/usr/lib/Motif2.1" "/usr/lib/Motif1.2" "/usr/lib/Motif1.1"; do
2732     inc_dir=`echo $lib_dir | sed -e 's/lib/include/'`
2733     if test -d "$lib_dir" -a -d "$inc_dir"; then
2734       case "$x_libraries" in *"$lib_dir"* ) ;; *)
2735         x_libraries="$lib_dir $x_libraries"
2736         XE_PREPEND(-L${lib_dir}, X_LIBS) ;;
2737       esac
2738       case "$x_includes" in "$inc_dir"* ) ;; *)
2739         x_includes="$inc_dir $x_includes"
2740         XE_PREPEND(-I${inc_dir}, X_CFLAGS) ;;
2741       esac
2742       break; dnl only need ONE Motif implementation!
2743       fi
2744   done
2745
2746   dnl Contrib X libs/includes do NOT take precedence, so AP-pend
2747   for rel in "X11R6" "X11R5" "X11R4"; do
2748     lib_dir="/usr/contrib/$rel/lib" inc_dir="/usr/contrib/$rel/include"
2749     if test -d "$lib_dir" -a -d "$inc_dir"; then
2750       case "$x_libraries" in *"$lib_dir"* ) ;; *)
2751         x_libraries="$x_libraries $lib_dir"
2752         XE_APPEND(-L${lib_dir}, X_LIBS)
2753       esac
2754       case "$x_includes" in "$inc_dir"* ) ;; *)
2755         x_includes="$x_includes $inc_dir"
2756         XE_APPEND(-I${inc_dir}, X_CFLAGS)
2757       esac
2758       break; dnl Only need ONE X11 implementation !
2759     fi
2760   done
2761
2762   dnl Avoid version mismatch for shared library libXm.so on osf4
2763   case "$opsys" in
2764   decosf*) if test "$GCC" = yes -a -d /usr/shlib; then XE_APPEND(-L/usr/shlib, X_LIBS); fi ;;
2765   esac
2766
2767   ld_switch_x_site="$X_LIBS"
2768
2769   XE_COMPUTE_RUNPATH()
2770
2771   if test "$extra_verbose" = "yes"; then
2772     echo; echo "X11 compilation variables:"
2773     PRINT_VAR(x_libraries x_includes X_CFLAGS X_LIBS X_PRE_LIBS X_EXTRA_LIBS)
2774     echo
2775   fi
2776
2777   dnl Set up bitmaps search path.
2778   dnl The original suggestion was to unconditionally to append X11/bitmaps
2779   dnl to each element of $x_includes, I'm pretty sure this is the wrong
2780   dnl thing to do.  We test for bitmaps and X11/bitmaps directories on each
2781   dnl element and add them to BITMAPDIR if they exist.
2782   bitmapdirs=
2783   if test "$x_includes" != NONE; then
2784     for i in $x_includes; do
2785       if test -d "$i/bitmaps"; then
2786         bitmapdirs="$i/bitmaps:$bitmapdirs"
2787       fi
2788       if test -d "$i/X11/bitmaps"; then
2789         bitmapdirs="$i/X11/bitmaps:$bitmapdirs"
2790       fi
2791     done
2792     bitmapdirs=`echo "$bitmapdirs" | sed s/.$//`
2793   fi
2794   test ! -z "$bitmapdirs" && AC_DEFINE_UNQUOTED(BITMAPDIR, "$bitmapdirs")
2795
2796   dnl Autodetect defines extracted from X config by xmkmf, e.g. NARROWPROTO
2797   AC_CHECKING(for X defines extracted by xmkmf)
2798   rm -fr conftestdir
2799   if mkdir conftestdir; then
2800     cd conftestdir
2801     cat > Imakefile <<'EOF'
2802 xetest:
2803         @echo ${PROTO_DEFINES} ${STD_DEFINES}
2804 EOF
2805     if (xmkmf) >/dev/null 2>/dev/null && test -f Makefile; then
2806       # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
2807       xmkmf_defines=`${MAKE-make} xetest 2>/dev/null | grep -v make`
2808     fi
2809     cd ..
2810     rm -fr conftestdir
2811     for word in $xmkmf_defines; do
2812       case "$word" in 
2813       -D__STDC__*) ;;
2814       -D* )
2815         sym=`echo '' $word | sed -e 's:^ *-D::' -e 's:=.*::'`
2816         case "$word" in
2817           -D*=* ) val=`echo '' $word | sed -e 's:^.*=::'` ;;
2818           *     ) val=1 ;;
2819         esac
2820 dnl Avoid re-AC_DEFINE-ing xmkmf symbols we've already defined above.
2821         if grep "^#define $sym " confdefs.h >/dev/null; then :; else
2822           if test "$val" = "1"
2823             then AC_DEFINE_UNQUOTED($sym)
2824             else AC_DEFINE_UNQUOTED($sym,$val)
2825           fi
2826         fi  ;;
2827       esac
2828     done
2829   fi
2830
2831   dnl make sure we can find Intrinsic.h
2832   AC_CHECK_HEADER(X11/Intrinsic.h, ,
2833    [AC_MSG_ERROR("Unable to find X11 header files.")])
2834
2835   dnl -lXt and -lX11 are required
2836   dnl Some broken systems require the magic "-b i486-linuxaout" flag
2837   AC_CHECK_LIB(X11, XOpenDisplay, have_lib_x11=yes)
2838   if test "$have_lib_x11" != "yes"; then
2839     AC_CHECK_LIB(X11, XGetFontProperty,
2840       ld_switch_x_site="-b i486-linuxaout $ld_switch_x_site",
2841       [AC_MSG_ERROR("Unable to find X11 libraries.")],
2842       -b i486-linuxaout)
2843   fi
2844   libs_x="-lX11"
2845   test "$extra_verbose" = "yes" && echo "    Setting libs_x to \"-lX11\""
2846
2847   dnl Autodetect -lXext
2848   AC_CHECK_LIB(Xext, XShapeSelectInput, XE_PREPEND(-lXext, libs_x))
2849
2850   dnl Require -lXt
2851   AC_CHECK_LIB(Xt, XtOpenDisplay, XE_PREPEND(-lXt, libs_x),
2852     AC_MSG_ERROR("Unable to find X11 libraries."))
2853
2854   AC_MSG_CHECKING(the version of X11 being used)
2855   AC_TRY_RUN([#include <X11/Intrinsic.h>
2856     int main(int c, char *v[]) { return c>1 ? XlibSpecificationRelease : 0; }],
2857     [./conftest foobar; x11_release=$?],[x11_release=4],[x11_release=4])
2858   AC_MSG_RESULT(R${x11_release})
2859   AC_DEFINE_UNQUOTED(THIS_IS_X11R${x11_release})
2860
2861   if test "${x11_release}" = "4"; then
2862     case "$with_widgets" in
2863       "" | "no") with_widgets=no ;;
2864       *) XE_DIE("Widget support requires X11R5 or greater") ;;
2865     esac
2866   fi
2867
2868   AC_CHECK_FUNCS(XConvertCase)
2869
2870   AC_CHECK_HEADERS(X11/Xlocale.h)
2871
2872   dnl XFree86 has a non-standard prototype for this X11R6 function
2873   AC_CHECK_FUNCS(XRegisterIMInstantiateCallback)
2874   AC_MSG_CHECKING(for standard XRegisterIMInstantiateCallback prototype)
2875   AC_TRY_COMPILE([
2876 #define NeedFunctionPrototypes 1
2877 #include <X11/Xlib.h>
2878 extern Bool XRegisterIMInstantiateCallback(
2879    Display*, struct _XrmHashBucketRec*, char*, char*, XIMProc, XPointer*);
2880 ], [], 
2881   [AC_MSG_RESULT(yes)],
2882   [AC_MSG_RESULT(no)
2883    AC_DEFINE(XREGISTERIMINSTANTIATECALLBACK_NONSTANDARD_PROTOTYPE)])
2884
2885   dnl autodetect -lXmu
2886   test -z "$with_xmu" && { AC_CHECK_LIB(Xmu, XmuReadBitmapDataFromFile,
2887                            with_xmu=yes, with_xmu=no) }
2888   if test "$with_xmu" = "no"; then
2889     XE_ADD_OBJS(xmu.o)
2890   else
2891     XE_PREPEND(-lXmu, libs_x)
2892     AC_DEFINE(HAVE_XMU)
2893   fi
2894
2895   dnl Autodetect -lXbsd
2896   dnl #### Someone, please add a better function than main
2897   AC_CHECK_LIB(Xbsd, main, XE_PREPEND(-lXbsd, libs_x))
2898
2899   dnl Problem with the MIT distribution of X on AIX
2900   if test "$unexec" = "unexaix.o" -a "$x11_release" = "6"; then
2901     dnl X11R6 requires thread-safe code on AIX for some reason
2902     if test "$GCC" = "yes"; then
2903       XE_PREPEND(-mthreads, X_CFLAGS)
2904       XE_PREPEND(-mthreads, libs_x)
2905     else
2906       case "$CC" in
2907         "xlc" ) CC="xlc_r" ;;
2908         "xlC" ) CC="xlC_r" ;;
2909         "cc"  ) CC="cc_r" ;;
2910       esac
2911     fi
2912   fi
2913
2914 fi dnl $with_x11 = yes
2915
2916 if test "$with_msw" != "no"; then
2917   AC_CHECKING(for MS-Windows)
2918   AC_CHECK_LIB(gdi32,main,with_msw=yes)
2919   if test "$with_msw" = "yes"; then
2920     AC_DEFINE(HAVE_MS_WINDOWS)
2921
2922     dnl The net installer only works with MS-Windows currently
2923     if test "$with_netinstall" = "yes"; then
2924       XE_APPEND(netinstall, MAKE_SUBDIR)
2925       XE_APPEND(netinstall, SRC_SUBDIR_DEPS)
2926       XE_APPEND(netinstall, INSTALL_ARCH_DEP_SUBDIR)
2927     fi
2928
2929     install_pp="$blddir/lib-src/installexe.sh"
2930     XE_APPEND(-lshell32 -lgdi32 -luser32 -lcomdlg32 -lcomctl32 -lwinspool, libs_system)
2931     test "$with_dragndrop" != no && XE_APPEND(msw, dragndrop_proto)
2932     if test "$window_system" != x11; then
2933         window_system=msw
2934         test "$with_scrollbars" != "no" && with_scrollbars=msw \
2935             && XE_ADD_OBJS(scrollbar-msw.o)
2936         test "$with_menubars"   != "no" && with_menubars=msw \
2937             && XE_ADD_OBJS(menubar-msw.o)
2938         test "$with_toolbars"   != "no" && with_toolbars=msw \
2939             && XE_ADD_OBJS(toolbar-msw.o)
2940         test "$with_dialogs"   != "no" && with_dialogs=msw \
2941             && XE_ADD_OBJS(dialog-msw.o)
2942         test "$with_widgets"   != "no" && with_widgets=msw
2943     else
2944         test "$with_scrollbars" != "no" && XE_ADD_OBJS(scrollbar-msw.o)
2945         test "$with_menubars"   != "no" && XE_ADD_OBJS(menubar-msw.o)
2946         test "$with_toolbars"   != "no" && XE_ADD_OBJS(toolbar-msw.o)
2947         test "$with_dialogs"    != "no" && XE_ADD_OBJS(dialog-msw.o)
2948     fi
2949     dnl check for our special version of select
2950     AC_TRY_RUN([#include <fcntl.h>
2951     int main() { return (open("/dev/windows", O_RDONLY, 0) > 0)? 0 : 1; }],
2952     [need_event_unixoid=yes; AC_DEFINE(HAVE_MSG_SELECT)])
2953     with_file_coding=yes
2954     XE_ADD_OBJS(console-msw.o device-msw.o event-msw.o frame-msw.o objects-msw.o select-msw.o redisplay-msw.o glyphs-msw.o gui-msw.o)
2955   fi
2956 fi
2957
2958 AC_SUBST(install_pp)
2959
2960 test -z "$window_system" && window_system="none"
2961
2962 dnl Test for features that require a window system - ANY window system
2963 if test "$window_system" = "none"; then
2964   for feature in menubars scrollbars toolbars dialogs dragndrop xface
2965   do
2966     if eval "test -n \"\$with_${feature}\" -a \"\$with_${feature}\" != no" ; then
2967        AC_MSG_WARN([--with-$feature ignored:  Not valid without window system support])
2968     fi
2969     eval "with_${feature}=no"
2970   done
2971 else
2972   test -z "$with_toolbars" && with_toolbars=yes
2973 fi
2974
2975 dnl ### Test for features that require mswindows support - currently none
2976 dnl ### MS-Windows folks: add code here..... (martin)
2977 if test "$with_msw" != "yes"; then
2978   for feature in   MARTIN_IS_CLUELESS_ABOUT_MSW_FEATURES
2979   do
2980     if eval "test -n \"\$with_${feature}\" -a \"\$with_${feature}\" != no" ; then
2981        AC_MSG_WARN([--with-$feature ignored:  Not valid without MS-Windows support])
2982     fi
2983     eval "with_${feature}=no"
2984   done
2985 else
2986   :
2987 fi
2988
2989 dnl Test for features that require X11 support
2990 if test "$with_x11" != "yes"; then
2991   dnl It ought to be reasonable to have no output device at all, and only use
2992   dnl XEmacs in --batch mode.
2993   dnl if test "$with_tty" = "no" ; then
2994   dnl   AC_MSG_ERROR([No window system support and no TTY support - Unable to proceed.])
2995   dnl fi
2996   for feature in tooltalk cde offix wmcommand xim xmu nas_sound
2997   do
2998     if eval "test -n \"\$with_${feature}\" -a \"\$with_${feature}\" != no" ; then
2999        AC_MSG_WARN([--with-$feature ignored:  Not valid without X support])
3000     fi
3001     eval "with_${feature}=no"
3002   done
3003 fi
3004
3005 dnl Balloon Help requires the Shape extension, not available everywhere,
3006 dnl for example not on AIX 4.3.
3007 if test "$with_x11" = "yes"; then
3008   AC_CHECK_HEADER(X11/extensions/shape.h, [
3009    AC_DEFINE(HAVE_BALLOON_HELP)
3010    XE_ADD_OBJS(balloon_help.o balloon-x.o)])
3011 fi
3012
3013 dnl FSF 19.29 has some bitmapdir stuff here.
3014 bitmapdir=
3015
3016 case "$window_system" in
3017   x11  ) HAVE_X_WINDOWS=yes; echo "  Using X11." ;;
3018   msw  ) HAVE_X_WINDOWS=no ; echo "  Using MS-Windows." ;;
3019   gtk  )
3020        HAVE_X_WINDOWS=no
3021        test "$with_gnome" = "yes" && echo "  Using GNOME."
3022        test "$with_gnome" = "no" && echo "  Using GTK."
3023        ;;
3024   none ) HAVE_X_WINDOWS=no ; echo "  Using no window system." ;;
3025 esac
3026
3027 case "$x_libraries" in *X11R4* )
3028   test "$opsys" = "hpux9"     && opsysfile="s/hpux9-x11r4.h"
3029   test "$opsys" = "hpux9-shr" && opsysfile="s/hpux9shxr4.h"
3030 esac
3031
3032 dnl Enable or disable proper handling of WM_COMMAND
3033 AC_CHECKING(for WM_COMMAND option);
3034 dnl if test "$with_wmcommand" = "yes"; then
3035 if test "$with_wmcommand" != "no"; then
3036   AC_DEFINE(HAVE_WMCOMMAND)
3037 fi
3038
3039 dnl Autodetect Xauth
3040 dnl -lXau is only used by gnuclient, so use a special variable for Xauth X libs
3041 test -z "$with_xauth" && test "$window_system" = "none" && with_xauth=no
3042 test -z "$with_xauth" && { AC_CHECK_HEADER(X11/Xauth.h,          ,with_xauth=no) }
3043 test -z "$with_xauth" && { AC_CHECK_LIB(Xau, XauGetAuthByAddr,[:],with_xauth=no) }
3044 test -z "$with_xauth" && with_xauth=yes
3045 if test "$with_xauth" = "yes"; then
3046   AC_DEFINE(HAVE_XAUTH)
3047   XE_SPACE(libs_xauth, $GTK_LIBS $X_EXTRA_LIBS -lXau $libs_x $X_PRE_LIBS)
3048 fi
3049 AC_SUBST(libs_xauth)
3050
3051 dnl This one is for the static initializeds variables in
3052 dnl offix.c, so that the thing is dumped after lastfile.o
3053 AC_SUBST(dnd_objs)
3054
3055 dnl Autodetect tooltalk
3056 if test "$with_tooltalk" != "no" ; then
3057   dnl autodetect the location of tt_c.h
3058   dnl tt_c.h might be in Tt or desktop include directories
3059   for dir in "" "Tt/" "desktop/" ; do
3060     AC_CHECK_HEADER(${dir}tt_c.h, tt_c_h_file="${dir}tt_c.h"; break)
3061   done
3062   if test -z "$tt_c_h_file"; then
3063     if test "$with_tooltalk" = "yes"; then
3064       USAGE_ERROR("Unable to find required tooltalk header files.")
3065     fi
3066     with_tooltalk=no
3067   fi
3068 fi
3069 if test "$with_tooltalk" != "no" ; then
3070   for extra_libs in "" "-lI18N -lce" "-lcxx"; do
3071     AC_CHECK_LIB(tt, tt_message_create,
3072       tt_libs="-ltt $extra_libs"; break, [:],$extra_libs)
3073   done
3074   if test -z "$tt_libs"; then
3075     if test "$with_tooltalk" = "yes"; then
3076       USAGE_ERROR("Unable to find required tooltalk libraries.")
3077     fi
3078     with_tooltalk=no
3079   fi
3080 fi
3081 test -z "$with_tooltalk" && with_tooltalk=yes
3082 if test "$with_tooltalk" = "yes"; then
3083   AC_DEFINE(TOOLTALK)
3084   AC_DEFINE_UNQUOTED(TT_C_H_FILE, "$tt_c_h_file")
3085   XE_PREPEND($tt_libs, libs_x)
3086   XE_ADD_OBJS(tooltalk.o)
3087 fi
3088
3089 dnl Autodetect CDE
3090 test -z "$with_cde" && { AC_CHECK_HEADER(Dt/Dt.h,               , with_cde=no) }
3091 test -z "$with_cde" && { AC_CHECK_LIB(DtSvc, DtDndDragStart, [:], with_cde=no) }
3092 test -z "$with_cde" && with_cde=yes
3093 if test "$with_dragndrop" = no; then
3094   AC_MSG_WARN([No CDE without generic Drag'n'Drop support])
3095   with_cde=no
3096 fi
3097 if test "$with_cde" = "yes" ; then
3098   AC_DEFINE(HAVE_CDE)
3099   XE_PREPEND(-lDtSvc, libs_x)
3100   XE_APPEND(CDE, dragndrop_proto)
3101   with_tooltalk=yes # CDE requires Tooltalk
3102   need_motif=yes    # CDE requires Motif
3103 fi
3104
3105 dnl Always compile OffiX unless --without-offix is given, no
3106 dnl X11 support is compiled in, no standard Xmu is available,
3107 dnl or dragndrop support is disabled
3108 dnl Because OffiX support currently loses when more than one display
3109 dnl is in use, we now disable it by default -slb 07/10/1998.
3110 test "$window_system" != "x11" && with_offix=no
3111 if test "$with_xmu" != yes -a "$with_x11" = yes; then
3112   AC_MSG_WARN([No OffiX without real Xmu support])
3113   with_offix=no
3114 fi
3115 if test "$with_dragndrop" = no; then
3116   AC_MSG_WARN([No OffiX without generic Drag'n'Drop support])
3117   with_offix=no
3118 fi
3119 if test "$with_cde" = yes; then
3120   AC_MSG_WARN([CDE already found, disabling OffiX support])
3121   with_offix=no
3122 fi
3123 test -z "$with_offix" && with_offix=no
3124 if test "$with_offix" = "yes"; then
3125   AC_DEFINE(HAVE_OFFIX_DND)
3126   XE_APPEND(offix.o, dnd_objs)
3127   XE_APPEND(OffiX, dragndrop_proto)
3128 fi
3129 if test "$with_gtk" = "yes"; then
3130    XE_APPEND(GTK, dragndrop_proto)
3131 fi
3132
3133 dnl Autodetect Drag'n'Drop support
3134 dnl always included if CDE, Offix, or MSWindows are defined
3135 if test "$with_dragndrop" != "no" ; then
3136   AC_MSG_CHECKING(if drag and drop API is needed)
3137   if test -n "$dragndrop_proto" ; then
3138     with_dragndrop=yes
3139     AC_MSG_RESULT([yes (${dragndrop_proto} )])
3140     AC_DEFINE(HAVE_DRAGNDROP)
3141     XE_APPEND(dragdrop.o, extra_objs)
3142   else
3143     with_dragndrop=no
3144     AC_MSG_RESULT(no)
3145   fi
3146 fi
3147
3148 dnl Autodetect LDAP
3149 AC_CHECKING(for LDAP)
3150 test -z "$with_ldap" && { AC_CHECK_HEADER(ldap.h, ,with_ldap=no) }
3151 test -z "$with_ldap" && { AC_CHECK_HEADER(lber.h, ,with_ldap=no) }
3152 if test "$with_ldap" != "no"; then
3153   AC_CHECK_LIB(ldap, ldap_search, with_ldap_nolber=yes, with_ldap_nolber=no)
3154   test "$with_ldap_nolber" = "no" && { AC_CHECK_LIB(ldap, ldap_open, with_ldap_lber=yes, with_ldap_lber=no, -llber) }
3155   test "$with_ldap_nolber" = "no" -a "$with_ldap_lber" = "no" && { AC_CHECK_LIB(ldap, ldap_open, with_ldap_krb=yes, with_ldap_krb=no, -llber -lkrb) }
3156   test "$with_ldap_nolber" = "no" -a "$with_ldap_lber" = "no" -a "$with_ldap_krb" = "no" && { AC_CHECK_LIB(ldap, ldap_open, with_ldap_krbdes=yes, with_ldap_krbdes=no, -llber -lkrb -ldes) }
3157   test -z "$with_ldap" -a \( "$with_ldap_lber" = "yes" -o "$with_ldap_nolber" = "yes" -o "$with_ldap_krb" = "yes" -o "$with_ldap_krbdes" = "yes" \) && with_ldap=yes
3158 fi
3159 if test "$with_ldap" = "yes"; then
3160   AC_DEFINE(HAVE_LDAP)
3161   XE_ADD_OBJS(eldap.o)
3162   if test "$with_ldap_nolber" = "yes" ; then
3163     XE_PREPEND(-lldap, LIBS)
3164   else
3165     if test "$with_ldap_krb" = "yes" ; then
3166       XE_PREPEND(-lkrb, LIBS)
3167     fi
3168     if test "$with_ldap_krbdes" = "yes" ; then
3169       XE_PREPEND(-ldes, LIBS)
3170       XE_PREPEND(-lkrb, LIBS)
3171     fi
3172     XE_PREPEND(-llber, LIBS)
3173     XE_PREPEND(-lldap, LIBS)
3174   fi
3175   AC_CHECK_FUNCS(ldap_set_option ldap_get_lderrno ldap_result2error ldap_parse_result)
3176 fi
3177
3178 dnl Autodetect PostgreSQL
3179 dnl On many Linux systems, PostgreSQL is packaged to be installed in /usr;
3180 dnl in this case, configure will easily detect it there.
3181 dnl
3182 dnl If PostgreSQL is installed into a different prefix,
3183 dnl (such as the default /usr/local/pgsql when building from source),
3184 dnl that prefix must be specified using the --site-prefixes flag.
3185 if test "$with_postgresql" != "no"; then
3186   AC_CHECKING(for PostgreSQL)
3187
3188 dnl Look for these standard header file locations, known to be used on Linux
3189   for header_dir in "" "pgsql/" "postgresql/"; do
3190     AC_CHECK_HEADER(${header_dir}libpq-fe.h,
3191                     libpq_fe_h_file=${header_dir}libpq-fe.h; break)
3192   done
3193
3194   test -n "$libpq_fe_h_file" && { AC_CHECK_LIB(pq,PQconnectdb,have_libpq=yes) }
3195
3196   if test -n "$libpq_fe_h_file" -a "$have_libpq" = "yes"; then
3197     with_postgresql=yes
3198     AC_DEFINE(HAVE_POSTGRESQL)
3199     AC_CHECK_LIB(pq,PQconnectStart, [
3200                  with_postgresqlv7=yes;
3201                  AC_DEFINE(HAVE_POSTGRESQLV7)])
3202     AC_DEFINE_UNQUOTED(LIBPQ_FE_H_FILE, "$libpq_fe_h_file")
3203     XE_PREPEND(-lpq, LIBS)
3204     XE_ADD_OBJS(postgresql.o)
3205   elif test "$with_postgresql" = "yes"; then
3206     XE_DIE("Required PostgreSQL support cannot be provided.  Check --site-prefixes.")
3207   fi
3208 fi
3209
3210 dnl ----------------------
3211 dnl Graphics libraries
3212 dnl ----------------------
3213
3214 if test "$window_system" != "none"; then
3215   AC_CHECKING(for graphics libraries)
3216
3217   dnl add special code to handle xpm-nox on Cygwin (csw)
3218   dnl   -- should only happen if CYGWIN && WITH_XPM && WITH_MSW && !WITH_X
3219   libpath_xpm=
3220   incpath_xpm=
3221   case "$opsys" in 
3222     cygwin*)
3223       cygwin_top=`eval "gcc -print-file-name=libc.a"` ;
3224       cygwin_top=`eval "dirname ${cygwin_top}"`;
3225       cygwin_top="${cygwin_top}/..";
3226       case "$window_system" in
3227         dnl use "standard" search pattern
3228         x11)  ;;
3229         dnl hardcode "standard" non-X11 xpm lib/inc dirs
3230         msw) libpath_xpm="-L${cygwin_top}/lib/noX"
3231              incpath_xpm="-I${cygwin_top}/include/noX"
3232               ;;
3233         dnl not supported on cygwin (yet?)
3234         gtk)  ;;
3235         dnl probably not reached...
3236         none) ;;
3237         dnl ditto
3238         *)    ;;
3239       esac
3240       ;;
3241     dnl use "standard" search pattern for all other OS's
3242     *) ;;
3243   esac
3244   dnl Autodetect Xpm
3245   xpm_problem=""
3246   if test -z "$with_xpm"; then
3247     XE_PREPEND("$incpath_xpm", CFLAGS)
3248     XE_PREPEND("$libpath_xpm", LDFLAGS)
3249     AC_MSG_CHECKING(for Xpm - no older than 3.4f)
3250     xe_check_libs=-lXpm
3251     AC_TRY_RUN([#define XPM_NUMBERS
3252 #include <X11/xpm.h>
3253     int main(int c, char **v) {
3254     return c == 1 ? 0 :
3255       XpmIncludeVersion != XpmLibraryVersion() ? 1 :
3256       XpmIncludeVersion < 30406 ? 2 : 0 ;}],
3257     [./conftest dummy_arg; xpm_status=$?;
3258       if test "$xpm_status" = "0"; then
3259         with_xpm=yes;
3260       else
3261         with_xpm=no;
3262         if test "$xpm_status" = "1"; then
3263           xpm_problem="Xpm library version and header file version don't match!"
3264         elif test "$xpm_status" = "2"; then
3265           xpm_problem="Xpm library version is too old!"
3266         else
3267           xpm_problem="Internal xpm detection logic error!"
3268         fi
3269         echo "
3270 *** WARNING *** $xpm_problem
3271   I'm not touching that with a 10-foot pole!
3272   If you really want to use the installed version of Xpm, rerun
3273   configure and add '--with-xpm=yes', but don't blame me if XEmacs crashes!"
3274     fi],
3275     [with_xpm=no])
3276     xe_check_libs=
3277     AC_MSG_RESULT($with_xpm)
3278   fi
3279   if test "$with_xpm" = "yes"; then
3280     dnl #### This code assumes that if AC_CHECK_LIB fails,
3281     dnl #### then it will succeed if FOR_MSW is defined,
3282     dnl #### but doesn't actually verify this assumption.
3283     AC_DEFINE(HAVE_XPM)
3284     XE_PREPEND("$libpath_xpm", LDFLAGS)
3285     XE_PREPEND(-lXpm, libs_x)
3286     XE_PREPEND("$incpath_xpm", CFLAGS)
3287     AC_MSG_CHECKING(for \"FOR_MSW\" xpm)
3288     xe_check_libs=-lXpm
3289     AC_TRY_LINK(, [XpmCreatePixmapFromData()],
3290     [xpm_for_msw=no],
3291     [xpm_for_msw=yes])
3292     xe_check_libs=
3293     AC_MSG_RESULT($xpm_for_msw)
3294     if test "$xpm_for_msw" = "yes"; then
3295       AC_DEFINE(FOR_MSW)
3296     fi
3297   fi
3298
3299   dnl Autodetect XFACE
3300   test -z "$with_xface" && { AC_CHECK_HEADER(compface.h,          ,with_xface=no) }
3301   test -z "$with_xface" && { AC_CHECK_LIB(compface, UnGenFace,[:] ,with_xface=no) }
3302   test -z "$with_xface" && with_xface=yes
3303   if test "$with_xface" = "yes"; then
3304     AC_DEFINE(HAVE_XFACE)
3305     XE_PREPEND(-lcompface, libs_x)
3306   fi
3307
3308   dnl For a brief period we had the GIF code split out into a separate library,
3309   dnl but patent problems, etc. sort of squashed that idea.
3310   dnl We default to building with builtin GIF decoding
3311   if test "$with_gif" != "no"; then
3312     with_gif="yes"
3313     AC_DEFINE(HAVE_GIF)
3314     XE_ADD_OBJS(dgif_lib.o gif_io.o)
3315   fi
3316
3317   dnl Too many stupid linkers can't detect cascaded lib dependencies until runtime
3318   dnl So we always search for libz compression support.
3319   if test "$with_png $with_tiff" != "no no"; then
3320     AC_CHECK_LIB(c,  inflate, [:], [
3321     AC_CHECK_LIB(z,  inflate, [XE_PREPEND(-lz,  libs_x)],[
3322     AC_CHECK_LIB(gz, inflate, [XE_PREPEND(-lgz, libs_x)])])])
3323   fi
3324
3325   dnl autodetect JPEG
3326   test -z "$with_jpeg" && { AC_CHECK_HEADER(jpeglib.h,                    ,with_jpeg=no) }
3327   test -z "$with_jpeg" && { AC_CHECK_LIB(jpeg, jpeg_destroy_decompress,[:],with_jpeg=no) }
3328   test -z "$with_jpeg" && with_jpeg=yes
3329   if test "$with_jpeg" = "yes"; then
3330     AC_DEFINE(HAVE_JPEG)
3331     XE_PREPEND(-ljpeg, libs_x)
3332   fi
3333
3334   dnl autodetect PNG
3335   png_problem=""
3336   test -z "$with_png" && { AC_CHECK_FUNC(pow,                  ,with_png=no) }
3337   test -z "$with_png" && { AC_CHECK_HEADER(png.h,              ,with_png=no) }
3338   test -z "$with_png" && { AC_CHECK_LIB(png, png_read_image,[:],with_png=no) }
3339   if test -z "$with_png"; then
3340     AC_MSG_CHECKING(for workable png version information)
3341     xe_check_libs="-lpng -lz"
3342     AC_TRY_RUN([#include <png.h>
3343     int main(int c, char **v) {
3344     if (c == 1) return 0;
3345     if (strcmp(png_libpng_ver, PNG_LIBPNG_VER_STRING) != 0) return 1;
3346     return (PNG_LIBPNG_VER < 10002) ? 2 : 0 ;}],
3347     [./conftest dummy_arg; png_status=$?;
3348       if test "$png_status" = "0"; then
3349         with_png=yes;
3350       else
3351         with_png=no;
3352         if test "$png_status" = "1"; then
3353           png_problem="PNG library version and header file don't match!"
3354         elif test "$png_status" = "2"; then
3355           png_problem="PNG library version too old (pre 1.0.2)!"
3356         fi
3357         echo "
3358 *** WARNING *** $png_problem
3359   I'm not touching that with a 10-foot pole!
3360   If you really want to use the installed version of libPNG, rerun
3361   configure and add '--with-png=yes', but don't blame me if XEmacs crashes!"
3362     fi],
3363     [with_png=no])
3364     xe_check_libs=
3365     AC_MSG_RESULT($with_png)
3366   fi
3367   if test "$with_png" = "yes"; then
3368     AC_DEFINE(HAVE_PNG)
3369     XE_PREPEND(-lpng, libs_x)
3370   fi
3371
3372   dnl autodetect TIFF
3373   test -z "$with_tiff" && { AC_CHECK_HEADER(tiffio.h,            ,with_tiff=no) }
3374   test -z "$with_tiff" && { AC_CHECK_LIB(tiff, TIFFClientOpen,[:],with_tiff=no) }
3375   test -z "$with_tiff" && with_tiff=yes
3376   if test "$with_tiff" = "yes"; then
3377     AC_DEFINE(HAVE_TIFF)
3378     XE_PREPEND(-ltiff, libs_x)
3379   fi
3380 fi
3381
3382 dnl ----------------------
3383 dnl GTK-Specific Graphics libraries
3384 dnl ----------------------
3385
3386 if test "$with_gtk" = "yes"; then
3387   dnl Autodetect XFACE
3388   test -z "$with_xface" && { AC_CHECK_HEADER(compface.h,          ,with_xface=no) }
3389   test -z "$with_xface" && { AC_CHECK_LIB(compface, UnGenFace,[:] ,with_xface=no) }
3390   test -z "$with_xface" && with_xface=yes
3391   if test "$with_xface" = "yes"; then
3392     AC_DEFINE(HAVE_XFACE)
3393     XE_PREPEND(-lcompface, libs_gtk)
3394   fi
3395 fi
3396
3397
3398 dnl ----------------------
3399 dnl X-Specific Graphics libraries
3400 dnl ----------------------
3401
3402 if test "$with_x11" = "yes"; then
3403   AC_CHECKING(for X11 graphics libraries)
3404 fi
3405
3406 dnl We don't automatically trigger widgets if athena is present
3407 dnl because of stability concerns.
3408 dnl But if the user wants widgets, still offer him autodetections
3409 case "$with_widgets" in
3410   "yes" | "athena")             detect_athena=yes ;;
3411    *)                           detect_athena=no ;;
3412 esac
3413
3414 if test "$with_x11" = "yes" -a "$detect_athena" = "yes" ; then
3415   AC_CHECKING(for the Athena widgets)
3416
3417   dnl What in heck did the user actually want?
3418   case "$with_athena" in
3419     dnl This is the default, old fashioned flat Athena.
3420     "xaw" | "") athena_variant=Xaw      athena_3d=no  ;;
3421     "3d")       athena_variant=Xaw3d    athena_3d=yes ;;
3422     "next")     athena_variant=neXtaw   athena_3d=yes ;;
3423     "95")       athena_variant=Xaw95    athena_3d=yes ;;
3424     "xpm")      athena_variant=XawXpm   athena_3d=yes ;;
3425     *)          XE_DIE("Unknown Athena widget set \`$with_athena'. This should not happen.") ;;
3426   esac
3427
3428   dnl Search for the Athena library...
3429   if test "$athena_3d" = "no"; then
3430     AC_CHECK_LIB($athena_variant, XawScrollbarSetThumb,
3431       [
3432         dnl Must not be a 3d library...
3433         AC_CHECK_LIB($athena_variant, threeDClassRec,
3434           AC_MSG_WARN("Could not find a non-3d Athena widget library."),
3435           athena_lib=$athena_variant)
3436       ],
3437       AC_MSG_WARN("Could not find an Athena widget library."))
3438   else
3439     dnl The real configuration, need 3d library
3440     AC_CHECK_LIB($athena_variant, threeDClassRec, athena_lib=$athena_variant,
3441       dnl OK, couldn't find it with a proper name, try the standard Athena lib
3442       dnl If that is 3d, presume the user asked for what they have installed.
3443       AC_CHECK_LIB(Xaw, threeDClassRec,
3444         [
3445           athena_lib=Xaw;
3446           AC_MSG_WARN("Assuming that libXaw is actually $athena_variant.");
3447         ],
3448         AC_MSG_WARN("Could not find a 3d Athena widget library that looked like $athena_variant.")))
3449   fi
3450
3451   dnl Now we locate the Athena headers that we need.
3452   if test "$athena_3d" = "no"; then
3453     AC_CHECK_HEADER(X11/Xaw/ThreeD.h,
3454       AC_MSG_WARN("Could not find a non-3d Athena header set."),
3455       AC_CHECK_HEADER(X11/Xaw/XawInit.h,
3456         athena_h_path=X11/Xaw,
3457         AC_MSG_WARN("Could not find a non-3d Athena header set.")))
3458   else
3459     dnl The three-d Athena headers are so much more slippery.
3460     dnl Curse this `Lets replace standard libraries' thing that they did. :/
3461     AC_CHECK_HEADER(X11/$athena_variant/XawInit.h,
3462       AC_CHECK_HEADER(X11/$athena_variant/ThreeD.h,
3463         athena_h_path=X11/$athena_variant,))
3464
3465     dnl Is the variant specific header directory directly under include?
3466     if test -z "$athena_h_path"; then
3467       AC_CHECK_HEADER($athena_variant/XawInit.h,
3468         AC_CHECK_HEADER($athena_variant/ThreeD.h,
3469           athena_h_path=$athena_variant,))
3470     fi
3471
3472     dnl If we couldn't find the specific variant, try the generic Athena 3d headers
3473     if test -z "$athena_h_path" -a "$athena_variant" != "Xaw3d"; then
3474       AC_CHECK_HEADER(X11/Xaw3d/XawInit.h,
3475         AC_CHECK_HEADER(X11/Xaw3d/ThreeD.h,
3476           [
3477             AC_MSG_WARN("Assuming that X11/Xaw3d headers are suitable for $athena_variant.")
3478             athena_h_path=X11/Xaw3d
3479           ],))
3480     fi
3481
3482     dnl Also generic 3d headers directly under include dir
3483     if test -z "$athena_h_path" -a "$athena_variant" != "Xaw3d"; then
3484       AC_CHECK_HEADER(Xaw3d/XawInit.h,
3485         AC_CHECK_HEADER(Xaw3d/ThreeD.h,
3486           [
3487             AC_MSG_WARN("Assuming that Xaw3d headers are suitable for $athena_variant.")
3488             athena_h_path=Xaw3d
3489           ],))
3490     fi
3491
3492     dnl If nothing yet found, see if Xaw is a 3d header set...
3493     dnl We AC_MSG_WARN if we fail because I am all out of ideas...
3494     if test -z "$athena_h_path"; then
3495       AC_CHECK_HEADER(X11/Xaw/ThreeD.h,
3496         [
3497           AC_MSG_WARN("Assuming that X11/Xaw headers are suitable for $athena_variant.")
3498           athena_h_path=X11/Xaw
3499         ],
3500         AC_MSG_WARN("Could not find a suitable 3d Athena header set."))
3501     fi
3502   fi
3503
3504   dnl Do we actually have a usable Athena widget set? Please?
3505   if test -n "$athena_lib" -a -n "$athena_h_path"; then
3506     have_xaw=yes
3507   else
3508     have_xaw=no
3509   fi
3510
3511 else
3512   have_xaw=no
3513 fi dnl "$with_x11" = "yes" -a "detect_athena" = "yes"
3514
3515 if test "$with_x11" = "yes"; then
3516   dnl autodetect Motif - but only add to libs_x later (if necessary)
3517   AC_CHECK_HEADER(Xm/Xm.h,
3518    [AC_CHECK_LIB(Xm, XmStringFree, have_motif=yes, have_motif=no)],
3519    have_motif=no)
3520
3521   if test "$have_motif" = "yes"; then
3522     dnl autodetect lesstif
3523     AC_MSG_CHECKING(for Lesstif)
3524     AC_EGREP_CPP(yes,
3525 [#include <Xm/Xm.h>
3526 #ifdef LESSTIF_VERSION
3527 yes
3528 #endif
3529 ], have_lesstif=yes, have_lesstif=no)
3530   AC_MSG_RESULT($have_lesstif)
3531   fi
3532
3533 fi dnl "$with_x11" = "yes"
3534
3535 dnl Finish ensuring that we have values for the various toolkit items.
3536 dnl Not all toolkits support all widgets
3537 dnl if Motif is available we use it for the dialog boxes.
3538
3539 case "$with_menubars" in "" | "yes" | "athena" )
3540   with_menubars="lucid" ;;
3541 esac
3542 case "$with_dialogs" in "" | "yes" | "lucid" )
3543   if   test "$have_motif"     = "yes"; then with_dialogs="motif"
3544   elif test "$have_xaw"       = "yes"; then with_dialogs="athena"
3545   else with_dialogs=no
3546   fi ;;
3547 esac
3548 case "$with_scrollbars" in "" | "yes" )
3549   with_scrollbars="lucid" ;;
3550 esac
3551 case "$with_widgets" in "" | "yes" | "lucid")
3552   if   test "$have_motif" = "yes"; then with_widgets="motif"
3553   elif test "$have_xaw"   = "yes"; then with_widgets="athena"
3554   else with_widgets=no
3555   fi ;;
3556 esac
3557
3558 all_widgets="$with_menubars $with_scrollbars $with_dialogs $with_toolbars $with_widgets"
3559
3560 case "$all_widgets" in
3561   *athena* )
3562     if test "$have_xaw" != "yes"; then
3563       XE_DIE("Could not find a suitable Athena library to build with.")
3564     fi
3565
3566     dnl Add the Lucid widget Athena code
3567     XE_APPEND(lwlib-Xaw.o, lwlib_objs)
3568
3569     dnl Add the Athena widget library we located earlier
3570     XE_PREPEND(-l$athena_lib, libs_x)
3571
3572     dnl Tell lwlib where to find the Athena header files.
3573     dnl Many people have tried to create a `smart' way of doing this,
3574     dnl but all have failed.  Before changing the following ugly definitions,
3575     dnl consult the veterans of many a battle.
3576     AC_DEFINE_UNQUOTED(ATHENA_Scrollbar_h_,"$athena_h_path/Scrollbar.h")
3577     AC_DEFINE_UNQUOTED(ATHENA_Dialog_h_,"$athena_h_path/Dialog.h")
3578     AC_DEFINE_UNQUOTED(ATHENA_Form_h_,"$athena_h_path/Form.h")
3579     AC_DEFINE_UNQUOTED(ATHENA_Command_h_,"$athena_h_path/Command.h")
3580     AC_DEFINE_UNQUOTED(ATHENA_Label_h_,"$athena_h_path/Label.h")
3581     AC_DEFINE_UNQUOTED(ATHENA_LabelP_h_,"$athena_h_path/LabelP.h")
3582     AC_DEFINE_UNQUOTED(ATHENA_Toggle_h_,"$athena_h_path/Toggle.h")
3583     AC_DEFINE_UNQUOTED(ATHENA_ToggleP_h_,"$athena_h_path/ToggleP.h")
3584     AC_DEFINE_UNQUOTED(ATHENA_AsciiText_h_,"$athena_h_path/AsciiText.h")
3585     AC_DEFINE_UNQUOTED(ATHENA_XawInit_h_,"$athena_h_path/XawInit.h")
3586
3587     AC_DEFINE(LWLIB_USES_ATHENA)
3588     AC_DEFINE(NEED_ATHENA)
3589     need_athena="yes"
3590
3591     if test "$athena_3d" = "yes"; then
3592       AC_DEFINE(HAVE_ATHENA_3D)
3593     fi
3594   ;;
3595 esac
3596
3597 case "$all_widgets" in *motif* )
3598   AC_DEFINE(LWLIB_USES_MOTIF)
3599   AC_DEFINE(NEED_MOTIF)
3600   XE_APPEND(lwlib-Xm.o, lwlib_objs)
3601   need_motif=yes ;;
3602 esac
3603
3604 test "$with_menubars"   = "lucid" && XE_APPEND(xlwmenu.o, lwlib_objs)
3605 test "$with_menubars"   = "motif" && XE_APPEND(xlwmenu.o, lwlib_objs)
3606 test "$with_scrollbars" = "lucid" && XE_APPEND(xlwscrollbar.o, lwlib_objs)
3607 test "$with_widgets"   != "no" && test "$with_widgets" != "msw" && \
3608         XE_APPEND(xlwtabs.o xlwgcs.o, lwlib_objs)
3609 case "$with_widgets" in athena* )
3610         XE_APPEND(xlwradio.o xlwcheckbox.o xlwgauge.o, lwlib_objs);;
3611 esac
3612 case "$all_widgets" in *lucid* )
3613   AC_DEFINE(NEED_LUCID)
3614   XE_APPEND(lwlib-Xlw.o, lwlib_objs) ;;
3615 esac
3616
3617 AC_SUBST(lwlib_objs)
3618
3619 test "$with_scrollbars" = "athena" && AC_DEFINE(LWLIB_SCROLLBARS_ATHENA)
3620 test "$with_dialogs"    = "athena" && AC_DEFINE(LWLIB_DIALOGS_ATHENA)
3621
3622 if test "$athena_3d" = "yes"; then
3623   test "$with_scrollbars" = "athena" && AC_DEFINE(LWLIB_SCROLLBARS_ATHENA3D)
3624   test "$with_dialogs"    = "athena" && AC_DEFINE(LWLIB_DIALOGS_ATHENA3D)
3625 fi
3626
3627 case "$with_widgets" in athena* ) AC_DEFINE(LWLIB_WIDGETS_ATHENA);; esac
3628 test "$with_widgets" != "no" && test "$with_widgets" != "msw" && \
3629         AC_DEFINE(LWLIB_TABS_LUCID)
3630
3631 test "$with_menubars"   != "no"    && AC_DEFINE(HAVE_MENUBARS)
3632 test "$with_scrollbars" != "no"    && AC_DEFINE(HAVE_SCROLLBARS)
3633 test "$with_dialogs"    != "no"    && AC_DEFINE(HAVE_DIALOGS)
3634 test "$with_toolbars"   != "no"    && AC_DEFINE(HAVE_TOOLBARS)
3635 test "$with_widgets"    != "no"    && AC_DEFINE(HAVE_WIDGETS)
3636
3637 test "$with_menubars"   = "lucid"  && AC_DEFINE(LWLIB_MENUBARS_LUCID)
3638 test "$with_scrollbars" = "lucid"  && AC_DEFINE(LWLIB_SCROLLBARS_LUCID)
3639
3640 test "$with_menubars"   = "motif"  && AC_DEFINE(LWLIB_MENUBARS_MOTIF)
3641 test "$with_scrollbars" = "motif"  && AC_DEFINE(LWLIB_SCROLLBARS_MOTIF)
3642 test "$with_dialogs"    = "motif"  && AC_DEFINE(LWLIB_DIALOGS_MOTIF)
3643 test "$with_widgets"    = "motif"  && AC_DEFINE(LWLIB_WIDGETS_MOTIF)
3644
3645 test "$with_menubars"   != "no"    && XE_ADD_OBJS(menubar.o)
3646 test "$with_scrollbars" != "no"    && XE_ADD_OBJS(scrollbar.o)
3647 test "$with_dialogs"    != "no"    && XE_ADD_OBJS(dialog.o)
3648 test "$with_toolbars"   != "no"    && XE_ADD_OBJS(toolbar.o)
3649
3650 if test "$with_gtk" = "yes"; then
3651   test "$with_menubars"   != "no"      && XE_ADD_OBJS(menubar-gtk.o)
3652   test "$with_scrollbars" != "no"      && XE_ADD_OBJS(scrollbar-gtk.o)
3653   test "$with_dialogs"    != "no"      && XE_ADD_OBJS(dialog-gtk.o)
3654   test "$with_toolbars"   != "no"      && XE_ADD_OBJS(toolbar-gtk.o)
3655   test "$all_widgets" != "no no no no no" && XE_ADD_OBJS(gui-gtk.o)
3656 fi
3657
3658 if test "$with_x11" = "yes"; then
3659   test "$with_menubars"   != "no"  && XE_ADD_OBJS(menubar-x.o)
3660   test "$with_scrollbars" != "no"  && XE_ADD_OBJS(scrollbar-x.o)
3661   test "$with_dialogs"    != "no"  && XE_ADD_OBJS(dialog-x.o)
3662   test "$with_toolbars"   != "no"  && XE_ADD_OBJS(toolbar-x.o)
3663   test "$all_widgets" != "no no no no no" && XE_ADD_OBJS(gui-x.o)
3664 fi
3665
3666 dnl ----------------------
3667 dnl Mule-dependent options
3668 dnl ----------------------
3669
3670 test -z "$with_mule" && with_mule=no
3671 test -z "$with_file_coding" && with_file_coding=no
3672
3673 dnl if test "$with_mule" = "yes" && test ! -d "$srcdir/lisp/mule"; then
3674 dnl     echo "Attempt to Build with Mule without Mule/Lisp"
3675 dnl     echo "Please install the XEmacs/Mule tarball or"
3676 dnl     echo "rerun configure with --with-mule=no"
3677 dnl     exit 1
3678 dnl fi
3679
3680 if test "$with_file_coding" = "yes" && test "$with_mule" = "no"; then
3681   AC_DEFINE(FILE_CODING)
3682   XE_ADD_OBJS(file-coding.o)
3683 fi
3684
3685 if test "$with_mule" = "yes" ; then
3686   AC_CHECKING(for Mule-related features)
3687   AC_DEFINE(MULE)
3688   AC_DEFINE(FILE_CODING)
3689   XE_ADD_OBJS(mule.o mule-ccl.o mule-charset.o)
3690   if test "$with_utf_2000" = "yes" && test "$with_text_coding" = "yes"; then
3691     AC_DEFINE(TEXT_CODING)
3692     XE_ADD_OBJS(text-coding.o)
3693   else
3694     XE_ADD_OBJS(file-coding.o)
3695   fi
3696   dnl Use -lintl to get internationalized strerror for Mule
3697   AC_CHECK_HEADERS(libintl.h)
3698   AC_CHECK_LIB(intl, strerror)
3699
3700   if test "$with_utf_2000" = "yes" ; then
3701     AC_DEFINE(CHAR_IS_UCS4)
3702     AC_DEFINE(UTF2000)
3703   fi
3704
3705   AC_CHECKING(for Mule input methods)
3706   dnl Do we have the XmIm* routines?  And if so, do we want to use them?
3707   dnl XIM seems to be flaky except on Solaris...
3708   dnl test -z "$with_xim" -a "$opsys" != "sol2" && with_xim=no
3709   case "$with_xim" in "" | "yes" )
3710     AC_CHECKING(for XIM)
3711     AC_CHECK_LIB(X11, XOpenIM, with_xim=xlib, with_xim=no)
3712     dnl XIM + Lesstif is not (yet?) usable
3713     if test "$have_motif $have_lesstif" = "yes no"; then
3714       AC_CHECK_LIB(Xm, XmImMbLookupString, with_xim=motif)
3715     fi ;;
3716   esac
3717   if test "$with_xim" != "no"; then
3718     AC_DEFINE(HAVE_XIM)
3719     if test "$with_xim" = "xlib"; then
3720       AC_DEFINE(XIM_XLIB)
3721       XE_ADD_OBJS(input-method-xlib.o)
3722     fi
3723     if test "$with_xim" = "motif"; then
3724       AC_DEFINE(XIM_MOTIF)
3725       need_motif=yes
3726       XE_ADD_OBJS(input-method-motif.o)
3727     fi
3728     if test "$with_xim" = "motif"; then
3729       with_xfs=no
3730     fi
3731   fi
3732
3733   dnl "with_xfs" = "yes"
3734   if test "$with_xfs" = "yes" ; then
3735     AC_CHECKING(for XFontSet)
3736     AC_CHECK_LIB(X11, XmbDrawString, [:], with_xfs=no)
3737     if test "$with_xfs" = "yes" && test "$with_menubars" = "lucid"; then
3738       AC_DEFINE(USE_XFONTSET)
3739       if test "$with_xim" = "no" ; then
3740         XE_ADD_OBJS(input-method-xlib.o)
3741       fi
3742     fi
3743   fi dnl with_xfs
3744
3745   dnl Autodetect WNN
3746   test "$with_wnn6" = "yes" && with_wnn=yes # wnn6 implies wnn support
3747   test -z "$with_wnn" && { AC_CHECK_HEADER(wnn/jllib.h, ,with_wnn=no) }
3748   dnl gcc 2.97 fixincludes breaks inclusion of wnn/commonhd.h
3749   test -z "$with_wnn" && { AC_CHECK_HEADER(wnn/commonhd.h, ,with_wnn=no) }
3750   dnl Detour to find crypt
3751   if test "$with_wnn" != "no"; then
3752     AC_CHECK_FUNCS(crypt)
3753     test "$ac_cv_func_crypt" != "yes" && { AC_CHECK_LIB(crypt, crypt) }
3754   fi
3755   dnl Back to our regularly scheduled wnn hunting
3756   if test -z "$with_wnn" -o "$with_wnn" = "yes"; then
3757     AC_CHECK_LIB(wnn,jl_dic_list_e,libwnn=wnn,
3758       AC_CHECK_LIB(wnn4,jl_dic_list_e,libwnn=wnn4,
3759         AC_CHECK_LIB(wnn6,jl_dic_list_e,libwnn=wnn6,
3760           AC_CHECK_LIB(wnn6_fromsrc,dic_list_e,libwnn=wnn6_fromsrc,with_wnn=no))))
3761   fi
3762   test -z "$with_wnn" && with_wnn=yes
3763   if test "$with_wnn" = "yes"; then
3764     AC_DEFINE(HAVE_WNN)
3765     XE_PREPEND(-l$libwnn, libs_x)
3766     XE_ADD_OBJS(mule-wnnfns.o)
3767     if test "$with_wnn6" != "no"; then
3768       AC_CHECK_LIB($libwnn, jl_fi_dic_list, with_wnn6=yes)
3769       test "$with_wnn6" = "yes" && AC_DEFINE(WNN6)
3770     fi
3771   fi
3772
3773   dnl Autodetect canna
3774   canna_includes_found=no
3775   if test "$with_canna" != "no"; then
3776     AC_CHECK_HEADER(canna/jrkanji.h,canna_includes_found=yes)
3777   fi
3778   if test "$canna_includes_found" = "no" -a "$with_canna" != "no" -a \
3779       -d "/usr/local/canna/include"; then
3780     save_c_switch_site="$c_switch_site"
3781     c_switch_site="$c_switch_site -I/usr/local/canna/include"
3782     AC_CHECK_HEADER(canna/jrkanji.h,canna_includes_found=yes)
3783     if test "$canna_includes_found" != "yes"; then
3784       c_switch_site="$save_c_switch_site"
3785       with_canna="no"
3786     fi
3787   fi
3788
3789   test -z "$with_canna" && { AC_CHECK_HEADER(canna/RK.h,         , with_canna=no) }
3790   test -z "$with_canna" && { AC_CHECK_LIB(RKC, RkBgnBun,       [:],with_canna=no) }
3791   test -z "$with_canna" && { AC_CHECK_LIB(canna,jrKanjiControl,[:],with_canna=no) }
3792   test -z "$with_canna" && with_canna=yes
3793   if test "$with_canna" = "yes"; then
3794     AC_DEFINE(HAVE_CANNA)
3795     XE_PREPEND(-lcanna -lRKC, libs_x)
3796     XE_ADD_OBJS(mule-canna.o)
3797   fi
3798
3799 else dnl "$with_mule" = "no"
3800   for feature in xim canna wnn; do
3801     if eval "test -n \"\$with_${feature}\" -a \"\$with_${feature}\" != no" ; then
3802       AC_MSG_WARN("--with-${feature} ignored:  Not valid without Mule support")
3803     fi
3804     eval "with_${feature}=no"
3805   done
3806 fi dnl with_mule
3807
3808
3809 dnl At this point, we know whether we need the motif lib or not.
3810 if test "$need_motif" = "yes" ; then
3811   XE_PREPEND(-lXm, libs_x)
3812   dnl AIX needs the following library for use with Motif
3813   AC_CHECK_LIB(i18n, layout_object_getvalue, [XE_PREPEND(-li18n, libs_x)])
3814   XE_COMPUTE_RUNPATH()
3815 fi
3816
3817 dnl ----------------------------------------------------------------
3818 dnl Check for POSIX functions.
3819 dnl ----------------------------------------------------------------
3820
3821 AC_CHECK_FUNCS(cbrt closedir dup2 eaccess fmod fpathconf frexp ftime getaddrinfo gethostname getnameinfo getpagesize gettimeofday getcwd getwd logb lrand48 matherr mkdir mktime perror poll random rename res_init rint rmdir select setitimer setpgid setlocale setsid sigblock sighold sigprocmask snprintf stpcpy strerror tzset ulimit usleep waitpid vsnprintf fsync ftruncate umask)
3822
3823 dnl getaddrinfo() is borked under hpux11
3824 if test "$ac_cv_func_getaddrinfo" != "no" ; then
3825   case "$opsys" in
3826     hpux11 )
3827       AC_MSG_WARN([Use of getaddrinfo is disabled for HP-UX 11.XX.])
3828       ac_cv_func_getaddrinfo=no
3829       ;;
3830   esac
3831 fi
3832
3833 dnl ----------------------------------------------------------------
3834 dnl Check for PTY support functions.
3835 dnl ----------------------------------------------------------------
3836
3837 dnl There is no "standard" pty allocation method.  Every system is different.
3838 dnl  getpt()  is the preferred pty allocation method on glibc systems.
3839 dnl _getpty() is the preferred pty allocation method on SGI systems.
3840 dnl grantpt(), unlockpt(), ptsname() are defined by Unix98.
3841 AC_CHECK_FUNCS(getpt _getpty grantpt unlockpt ptsname killpg tcgetpgrp)
3842
3843 dnl openpty() is the preferred pty allocation method on BSD and Tru64 systems.
3844 dnl openpty() might be declared in:
3845 dnl - pty.h (Tru64 or Linux)
3846 dnl - libutil.h (FreeBSD)
3847 dnl - util.h (NetBSD)
3848 AC_CHECK_FUNC(openpty, have_openpty=yes, [
3849   AC_CHECK_LIB(util, openpty, have_openpty=yes need_libutil=yes)])
3850 if test "$have_openpty" = "yes"; then
3851   AC_DEFINE(HAVE_OPENPTY)
3852   AC_CHECK_HEADERS(pty.h libutil.h util.h, break)
3853   test "$need_libutil" = "yes" && XE_APPEND(-lutil, libs_system)
3854 fi
3855
3856 dnl Check for STREAM support functions.
3857 dnl Confusingly, "str" means both "string" and "SysV Streams".
3858 AC_CHECK_HEADERS(stropts.h)
3859 if test "$ac_cv_header_stropts_h" = "yes"; then
3860   AC_CHECK_FUNCS(isastream)
3861   AC_CHECK_HEADERS(strtio.h) dnl TIOCSIGNAL
3862 fi
3863
3864 dnl Use our own realpath always.
3865 XE_ADD_OBJS(realpath.o)
3866
3867 dnl Check whether the system provides getloadavg().
3868 AC_CHECK_FUNCS(getloadavg)
3869
3870 if test "$ac_cv_func_getloadavg" = "yes"; then
3871   dnl Solaris 8 declares getloadavg() in <sys/loadavg.h>.
3872   dnl glibc 2.2 declares getloadavg() in <stdlib.h>...
3873   dnl   ...if we #define _GNU_SOURCE, which we do.
3874   AC_CHECK_HEADERS(sys/loadavg.h)
3875 else
3876   dnl We define our own getloadavg() using lower level functions.
3877   XE_ADD_OBJS(getloadavg.o)
3878
3879   dnl Used by getloadavg() - does not require root priveleges
3880   AC_CHECK_LIB(kstat, kstat_open)
3881   AC_CHECK_HEADERS(kstat.h)
3882
3883   dnl Another way to get the load average
3884   AC_CHECK_LIB(kvm, kvm_read)
3885 fi
3886
3887 dnl If netdb.h does not declare h_errno, we must declare it by hand.
3888 AC_MSG_CHECKING(whether netdb declares h_errno)
3889 AC_TRY_LINK([#include <netdb.h>],
3890   [return h_errno;],
3891   [AC_MSG_RESULT(yes)
3892    AC_DEFINE(HAVE_H_ERRNO)],
3893   [AC_MSG_RESULT(no)])
3894
3895 AC_MSG_CHECKING(for sigsetjmp)
3896 AC_TRY_COMPILE([#include <setjmp.h>],
3897         [sigjmp_buf bar; sigsetjmp (bar, 0);],
3898   [AC_MSG_RESULT(yes)
3899    AC_DEFINE(HAVE_SIGSETJMP)],
3900   [AC_MSG_RESULT(no)])
3901
3902 AC_MSG_CHECKING(whether localtime caches TZ)
3903 AC_CACHE_VAL(emacs_cv_localtime_cache,
3904 [if test "$ac_cv_func_tzset" = "yes"; then
3905 AC_TRY_RUN([#include <time.h>
3906 #if STDC_HEADERS
3907 # include <stdlib.h>
3908 #endif
3909 extern char **environ;
3910 unset_TZ ()
3911 {
3912   char **from, **to;
3913   for (to = from = environ; (*to = *from); from++)
3914     if (! (to[0][0] == 'T' && to[0][1] == 'Z' && to[0][2] == '='))
3915       to++;
3916 }
3917 char TZ_GMT0[] = "TZ=GMT0";
3918 char TZ_PST8[] = "TZ=PST8";
3919 main()
3920 {
3921   time_t now = time ((time_t *) 0);
3922   int hour_GMT0, hour_unset;
3923   if (putenv (TZ_GMT0) != 0)
3924     exit (1);
3925   hour_GMT0 = localtime (&now)->tm_hour;
3926   unset_TZ ();
3927   hour_unset = localtime (&now)->tm_hour;
3928   if (putenv (TZ_PST8) != 0)
3929     exit (1);
3930   if (localtime (&now)->tm_hour == hour_GMT0)
3931     exit (1);
3932   unset_TZ ();
3933   if (localtime (&now)->tm_hour != hour_unset)
3934     exit (1);
3935   exit (0);
3936 }], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
3937 [# If we have tzset, assume the worst when cross-compiling.
3938 emacs_cv_localtime_cache=yes])
3939 else
3940         # If we lack tzset, report that localtime does not cache TZ,
3941         # since we can't invalidate the cache if we don't have tzset.
3942         emacs_cv_localtime_cache=no
3943 fi],[:])dnl
3944 AC_MSG_RESULT($emacs_cv_localtime_cache)
3945 if test $emacs_cv_localtime_cache = yes; then
3946   AC_DEFINE(LOCALTIME_CACHE)
3947 fi
3948
3949 if test "$HAVE_TIMEVAL" = "yes"; then
3950 AC_MSG_CHECKING(whether gettimeofday accepts one or two arguments)
3951 AC_TRY_LINK([
3952 #ifdef TIME_WITH_SYS_TIME
3953 #include <sys/time.h>
3954 #include <time.h>
3955 #else
3956 #ifdef HAVE_SYS_TIME_H
3957 #include <sys/time.h>
3958 #else
3959 #include <time.h>
3960 #endif
3961 #endif
3962   ],
3963   [
3964   struct timeval time;
3965   gettimeofday (&time, 0);
3966 ],
3967   [AC_MSG_RESULT(two)],
3968   [AC_MSG_RESULT(one)
3969    AC_DEFINE(GETTIMEOFDAY_ONE_ARGUMENT)])
3970 fi
3971
3972
3973 AC_C_INLINE
3974 test "$ac_cv_c_inline" != "no" -a "$GCC" = "yes" && XE_ADD_OBJS(inline.o)
3975
3976 dnl HP-UX has a working alloca in libPW.
3977 dnl case "${GCC}${opsys}" in hpux* )
3978 dnl  AC_CHECK_FUNC(alloca, [:], [AC_CHECK_LIB(PW, alloca)])
3979 dnl esac
3980
3981 dnl AC_FUNC_ALLOCA doesn't know about DEC C's #pragma intrinsic(alloca)
3982 if test "$__DECC" != "yes"; then
3983   AC_FUNC_ALLOCA
3984   test -n "$ALLOCA" && XE_ADD_OBJS($ALLOCA)
3985 fi
3986
3987 dnl Check whether vfork exists and works correctly. (This does more
3988 dnl than just check for its existence.) If so, it defines HAVE_VFORK_H.
3989 dnl If not, it defines vfork to be fork.
3990 AC_FUNC_VFORK
3991
3992 dnl Check whether strcoll exists and works correctly. (This does more
3993 dnl than just check for its existence.) If so, it defines HAVE_STRCOLL.
3994 AC_FUNC_STRCOLL
3995
3996 dnl If `getpgrp' takes no argument (the POSIX.1 version), define
3997 dnl `GETPGRP_VOID'.  Otherwise, it is the BSD version, which takes a
3998 dnl process ID as an argument.
3999 AC_CHECK_FUNCS(getpgrp)
4000 AC_FUNC_GETPGRP
4001
4002 dnl We used to call AC_FUNC_MMAP here
4003 dnl Instead we now use following, suggested by Neal Becker
4004 AC_MSG_CHECKING(for working mmap)
4005 case "$opsys" in ultrix* ) have_mmap=no ;; *)
4006 AC_TRY_RUN([#include <stdio.h>
4007 #include <unistd.h>
4008 #include <fcntl.h>
4009 #include <sys/mman.h>
4010
4011 #ifndef MAP_VARIABLE
4012 #define MAP_VARIABLE 0
4013 #endif
4014
4015 #ifndef MAP_FAILED
4016 #define MAP_FAILED -1
4017 #endif
4018
4019 int main (int argc, char *argv[])
4020 {
4021   int fd = -1;
4022   caddr_t p;
4023 #ifndef MAP_ANONYMOUS
4024   fd = open ("/dev/zero", O_RDWR);
4025   if (fd < 0)
4026     return 1;
4027 #define MAP_ANONYMOUS 0
4028 #endif
4029   if (mmap(0, 1024, PROT_READ | PROT_WRITE,
4030            MAP_PRIVATE | MAP_VARIABLE | MAP_ANONYMOUS,
4031            fd, 0) != (void *) MAP_FAILED)
4032     return 0;
4033   perror ("conftest: mmap failed");
4034   return 1;
4035 }], have_mmap=yes, have_mmap=no) ;;
4036 esac
4037 AC_MSG_RESULT($have_mmap)
4038 test "$have_mmap" = "yes" && AC_DEFINE(HAVE_MMAP)
4039
4040 dnl By default we switch off rel-alloc on cygwin as it generally causes us grief
4041 case "$opsys" in cygwin*) 
4042         test "$rel_alloc" = "default" && rel_alloc=no ;;
4043 esac
4044 dnl rel_alloc requires either GNU malloc or system malloc with mmap
4045 dnl We only turn rel_alloc on by default if mmap is available.
4046 test "$GNU_MALLOC" != "yes" -a "$have_mmap" != "yes" && rel_alloc=no
4047 if test "$rel_alloc $have_mmap" = "default yes"; then
4048   if test "$doug_lea_malloc" = "yes"; then
4049     dnl Check if malloc() calls mmap(), making rel_alloc pointless.
4050     AC_MSG_CHECKING(for M_MMAP_THRESHOLD)
4051     AC_TRY_COMPILE([#include <malloc.h>],[
4052 #ifndef M_MMAP_THRESHOLD
4053 #error No M_MMAP_THRESHOLD :-(
4054 !@+$%^&*_)(_ - unlikely to compile...
4055 #endif
4056 ], [rel_alloc=no; AC_MSG_RESULT(yes);], [rel_alloc=yes; AC_MSG_RESULT(no);])
4057   else
4058     rel_alloc=yes
4059   fi
4060 fi
4061 test "$rel_alloc" = "yes" && AC_DEFINE(REL_ALLOC)
4062
4063 dnl Check for terminal I/O variants
4064 dnl TERMIOS systems may have termio.h, but not vice-versa, I think.
4065 AC_CHECK_HEADER(termios.h,
4066   AC_DEFINE(HAVE_TERMIOS)
4067   AC_DEFINE(SIGNALS_VIA_CHARACTERS)
4068   AC_DEFINE(NO_TERMIO),
4069   [AC_CHECK_HEADER(termio.h, [AC_DEFINE(HAVE_TERMIO)])])
4070
4071
4072 dnl Check for Internet sockets.
4073 AC_CHECK_FUNC(socket,
4074  [AC_CHECK_HEADER(netinet/in.h,
4075    [AC_CHECK_HEADER(arpa/inet.h, [
4076   AC_DEFINE(HAVE_SOCKETS)
4077       AC_MSG_CHECKING("for sun_len member in struct sockaddr_un")
4078       AC_TRY_LINK([
4079 #include <sys/types.h>
4080 #include <sys/socket.h>
4081 #include <sys/un.h>
4082       ],
4083       [static struct sockaddr_un x; x.sun_len = 1;],
4084       [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_SOCKADDR_SUN_LEN)],
4085       [AC_MSG_RESULT(no)])
4086       AC_MSG_CHECKING("for ip_mreq struct in netinet/in.h")
4087       AC_TRY_LINK([
4088 #include <sys/types.h>
4089 #include <netinet/in.h>
4090       ],
4091       [static struct ip_mreq x;],
4092       [AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MULTICAST)],
4093       [AC_MSG_RESULT(no)])])])])
4094
4095 dnl Check for SYS V IPC. (Inferior to sockets.)
4096 AC_CHECK_FUNC(msgget,
4097   [AC_CHECK_HEADER(sys/ipc.h,
4098     [AC_CHECK_HEADER(sys/msg.h,
4099       [AC_DEFINE(HAVE_SYSVIPC)])])])
4100
4101 dnl Check for directory variants
4102 AC_CHECK_HEADER(dirent.h, [AC_DEFINE(SYSV_SYSTEM_DIR)],
4103   [AC_CHECK_HEADER(sys/dir.h, , [AC_DEFINE(NONSYSTEM_DIR_LIBRARY)])])
4104
4105 dnl Check for nlist.h
4106 AC_CHECK_HEADER(nlist.h, AC_DEFINE(NLIST_STRUCT), )
4107
4108 dnl Check for sound of various sorts.
4109
4110 dnl Autodetect native sound
4111 AC_CHECKING("for sound support")
4112 test -z "$with_native_sound" -a -n "$native_sound_lib" && with_native_sound=yes
4113
4114 if test "$with_native_sound" != "no"; then
4115   dnl Maybe sound is already on include path...
4116   if test -n "$native_sound_lib"; then
4117     AC_CHECK_HEADER(multimedia/audio_device.h,
4118       [sound_found=yes sound_cflags=""
4119       XE_ADD_OBJS(sunplay.o)])
4120   fi
4121
4122   dnl Autodetect Sun native sound from SUNWaudmo package
4123   if test -z "$sound_found" -a -d "/usr/demo/SOUND"; then
4124     sound_found=yes
4125     XE_ADD_OBJS(sunplay.o)
4126     if test -d "/usr/demo/SOUND/include"
4127       then sound_cflags="-I/usr/demo/SOUND/include"
4128       else sound_cflags="-I/usr/demo/SOUND"
4129     fi
4130     if test -z "$native_sound_lib" ; then
4131       if test -r "/usr/demo/SOUND/lib/libaudio.a"
4132         then native_sound_lib="/usr/demo/SOUND/lib/libaudio.a"
4133         else native_sound_lib="/usr/demo/SOUND/libaudio.a"
4134       fi
4135     fi
4136   fi
4137
4138   dnl Check for SGI and HP native sound libs
4139   if test -z "$sound_found"; then
4140     case "$canonical" in
4141     *-sgi-* )
4142       if test -z "$native_sound_lib"; then
4143         AC_CHECK_LIB(audio, ALopenport, native_sound_lib="-laudio")
4144       fi
4145       if test -n "$native_sound_lib"; then
4146         sound_found=yes sound_cflags=""
4147         XE_ADD_OBJS(sgiplay.o)
4148       fi ;;
4149     hppa*-hp-hpux* )
4150       if test -z "$native_sound_lib"; then
4151         AC_CHECK_LIB(Alib, AOpenAudio, native_sound_lib="-lAlib")
4152       fi
4153       if test -n "$native_sound_lib"; then
4154         sound_found=yes
4155         XE_ADD_OBJS(hpplay.o)
4156         if test "$GCC" = "yes" # Kludge city
4157           then sound_cflags="-Dconst= -Dvolatile= -I/usr/audio/examples"
4158           else sound_cflags="+e -I/usr/audio/examples"
4159         fi
4160       fi ;;
4161     esac
4162   fi
4163
4164   dnl Win32 Native uses native sound
4165   if test -z "$sound_found"; then
4166     if test "$with_msw" = "yes"; then
4167     sound_found=yes
4168     native_sound_lib=
4169     fi
4170   fi
4171
4172   dnl Check for Linux/BSD native sound
4173   if test -z "$sound_found"; then
4174     for dir in "machine" "sys" "linux"; do
4175       AC_CHECK_HEADER(${dir}/soundcard.h,
4176         sound_found=yes
4177        need_miscplay=yes
4178         XE_ADD_OBJS(linuxplay.o)
4179         [AC_DEFINE_UNQUOTED(SOUNDCARD_H_FILE, "${dir}/soundcard.h")]
4180         break)
4181     done
4182   fi
4183
4184   test "$sound_found" = "yes" && with_native_sound=yes
4185 fi
4186
4187 if test "$with_native_sound" = "yes"; then
4188   AC_DEFINE(HAVE_NATIVE_SOUND)
4189   test -n "$native_sound_lib" && XE_PREPEND($native_sound_lib, LIBS)
4190 fi
4191
4192 dnl NAS Sound support
4193 if test "$with_nas_sound" != "no"; then
4194   AC_CHECK_HEADER(audio/audiolib.h, [
4195     AC_CHECK_LIB(audio, AuOpenServer, have_nas_sound=yes)])
4196   if test "$have_nas_sound" = "yes"; then
4197     with_nas_sound=yes
4198     AC_DEFINE(HAVE_NAS_SOUND)
4199     XE_ADD_OBJS(nas.o)
4200     XE_PREPEND(-laudio, libs_x)
4201     dnl If the nas library does not contain the error jump point,
4202     dnl then we force safer behavior.
4203     AC_EGREP_HEADER(AuXtErrorJump,audio/Xtutil.h,,[old_nas=yes; AC_DEFINE(NAS_NO_ERROR_JUMP)])
4204   else
4205     test "$with_nas_sound" = "yes" && \
4206       XE_DIE("Required NAS sound support cannot be provided.")
4207     with_nas_sound=no
4208   fi
4209 fi
4210
4211 dnl ESD Sound support
4212 if test "$with_esd_sound" != "no"; then
4213   AC_CHECK_PROG(have_esd_config, esd-config, yes, no)
4214   if test "$have_esd_config" = "yes"; then
4215     save_c_switch_site="$c_switch_site" save_LIBS="$LIBS"
4216     XE_APPEND(`esd-config --cflags`, c_switch_site)
4217     XE_PREPEND(`esd-config --libs`, LIBS)
4218     AC_CHECK_FUNC(esd_play_stream,
4219       have_esd_sound=yes,
4220       c_switch_site="$save_c_switch_site" LIBS="$save_LIBS")
4221   fi
4222
4223   if test "$have_esd_sound" = "yes"; then
4224     with_esd_sound=yes
4225     need_miscplay=yes
4226     XE_ADD_OBJS(esd.o)
4227     AC_DEFINE(HAVE_ESD_SOUND)
4228   else
4229     test "$with_esd_sound" = "yes" && \
4230       XE_DIE("Required ESD sound support cannot be provided.")
4231     with_esd_sound=no
4232   fi
4233 fi
4234
4235 test "$need_miscplay" = "yes" && XE_ADD_OBJS(miscplay.o)
4236
4237 dnl ---------------------
4238 dnl TTY-dependent options
4239 dnl ---------------------
4240
4241 test -z "$with_tty" && with_tty=yes
4242
4243 if test "$with_tty" = "yes"  ; then
4244   AC_CHECKING(for TTY-related features)
4245   AC_DEFINE(HAVE_TTY)
4246   XE_ADD_OBJS(console-tty.o device-tty.o event-tty.o frame-tty.o objects-tty.o redisplay-tty.o cm.o)
4247
4248   dnl Autodetect ncurses.
4249   if test -z "$with_ncurses"; then
4250     AC_CHECK_LIB(ncurses, tgetent, with_ncurses=yes, with_ncurses=no)
4251   fi
4252   if test "$with_ncurses" = "yes"; then
4253     AC_DEFINE(HAVE_NCURSES)
4254     AC_CHECK_HEADER(ncurses/curses.h, curses_h_file=ncurses/curses.h)
4255     AC_CHECK_HEADER(ncurses/term.h, term_h_file=ncurses/term.h)
4256     XE_ADD_OBJS(terminfo.o)
4257     XE_PREPEND(-lncurses, LIBS)
4258
4259     if test "$ac_cv_header_ncurses_curses_h" != "yes" ; then
4260       dnl Try again, and check for the bogus ncurses/ include bug.
4261       dnl (i.e. ncurses/curses.h bogusly includes <unctrl.h> instead of
4262       dnl <ncurses/unctrl.h>)
4263       save_c_switch_site="$c_switch_site"
4264       c_switch_site="$c_switch_site -I/usr/include/ncurses"
4265       AC_CHECK_HEADER(ncurses/curses.h, curses_h_file=ncurses/curses.h)
4266       if test "$ac_cv_header_ncurses_curses_h" = "yes"
4267         then AC_MSG_WARN("Your system has the bogus ncurses include bug.")
4268         else c_switch_site="$save_c_switch_site"
4269       fi
4270     fi
4271   else dnl "$with_ncurses" = "no"
4272     dnl Autodetect terminfo/-lcurses/-ltermlib/-ltermcap
4273     if test "$have_terminfo" = "yes"; then
4274       XE_ADD_OBJS(terminfo.o)
4275       if test -n "$libs_termcap"; then
4276         XE_PREPEND($libs_termcap, LIBS)
4277       else
4278         for lib in curses termlib termcap; do
4279           AC_CHECK_LIB($lib, tgetent, XE_PREPEND(-l${lib}, LIBS); break)
4280         done
4281       fi
4282     else dnl "$have_terminfo" = "no" && "with_ncurses" = "no"
4283       if test -n "$libs_termcap" -a "$opsys" = "openbsd"; then
4284         dnl We need to check if tgoto does not exist in termcap yet
4285         dnl because on OpenBSD libtermcap is another name for libcurses
4286         dnl which provides the same tgoto as ncurses
4287         AC_CHECK_LIB(termcap, tgoto, , XE_ADD_OBJS(tparam.o))
4288       else
4289         XE_ADD_OBJS(tparam.o)
4290       fi
4291       dnl The HP-UX curses library seems to have a badly broken version of select(2)
4292       dnl that makes "poll: interrupted system call" messages to appear and
4293       dnl Emacs subprocesses to hang (e.g. TeX compilation w/ AUCTeX) */
4294       case "$opsys" in *-hp-hpux* ) libs_termcap="-ltermcap" ;; esac
4295       if test -n "$libs_termcap"; then
4296         XE_PREPEND($libs_termcap, LIBS)
4297       else
4298         AC_CHECK_LIB(curses, tgetent, XE_PREPEND(-lcurses, LIBS),
4299           AC_CHECK_LIB(termcap, tgetent, XE_PREPEND(-ltermcap, LIBS),
4300             XE_ADD_OBJS(termcap.o)))
4301       fi
4302     fi
4303   fi
4304   AC_DEFINE_UNQUOTED(CURSES_H_FILE, "${curses_h_file-curses.h}")
4305   AC_DEFINE_UNQUOTED(TERM_H_FILE, "${term_h_file-term.h}")
4306
4307   dnl Autodetect gpm
4308   test -z "$with_gpm" && { AC_CHECK_HEADER(gpm.h, , with_gpm=no) }
4309   test -z "$with_gpm" && { AC_CHECK_LIB(gpm, Gpm_Open, with_gpm=yes, with_gpm=no) }
4310   if test "$with_gpm" = "yes"; then
4311     AC_DEFINE(HAVE_GPM)
4312     XE_ADD_OBJS(gpmevent.o)
4313     XE_PREPEND(-lgpm, LIBS)
4314   fi
4315
4316 else dnl "$with_tty" = "no"
4317   for feature in ncurses gpm; do
4318     if eval "test -n \"\$with_${feature}\" -a \"\$with_${feature}\" != no" ; then
4319       AC_MSG_WARN("--with-${feature} ignored:  Not valid without TTY support")
4320     fi
4321     eval "with_${feature}=no"
4322   done
4323 fi dnl with_tty
4324
4325 dnl Do we need event-unixoid.o ?
4326 dnl This is needed for X, or for TTY, or for MSWIN w/Cygwin select()
4327 dnl [but not Mingw MSWIN]
4328 test "$with_x11" = "yes" -o "$with_tty" = "yes" -o "$need_event_unixoid" = "yes" && XE_ADD_OBJS(event-unixoid.o)
4329
4330 dnl Database support
4331 dnl We do not necessarily have to have libdb/lib(g)dbm for DB/(G)DBM support.
4332 dnl On FreeBSD, both DB and DBM are part of libc.
4333 dnl By default, we check for DBM support in libgdbm, then libc, then libdbm.
4334
4335 test "$with_database_gdbm $with_database_dbm $with_database_berkdb" \
4336   != "no no no" && AC_CHECKING(for database support)
4337
4338 dnl Check for ndbm.h, required for either kind of DBM support.
4339 if test "$with_database_gdbm $with_database_dbm" != "no no"; then
4340   AC_CHECK_HEADER(ndbm.h, [:], [
4341     test "$with_database_gdbm" = "yes" -o \
4342          "$with_database_dbm"  = "yes" && \
4343       XE_DIE("Required DBM support cannot be provided.")
4344     with_database_gdbm=no with_database_dbm=no])
4345 fi
4346
4347 dnl Check for DBM support in libgdbm.
4348 if test "$with_database_gdbm" != "no"; then
4349   AC_CHECK_LIB(gdbm, dbm_open, [
4350    with_database_gdbm=yes with_database_dbm=no libdbm=-lgdbm], [
4351    if test "$with_database_gdbm" = "yes"; then
4352      XE_DIE("Required GNU DBM support cannot be provided.")
4353    fi
4354    with_database_gdbm=no])
4355 fi
4356
4357 dnl Check for DBM support in libc and libdbm.
4358 if test "$with_database_dbm" != "no"; then
4359   AC_CHECK_FUNC(dbm_open, [with_database_dbm=yes libdbm=], [
4360     AC_CHECK_LIB(dbm, dbm_open, [with_database_dbm=yes libdbm=-ldbm], [
4361       test "$with_database_dbm" = "yes" && \
4362         XE_DIE("Required DBM support cannot be provided.")
4363       with_database_dbm=no])])
4364 fi
4365
4366 dnl Tell make about the DBM support we detected.
4367 test -n "$libdbm" && XE_PREPEND("$libdbm", LIBS)
4368 test "$with_database_gdbm" = "yes" -o \
4369      "$with_database_dbm"  = "yes" && \
4370   AC_DEFINE(HAVE_DBM)
4371
4372 dnl Check for Berkeley DB.
4373 if test "$with_database_berkdb" != "no"; then
4374   AC_MSG_CHECKING(for Berkeley db.h)
4375   for header in "db/db.h" "db.h"; do
4376     AC_TRY_COMPILE([
4377 #include <stdlib.h>
4378 #if !(defined __GLIBC__ && __GLIBC_MINOR__ >= 1)
4379 #ifdef HAVE_INTTYPES_H
4380 #define __BIT_TYPES_DEFINED__
4381 #include <inttypes.h>
4382 typedef uint8_t  u_int8_t;
4383 typedef uint16_t u_int16_t;
4384 typedef uint32_t u_int32_t;
4385 #ifdef WE_DONT_NEED_QUADS
4386 typedef uint64_t u_int64_t;
4387 #endif
4388 #endif
4389 #endif
4390 #include <$header>
4391 ],[], db_h_file="$header"; break)
4392   done
4393   if test -z "$db_h_file"
4394   then AC_MSG_RESULT(no); with_database_berkdb=no
4395   else AC_MSG_RESULT($db_h_file)
4396   fi
4397
4398   if test "$with_database_berkdb" != "no"; then
4399     AC_MSG_CHECKING(for Berkeley DB version)
4400     AC_EGREP_CPP(yes,
4401 [#include <$db_h_file>
4402 #if DB_VERSION_MAJOR > 1
4403 yes
4404 #endif
4405 ], [AC_EGREP_CPP(yes,
4406 [#include <$db_h_file>
4407 #if DB_VERSION_MAJOR > 2
4408 yes
4409 #endif
4410 ], [AC_MSG_RESULT(3); dbfunc=db_create],[
4411     AC_MSG_RESULT(2); dbfunc=db_open])],[
4412     AC_MSG_RESULT(1); dbfunc=dbopen])
4413     AC_CHECK_FUNC($dbfunc,     with_database_berkdb=yes need_libdb=no, [
4414     AC_CHECK_LIB(db, $dbfunc,  with_database_berkdb=yes need_libdb=yes)])
4415   fi
4416
4417   if test "$with_database_berkdb" = "yes"; then
4418     AC_DEFINE_UNQUOTED(DB_H_FILE, "$db_h_file")
4419     AC_DEFINE(HAVE_BERKELEY_DB)
4420     test "$need_libdb" = "yes" && XE_PREPEND(-ldb, LIBS)
4421   else with_database_berkdb=no
4422   fi
4423 fi
4424
4425 if test "$with_database_gdbm $with_database_dbm $with_database_berkdb" \
4426      != "no no no"; then
4427   AC_DEFINE(HAVE_DATABASE)
4428   XE_ADD_OBJS(database.o)
4429   if test "$with_utf_2000" = "yes"; then
4430     AC_DEFINE(HAVE_CHISE_CLIENT)
4431   fi
4432 fi
4433
4434 dnl Socks support
4435 if test "$with_socks" = "yes"; then
4436   AC_CHECK_LIB(socks, SOCKSinit)
4437   test -n "$ac_cv_lib_socks_SOCKSinit" && AC_DEFINE(HAVE_SOCKS)
4438 fi
4439
4440 dnl Usage tracking (undocumented and likely unused option)
4441 if test "$usage_tracking" = "yes"; then
4442   AC_DEFINE(USAGE_TRACKING)
4443   XE_PREPEND(-Bstatic -lut -Bdynamic, LIBS)
4444 fi
4445
4446 dnl autodetect dll support
4447 if test "$with_modules" != "no"; then
4448   AC_CHECKING(for module support)
4449
4450   dnl Check for MS-Windows
4451   if test "$with_msw" = "yes"; then
4452     have_dl=yes;
4453   else
4454     dnl Find headers and libraries
4455     AC_CHECK_HEADER(dlfcn.h, [
4456       AC_MSG_CHECKING([for dlopen in -lc])
4457       AC_TRY_LINK([#include <dlfcn.h>],dnl
4458         [dlopen ("", 0);], [ have_dl=yes ], [
4459       AC_MSG_CHECKING([for dlopen in -ldl])
4460       ac_save_LIBS="$LIBS"
4461       LIBS="-ldl $LIBS"
4462       AC_TRY_LINK([#include <dlfcn.h>],dnl
4463         [dlopen ("", 0);], [ have_dl=yes ],
4464         [LIBS="$ac_save_LIBS"])
4465       ac_save_LIBS=])])
4466     if test -n "$have_dl"; then
4467       AC_DEFINE(HAVE_DLOPEN)
4468     else
4469       AC_CHECK_LIB(dld, shl_load, [
4470         libdl=dld have_dl=yes;
4471         AC_DEFINE(HAVE_SHL_LOAD)], [
4472         AC_CHECK_LIB(dld, dld_init, [
4473         libdl=dld have_dl=yes;
4474         AC_DEFINE(HAVE_DLD_INIT)])])
4475     fi
4476   fi dnl end !MS-Windows
4477
4478   if test -n "$have_dl"; then
4479     dnl XE_SHLIB_STUFF (in aclocal.m4) defines $can_build_shared
4480     XE_SHLIB_STUFF
4481   fi
4482
4483   if test "$can_build_shared" = "yes"; then
4484     AC_DEFINE(HAVE_SHLIB)
4485     XE_ADD_OBJS(sysdll.o emodules.o)
4486     XE_APPEND(src, INSTALL_ARCH_DEP_SUBDIR)
4487     test -n "$libdl" && XE_PREPEND(-l${libdl}, LIBS)
4488     AC_CHECK_FUNCS(dlerror _dlerror)
4489     with_modules=yes
4490   else
4491     if test "$with_modules" = "yes"; then
4492       XE_DIE("Required module support cannot be provided.")
4493     else
4494       AC_MSG_WARN("Module support cannot be provided.")
4495     fi
4496     with_modules=no
4497   fi
4498 fi
4499
4500 dnl Unfortunately, just because we can link doesn't mean we can run.
4501 dnl One of the above link tests may have succeeded but caused resulting
4502 dnl executables to fail to run.  Also any tests using AC_TRY_RUN will
4503 dnl have reported incorrect results.
4504 AC_TRY_RUN([int main(int c,char *v[]){return 0;}],[:],[
4505   echo ""
4506   echo "*** PANIC *** The C compiler can no longer build working executables."
4507   echo "*** PANIC *** Please examine the tail of config.log for runtime errors."
4508   echo "*** PANIC *** The most likely reason for this problem is that configure"
4509   echo "*** PANIC *** links with shared libraries, but those libraries cannot be"
4510   echo "*** PANIC *** found at run time."
4511   echo "*** PANIC ***"
4512   echo "*** PANIC *** On a Linux system, edit /etc/ld.so.conf and re-run ldconfig."
4513   echo "*** PANIC *** On other systems, try telling configure where to find the"
4514   echo "*** PANIC *** shared libraries using the --site-runtime-libraries option"
4515   echo "*** PANIC ***"
4516   echo "*** PANIC *** Another way to shoot yourself in the foot is to specify"
4517   echo "*** PANIC *** --with-FEATURE when FEATURE is not actually installed"
4518   echo "*** PANIC *** on your system.  Don't do that."
4519   exit 1])
4520
4521 dnl Process support
4522 if test "$win32_processes" = "yes"; then
4523   XE_ADD_OBJS(process-nt.o)
4524 else
4525   AC_DEFINE(HAVE_UNIX_PROCESSES)
4526   XE_ADD_OBJS(process-unix.o)
4527 fi
4528
4529 dnl --------------------------------
4530 dnl Compute SUBST-itutable variables
4531 dnl --------------------------------
4532
4533 dnl We ignore (C|LD)_SWITCH_X_(MACHINE|SYSTEM)
4534 dnl Use XE_SPACE instead of plain assignment statements to remove extraneous blanks
4535 XE_SPACE(CFLAGS, $CFLAGS)
4536 XE_SPACE(extra_objs, $extra_objs)
4537 XE_SPACE(c_switch_general, -DHAVE_CONFIG_H $c_switch_site $c_switch_machine $c_switch_system)
4538 XE_SPACE(c_switch_window_system, $c_switch_x_site $c_switch_gtk $X_CFLAGS)
4539 XE_SPACE(c_switch_all, $c_switch_general $c_switch_window_system)
4540 XE_SPACE(ld_switch_general, $ld_switch_site $ld_switch_machine $ld_switch_system $ld_switch_run)
4541 XE_SPACE(ld_switch_window_system, $ld_switch_x_site)
4542 XE_SPACE(ld_switch_all, $ld_switch_general $ld_switch_window_system)
4543 XE_SPACE(ld_libs_general, $LIBS $libs_machine $libs_system $libs_standard)
4544 XE_SPACE(ld_libs_window_system, $X_EXTRA_LIBS $libs_x $libs_gtk $X_PRE_LIBS)
4545 XE_SPACE(ld_libs_all, $ld_libs_window_system $ld_libs_general)
4546
4547 dnl Compute lists of Makefiles and subdirs
4548 AC_SUBST(SRC_SUBDIR_DEPS)
4549 XE_APPEND(src, MAKE_SUBDIR)
4550 internal_makefile_list="Makefile.in"
4551 SUBDIR_MAKEFILES=''
4552 test -d lock || mkdir lock
4553 for dir in $MAKE_SUBDIR; do
4554   case "$dir" in */* ) dnl Implement mkdir -p
4555     ( for d in `echo $dir | sed 's:/: :g'` ; do
4556         test -d "$d" || mkdir "$d"; cd "$d"
4557       done ) ;;
4558    * ) test -d "$dir" || mkdir "$dir" ;;
4559   esac
4560   XE_SPACE(SUBDIR_MAKEFILES, $SUBDIR_MAKEFILES $dir/Makefile $dir/GNUmakefile)
4561   XE_SPACE(internal_makefile_list, $internal_makefile_list $dir/Makefile.in)
4562 done
4563 AC_SUBST(INSTALL_ARCH_DEP_SUBDIR)
4564 AC_SUBST(MAKE_SUBDIR)
4565 AC_SUBST(SUBDIR_MAKEFILES)
4566
4567 dnl Make s&m symlinks in the src directory, for config.h
4568 for dir in src/s src/m; do
4569   if test ! -d "$dir" ; then
4570     echo Making symbolic link to "$srcdir/$dir"
4571     ${LN_S} "$srcdir/$dir" "$dir"
4572   fi
4573 done
4574
4575 if test "$extra_verbose" = "yes"; then
4576   echo ""
4577   PRINT_VAR(extra_objs
4578    c_switch_general  c_switch_window_system  c_switch_all
4579   ld_switch_general ld_switch_window_system ld_switch_all
4580     ld_libs_general   ld_libs_window_system   ld_libs_all)
4581   echo ""
4582 fi
4583
4584 dnl ----------------------------------------------
4585 dnl Create some auxiliary files for developers.
4586 dnl ----------------------------------------------
4587
4588 dnl Create a .gdbinit useful for debugging XEmacs
4589 if test -f "$srcdir/src/.gdbinit" -a ! -f "src/.gdbinit"; then
4590   test "$extra_verbose" = "yes" && echo "creating src/.gdbinit"
4591   echo "source $srcdir/src/.gdbinit" > "src/.gdbinit"
4592 fi
4593
4594 dnl Create a .dbxrc useful for debugging XEmacs
4595 if test -f "$srcdir/src/.dbxrc" -a ! -f "src/.dbxrc"; then
4596   test "$extra_verbose" = "yes" && echo "creating src/.dbxrc"
4597   echo ". $srcdir/src/.dbxrc" > "src/.dbxrc"
4598 fi
4599
4600 dnl Create a useful TAGS file
4601 if test -f "$srcdir/TAGS" -a ! -f "TAGS"; then
4602   test "$extra_verbose" = "yes" && echo "creating TAGS"
4603   echo "\f
4604 $srcdir/TAGS,include" > "TAGS"
4605 fi
4606
4607 dnl Create top level .sbinit for Sun compilers
4608 if test "$__SUNPRO_C" = "yes"; then
4609   test "$extra_verbose" = "yes" && echo "creating .sbinit"
4610   ( echo "# For use with Sun WorkShop's Source browser."
4611     echo "# See sbquery(1) and sbinit(4) for more information"
4612     for dir in $MAKE_SUBDIR; do echo "import $dir"; done
4613   ) > .sbinit
4614 fi
4615
4616 dnl There are no more compile tests; remove the core they created.
4617 rm -f core
4618
4619 dnl ----------------------------------------------
4620 dnl Substitute into Makefile, config.h and paths.h
4621 dnl ----------------------------------------------
4622
4623 dnl what sort of things to edit into Makefile, config.h and paths.h
4624 dnl configuration here uncanonicalized to avoid exceeding size limits.
4625
4626 AC_SUBST(PROGNAME)
4627 AC_SUBST(version)
4628 AC_SUBST(configuration)
4629 AC_SUBST(canonical)
4630 AC_SUBST(inststaticdir)
4631 AC_SUBST(instvardir)
4632 AC_SUBST(srcdir)
4633 AC_SUBST(bindir)
4634 AC_SUBST(datadir)
4635 AC_SUBST(pkgdir)
4636 AC_SUBST(statedir)
4637 AC_SUBST(libdir)
4638 AC_SUBST(mandir)
4639 AC_SUBST(extra_includes)
4640
4641 AC_SUBST(prefix)
4642 AC_SUBST(PREFIX_USER_DEFINED)
4643 dnl Yo, Stephen Bourne!  I want to marry you!
4644 PREFIX=$prefix
4645 while true; do
4646   case "$PREFIX" in
4647     *\$* ) eval "PREFIX=$PREFIX" ;;
4648     *) break ;;
4649   esac
4650 done
4651 AC_SUBST(PREFIX)
4652
4653 AC_SUBST(exec_prefix)
4654 AC_SUBST(EXEC_PREFIX_USER_DEFINED)
4655 EXEC_PREFIX=$exec_prefix
4656 while true; do
4657   case "$EXEC_PREFIX" in
4658     *\$* ) eval "EXEC_PREFIX=$EXEC_PREFIX" ;;
4659     *) break ;;
4660   esac
4661 done
4662 AC_SUBST(EXEC_PREFIX)
4663
4664 AC_SUBST(infodir)
4665 AC_SUBST(INFODIR_USER_DEFINED)
4666 INFODIR=$infodir
4667 while true; do
4668   case "$INFODIR" in
4669     *\$* ) eval "INFODIR=$INFODIR" ;;
4670     *) break ;;
4671   esac
4672 done
4673 AC_SUBST(INFODIR)
4674
4675 AC_SUBST(infopath)
4676 AC_SUBST(INFOPATH_USER_DEFINED)
4677 INFOPATH=$infopath
4678 while true; do
4679   case "$INFOPATH" in
4680     *\$* ) eval "INFOPATH=$INFOPATH" ;;
4681     *) break ;;
4682   esac
4683 done
4684 AC_SUBST(INFOPATH)
4685
4686 AC_SUBST(package_path)
4687 AC_SUBST(PACKAGE_PATH_USER_DEFINED)
4688 PACKAGE_PATH=$package_path
4689 while true; do
4690   case "$PACKAGE_PATH" in
4691     *\$* ) eval "PACKAGE_PATH=$PACKAGE_PATH" ;;
4692     *) break ;;
4693   esac
4694 done
4695 AC_SUBST(PACKAGE_PATH)
4696
4697 AC_SUBST(lispdir)
4698 AC_SUBST(LISPDIR_USER_DEFINED)
4699 LISPDIR=$lispdir
4700 while true; do
4701   case "$LISPDIR" in
4702     *\$* ) eval "LISPDIR=$LISPDIR" ;;
4703     *) break ;;
4704   esac
4705 done
4706 AC_SUBST(LISPDIR)
4707
4708 AC_SUBST(moduledir)
4709 AC_SUBST(MODULEDIR_USER_DEFINED)
4710 MODULEDIR=$moduledir
4711 while true; do
4712   case "$MODULEDIR" in
4713     *\$* ) eval "MODULEDIR=$MODULEDIR" ;;
4714     *) break ;;
4715   esac
4716 done
4717 AC_SUBST(MODULEDIR)
4718
4719 AC_SUBST(sitelispdir)
4720 AC_SUBST(SITELISPDIR_USER_DEFINED)
4721 SITELISPDIR=$sitelispdir
4722 while true; do
4723   case "$SITELISPDIR" in
4724     *\$* ) eval "SITELISPDIR=$SITELISPDIR" ;;
4725     *) break ;;
4726   esac
4727 done
4728 AC_SUBST(SITELISPDIR)
4729
4730 AC_SUBST(sitemoduledir)
4731 AC_SUBST(SITEMODULEDIR_USER_DEFINED)
4732 SITEMODULEDIR=$sitemoduledir
4733 while true; do
4734   case "$SITEMODULEDIR" in
4735     *\$* ) eval "SITEMODULEDIR=$SITEMODULEDIR" ;;
4736     *) break ;;
4737   esac
4738 done
4739 AC_SUBST(SITEMODULEDIR)
4740
4741 AC_SUBST(etcdir)
4742 AC_SUBST(ETCDIR_USER_DEFINED)
4743 ETCDIR=$etcdir
4744 while true; do
4745   case "$ETCDIR" in
4746     *\$* ) eval "ETCDIR=$ETCDIR" ;;
4747     *) break ;;
4748   esac
4749 done
4750 AC_SUBST(ETCDIR)
4751
4752 AC_SUBST(docdir)
4753 AC_SUBST(DOCDIR_USER_DEFINED)
4754 DOCDIR=$docdir
4755 while true; do
4756   case "$DOCDIR" in
4757     *\$* ) eval "DOCDIR=$DOCDIR" ;;
4758     *) break ;;
4759   esac
4760 done
4761 AC_SUBST(DOCDIR)
4762
4763 AC_SUBST(archlibdir)
4764 AC_SUBST(ARCHLIBDIR_USER_DEFINED)
4765 ARCHLIBDIR=$archlibdir
4766 while true; do
4767   case "$ARCHLIBDIR" in
4768     *\$* ) eval "ARCHLIBDIR=$ARCHLIBDIR" ;;
4769     *) break ;;
4770   esac
4771 done
4772 AC_SUBST(ARCHLIBDIR)
4773
4774 AC_SUBST(docdir)
4775 AC_SUBST(bitmapdir)
4776 AC_SUBST(extra_objs)
4777
4778 dnl The following flags combine all the information from:
4779 dnl - command line options (user always gets priority)
4780 dnl - user environment variables
4781 dnl - determined by configure
4782 dnl - the s&m header files (required for ellcc)
4783 AC_SUBST(machfile)
4784 AC_SUBST(opsysfile)
4785 AC_SUBST(c_switch_general)
4786 AC_SUBST(c_switch_window_system)
4787 AC_SUBST(c_switch_all)
4788 AC_SUBST(ld_switch_general)
4789 AC_SUBST(ld_switch_window_system)
4790 AC_SUBST(ld_switch_all)
4791 AC_SUBST(ld_libs_general)
4792 AC_SUBST(ld_libs_window_system)
4793 AC_SUBST(ld_libs_all)
4794 AC_SUBST(CFLAGS)
4795 AC_SUBST(CPPFLAGS)
4796 AC_SUBST(LDFLAGS)
4797 RECURSIVE_MAKE="\$(MAKE) \$(MFLAGS) CC='\$(CC)' CFLAGS='\$(CFLAGS)' LDFLAGS='\$(LDFLAGS)' CPPFLAGS='\$(CPPFLAGS)'"
4798 AC_SUBST(RECURSIVE_MAKE)
4799
4800 AC_SUBST(native_sound_lib)
4801 AC_SUBST(sound_cflags)
4802 AC_SUBST(RANLIB)
4803 AC_SUBST(dynodump_arch)
4804
4805 dnl Preliminary support for using a different compiler for xemacs itself.
4806 dnl Useful for building XEmacs with a C++ or 64-bit compiler.
4807 : ${XEMACS_CC:=$CC}
4808 AC_SUBST(XEMACS_CC)
4809
4810 dnl The default is yes
4811 if test "$with_prefix" = "yes"; then
4812   AC_DEFINE(PREFIX_USER_DEFINED)
4813 fi
4814
4815 dnl The default is no
4816 if test "$with_site_lisp" = "no"; then
4817   AC_DEFINE(INHIBIT_SITE_LISP)
4818 fi
4819 dnl The default is yes
4820 if test "$with_site_modules" = "no"; then
4821   AC_DEFINE(INHIBIT_SITE_MODULES)
4822 fi
4823
4824 XE_SPACE(ac_configure_args, $ac_configure_args)
4825 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "$configuration")
4826 AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "$ac_configure_args")
4827
4828 dnl Following are deprecated
4829
4830 null_string=""
4831 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE,     $null_string)
4832 AC_DEFINE_UNQUOTED(LD_SWITCH_X_SITE_AUX, $null_string)
4833 AC_DEFINE_UNQUOTED(C_SWITCH_X_SITE,      $null_string)
4834 AC_DEFINE_UNQUOTED(LD_SWITCH_SITE,       $null_string)
4835 AC_DEFINE_UNQUOTED(C_SWITCH_SITE,        $null_string)
4836
4837 dnl Note: as a general rule, *only* define things here that are not
4838 dnl autodetected.  For things that are autodetected, define them
4839 dnl at the point where the autodetection occurs or would occur,
4840 dnl so that the user gets immediate feedback on the results of the
4841 dnl autodetection.
4842
4843 if   test "$GNU_MALLOC"         = "yes"; then AC_DEFINE(GNU_MALLOC)
4844 elif test "$with_system_malloc" = "yes"; then AC_DEFINE(USE_SYSTEM_MALLOC)
4845 elif test "$with_debug_malloc"  = "yes"; then AC_DEFINE(USE_DEBUG_MALLOC)
4846                                               AC_DEFINE(USE_SYSTEM_MALLOC)
4847 fi
4848 test "$with_i18n3"         = "yes" && AC_DEFINE(I18N3)
4849 test "$GCC"                = "yes" && AC_DEFINE(USE_GCC)
4850 test "$external_widget"    = "yes" && AC_DEFINE(EXTERNAL_WIDGET)
4851 test "$quick_build"        = "yes" && AC_DEFINE(QUICK_BUILD)
4852 test "$with_purify"        = "yes" && AC_DEFINE(PURIFY)
4853 test "$with_quantify"      = "yes" && AC_DEFINE(QUANTIFY)
4854 test "$with_pop"           = "yes" && AC_DEFINE(MAIL_USE_POP)
4855 test "$with_kerberos"      = "yes" && AC_DEFINE(KERBEROS)
4856 test "$with_hesiod"        = "yes" && AC_DEFINE(HESIOD)
4857 test "$use_union_type"     = "yes" && AC_DEFINE(USE_UNION_TYPE)
4858 test "$pdump"              = "yes" && AC_DEFINE(PDUMP)
4859 test "$with_ipv6_cname"    = "yes" && AC_DEFINE(IPV6_CANONICALIZE)
4860
4861 dnl -------------------------------
4862 dnl Report on what we decided to do
4863 dnl -------------------------------
4864
4865 (
4866 dnl /etc/osversion is on SONY NEWS-OS
4867 if test -f /etc/osversion; then dnl SONY NEWS-OS
4868   echo "osversion: `cat /etc/osversion`"
4869 else
4870   echo "uname -a: `uname -a`"
4871 fi
4872 echo ""
4873 echo "$0 $quoted_arguments"
4874 ) > Installation
4875
4876 if test ! -z ${emacs_beta_version} ; then
4877   if test -z "${emacs_is_beta}" ; then
4878         xemacs_betaname=".${emacs_beta_version}"
4879   else
4880         xemacs_betaname="-b${emacs_beta_version}"
4881   fi
4882 else
4883   xemacs_betaname=""
4884 fi
4885
4886 dnl Start stdout redirection to '| tee -a Installation'
4887 (
4888 echo "
4889
4890 XEmacs ${emacs_major_version}.${emacs_minor_version}${xemacs_betaname} \"$xemacs_codename\" configured for \`$canonical'.
4891 "
4892 echo "
4893 Compilation / Installation:"
4894 echo "  Source code location:              $srcdir"
4895 echo "  Installation prefix:               $prefix"
4896 if test -n "$site_includes"; then
4897   echo "  Additional header files:           $site_includes"
4898 fi
4899 if test -n "$site_libraries"; then
4900   echo "  Additional libraries:              $site_libraries"
4901 fi
4902 if test -n "$site_prefixes"; then
4903   echo "  Additional prefixes:               $site_prefixes"
4904 fi
4905 if test -n "$runpath"; then
4906   echo "  Runtime library search path:       $runpath"
4907 fi
4908
4909 if test -n "$opsysfile"
4910 then echo "  Operating system description file: \`$opsysfile'"
4911 else echo "  Not using any operating system description file"
4912 fi
4913 if test -n "$machfile"
4914 then echo "  Machine description file:          \`$machfile'"
4915 else echo "  Not using any machine description file"
4916 fi
4917
4918 echo "  Compiler:                          $CC $CFLAGS"
4919 echo "  Relocating allocator for buffers:  $rel_alloc"
4920 echo "  GNU version of malloc:             ${GNU_MALLOC}${GNU_MALLOC_reason}"
4921 case "$ld_switch_site" in
4922   *nocombreloc*) echo "  Linking with \`-z nocombreloc'.
4923     - Consider configuring with --pdump." ;;
4924 esac
4925
4926 echo "
4927 Window System:"
4928 if test "$with_msw" = "yes"; then
4929   echo "  Compiling in support for the Microsoft window system."
4930 fi
4931 if test "$with_x11" = "yes"; then
4932   echo "  Compiling in support for the X window system:"
4933   echo "    - X Windows headers location:                 $x_includes"
4934   echo "    - X Windows libraries location:               $x_libraries"
4935   if test "$with_xauth" != yes; then
4936     echo "    - Xau (X authority) not available."
4937   fi
4938   if test "$with_xmu" != yes; then
4939     echo "    - Xmu library not available; substituting equivalent routines."
4940   fi
4941   if test "$with_wmcommand" != no; then
4942     echo "    - Handling WM_COMMAND properly."
4943   fi
4944 fi
4945 if test "$need_athena" = "yes"; then
4946   echo "  Compiling in support for the Athena widget set:"
4947   echo "    - Athena headers location:                    $athena_h_path"
4948   echo "    - Athena library to link:                     $athena_lib"
4949 fi
4950 case "$with_menubars" in
4951   gtk   ) echo "  Using GTK menubars."   ;;
4952   lucid ) echo "  Using Lucid menubars." ;;
4953   motif ) echo "  Using Motif menubars."
4954           echo "  *WARNING*  The Motif menubar implementation is currently buggy."
4955           echo "             We recommend using the Lucid menubar instead."
4956           echo "             Re-run configure with --with-menubars='lucid'." ;;
4957     msw ) echo "  Using MS-Windows menubars." ;;
4958 esac
4959 case "$with_scrollbars" in
4960   gtk    ) echo "  Using GTK scrollbars."        ;;
4961   lucid  ) echo "  Using Lucid scrollbars."      ;;
4962   motif  ) echo "  Using Motif scrollbars."      ;;
4963   athena ) echo "  Using Athena scrollbars."     ;;
4964      msw ) echo "  Using MS-Windows scrollbars." ;;
4965 esac
4966 case "$with_dialogs" in
4967   gtk    ) echo "  Using GTK dialog boxes." ;;
4968   motif  ) echo "  Using Motif dialog boxes."
4969            if test "$unexec" = "unexaix.o"; then if test "`uname -v`" = 4 -a "`uname -r`" -ge 3; then
4970              echo "  *WARNING*  The Motif dialog boxes cause problems on AIX 4.3 and higher."
4971              echo "             We recommend using the Athena dialog boxes instead."
4972              echo "             Install libXaw and re-run configure with --with-dialogs='athena'."
4973              echo "             Read the PROBLEMS file for more information."
4974            fi; fi ;;
4975   athena ) echo "  Using Athena dialog boxes."     ;;
4976      msw ) echo "  Using MS-Windows dialog boxes." ;;
4977 esac
4978 case "$with_widgets" in
4979   gtk    ) echo "  Using GTK native widgets."        ;;
4980   motif  ) echo "  Using Motif native widgets."      ;;
4981   athena ) echo "  Using Athena native widgets."     ;;
4982      msw ) echo "  Using MS-Windows native widgets." ;;
4983 esac
4984 if test "$with_dragndrop" = yes; then
4985   echo "  Compiling in support for Drag'n'Drop (EXPERIMENTAL)."
4986   echo "    -  Drag'n'Drop prototype:                             $dragndrop_proto."
4987 fi
4988
4989 echo "
4990 TTY:"
4991 test "$with_ncurses" = yes && echo "  Compiling in support for ncurses."
4992 test "$with_gpm" = yes && echo "  Compiling in support for GPM (General Purpose Mouse)."
4993
4994 echo "
4995 Images:"
4996 test "$with_gif" = yes && echo "  Compiling in support for GIF  images (builtin)."
4997 if test "$with_xpm" = yes; then
4998   echo "  Compiling in support for XPM  images."
4999 elif test "$with_x11" = yes; then
5000   echo "  WARNING: -----------------------------------------------------------"
5001   echo "  WARNING: Compiling without XPM image support."
5002   if test "$xpm_problem" != ""; then
5003     echo "  Reason: $xpm_problem"
5004   fi
5005   echo "  WARNING: You should strongly consider installing XPM."
5006   echo "  WARNING: Otherwise toolbars and other graphics will look suboptimal."
5007   echo "  WARNING: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux)"
5008   echo "  WARNING: -----------------------------------------------------------"
5009 fi
5010 if test "$with_png" = yes; then
5011   echo "  Compiling in support for PNG  images."
5012 elif test "$window_system" != "none"; then
5013   echo "  WARNING: -----------------------------------------------------------"
5014   echo "  WARNING: Compiling without PNG image support."
5015   if test "$png_problem" != ""; then
5016     echo "  Reason: $png_problem"
5017   fi
5018   echo "  WARNING: You should strongly consider installing the PNG libraries."
5019   echo "  WARNING: Otherwise certain images and glyphs may not display."
5020   echo "  WARNING: (a copy may be found in ftp://ftp.xemacs.org/pub/xemacs/aux)"
5021   echo "  WARNING: -----------------------------------------------------------"
5022 fi
5023 test "$with_jpeg" = yes && echo "  Compiling in support for JPEG images."
5024 test "$with_tiff" = yes && echo "  Compiling in support for TIFF images."
5025 test "$with_xface" = yes && echo "  Compiling in support for X-Face message headers."
5026
5027 echo "
5028 Sound:"
5029 test "$with_native_sound" = yes && echo "  Compiling in support for sound (native)."
5030 test "$with_nas_sound" = yes && echo "  Compiling in support for NAS (network audio system)."
5031 test "$old_nas" = yes && echo "    - NAS library lacks error trapping; will play synchronously."
5032 test "$with_esd_sound" = yes && echo "  Compiling in support for ESD (Enlightened Sound Daemon)."
5033
5034 echo "
5035 Databases:"
5036 test "$with_database_berkdb" = yes && echo "  Compiling in support for Berkeley database."
5037 test "$with_database_dbm"    = yes && echo "  Compiling in support for DBM."
5038 test "$with_database_gdbm"   = yes && echo "  Compiling in support for GNU DBM."
5039 test "$with_ldap" = yes && echo "  Compiling in support for LDAP."
5040 if test "$with_postgresql" = yes; then
5041   echo "  Compiling in support for PostgreSQL."
5042   echo "    - Using PostgreSQL header file:  $libpq_fe_h_file"
5043   test "$with_postgresqlv7" = yes && echo "    - Using PostgreSQL V7 bindings."
5044 fi
5045
5046 echo "
5047 Internationalization:"
5048 test "$with_mule" = yes && echo "  Compiling in support for Mule (multi-lingual Emacs)."
5049 test "$with_utf_2000" = yes && echo "  Using UTF-2000 (UTF-8) buffer/string representation."
5050 test "$with_text_coding" = yes && echo "  Compiling in support for text coding."
5051 test "$with_file_coding" = yes && echo "  Compiling in support for file coding."
5052 test "$with_xim" != no && echo "  Compiling in support for XIM (X11R5+ I18N input method)."
5053 test "$with_xim" = motif && echo "    - Using Motif to provide XIM support."
5054 test "$with_xim" = xlib && echo "    - Using raw Xlib to provide XIM support."
5055 test "$with_xfs" = yes && echo "    - Using XFontSet to provide bilingual menubar."
5056 test "$with_canna" = yes && echo "  Compiling in support for Canna on Mule."
5057 if test "$with_wnn" = yes; then
5058   echo "  Compiling in support for the WNN input method on Mule."
5059   test "$with_wnn6" = yes && echo "    - Using WNN version 6."
5060 fi
5061 test "$with_i18n3" = yes && echo "  Compiling in support for I18N level 3 (doesn't currently work)."
5062
5063 echo "
5064 Mail:"
5065 test "$with_pop" = yes && echo "  Compiling in support for POP mail retrieval."
5066 test "$with_kerberos" = yes && echo "  Compiling in support for Kerberos POP authentication."
5067 test "$with_hesiod" = yes && echo "  Compiling in support for Hesiod POP server access."
5068 test -n "$mail_locking" && echo "  Compiling in support for \"$mail_locking\" mail spool file locking method."
5069
5070 echo "
5071 Other Features:"
5072 test "$with_ipv6_cname" = no && echo "  Inhibiting IPv6 canonicalization at startup."
5073 test "$with_tooltalk" = yes && echo "  Compiling in support for ToolTalk."
5074 test "$with_workshop" = yes && echo "  Compiling in support for Sun WorkShop."
5075 test "$with_socks" = yes && echo "  Compiling in support for SOCKS."
5076 test "$with_dnet" = yes && echo "  Compiling in support for DNET."
5077 test "$with_modules" = "yes" && echo "  Compiling in support for dynamic shared object modules."
5078 test "$use_union_type" = yes && echo "  Using the union type for Lisp_Objects."
5079 test "$pdump" = yes && echo "  Using the new portable dumper."
5080 test "$debug" = yes && echo "  Compiling in support for extra debugging code."
5081 test "$usage_tracking" = yes && echo "  Compiling in support for active usage tracking (Sun internal)."
5082 if test "$error_check_extents $error_check_typecheck $error_check_bufpos $error_check_gc $error_check_malloc $error_check_glyphs" \
5083   != "no no no no no no"; then
5084   echo "  WARNING: ---------------------------------------------------------"
5085   echo "  WARNING: Compiling in support for runtime error checking."
5086   echo "  WARNING: XEmacs will run noticeably more slowly as a result."
5087   echo "  WARNING: Error checking is on by default for XEmacs beta releases."
5088   echo "  WARNING: ---------------------------------------------------------"
5089 fi
5090 echo ""
5091 ) | tee -a Installation
5092 dnl echo "The above configure report is appended to \"Installation\" file."
5093 echo ""
5094
5095 dnl -----------------------------------
5096 dnl Now generate config.h and Makefiles
5097 dnl -----------------------------------
5098 dnl This has to be called in order for this variable to get into config.status
5099 AC_SUBST(internal_makefile_list)
5100 # Remove any trailing slashes in these variables.
5101 test -n "$prefix" &&
5102   prefix=`echo '' "$prefix" | sed -e 's:^ ::' -e 's,\([[^/]]\)/*$,\1,'`
5103 test -n "$exec_prefix" &&
5104   exec_prefix=`echo '' "$exec_prefix" | sed -e 's:^ ::' -e 's,\([[^/]]\)/*$,\1,'`
5105
5106 dnl Build Makefile.in's from Makefile.in.in's
5107 dnl except ./Makefile from $srcdir/Makefile.in
5108
5109 for file in $internal_makefile_list; do
5110   test "$file" = src/Makefile.in && \
5111     file="src/Makefile.in:src/Makefile.in.in:src/depend"
5112   XE_APPEND($file, ac_output_files)
5113 done
5114 ac_output_files="$ac_output_files src/paths.h lib-src/config.values"
5115 test "$with_modules" = "yes" && XE_APPEND(lib-src/ellcc.h, ac_output_files)
5116
5117 AC_OUTPUT($ac_output_files,
5118 [for dir in . $MAKE_SUBDIR; do
5119   (
5120     cd $dir
5121     rm -f junk.c
5122     < Makefile.in \
5123       sed -e '/^# Generated/d' \
5124           -e 's%/\*\*/#.*%%' \
5125           -e 's/^ *# */#/' \
5126 dnl Delete Makefile.in.in comment lines
5127           -e '/^##/d' \
5128 dnl Pass through CPP directives unchanged
5129           -e '/^#/ {
5130 p
5131 d
5132 }'        \
5133 dnl Quote other lines to protect from CPP substitution
5134           -e '/./ {
5135 s/\([[\"]]\)/\\\1/g
5136 s/^/"/
5137 s/$/"/
5138 }'  > junk.c;
5139
5140 dnl Create a GNUmakefile and Makefile from Makefile.in.
5141
5142 changequote(<<,>>)dnl
5143 dnl CPP_MAKEFILE(CPPFLAGS,filename)
5144 define(<<CPP_MAKEFILE>>,
5145 echo creating $dir/<<$2>>
5146 $CPP -I. -I${top_srcdir}/src <<$1>> junk.c \
5147 dnl Delete line directives inserted by $CPP
5148   | sed -e 's/^\#.*//'          \
5149 dnl Delete spurious blanks inserted by $CPP
5150         -e 's/^[ TAB][ TAB]*$//'\
5151         -e 's/^ /TAB/'          \
5152 dnl Delete blank lines
5153         -e '/^[ \f]*$/d' \
5154 dnl Restore lines quoted above to original contents.
5155         -e '/^\"/ {
5156         s/\\\([\"]\)/\1/g
5157         s/^[ TAB]*\"//
5158         s/\"[ TAB]*$//
5159 }' > Makefile.new
5160     chmod 444 Makefile.new
5161     mv -f Makefile.new <<$2>>
5162 )dnl CPP_MAKEFILE
5163
5164     CPP_MAKEFILE(,Makefile)
5165     CPP_MAKEFILE(-DUSE_GNU_MAKE,GNUmakefile)
5166 changequote([,])dnl
5167     rm -f junk.c
5168   )
5169 done
5170
5171 dnl Append AC_DEFINE information to lib-src/config.values
5172 dnl (AC_SUBST information is already there (see config.values.sh).
5173 sed < config.status >> lib-src/config.values \
5174   -e '/{ac_dA}.*{ac_dB}.*{ac_dC}.*{ac_dD}$/!d' \
5175   -e 's/\${ac_dA}\(.*\)\${ac_dB}.*\${ac_dC}\(.*\)\${ac_dD}/\1 \2/' \
5176   -e 's/^\([[^ ]]*\) $/\1 ""/' \
5177   -e 's/ 1$/ t/'
5178
5179 ],
5180 [CPP="$CPP"
5181  top_srcdir="$srcdir"
5182  MAKE_SUBDIR="$MAKE_SUBDIR"
5183 ])dnl