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