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