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