]> code.delx.au - gnu-emacs/blob - configure.ac
* configure.ac: Add comments accidentally omitted from previous change
[gnu-emacs] / configure.ac
1 dnl Autoconf script for GNU Emacs
2 dnl To rebuild the `configure' script from this, execute the command
3 dnl autoconf
4 dnl in the directory containing this script.
5 dnl If you changed any AC_DEFINES, also run autoheader.
6 dnl
7 dnl Copyright (C) 1994-1996, 1999-2014 Free Software Foundation, Inc.
8 dnl
9 dnl This file is part of GNU Emacs.
10 dnl
11 dnl GNU Emacs is free software: you can redistribute it and/or modify
12 dnl it under the terms of the GNU General Public License as published by
13 dnl the Free Software Foundation, either version 3 of the License, or
14 dnl (at your option) any later version.
15 dnl
16 dnl GNU Emacs is distributed in the hope that it will be useful,
17 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
18 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 dnl GNU General Public License for more details.
20 dnl
21 dnl You should have received a copy of the GNU General Public License
22 dnl along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 AC_PREREQ(2.65)
25 AC_INIT(emacs, 24.3.91)
26
27 dnl We get MINGW64 with MSYS2
28 if test "x$MSYSTEM" = "xMINGW32" -o "x$MSYSTEM" = "xMINGW64"
29 then
30 . $srcdir/nt/mingw-cfg.site
31
32 case $srcdir in
33 /* | ?:*)
34 # srcdir is an absolute path. In this case, force the format
35 # "/c/foo/bar", to simplify later conversions to native Windows
36 # format ("c:/foo/bar")
37 srcdir=`cd "${srcdir}" && pwd -W`
38 srcdir="/${srcdir:0:1}${srcdir:2}"
39 ;;
40 esac
41 fi
42
43 dnl Set emacs_config_options to the options of 'configure', quoted for the shell,
44 dnl and then quoted again for a C string. Separate options with spaces.
45 dnl Add some environment variables, if they were passed via the environment
46 dnl rather than on the command-line.
47 emacs_config_options=
48 optsep=
49 dnl This is the documented way to record the args passed to configure,
50 dnl rather than $ac_configure_args.
51 for opt in ${1+"$@"} CFLAGS CPPFLAGS LDFLAGS; do
52 case $opt in
53 -n | --no-create | --no-recursion)
54 continue ;;
55 CFLAGS | CPPFLAGS | LDFLAGS)
56 eval 'test "${'$opt'+set}" = set' || continue
57 case " $*" in
58 *" $opt="*) continue ;;
59 esac
60 eval opt=$opt=\$$opt ;;
61 esac
62
63 emacs_shell_specials=$IFS\''"#$&()*;<>?@<:@\\`{|~'
64 case $opt in
65 *[["$emacs_shell_specials"]]*)
66 case $opt in
67 *\'*)
68 emacs_quote_apostrophes="s/'/'\\\\''/g"
69 opt=`AS_ECHO(["$opt"]) | sed "$emacs_quote_apostrophes"` ;;
70 esac
71 opt="'$opt'"
72 case $opt in
73 *[['"\\']]*)
74 emacs_quote_for_c='s/[["\\]]/\\&/g; $!s/$/\\n\\/'
75 opt=`AS_ECHO(["$opt"]) | sed "$emacs_quote_for_c"` ;;
76 esac ;;
77 esac
78 AS_VAR_APPEND([emacs_config_options], ["$optsep$opt"])
79 optsep=' '
80 done
81
82 AC_CONFIG_HEADERS(src/config.h:src/config.in)
83 AC_CONFIG_SRCDIR(src/lisp.h)
84 AC_CONFIG_AUX_DIR(build-aux)
85
86 xcsdkdir=
87 AC_CHECK_PROGS(XCRUN, [xcrun])
88 if test -n "$XCRUN"; then
89 if test -z "$MAKE"; then
90 dnl Call the variable MAKE_PROG, not MAKE, to avoid confusion with
91 dnl SET_MAKE and with the usual MAKE variable that 'make' itself uses.
92 AC_CHECK_PROG([MAKE_PROG], [make], [yes])
93 if test -z "$MAKE_PROG"; then
94 MAKE="$XCRUN MAKE"
95 export MAKE
96 xcsdkdir=`$XCRUN --show-sdk-path 2>/dev/null`
97 fi
98 fi
99 fi
100
101 dnl Fairly arbitrary, older versions might work too.
102 AM_INIT_AUTOMAKE(1.11)
103
104 dnl Support for --program-prefix, --program-suffix and
105 dnl --program-transform-name options
106 AC_ARG_PROGRAM
107
108 dnl It is important that variables on the RHS not be expanded here,
109 dnl hence the single quotes. This is per the GNU coding standards, see
110 dnl (autoconf) Installation Directory Variables
111 dnl See also epaths.h below.
112 lispdir='${datadir}/emacs/${version}/lisp'
113 standardlisppath='${lispdir}'
114 locallisppath='${datadir}/emacs/${version}/site-lisp:'\
115 '${datadir}/emacs/site-lisp'
116 lisppath='${locallisppath}:${standardlisppath}'
117 etcdir='${datadir}/emacs/${version}/etc'
118 archlibdir='${libexecdir}/emacs/${version}/${configuration}'
119 etcdocdir='${datadir}/emacs/${version}/etc'
120 gamedir='${localstatedir}/games/emacs'
121
122 dnl Special option to disable the most of other options.
123 AC_ARG_WITH(all,
124 [AS_HELP_STRING([--without-all],
125 [omit almost all features and build
126 small executable with minimal dependencies])],
127 [with_features=$withval],
128 [with_features=yes])
129
130 dnl OPTION_DEFAULT_OFF(NAME, HELP-STRING)
131 dnl Create a new --with option that defaults to being disabled.
132 dnl NAME is the base name of the option. The shell variable with_NAME
133 dnl will be set to either the user's value (if the option is
134 dnl specified; 'yes' for a plain --with-NAME) or to 'no' (if the
135 dnl option is not specified). Note that the shell variable name is
136 dnl constructed as autoconf does, by replacing non-alphanumeric
137 dnl characters with "_".
138 dnl HELP-STRING is the help text for the option.
139 AC_DEFUN([OPTION_DEFAULT_OFF], [dnl
140 AC_ARG_WITH([$1],[AS_HELP_STRING([--with-$1],[$2])],[],[dnl
141 m4_bpatsubst([with_$1], [[^0-9a-z]], [_])=no])dnl
142 ])dnl
143
144 dnl OPTION_DEFAULT_ON(NAME, HELP-STRING)
145 dnl Create a new --with option that defaults to $with_features.
146 dnl NAME is the base name of the option. The shell variable with_NAME
147 dnl will be set either to 'no' (for a plain --without-NAME) or to
148 dnl 'yes' (if the option is not specified). Note that the shell
149 dnl variable name is constructed as autoconf does, by replacing
150 dnl non-alphanumeric characters with "_".
151 dnl HELP-STRING is the help text for the option.
152 AC_DEFUN([OPTION_DEFAULT_ON], [dnl
153 AC_ARG_WITH([$1],[AS_HELP_STRING([--without-$1],[$2])],[],[dnl
154 m4_bpatsubst([with_$1], [[^0-9a-z]], [_])=$with_features])dnl
155 ])dnl
156
157 OPTION_DEFAULT_ON([pop],[don't support POP mail retrieval with movemail])
158 if test "$with_pop" = yes; then
159 AC_DEFINE(MAIL_USE_POP)
160 fi
161 AH_TEMPLATE(MAIL_USE_POP, [Define to support POP mail retrieval.])dnl
162
163 OPTION_DEFAULT_OFF([kerberos],[support Kerberos-authenticated POP])
164 if test "$with_kerberos" != no; then
165 AC_DEFINE(KERBEROS)
166 fi
167 AH_TEMPLATE(KERBEROS,
168 [Define to support Kerberos-authenticated POP mail retrieval.])dnl
169
170 OPTION_DEFAULT_OFF([kerberos5],[support Kerberos version 5 authenticated POP])
171 if test "${with_kerberos5}" != no; then
172 if test "${with_kerberos}" = no; then
173 with_kerberos=yes
174 AC_DEFINE(KERBEROS)
175 fi
176 AC_DEFINE(KERBEROS5, 1, [Define to use Kerberos 5 instead of Kerberos 4.])
177 fi
178
179 OPTION_DEFAULT_OFF([hesiod],[support Hesiod to get the POP server host])
180 dnl FIXME hesiod support may not be present, so it seems like an error
181 dnl to define, or at least use, this unconditionally.
182 if test "$with_hesiod" != no; then
183 AC_DEFINE(HESIOD, 1, [Define to support using a Hesiod database to find the POP server.])
184 fi
185
186 OPTION_DEFAULT_OFF([mmdf],[support MMDF mailboxes])
187 if test "$with_mmdf" != no; then
188 AC_DEFINE(MAIL_USE_MMDF, 1, [Define to support MMDF mailboxes in movemail.])
189 fi
190
191 OPTION_DEFAULT_OFF([mail-unlink],[unlink, rather than empty, mail spool after reading])
192 if test "$with_mail_unlink" != no; then
193 AC_DEFINE(MAIL_UNLINK_SPOOL, 1, [Define to unlink, rather than empty, mail spool after reading.])
194 fi
195
196 AC_ARG_WITH([mailhost],[AS_HELP_STRING([--with-mailhost=HOSTNAME],
197 [string giving default POP mail host])],
198 AC_DEFINE_UNQUOTED(MAILHOST, ["$withval"], [String giving fallback POP mail host.]))
199
200 AC_ARG_WITH([sound],[AS_HELP_STRING([--with-sound=VALUE],
201 [compile with sound support (VALUE one of: yes, alsa, oss, bsd-ossaudio, no;
202 default yes). Only for GNU/Linux, FreeBSD, NetBSD, MinGW.])],
203 [ case "${withval}" in
204 yes|no|alsa|oss|bsd-ossaudio) val=$withval ;;
205 *) AC_MSG_ERROR([`--with-sound=$withval' is invalid;
206 this option's value should be `yes', `no', `alsa', `oss', or `bsd-ossaudio'.])
207 ;;
208 esac
209 with_sound=$val
210 ],
211 [with_sound=$with_features])
212
213 dnl FIXME currently it is not the last.
214 dnl This should be the last --with option, because --with-x is
215 dnl added later on when we find the file name of X, and it's best to
216 dnl keep them together visually.
217 AC_ARG_WITH([x-toolkit],[AS_HELP_STRING([--with-x-toolkit=KIT],
218 [use an X toolkit (KIT one of: yes or gtk, gtk2, gtk3, lucid or athena, motif, no)])],
219 [ case "${withval}" in
220 y | ye | yes ) val=gtk ;;
221 n | no ) val=no ;;
222 l | lu | luc | luci | lucid ) val=lucid ;;
223 a | at | ath | athe | athen | athena ) val=athena ;;
224 m | mo | mot | moti | motif ) val=motif ;;
225 g | gt | gtk ) val=gtk ;;
226 gtk2 ) val=gtk2 ;;
227 gtk3 ) val=gtk3 ;;
228 * )
229 AC_MSG_ERROR([`--with-x-toolkit=$withval' is invalid;
230 this option's value should be `yes', `no', `lucid', `athena', `motif', `gtk',
231 `gtk2' or `gtk3'. `yes' and `gtk' are synonyms.
232 `athena' and `lucid' are synonyms.])
233 ;;
234 esac
235 with_x_toolkit=$val
236 ])
237
238 OPTION_DEFAULT_OFF([wide-int], [prefer wide Emacs integers (typically 62-bit)])
239 if test "$with_wide_int" = yes; then
240 AC_DEFINE([WIDE_EMACS_INT], 1, [Use long long for EMACS_INT if available.])
241 fi
242
243 dnl _ON results in a '--without' option in the --help output, so
244 dnl the help text should refer to "don't compile", etc.
245 OPTION_DEFAULT_ON([xpm],[don't compile with XPM image support])
246 OPTION_DEFAULT_ON([jpeg],[don't compile with JPEG image support])
247 OPTION_DEFAULT_ON([tiff],[don't compile with TIFF image support])
248 OPTION_DEFAULT_ON([gif],[don't compile with GIF image support])
249 OPTION_DEFAULT_ON([png],[don't compile with PNG image support])
250 OPTION_DEFAULT_ON([rsvg],[don't compile with SVG image support])
251 OPTION_DEFAULT_ON([xml2],[don't compile with XML parsing support])
252 OPTION_DEFAULT_ON([imagemagick],[don't compile with ImageMagick image support])
253
254 OPTION_DEFAULT_ON([xft],[don't use XFT for anti aliased fonts])
255 OPTION_DEFAULT_ON([libotf],[don't use libotf for OpenType font support])
256 OPTION_DEFAULT_ON([m17n-flt],[don't use m17n-flt for text shaping])
257
258 OPTION_DEFAULT_ON([toolkit-scroll-bars],[don't use Motif or Xaw3d scroll bars])
259 OPTION_DEFAULT_ON([xaw3d],[don't use Xaw3d])
260 OPTION_DEFAULT_ON([xim],[don't use X11 XIM])
261 OPTION_DEFAULT_OFF([ns],[use NeXTstep (Cocoa or GNUstep) windowing system])
262 OPTION_DEFAULT_OFF([w32], [use native MS Windows GUI in a Cygwin build])
263
264 OPTION_DEFAULT_ON([gpm],[don't use -lgpm for mouse support on a GNU/Linux console])
265 OPTION_DEFAULT_ON([dbus],[don't compile with D-Bus support])
266 OPTION_DEFAULT_ON([gconf],[don't compile with GConf support])
267 OPTION_DEFAULT_ON([gsettings],[don't compile with GSettings support])
268 OPTION_DEFAULT_ON([selinux],[don't compile with SELinux support])
269 OPTION_DEFAULT_ON([gnutls],[don't use -lgnutls for SSL/TLS support])
270 OPTION_DEFAULT_ON([zlib],[don't compile with zlib decompression support])
271
272 AC_ARG_WITH([file-notification],[AS_HELP_STRING([--with-file-notification=LIB],
273 [use a file notification library (LIB one of: yes, gfile, inotify, w32, no)])],
274 [ case "${withval}" in
275 y | ye | yes ) val=yes ;;
276 n | no ) val=no ;;
277 g | gf | gfi | gfil | gfile ) val=gfile ;;
278 i | in | ino | inot | inoti | inotif | inotify ) val=inotify ;;
279 w | w3 | w32 ) val=w32 ;;
280 * ) AC_MSG_ERROR([`--with-file-notification=$withval' is invalid;
281 this option's value should be `yes', `no', `gfile', `inotify' or `w32'.
282 `yes' is a synonym for `w32' on MS-Windows, for `no' on Nextstep,
283 otherwise for the first of `gfile' or `inotify' that is usable.])
284 ;;
285 esac
286 with_file_notification=$val
287 ],
288 [with_file_notification=$with_features])
289
290 ## For the times when you want to build Emacs but don't have
291 ## a suitable makeinfo, and can live without the manuals.
292 dnl http://lists.gnu.org/archive/html/emacs-devel/2008-04/msg01844.html
293 OPTION_DEFAULT_ON([makeinfo],[don't require makeinfo for building manuals])
294
295 ## Makefile.in needs the cache file name.
296 AC_SUBST(cache_file)
297
298 ## This is an option because I do not know if all info/man support
299 ## compressed files, nor how to test if they do so.
300 OPTION_DEFAULT_ON([compress-install],
301 [don't compress some files (.el, .info, etc.) when installing. Equivalent to:
302 make GZIP_PROG= install])
303
304 AC_ARG_WITH([pkg-config-prog],dnl
305 [AS_HELP_STRING([--with-pkg-config-prog=FILENAME],
306 [file name of pkg-config for finding GTK and librsvg])])
307 if test "X${with_pkg_config_prog}" != X; then
308 if test "${with_pkg_config_prog}" != yes; then
309 PKG_CONFIG="${with_pkg_config_prog}"
310 fi
311 fi
312
313 AC_ARG_WITH(gameuser,dnl
314 [AS_HELP_STRING([--with-gameuser=USER],[user for shared game score files])])
315 test "X${with_gameuser}" != X && test "${with_gameuser}" != yes \
316 && gameuser="${with_gameuser}"
317 test "X$gameuser" = X && gameuser=games
318
319 AC_ARG_WITH([gnustep-conf],dnl
320 [AS_HELP_STRING([--with-gnustep-conf=FILENAME],
321 [name of GNUstep.conf; default $GNUSTEP_CONFIG_FILE, or /etc/GNUstep/GNUstep.conf])])
322 test "X${with_gnustep_conf}" != X && test "${with_gnustep_conf}" != yes && \
323 GNUSTEP_CONFIG_FILE="${with_gnustep_conf}"
324 test "X$GNUSTEP_CONFIG_FILE" = "X" && \
325 GNUSTEP_CONFIG_FILE=/etc/GNUstep/GNUstep.conf
326
327 AC_ARG_ENABLE(ns-self-contained,
328 [AS_HELP_STRING([--disable-ns-self-contained],
329 [disable self contained build under NeXTstep])],
330 EN_NS_SELF_CONTAINED=$enableval,
331 EN_NS_SELF_CONTAINED=yes)
332
333 AC_ARG_ENABLE(locallisppath,
334 [AS_HELP_STRING([--enable-locallisppath=PATH],
335 [directories Emacs should search for lisp files specific
336 to this site])],
337 if test "${enableval}" = "no"; then
338 locallisppath=
339 elif test "${enableval}" != "yes"; then
340 locallisppath=${enableval}
341 fi)
342
343 AC_ARG_ENABLE(checking,
344 [AS_HELP_STRING([--enable-checking@<:@=LIST@:>@],
345 [enable expensive run-time checks. With LIST,
346 enable only specific categories of checks.
347 Categories are: all,yes,no.
348 Flags are: stringbytes, stringoverrun, stringfreelist,
349 xmallocoverrun, conslist, glyphs])],
350 [ac_checking_flags="${enableval}"],[])
351 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
352 for check in $ac_checking_flags
353 do
354 case $check in
355 # these set all the flags to specific states
356 yes) ac_enable_checking=1 ;;
357 no) ac_enable_checking= ;
358 ac_gc_check_stringbytes= ;
359 ac_gc_check_string_overrun= ;
360 ac_gc_check_string_free_list= ;
361 ac_xmalloc_overrun= ;
362 ac_gc_check_cons_list= ;
363 ac_glyphs_debug= ;;
364 all) ac_enable_checking=1 ;
365 ac_gc_check_stringbytes=1 ;
366 ac_gc_check_string_overrun=1 ;
367 ac_gc_check_string_free_list=1 ;
368 ac_xmalloc_overrun=1 ;
369 ac_gc_check_cons_list=1 ;
370 ac_glyphs_debug=1 ;;
371 # these enable particular checks
372 stringbytes) ac_gc_check_stringbytes=1 ;;
373 stringoverrun) ac_gc_check_string_overrun=1 ;;
374 stringfreelist) ac_gc_check_string_free_list=1 ;;
375 xmallocoverrun) ac_xmalloc_overrun=1 ;;
376 conslist) ac_gc_check_cons_list=1 ;;
377 glyphs) ac_glyphs_debug=1 ;;
378 *) AC_MSG_ERROR(unknown check category $check) ;;
379 esac
380 done
381 IFS="$ac_save_IFS"
382
383 if test x$ac_enable_checking != x ; then
384 AC_DEFINE(ENABLE_CHECKING, 1,
385 [Define to 1 if expensive run-time data type and consistency checks are enabled.])
386 fi
387 if test x$ac_gc_check_stringbytes != x ; then
388 AC_DEFINE(GC_CHECK_STRING_BYTES, 1,
389 [Define this temporarily to hunt a bug. If defined, the size of
390 strings is redundantly recorded in sdata structures so that it can
391 be compared to the sizes recorded in Lisp strings.])
392 fi
393 if test x$ac_gc_check_string_overrun != x ; then
394 AC_DEFINE(GC_CHECK_STRING_OVERRUN, 1,
395 [Define this to check for short string overrun.])
396 fi
397 if test x$ac_gc_check_string_free_list != x ; then
398 AC_DEFINE(GC_CHECK_STRING_FREE_LIST, 1,
399 [Define this to check the string free list.])
400 fi
401 if test x$ac_xmalloc_overrun != x ; then
402 AC_DEFINE(XMALLOC_OVERRUN_CHECK, 1,
403 [Define this to check for malloc buffer overrun.])
404 fi
405 if test x$ac_gc_check_cons_list != x ; then
406 AC_DEFINE(GC_CHECK_CONS_LIST, 1,
407 [Define this to check for errors in cons list.])
408 fi
409 if test x$ac_glyphs_debug != x ; then
410 AC_DEFINE(GLYPH_DEBUG, 1,
411 [Define this to enable glyphs debugging code.])
412 fi
413
414 AC_ARG_ENABLE(check-lisp-object-type,
415 [AS_HELP_STRING([--enable-check-lisp-object-type],
416 [enable compile time checks for the Lisp_Object data type.
417 This is useful for development for catching certain types of bugs.])],
418 if test "${enableval}" != "no"; then
419 AC_DEFINE(CHECK_LISP_OBJECT_TYPE, 1,
420 [Define this to enable compile time checks for the Lisp_Object data type.])
421 fi)
422
423
424 dnl The name of this option is unfortunate. It predates, and has no
425 dnl relation to, the "sampling-based elisp profiler" added in 24.3.
426 dnl Actually, it stops it working.
427 dnl http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00393.html
428 AC_ARG_ENABLE(profiling,
429 [AS_HELP_STRING([--enable-profiling],
430 [build emacs with low-level, gprof profiling support.
431 Mainly useful for debugging Emacs itself. May not work on
432 all platforms. Stops profiler.el working.])],
433 [ac_enable_profiling="${enableval}"],[])
434 if test x$ac_enable_profiling != x ; then
435 PROFILING_CFLAGS="-DPROFILING=1 -pg"
436 else
437 PROFILING_CFLAGS=
438 fi
439 AC_SUBST(PROFILING_CFLAGS)
440
441 AC_ARG_ENABLE(autodepend,
442 [AS_HELP_STRING([--enable-autodepend],
443 [automatically generate dependencies to .h-files.
444 Requires GNU Make and Gcc. Enabled if GNU Make and Gcc is
445 found])],
446 [ac_enable_autodepend="${enableval}"],[ac_enable_autodepend=yes])
447
448 AC_ARG_ENABLE(gtk-deprecation-warnings,
449 [AS_HELP_STRING([--enable-gtk-deprecation-warnings],
450 [Show Gtk+/Gdk deprecation warnings for Gtk+ >= 3.0])],
451 [ac_enable_gtk_deprecation_warnings="${enableval}"],[])
452
453 ### Canonicalize the configuration name.
454
455 AC_CANONICAL_HOST
456 canonical=$host
457 configuration=${host_alias-${build_alias-$host}}
458
459 dnl This used to use changequote, but, apart from `changequote is evil'
460 dnl per the autoconf manual, we can speed up autoconf somewhat by quoting
461 dnl the great gob of text. Thus it's not processed for possible expansion.
462 dnl Just make sure the brackets remain balanced.
463 dnl
464 dnl Since Emacs can't find matching pairs of quotes, boundaries are
465 dnl indicated by comments.
466 dnl quotation begins
467 [
468
469 ### If you add support for a new configuration, add code to this
470 ### switch statement to recognize your configuration name and select
471 ### the appropriate opsys.
472
473 ### As far as handling version numbers on operating systems is
474 ### concerned, make sure things will fail in a fixable way. If
475 ### /etc/MACHINES doesn't say anything about version numbers, be
476 ### prepared to handle anything reasonably. If version numbers
477 ### matter, be sure /etc/MACHINES says something about it.
478
479 opsys='' unported=no
480 case "${canonical}" in
481
482 ## GNU/Linux and similar ports
483 *-*-linux* )
484 opsys=gnu-linux
485 ;;
486
487 ## FreeBSD ports
488 *-*-freebsd* )
489 opsys=freebsd
490 ;;
491
492 ## DragonFly ports
493 *-*-dragonfly* )
494 opsys=dragonfly
495 ;;
496
497 ## FreeBSD kernel + glibc based userland
498 *-*-kfreebsd*gnu* )
499 opsys=gnu-kfreebsd
500 ;;
501
502 ## NetBSD ports
503 *-*-netbsd* )
504 opsys=netbsd
505 ;;
506
507 ## OpenBSD ports
508 *-*-openbsd* | *-*-mirbsd* )
509 opsys=openbsd
510 ;;
511
512 ## Apple Darwin / Mac OS X
513 *-apple-darwin* )
514 case "${canonical}" in
515 i[3456]86-* ) ;;
516 powerpc-* ) ;;
517 x86_64-* ) ;;
518 * ) unported=yes ;;
519 esac
520 opsys=darwin
521 ## Use fink packages if available.
522 ## FIXME find a better way to do this: http://debbugs.gnu.org/11507
523 ## if test -d /sw/include && test -d /sw/lib; then
524 ## GCC_TEST_OPTIONS="-I/sw/include -L/sw/lib"
525 ## NON_GCC_TEST_OPTIONS=${GCC_TEST_OPTIONS}
526 ## fi
527 ;;
528
529 ## Cygwin ports
530 *-*-cygwin )
531 opsys=cygwin
532 ;;
533
534 ## HP 9000 series 700 and 800, running HP/UX
535 hppa*-hp-hpux10.2* )
536 opsys=hpux10-20
537 ;;
538 hppa*-hp-hpux1[1-9]* )
539 opsys=hpux11
540 CFLAGS="-D_INCLUDE__STDC_A1_SOURCE $CFLAGS"
541 ;;
542
543 ## IBM machines
544 rs6000-ibm-aix4.[23]* )
545 opsys=aix4-2
546 ;;
547 powerpc-ibm-aix4.[23]* )
548 opsys=aix4-2
549 ;;
550 rs6000-ibm-aix[56]* )
551 opsys=aix4-2
552 ;;
553 powerpc-ibm-aix[56]* )
554 opsys=aix4-2
555 ;;
556
557 ## Silicon Graphics machines
558 ## Iris 4D
559 mips-sgi-irix6.5 )
560 opsys=irix6-5
561 # Without defining _LANGUAGE_C, things get masked out in the headers
562 # so that, for instance, grepping for `free' in stdlib.h fails and
563 # AC_HEADER_STD_C fails. (MIPSPro 7.2.1.2m compilers, Irix 6.5.3m).
564 NON_GCC_TEST_OPTIONS="-D_LANGUAGE_C"
565 ;;
566
567 ## Suns
568 *-sun-solaris* \
569 | i[3456]86-*-solaris2* | i[3456]86-*-sunos5* \
570 | x86_64-*-solaris2* | x86_64-*-sunos5*)
571 case "${canonical}" in
572 i[3456]86-*-* ) ;;
573 amd64-*-*|x86_64-*-*) ;;
574 sparc* ) ;;
575 * ) unported=yes ;;
576 esac
577 case "${canonical}" in
578 *-sunos5.[1-9][0-9]* | *-solaris2.[1-9][0-9]* )
579 opsys=sol2-10
580 emacs_check_sunpro_c=yes
581 ;;
582 *-sunos5.6* | *-solaris2.6* )
583 opsys=sol2-6
584 RANLIB="ar -ts"
585 ;;
586 *-sunos5.[7-9]* | *-solaris2.[7-9]* )
587 opsys=sol2-6
588 emacs_check_sunpro_c=yes
589 ;;
590 esac
591 ## Watch out for a compiler that we know will not work.
592 case "${canonical}" in
593 *-solaris* | *-sunos5* )
594 if [ "x$CC" = x/usr/ucb/cc ]; then
595 ## /usr/ucb/cc doesn't work;
596 ## we should find some other compiler that does work.
597 unset CC
598 fi
599 ;;
600 *) ;;
601 esac
602 ;;
603
604 ## Intel 386 machines where we don't care about the manufacturer.
605 i[3456]86-*-* )
606 case "${canonical}" in
607 *-darwin* ) opsys=darwin ;;
608 *-mingw32 )
609 opsys=mingw32
610 # MinGW overrides and adds some system headers in nt/inc.
611 GCC_TEST_OPTIONS="-I $srcdir/nt/inc"
612 ;;
613 *-sysv4.2uw* ) opsys=unixware ;;
614 *-sysv5uw* ) opsys=unixware ;;
615 *-sysv5OpenUNIX* ) opsys=unixware ;;
616 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
617 esac
618 ;;
619
620 # MinGW64
621 x86_64-*-* )
622 case "${canonical}" in
623 *-mingw32 )
624 opsys=mingw32
625 # MinGW overrides and adds some system headers in nt/inc.
626 GCC_TEST_OPTIONS="-I $srcdir/nt/inc"
627 ;;
628 ## Otherwise, we'll fall through to the generic opsys code at the bottom.
629 esac
630 ;;
631
632 * )
633 unported=yes
634 ;;
635 esac
636
637 ### If the code above didn't choose an operating system, just choose
638 ### an operating system based on the configuration name. You really
639 ### only want to use this when you have no idea what the right
640 ### operating system is; if you know what operating systems a machine
641 ### runs, it's cleaner to make it explicit in the case statement
642 ### above.
643 if test x"${opsys}" = x; then
644 case "${canonical}" in
645 *-gnu* ) opsys=gnu ;;
646 * )
647 unported=yes
648 ;;
649 esac
650 fi
651
652 ]
653 dnl quotation ends
654
655 if test $unported = yes; then
656 AC_MSG_ERROR([Emacs does not support `${canonical}' systems.
657 If you think it should, please send a report to bug-gnu-emacs@gnu.org.
658 Check `etc/MACHINES' for recognized configuration names.])
659 fi
660
661
662 #### Choose a compiler.
663
664 dnl Sets GCC=yes if using gcc.
665 AC_PROG_CC([gcc cc cl clang "$XCRUN gcc" "$XCRUN clang"])
666 if test -n "$XCRUN"; then
667 AC_CHECK_PROGS(AR, [ar "$XCRUN ar"])
668 test -n "$AR" && export AR
669 fi
670
671 AM_PROG_CC_C_O
672
673 if test x$GCC = xyes; then
674 test "x$GCC_TEST_OPTIONS" != x && CC="$CC $GCC_TEST_OPTIONS"
675 else
676 test "x$NON_GCC_TEST_OPTIONS" != x && CC="$CC $NON_GCC_TEST_OPTIONS"
677 fi
678
679 dnl This is used in lib/Makefile.am to use nt/gnulib.mk, the
680 dnl alternative to lib/gnulib.mk, so as to avoid generating header files
681 dnl that clash with MinGW.
682 AM_CONDITIONAL([BUILDING_FOR_WINDOWSNT], [test "x$opsys" = "xmingw32"])
683
684 # Avoid gnulib's tests for -lcrypto, so that there's no static dependency on it.
685 AC_DEFUN([gl_CRYPTO_CHECK])
686 # Avoid gnulib's tests for HAVE_WORKING_O_NOATIME and HAVE_WORKING_O_NOFOLLOW,
687 # as we don't use them.
688 AC_DEFUN([gl_FCNTL_O_FLAGS])
689 # Avoid gnulib's threadlib module, as we do threads our own way.
690 AC_DEFUN([gl_THREADLIB])
691
692 # Initialize gnulib right after choosing the compiler.
693 dnl Amongst other things, this sets AR and ARFLAGS.
694 gl_EARLY
695
696 if test "$ac_test_CFLAGS" != set; then
697 # It's helpful to have C macros available to GDB, so prefer -g3 to -g
698 # if -g3 works and the user does not specify CFLAGS.
699 # This test must follow gl_EARLY; otherwise AC_LINK_IFELSE complains.
700 case $CFLAGS in
701 '-g')
702 emacs_g3_CFLAGS='-g3';;
703 '-g -O2')
704 emacs_g3_CFLAGS='-g3 -O2';;
705 *)
706 emacs_g3_CFLAGS='';;
707 esac
708 if test -n "$emacs_g3_CFLAGS"; then
709 emacs_save_CFLAGS=$CFLAGS
710 CFLAGS=$emacs_g3_CFLAGS
711 AC_CACHE_CHECK([whether $CC accepts $emacs_g3_CFLAGS],
712 [emacs_cv_prog_cc_g3],
713 [AC_LINK_IFELSE([AC_LANG_PROGRAM()],
714 [emacs_cv_prog_cc_g3=yes],
715 [emacs_cv_prog_cc_g3=no])])
716 if test $emacs_cv_prog_cc_g3 != yes; then
717 CFLAGS=$emacs_save_CFLAGS
718 fi
719 if test $opsys = mingw32; then
720 CFLAGS="$CFLAGS -gdwarf-2"
721 fi
722 fi
723
724 case $CFLAGS in
725 *-O*) ;;
726 *)
727 # No optimization flag was inferred for this non-GCC compiler.
728 # Try -O. This is needed for xlc on AIX; see Bug#14258.
729 emacs_save_CFLAGS=$CFLAGS
730 test -z "$CFLAGS" || CFLAGS="$CFLAGS "
731 CFLAGS=${CFLAGS}-O
732 AC_CACHE_CHECK([whether $CC accepts -O],
733 [emacs_cv_prog_cc_o],
734 [AC_LINK_IFELSE([AC_LANG_PROGRAM()],
735 [emacs_cv_prog_cc_o=yes],
736 [emacs_cv_prog_cc_o=no])])
737 if test $emacs_cv_prog_cc_o != yes; then
738 CFLAGS=$emacs_save_CFLAGS
739 fi ;;
740 esac
741 fi
742
743 AC_ARG_ENABLE([gcc-warnings],
744 [AS_HELP_STRING([--enable-gcc-warnings],
745 [turn on lots of GCC warnings/errors. This is intended for
746 developers, and may generate false alarms when used
747 with older or non-GNU development tools.])],
748 [case $enableval in
749 yes|no) ;;
750 *) AC_MSG_ERROR([bad value $enableval for gcc-warnings option]) ;;
751 esac
752 gl_gcc_warnings=$enableval],
753 [gl_gcc_warnings=no]
754 )
755
756 AC_ARG_ENABLE(link-time-optimization,
757 [AS_HELP_STRING([--enable-link-time-optimization],
758 [build emacs with link-time optimization.
759 This is supported only for GCC since 4.5.0.])],
760 if test "${enableval}" != "no"; then
761 AC_MSG_CHECKING([whether link-time optimization is supported])
762 ac_lto_supported=no
763 if test x$GCC = xyes; then
764 CPUS=`getconf _NPROCESSORS_ONLN 2>/dev/null`
765 if test x$CPUS != x; then
766 LTO="-flto=$CPUS"
767 else
768 LTO="-flto"
769 fi
770 old_CFLAGS=$CFLAGS
771 CFLAGS="$CFLAGS $LTO"
772 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
773 [ac_lto_supported=yes], [ac_lto_supported=no])
774 CFLAGS="$old_CFLAGS"
775 fi
776 AC_MSG_RESULT([$ac_lto_supported])
777 if test "$ac_lto_supported" = "yes"; then
778 CFLAGS="$CFLAGS $LTO"
779 fi
780 fi)
781
782 # clang is unduly picky about some things.
783 AC_CACHE_CHECK([whether the compiler is clang], [emacs_cv_clang],
784 [AC_COMPILE_IFELSE(
785 [AC_LANG_PROGRAM([[
786 #ifndef __clang__
787 error "not clang";
788 #endif
789 ]])],
790 [emacs_cv_clang=yes],
791 [emacs_cv_clang=no])])
792
793 # When compiling with GCC, prefer -isystem to -I when including system
794 # include files, to avoid generating useless diagnostics for the files.
795 if test "$gl_gcc_warnings" != yes; then
796 isystem='-I'
797 if test "$emacs_cv_clang" = yes
798 then
799 # Turn off some warnings if supported.
800 gl_WARN_ADD([-Wno-switch])
801 gl_WARN_ADD([-Wno-tautological-constant-out-of-range-compare])
802 gl_WARN_ADD([-Wno-pointer-sign])
803 fi
804 else
805 isystem='-isystem '
806
807 # This, $nw, is the list of warnings we disable.
808 nw=
809
810 case $with_x_toolkit in
811 lucid | athena | motif)
812 # Old toolkits mishandle 'const'.
813 nw="$nw -Wwrite-strings"
814 ;;
815 *)
816 gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
817 ;;
818 esac
819 AC_SUBST([WERROR_CFLAGS])
820
821 nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings
822 nw="$nw -Woverlength-strings" # Not a problem these days
823 nw="$nw -Wlogical-op" # any use of fwrite provokes this
824 nw="$nw -Wformat-nonliteral" # we do this a lot
825 nw="$nw -Wvla" # warnings in gettext.h
826 nw="$nw -Wnested-externs" # use of XARGMATCH/verify_function__
827 nw="$nw -Wswitch-default" # Too many warnings for now
828 nw="$nw -Winline" # OK to ignore 'inline'
829 nw="$nw -Wjump-misses-init" # We sometimes safely jump over init.
830 nw="$nw -Wstrict-overflow" # OK to optimize assuming that
831 # signed overflow has undefined behavior
832 nw="$nw -Wsync-nand" # irrelevant here, and provokes ObjC warning
833 nw="$nw -Wunsafe-loop-optimizations" # OK to suppress unsafe optimizations
834 nw="$nw -Wbad-function-cast" # These casts are no worse than others.
835
836 # Emacs doesn't care about shadowing; see
837 # <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
838 nw="$nw -Wshadow"
839
840 # Emacs's use of alloca inhibits protecting the stack.
841 nw="$nw -Wstack-protector"
842
843 # The following line should be removable at some point.
844 nw="$nw -Wsuggest-attribute=pure"
845
846 # This part is merely for shortening the command line,
847 # since -Wno-FOO needs to be added below regardless.
848 nw="$nw -Wmissing-field-initializers"
849 nw="$nw -Wswitch"
850 nw="$nw -Wtype-limits"
851 nw="$nw -Wunused-parameter"
852
853 if test $emacs_cv_clang = yes; then
854 nw="$nw -Wcast-align"
855 fi
856
857 gl_MANYWARN_ALL_GCC([ws])
858 gl_MANYWARN_COMPLEMENT([ws], [$ws], [$nw])
859 for w in $ws; do
860 gl_WARN_ADD([$w])
861 done
862 gl_WARN_ADD([-Wno-missing-field-initializers]) # We need this one
863 gl_WARN_ADD([-Wno-sign-compare]) # Too many warnings for now
864 gl_WARN_ADD([-Wno-type-limits]) # Too many warnings for now
865 gl_WARN_ADD([-Wno-switch]) # Too many warnings for now
866 gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now
867 gl_WARN_ADD([-Wno-format-nonliteral])
868
869 # In spite of excluding -Wlogical-op above, it is enabled, as of
870 # gcc 4.5.0 20090517.
871 gl_WARN_ADD([-Wno-logical-op])
872
873 # More things that clang is unduly picky about.
874 if test $emacs_cv_clang = yes; then
875 gl_WARN_ADD([-Wno-format-extra-args])
876 gl_WARN_ADD([-Wno-tautological-constant-out-of-range-compare])
877 gl_WARN_ADD([-Wno-unused-command-line-argument])
878 gl_WARN_ADD([-Wno-unused-value])
879 fi
880
881 AC_DEFINE([lint], [1], [Define to 1 if the compiler is checking for lint.])
882 AH_VERBATIM([FORTIFY_SOURCE],
883 [/* Enable compile-time and run-time bounds-checking, and some warnings,
884 without upsetting glibc 2.15+. */
885 #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__
886 # define _FORTIFY_SOURCE 2
887 #endif
888 ])
889 AC_DEFINE([GNULIB_PORTCHECK], [1], [enable some gnulib portability checks])
890
891 # We use a slightly smaller set of warning options for lib/.
892 # Remove the following and save the result in GNULIB_WARN_CFLAGS.
893 nw=
894 nw="$nw -Wunused-macros"
895
896 gl_MANYWARN_COMPLEMENT([GNULIB_WARN_CFLAGS], [$WARN_CFLAGS], [$nw])
897 AC_SUBST([GNULIB_WARN_CFLAGS])
898 fi
899
900 edit_cflags="
901 s,///*,/,g
902 s/^/ /
903 s/ -I/ $isystem/g
904 s/^ //
905 "
906
907
908 dnl Some other nice autoconf tests.
909 dnl These are commented out, since gl_EARLY and/or Autoconf already does them.
910 dnl AC_PROG_INSTALL
911 dnl AC_PROG_MKDIR_P
912 dnl if test "x$RANLIB" = x; then
913 dnl AC_PROG_RANLIB
914 dnl fi
915
916
917 dnl Sadly, AC_PROG_LN_S is too restrictive. It also tests whether links
918 dnl can be made to directories. This is not relevant for our usage, and
919 dnl excludes some cases that work fine for us. Eg MS Windows or files
920 dnl hosted on AFS, both examples where simple links work, but links to
921 dnl directories fail. We use a cut-down version instead.
922 dnl AC_PROG_LN_S
923
924 AC_MSG_CHECKING([whether ln -s works for files in the same directory])
925 rm -f conf$$ conf$$.file
926
927 LN_S_FILEONLY='cp -p'
928
929 dnl On MinGW, ensure we will call the MSYS /bin/ln.exe, not some
930 dnl random program in the current directory.
931 if (echo >conf$$.file) 2>/dev/null; then
932 if ln -s conf$$.file conf$$ 2>/dev/null; then
933 if test "$opsys" = "mingw32"; then
934 LN_S_FILEONLY='/bin/ln -s'
935 else
936 LN_S_FILEONLY='ln -s'
937 fi
938 elif ln conf$$.file conf$$ 2>/dev/null; then
939 if test "$opsys" = "mingw32"; then
940 LN_S_FILEONLY=/bin/ln
941 else
942 LN_S_FILEONLY=ln
943 fi
944 fi
945 fi
946
947 rm -f conf$$ conf$$.file
948
949 if test "$LN_S_FILEONLY" = "ln -s"; then
950 AC_MSG_RESULT([yes])
951 else
952 AC_MSG_RESULT([no, using $LN_S_FILEONLY])
953 fi
954
955 AC_SUBST(LN_S_FILEONLY)
956
957
958 dnl AC_PROG_LN_S sets LN_S to 'cp -pR' for MinGW, on the premise that 'ln'
959 dnl doesn't support links to directories, as in "ln file dir". But that
960 dnl use is non-portable, and OTOH MinGW wants to use hard links for Emacs
961 dnl executables at "make install" time.
962 dnl See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00475.html
963 dnl for more details.
964 if test "$opsys" = "mingw32"; then
965 LN_S="/bin/ln"
966 fi
967
968 dnl On some Debian versions, "install-info" prints irritating messages
969 dnl "This is not dpkg install-info anymore, but GNU install-info"
970 dnl if called via an absolute file name.
971 dnl Use the entirely-identical-but-quieter ginstall-info instead if present.
972 AC_PATH_PROGS(INSTALL_INFO, [ginstall-info install-info], :,
973 $PATH$PATH_SEPARATOR/usr/sbin$PATH_SEPARATOR/sbin)
974 dnl Don't use GZIP, which is used by gzip for additional parameters.
975 AC_PATH_PROG(GZIP_PROG, gzip)
976
977 test $with_compress_install != yes && test -n "$GZIP_PROG" && \
978 GZIP_PROG=" # $GZIP_PROG # (disabled by configure --without-compress-install)"
979
980 if test $opsys = gnu-linux; then
981 AC_PATH_PROG(PAXCTL, paxctl,,
982 [$PATH$PATH_SEPARATOR/sbin$PATH_SEPARATOR/usr/sbin])
983 if test "X$PAXCTL" != X; then
984 AC_MSG_CHECKING([whether binaries have a PT_PAX_FLAGS header])
985 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
986 [if $PAXCTL -v conftest$EXEEXT >/dev/null 2>&1; then AC_MSG_RESULT(yes)
987 else AC_MSG_RESULT(no); PAXCTL=""; fi])
988 fi
989
990 if test "${SETFATTR+set}" != set; then
991 AC_CACHE_CHECK([for setfattr],
992 [emacs_cv_prog_setfattr],
993 [touch conftest.tmp
994 if (setfattr -n user.pax.flags conftest.tmp) >/dev/null 2>&1; then
995 emacs_cv_prog_setfattr=yes
996 else
997 emacs_cv_prog_setfattr=no
998 fi])
999 if test "$emacs_cv_prog_setfattr" = yes; then
1000 SETFATTR=setfattr
1001 else
1002 SETFATTR=
1003 fi
1004 rm -f conftest.tmp
1005 AC_SUBST([SETFATTR])
1006 fi
1007 fi
1008
1009 ## Need makeinfo >= 4.7 (?) to build the manuals.
1010 AC_PATH_PROG(MAKEINFO, makeinfo, no)
1011 dnl By this stage, configure has already checked for egrep and set EGREP,
1012 dnl or exited with an error if no egrep was found.
1013 if test "$MAKEINFO" != "no"; then
1014 case `
1015 $MAKEINFO --version 2> /dev/null |
1016 $EGREP 'texinfo[[^0-9]]*([[1-4]][[0-9]]+|[[5-9]]|4\.[[7-9]]|4\.[[1-6]][[0-9]]+)'
1017 ` in
1018 '') MAKEINFO=no;;
1019 esac
1020 fi
1021
1022 ## Makeinfo is unusual. For a released Emacs, the manuals are
1023 ## pre-built, and not deleted by the normal clean rules. makeinfo is
1024 ## therefore in the category of "special tools" not normally required, which
1025 ## configure does not have to check for (eg autoconf itself).
1026 ## In a repository checkout on the other hand, the manuals are not included.
1027 ## So makeinfo is a requirement to build from the repository, and configure
1028 ## should test for it as it does for any other build requirement.
1029 ## We use the presence of $srcdir/info/emacs to distinguish a release,
1030 ## with pre-built manuals, from a repository checkout.
1031 HAVE_MAKEINFO=yes
1032
1033 if test "$MAKEINFO" = "no"; then
1034 MAKEINFO=makeinfo
1035 if test "x${with_makeinfo}" = "xno"; then
1036 HAVE_MAKEINFO=no
1037 elif test ! -e "$srcdir/info/emacs" && test ! -e "$srcdir/info/emacs.info"; then
1038 AC_MSG_ERROR( [You do not seem to have makeinfo >= 4.7, and your
1039 source tree does not seem to have pre-built manuals in the `info' directory.
1040 Either install a suitable version of makeinfo, or re-run configure
1041 with the `--without-makeinfo' option to build without the manuals.] )
1042 fi
1043 fi
1044 AC_SUBST(HAVE_MAKEINFO)
1045
1046 dnl Just so that there is only a single place we need to edit.
1047 INFO_EXT=.info
1048 INFO_OPTS=--no-split
1049 AC_SUBST(INFO_EXT)
1050 AC_SUBST(INFO_OPTS)
1051
1052 if test $opsys = mingw32; then
1053 DOCMISC_W32=efaq-w32
1054 else
1055 DOCMISC_W32=
1056 fi
1057 AC_SUBST(DOCMISC_W32)
1058
1059 dnl Add our options to ac_link now, after it is set up.
1060
1061 if test x$GCC = xyes; then
1062 test "x$GCC_LINK_TEST_OPTIONS" != x && \
1063 ac_link="$ac_link $GCC_LINK_TEST_OPTIONS"
1064 else
1065 test "x$NON_GCC_LINK_TEST_OPTIONS" != x && \
1066 ac_link="$ac_link $NON_GCC_LINK_TEST_OPTIONS"
1067 fi
1068
1069 dnl We need -znocombreloc if we're using a relatively recent GNU ld.
1070 dnl If we can link with the flag, it shouldn't do any harm anyhow.
1071 dnl (Don't use `-z nocombreloc' as -z takes no arg on Irix.)
1072 dnl Treat GCC specially since it just gives a non-fatal `unrecognized option'
1073 dnl if not built to support GNU ld.
1074
1075 dnl For a long time, -znocombreloc was added to LDFLAGS rather than
1076 dnl LD_SWITCH_SYSTEM_TEMACS. That is:
1077 dnl * inappropriate, as LDFLAGS is a user option but this is essential.
1078 dnl Eg "make LDFLAGS=... all" could run into problems,
1079 dnl http://bugs.debian.org/684788
1080 dnl * unnecessary, since temacs is the only thing that actually needs it.
1081 dnl Indeed this is where it was originally, prior to:
1082 dnl http://lists.gnu.org/archive/html/emacs-pretest-bug/2004-03/msg00170.html
1083 late_LDFLAGS="$LDFLAGS"
1084 if test x$GCC = xyes; then
1085 LDFLAGS_NOCOMBRELOC="-Wl,-znocombreloc"
1086 else
1087 LDFLAGS_NOCOMBRELOC="-znocombreloc"
1088 fi
1089
1090 LDFLAGS="$LDFLAGS $LDFLAGS_NOCOMBRELOC"
1091
1092 AC_MSG_CHECKING([for -znocombreloc])
1093 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
1094 [AC_MSG_RESULT(yes)],
1095 LDFLAGS_NOCOMBRELOC=
1096 [AC_MSG_RESULT(no)])
1097
1098 LDFLAGS="$late_LDFLAGS"
1099
1100 AC_CACHE_CHECK([whether addresses are sanitized],
1101 [emacs_cv_sanitize_address],
1102 [AC_COMPILE_IFELSE(
1103 [AC_LANG_PROGRAM(
1104 [[#ifndef __has_feature
1105 #define __has_feature(f) 0
1106 #endif
1107 #if defined __SANITIZE_ADDRESS__ || __has_feature (address_sanitizer)
1108 #else
1109 error "Addresses are not sanitized.";
1110 #endif
1111 ]])],
1112 [emacs_cv_sanitize_address=yes],
1113 [emacs_cv_sanitize_address=no])])
1114
1115 dnl The function dump-emacs will not be defined and temacs will do
1116 dnl (load "loadup") automatically unless told otherwise.
1117 test "x$CANNOT_DUMP" = "x" && CANNOT_DUMP=no
1118 case "$opsys" in
1119 your-opsys-here) CANNOT_DUMP=yes ;;
1120 esac
1121
1122 if test "$CANNOT_DUMP" = "yes"; then
1123 AC_DEFINE(CANNOT_DUMP, 1, [Define if Emacs cannot be dumped on your system.])
1124 elif test "$emacs_cv_sanitize_address" = yes; then
1125 AC_MSG_WARN([[Addresses are sanitized; suggest CANNOT_DUMP=yes]])
1126 fi
1127
1128 AC_SUBST(CANNOT_DUMP)
1129
1130
1131 UNEXEC_OBJ=unexelf.o
1132 case "$opsys" in
1133 # MSDOS uses unexcoff.o
1134 aix4-2)
1135 UNEXEC_OBJ=unexaix.o
1136 ;;
1137 cygwin)
1138 UNEXEC_OBJ=unexcw.o
1139 ;;
1140 darwin)
1141 UNEXEC_OBJ=unexmacosx.o
1142 ;;
1143 hpux10-20 | hpux11)
1144 UNEXEC_OBJ=unexhp9k800.o
1145 ;;
1146 mingw32)
1147 UNEXEC_OBJ=unexw32.o
1148 ;;
1149 sol2-10)
1150 # Use the Solaris dldump() function, called from unexsol.c, to dump
1151 # emacs, instead of the generic ELF dump code found in unexelf.c.
1152 # The resulting binary has a complete symbol table, and is better
1153 # for debugging and other observability tools (debuggers, pstack, etc).
1154 #
1155 # If you encounter a problem using dldump(), please consider sending
1156 # a message to the OpenSolaris tools-linking mailing list:
1157 # http://mail.opensolaris.org/mailman/listinfo/tools-linking
1158 #
1159 # It is likely that dldump() works with older Solaris too, but this has
1160 # not been tested, so for now this change is for Solaris 10 or newer.
1161 UNEXEC_OBJ=unexsol.o
1162 ;;
1163 esac
1164
1165 LD_SWITCH_SYSTEM=
1166 case "$opsys" in
1167 freebsd|dragonfly)
1168 ## Let `ld' find image libs and similar things in /usr/local/lib.
1169 ## The system compiler, GCC, has apparently been modified to not
1170 ## look there, contrary to what a stock GCC would do.
1171 ### It's not our place to do this. See bug#10313#17.
1172 ### LD_SWITCH_SYSTEM=-L/usr/local/lib
1173 :
1174 ;;
1175
1176 gnu-linux)
1177 ## cpp test was "ifdef __mips__", but presumably this is equivalent...
1178 case $host_cpu in mips*) LD_SWITCH_SYSTEM="-G 0";; esac
1179 ;;
1180
1181 netbsd)
1182 ### It's not our place to do this. See bug#10313#17.
1183 ### LD_SWITCH_SYSTEM="-Wl,-rpath,/usr/pkg/lib -L/usr/pkg/lib -Wl,-rpath,/usr/local/lib -L/usr/local/lib"
1184 :
1185 ;;
1186
1187 openbsd)
1188 ## Han Boetes <han@boetes.org> says this is necessary,
1189 ## otherwise Emacs dumps core on elf systems.
1190 LD_SWITCH_SYSTEM="-Z"
1191 ;;
1192 esac
1193 AC_SUBST(LD_SWITCH_SYSTEM)
1194
1195 ac_link="$ac_link $LD_SWITCH_SYSTEM"
1196
1197 ## This setting of LD_SWITCH_SYSTEM references LD_SWITCH_X_SITE_RPATH,
1198 ## which has not been defined yet. When this was handled with cpp,
1199 ## it was expanded to null when configure sourced the s/*.h file.
1200 ## Thus LD_SWITCH_SYSTEM had different values in configure and the Makefiles.
1201 ## FIXME it would be cleaner to put this in LD_SWITCH_SYSTEM_TEMACS
1202 ## (or somesuch), but because it is supposed to go at the _front_
1203 ## of LD_SWITCH_SYSTEM, we cannot do that in exactly the same way.
1204 ## Compare with the gnu-linux case below, which added to the end
1205 ## of LD_SWITCH_SYSTEM, and so can instead go at the front of
1206 ## LD_SWITCH_SYSTEM_TEMACS.
1207 case "$opsys" in
1208 netbsd|openbsd)
1209 LD_SWITCH_SYSTEM="\$(LD_SWITCH_X_SITE_RPATH) $LD_SWITCH_SYSTEM" ;;
1210 esac
1211
1212
1213 C_SWITCH_MACHINE=
1214 case $canonical in
1215 alpha*)
1216 AC_CHECK_DECL([__ELF__])
1217 if test "$ac_cv_have_decl___ELF__" = "yes"; then
1218 ## With ELF, make sure that all common symbols get allocated to in the
1219 ## data section. Otherwise, the dump of temacs may miss variables in
1220 ## the shared library that have been initialized. For example, with
1221 ## GNU libc, __malloc_initialized would normally be resolved to the
1222 ## shared library's .bss section, which is fatal.
1223 if test "x$GCC" = "xyes"; then
1224 C_SWITCH_MACHINE="-fno-common"
1225 else
1226 AC_MSG_ERROR([Non-GCC compilers are not supported.])
1227 fi
1228 else
1229 dnl This was the unexalpha.c case. Removed in 24.1, 2010-07-24,
1230 dnl albeit under the mistaken assumption that said file
1231 dnl was no longer used.
1232 AC_MSG_ERROR([Non-ELF systems are not supported since Emacs 24.1.])
1233 fi
1234 ;;
1235 esac
1236 AC_SUBST(C_SWITCH_MACHINE)
1237
1238 AC_SUBST(UNEXEC_OBJ)
1239
1240 C_SWITCH_SYSTEM=
1241 ## Some programs in src produce warnings saying certain subprograms
1242 ## are too complex and need a MAXMEM value greater than 2000 for
1243 ## additional optimization. --nils@exp-math.uni-essen.de
1244 test "$opsys" = "aix4.2" && test "x$GCC" != "xyes" && \
1245 C_SWITCH_SYSTEM="-ma -qmaxmem=4000"
1246 if test "$opsys" = "mingw32"; then
1247 case "$canonical" in
1248 x86_64-*-mingw32) C_SWITCH_SYSTEM="-mtune=generic" ;;
1249 *) C_SWITCH_SYSTEM="-mtune=pentium4" ;;
1250 esac
1251 fi
1252 ## gnu-linux might need -D_BSD_SOURCE on old libc5 systems.
1253 ## It is redundant in glibc2, since we define _GNU_SOURCE.
1254 AC_SUBST(C_SWITCH_SYSTEM)
1255
1256
1257 LIBS_SYSTEM=
1258 case "$opsys" in
1259 ## IBM's X11R5 uses -lIM and -liconv in AIX 3.2.2.
1260 aix4-2) LIBS_SYSTEM="-lrts -lIM -liconv" ;;
1261
1262 freebsd|dragonfly) LIBS_SYSTEM="-lutil" ;;
1263
1264 hpux*) LIBS_SYSTEM="-l:libdld.sl" ;;
1265
1266 sol2*) LIBS_SYSTEM="-lsocket -lnsl" ;;
1267
1268 ## Motif needs -lgen.
1269 unixware) LIBS_SYSTEM="-lsocket -lnsl -lelf -lgen" ;;
1270 esac
1271
1272 AC_SUBST(LIBS_SYSTEM)
1273
1274 ### Make sure subsequent tests use flags consistent with the build flags.
1275
1276 if test x"${OVERRIDE_CPPFLAGS}" != x; then
1277 CPPFLAGS="${OVERRIDE_CPPFLAGS}"
1278 else
1279 CPPFLAGS="$C_SWITCH_SYSTEM $C_SWITCH_MACHINE $CPPFLAGS"
1280 fi
1281
1282 # Suppress obsolescent Autoconf test for size_t; Emacs assumes C89 or better.
1283 AC_DEFUN([AC_TYPE_SIZE_T])
1284 # Likewise for obsolescent test for uid_t, gid_t; Emacs assumes them.
1285 AC_DEFUN([AC_TYPE_UID_T])
1286
1287
1288 LIB_MATH=-lm
1289 dnl Current possibilities handled by sed (aix4-2 -> aix,
1290 dnl gnu-linux -> gnu/linux, etc.):
1291 dnl gnu, gnu/linux, gnu/kfreebsd, aix, cygwin, darwin, hpux, irix.
1292 dnl And special cases: berkeley-unix, usg-unix-v, ms-dos, windows-nt.
1293 SYSTEM_TYPE=`echo $opsys | sed -e 's/[[0-9]].*//' -e 's|-|/|'`
1294
1295 case $opsys in
1296 cygwin )
1297 LIB_MATH=
1298 ;;
1299 darwin )
1300 ## Adding -lm confuses the dynamic linker, so omit it.
1301 LIB_MATH=
1302 ;;
1303 freebsd | dragonfly )
1304 SYSTEM_TYPE=berkeley-unix
1305 ;;
1306 gnu-linux | gnu-kfreebsd )
1307 ;;
1308 hpux10-20 | hpux11 )
1309 ;;
1310 mingw32 )
1311 LIB_MATH=
1312 SYSTEM_TYPE=windows-nt
1313 ;;
1314 dnl NB this may be adjusted below.
1315 netbsd | openbsd )
1316 SYSTEM_TYPE=berkeley-unix
1317 ;;
1318
1319 sol2* | unixware )
1320 SYSTEM_TYPE=usg-unix-v
1321 ;;
1322
1323 esac
1324
1325 AC_SUBST(LIB_MATH)
1326 AC_DEFINE_UNQUOTED(SYSTEM_TYPE, "$SYSTEM_TYPE",
1327 [The type of system you are compiling for; sets `system-type'.])
1328
1329
1330 pre_PKG_CONFIG_CFLAGS=$CFLAGS
1331 pre_PKG_CONFIG_LIBS=$LIBS
1332
1333 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1334
1335 dnl This function definition taken from Gnome 2.0
1336 dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1337 dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1338 dnl also defines GSTUFF_PKG_ERRORS on error
1339 AC_DEFUN([PKG_CHECK_MODULES], [
1340 succeeded=no
1341
1342 if test "$PKG_CONFIG" = "no" ; then
1343 ifelse([$4], , [AC_MSG_ERROR([
1344 *** The pkg-config script could not be found. Make sure it is in your path, or give the full name of pkg-config with the PKG_CONFIG environment variable or --with-pkg-config-prog. Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config.])], [$4])
1345 else
1346 PKG_CONFIG_MIN_VERSION=0.9.0
1347 if "$PKG_CONFIG" --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1348 AC_MSG_CHECKING(for $2)
1349
1350 if "$PKG_CONFIG" --exists "$2" 2>&AS_MESSAGE_LOG_FD &&
1351 $1_CFLAGS=`"$PKG_CONFIG" --cflags "$2" 2>&AS_MESSAGE_LOG_FD` &&
1352 $1_LIBS=`"$PKG_CONFIG" --libs "$2" 2>&AS_MESSAGE_LOG_FD`; then
1353 $1_CFLAGS=`AS_ECHO(["$$1_CFLAGS"]) | sed -e "$edit_cflags"`
1354 $1_LIBS=`AS_ECHO(["$$1_LIBS"]) | sed -e 's,///*,/,g'`
1355 AC_MSG_RESULT([yes CFLAGS='$$1_CFLAGS' LIBS='$$1_LIBS'])
1356 succeeded=yes
1357 else
1358 AC_MSG_RESULT(no)
1359 $1_CFLAGS=""
1360 $1_LIBS=""
1361 ## If we have a custom action on failure, don't print errors, but
1362 ## do set a variable so people can do so. Do it in a subshell
1363 ## to capture any diagnostics in invoking pkg-config.
1364 $1_PKG_ERRORS=`("$PKG_CONFIG" --print-errors "$2") 2>&1`
1365 ifelse([$4], ,echo "$$1_PKG_ERRORS",)
1366 fi
1367
1368 AC_SUBST($1_CFLAGS)
1369 AC_SUBST($1_LIBS)
1370 else
1371 echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1372 echo "*** See http://www.freedesktop.org/software/pkgconfig"
1373 fi
1374 fi
1375
1376 if test $succeeded = yes; then
1377 ifelse([$3], , :, [$3])
1378 else
1379 ifelse([$4], , [AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.])], [$4])
1380 fi
1381 ])
1382
1383 HAVE_SOUND=no
1384 if test "${with_sound}" != "no"; then
1385 # Sound support for GNU/Linux, the free BSDs, and MinGW.
1386 AC_CHECK_HEADERS([machine/soundcard.h sys/soundcard.h soundcard.h],
1387 have_sound_header=yes, [], [
1388 #ifdef __MINGW32__
1389 #define WIN32_LEAN_AND_MEAN
1390 #include <windows.h>
1391 #endif
1392 ])
1393 test "${with_sound}" = "oss" && test "${have_sound_header}" != "yes" && \
1394 AC_MSG_ERROR([OSS sound support requested but not found.])
1395
1396 if test "${with_sound}" = "bsd-ossaudio" || test "${with_sound}" = "yes"; then
1397 # Emulation library used on NetBSD.
1398 AC_CHECK_LIB(ossaudio, _oss_ioctl, LIBSOUND=-lossaudio, LIBSOUND=)
1399 test "${with_sound}" = "bsd-ossaudio" && test -z "$LIBSOUND" && \
1400 AC_MSG_ERROR([bsd-ossaudio sound support requested but not found.])
1401 dnl FIXME? If we did find ossaudio, should we set with_sound=bsd-ossaudio?
1402 dnl Traditionally, we go on to check for alsa too. Does that make sense?
1403 fi
1404 AC_SUBST(LIBSOUND)
1405
1406 if test "${with_sound}" = "alsa" || test "${with_sound}" = "yes"; then
1407 ALSA_REQUIRED=1.0.0
1408 ALSA_MODULES="alsa >= $ALSA_REQUIRED"
1409 PKG_CHECK_MODULES(ALSA, $ALSA_MODULES, HAVE_ALSA=yes, HAVE_ALSA=no)
1410 if test $HAVE_ALSA = yes; then
1411 SAVE_CFLAGS="$CFLAGS"
1412 SAVE_LIBS="$LIBS"
1413 CFLAGS="$ALSA_CFLAGS $CFLAGS"
1414 LIBS="$ALSA_LIBS $LIBS"
1415 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <asoundlib.h>]], [[snd_lib_error_set_handler (0);]])],
1416 emacs_alsa_normal=yes,
1417 emacs_alsa_normal=no)
1418 if test "$emacs_alsa_normal" != yes; then
1419 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <alsa/asoundlib.h>]],
1420 [[snd_lib_error_set_handler (0);]])],
1421 emacs_alsa_subdir=yes,
1422 emacs_alsa_subdir=no)
1423 if test "$emacs_alsa_subdir" != yes; then
1424 AC_MSG_ERROR([pkg-config found alsa, but it does not compile. See config.log for error messages.])
1425 fi
1426 ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE"
1427 fi
1428
1429 CFLAGS="$SAVE_CFLAGS"
1430 LIBS="$SAVE_LIBS"
1431 LIBSOUND="$LIBSOUND $ALSA_LIBS"
1432 CFLAGS_SOUND="$CFLAGS_SOUND $ALSA_CFLAGS"
1433 AC_DEFINE(HAVE_ALSA, 1, [Define to 1 if ALSA is available.])
1434 elif test "${with_sound}" = "alsa"; then
1435 AC_MSG_ERROR([ALSA sound support requested but not found.])
1436 fi
1437 fi dnl with_sound = alsa|yes
1438
1439 dnl Define HAVE_SOUND if we have sound support. We know it works and
1440 dnl compiles only on the specified platforms. For others, it
1441 dnl probably doesn't make sense to try.
1442 dnl FIXME So surely we should bypass this whole section if not using
1443 dnl one of these platforms?
1444 if test x$have_sound_header = xyes || test $HAVE_ALSA = yes; then
1445 case "$opsys" in
1446 dnl defined __FreeBSD__ || defined __NetBSD__ || defined __linux__
1447 dnl Adjust the --with-sound help text if you change this.
1448 gnu-linux|freebsd|netbsd|mingw32)
1449 AC_DEFINE(HAVE_SOUND, 1, [Define to 1 if you have sound support.])
1450 HAVE_SOUND=yes
1451 ;;
1452 esac
1453 fi
1454
1455 AC_SUBST(CFLAGS_SOUND)
1456 fi
1457
1458 dnl checks for header files
1459 AC_CHECK_HEADERS_ONCE(
1460 sys/systeminfo.h
1461 coff.h pty.h
1462 sys/resource.h
1463 sys/utsname.h pwd.h utmp.h util.h)
1464
1465 AC_MSG_CHECKING(if personality LINUX32 can be set)
1466 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/personality.h>]], [[personality (PER_LINUX32)]])],
1467 emacs_cv_personality_linux32=yes,
1468 emacs_cv_personality_linux32=no)
1469 AC_MSG_RESULT($emacs_cv_personality_linux32)
1470
1471 if test $emacs_cv_personality_linux32 = yes; then
1472 AC_DEFINE(HAVE_PERSONALITY_LINUX32, 1,
1473 [Define to 1 if personality LINUX32 can be set.])
1474 fi
1475
1476 dnl On Solaris 8 there's a compilation warning for term.h because
1477 dnl it doesn't define `bool'.
1478 AC_CHECK_HEADERS(term.h, , , -)
1479 AC_HEADER_TIME
1480 AC_CHECK_DECLS([sys_siglist], [], [], [[#include <signal.h>
1481 ]])
1482 if test $ac_cv_have_decl_sys_siglist != yes; then
1483 # For Tru64, at least:
1484 AC_CHECK_DECLS([__sys_siglist], [], [], [[#include <signal.h>
1485 ]])
1486 fi
1487 AC_HEADER_SYS_WAIT
1488
1489 AC_CHECK_HEADERS_ONCE(sys/socket.h)
1490 AC_CHECK_HEADERS(net/if.h, , , [AC_INCLUDES_DEFAULT
1491 #if HAVE_SYS_SOCKET_H
1492 #include <sys/socket.h>
1493 #endif])
1494 AC_CHECK_HEADERS(ifaddrs.h, , , [AC_INCLUDES_DEFAULT
1495 #if HAVE_SYS_SOCKET_H
1496 #include <sys/socket.h>
1497 #endif])
1498 AC_CHECK_HEADERS(net/if_dl.h, , , [AC_INCLUDES_DEFAULT
1499 #if HAVE_SYS_SOCKET_H
1500 #include <sys/socket.h>
1501 #endif])
1502
1503 dnl checks for structure members
1504 AC_CHECK_MEMBERS([struct ifreq.ifr_flags, struct ifreq.ifr_hwaddr,
1505 struct ifreq.ifr_netmask, struct ifreq.ifr_broadaddr,
1506 struct ifreq.ifr_addr,
1507 struct ifreq.ifr_addr.sa_len], , ,
1508 [AC_INCLUDES_DEFAULT
1509 #if HAVE_SYS_SOCKET_H
1510 #include <sys/socket.h>
1511 #endif
1512 #if HAVE_NET_IF_H
1513 #include <net/if.h>
1514 #endif])
1515
1516 dnl Check for endianness.
1517 dnl AC_C_BIGENDIAN is done by gnulib.
1518
1519 dnl check for Make feature
1520 dnl AC_PROG_MAKE_SET is done by Automake.
1521
1522 DEPFLAGS=
1523 MKDEPDIR=":"
1524 deps_frag=deps.mk
1525 dnl check for GNU Make if we have GCC and autodepend is on.
1526 if test "$GCC" = yes && test "$ac_enable_autodepend" = yes; then
1527 AC_MSG_CHECKING([whether we are using GNU Make])
1528 HAVE_GNU_MAKE=no
1529 testval=`${MAKE-make} --version 2>/dev/null | grep 'GNU Make'`
1530 if test "x$testval" != x; then
1531 HAVE_GNU_MAKE=yes
1532 else
1533 ac_enable_autodepend=no
1534 fi
1535 AC_MSG_RESULT([$HAVE_GNU_MAKE])
1536 if test $HAVE_GNU_MAKE = yes; then
1537 AC_MSG_CHECKING([whether gcc understands -MMD -MF])
1538 SAVE_CFLAGS="$CFLAGS"
1539 CFLAGS="$CFLAGS -MMD -MF deps.d -MP"
1540 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])], , ac_enable_autodepend=no)
1541 CFLAGS="$SAVE_CFLAGS"
1542 test -f deps.d || ac_enable_autodepend=no
1543 rm -rf deps.d
1544 AC_MSG_RESULT([$ac_enable_autodepend])
1545 fi
1546 if test $ac_enable_autodepend = yes; then
1547 DEPFLAGS='-MMD -MF ${DEPDIR}/$*.d -MP'
1548 ## MKDIR_P is documented (see AC_PROG_MKDIR_P) to be parallel-safe.
1549 MKDEPDIR='${MKDIR_P} ${DEPDIR}'
1550 deps_frag=autodeps.mk
1551 fi
1552 fi
1553 deps_frag=$srcdir/src/$deps_frag
1554 AC_SUBST(MKDEPDIR)
1555 AC_SUBST(DEPFLAGS)
1556 AC_SUBST_FILE(deps_frag)
1557
1558
1559 lisp_frag=$srcdir/src/lisp.mk
1560 AC_SUBST_FILE(lisp_frag)
1561
1562
1563 dnl checks for operating system services
1564 AC_SYS_LONG_FILE_NAMES
1565
1566 #### Choose a window system.
1567
1568 ## We leave window_system equal to none if
1569 ## we end up building without one. Any new window system should
1570 ## set window_system to an appropriate value and add objects to
1571 ## window-system-specific substs.
1572
1573 window_system=none
1574 AC_PATH_X
1575 if test "$no_x" != yes; then
1576 window_system=x11
1577 fi
1578
1579 LD_SWITCH_X_SITE_RPATH=
1580 if test "${x_libraries}" != NONE; then
1581 if test -n "${x_libraries}"; then
1582 LD_SWITCH_X_SITE=-L`echo ${x_libraries} | sed -e "s/:/ -L/g"`
1583 LD_SWITCH_X_SITE_RPATH=-Wl,-rpath,`echo ${x_libraries} | sed -e "s/:/ -Wl,-rpath,/g"`
1584 fi
1585 x_default_search_path=""
1586 x_search_path=${x_libraries}
1587 if test -z "${x_search_path}"; then
1588 x_search_path=/usr/lib
1589 fi
1590 for x_library in `echo ${x_search_path}: | \
1591 sed -e "s/:/ /g" -e p -e "s:/lib[[^ /]]* :/share :g"`; do
1592 x_search_path="\
1593 ${x_library}/X11/%L/%T/%N%C%S:\
1594 ${x_library}/X11/%l/%T/%N%C%S:\
1595 ${x_library}/X11/%T/%N%C%S:\
1596 ${x_library}/X11/%L/%T/%N%S:\
1597 ${x_library}/X11/%l/%T/%N%S:\
1598 ${x_library}/X11/%T/%N%S"
1599 if test x"${x_default_search_path}" = x; then
1600 x_default_search_path=${x_search_path}
1601 else
1602 x_default_search_path="${x_search_path}:${x_default_search_path}"
1603 fi
1604 done
1605 fi
1606 AC_SUBST(LD_SWITCH_X_SITE_RPATH)
1607
1608 if test "${x_includes}" != NONE && test -n "${x_includes}"; then
1609 C_SWITCH_X_SITE="$isystem"`echo ${x_includes} | sed -e "s/:/ $isystem/g"`
1610 fi
1611
1612 if test x"${x_includes}" = x; then
1613 bitmapdir=/usr/include/X11/bitmaps
1614 else
1615 # accumulate include directories that have X11 bitmap subdirectories
1616 bmd_acc="dummyval"
1617 for bmd in `echo ${x_includes} | sed -e "s/:/ /g"`; do
1618 if test -d "${bmd}/X11/bitmaps"; then
1619 bmd_acc="${bmd_acc}:${bmd}/X11/bitmaps"
1620 fi
1621 if test -d "${bmd}/bitmaps"; then
1622 bmd_acc="${bmd_acc}:${bmd}/bitmaps"
1623 fi
1624 done
1625 if test ${bmd_acc} != "dummyval"; then
1626 bitmapdir=`echo ${bmd_acc} | sed -e "s/^dummyval://"`
1627 fi
1628 fi
1629
1630 HAVE_NS=no
1631 NS_IMPL_COCOA=no
1632 NS_IMPL_GNUSTEP=no
1633 tmp_CPPFLAGS="$CPPFLAGS"
1634 tmp_CFLAGS="$CFLAGS"
1635 CPPFLAGS="$CPPFLAGS -x objective-c"
1636 CFLAGS="$CFLAGS -x objective-c"
1637 GNU_OBJC_CFLAGS=
1638 LIBS_GNUSTEP=
1639 if test "${with_ns}" != no; then
1640 if test "${opsys}" = darwin; then
1641 NS_IMPL_COCOA=yes
1642 ns_appdir=`pwd`/nextstep/Emacs.app
1643 ns_appbindir=${ns_appdir}/Contents/MacOS
1644 ns_appresdir=${ns_appdir}/Contents/Resources
1645 ns_appsrc=Cocoa/Emacs.base
1646 elif test -f $GNUSTEP_CONFIG_FILE; then
1647 NS_IMPL_GNUSTEP=yes
1648 ns_appdir=`pwd`/nextstep/Emacs.app
1649 ns_appbindir=${ns_appdir}
1650 ns_appresdir=${ns_appdir}/Resources
1651 ns_appsrc=GNUstep/Emacs.base
1652 dnl FIXME sourcing this several times in subshells seems inefficient.
1653 GNUSTEP_SYSTEM_HEADERS="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_HEADERS)"
1654 GNUSTEP_SYSTEM_LIBRARIES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_SYSTEM_LIBRARIES)"
1655 dnl I seemed to need these as well with GNUstep-startup 0.25.
1656 GNUSTEP_LOCAL_HEADERS="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_LOCAL_HEADERS)"
1657 GNUSTEP_LOCAL_LIBRARIES="$(. $GNUSTEP_CONFIG_FILE; echo $GNUSTEP_LOCAL_LIBRARIES)"
1658 test "x${GNUSTEP_LOCAL_HEADERS}" != "x" && \
1659 GNUSTEP_LOCAL_HEADERS="-I${GNUSTEP_LOCAL_HEADERS}"
1660 test "x${GNUSTEP_LOCAL_LIBRARIES}" != "x" && \
1661 GNUSTEP_LOCAL_LIBRARIES="-L${GNUSTEP_LOCAL_LIBRARIES}"
1662 CPPFLAGS="$CPPFLAGS -I${GNUSTEP_SYSTEM_HEADERS} ${GNUSTEP_LOCAL_HEADERS}"
1663 CFLAGS="$CFLAGS -I${GNUSTEP_SYSTEM_HEADERS} ${GNUSTEP_LOCAL_HEADERS}"
1664 LDFLAGS="$LDFLAGS -L${GNUSTEP_SYSTEM_LIBRARIES} ${GNUSTEP_LOCAL_LIBRARIES}"
1665 LIBS_GNUSTEP="-lgnustep-gui -lgnustep-base -lobjc -lpthread"
1666 dnl GNUstep defines BASE_NATIVE_OBJC_EXCEPTIONS to 0 or 1.
1667 dnl If they had chosen to either define it or not, we could have
1668 dnl just used AC_CHECK_DECL here.
1669 AC_CACHE_CHECK(if GNUstep defines BASE_NATIVE_OBJC_EXCEPTIONS,
1670 emacs_cv_objc_exceptions,
1671 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <GNUstepBase/GSConfig.h>]],
1672 [[#if defined BASE_NATIVE_OBJC_EXCEPTIONS && BASE_NATIVE_OBJC_EXCEPTIONS > 0
1673 1;
1674 #else
1675 fail;
1676 #endif]])], emacs_cv_objc_exceptions=yes, emacs_cv_objc_exceptions=no ) )
1677 if test $emacs_cv_objc_exceptions = yes; then
1678 dnl _NATIVE_OBJC_EXCEPTIONS is used by the GNUstep headers.
1679 AC_DEFINE(_NATIVE_OBJC_EXCEPTIONS, 1,
1680 [Define if GNUstep uses ObjC exceptions.])
1681 GNU_OBJC_CFLAGS="-fobjc-exceptions"
1682 fi
1683 fi
1684
1685 dnl This is only used while we test the NS headers, it gets reset below.
1686 CFLAGS="$CFLAGS $GNU_OBJC_CFLAGS"
1687
1688 AC_CHECK_HEADER([AppKit/AppKit.h], [HAVE_NS=yes],
1689 [AC_MSG_ERROR([`--with-ns' was specified, but the include
1690 files are missing or cannot be compiled.])])
1691
1692 macfont_file=""
1693 if test "${NS_IMPL_COCOA}" = "yes"; then
1694 AC_MSG_CHECKING([for OSX 10.4 or newer])
1695 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <AppKit/AppKit.h>],
1696 [
1697 #ifdef MAC_OS_X_VERSION_MAX_ALLOWED
1698 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1040
1699 ; /* OK */
1700 #else
1701 error "OSX 10.4 or newer required";
1702 #endif
1703 #endif
1704 ])],
1705 ns_osx_have_104=yes,
1706 ns_osx_have_104=no)
1707 AC_MSG_RESULT([$ns_osx_have_104])
1708
1709 if test $ns_osx_have_104 = no; then
1710 AC_MSG_ERROR([`OSX 10.4 or newer is required']);
1711 fi
1712 AC_MSG_CHECKING([for OSX 10.5 or newer])
1713 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <AppKit/AppKit.h>],
1714 [
1715 #ifdef MAC_OS_X_VERSION_MAX_ALLOWED
1716 #if MAC_OS_X_VERSION_MAX_ALLOWED >= 1050
1717 ; /* OK */
1718 #else
1719 error "OSX 10.5 not found";
1720 #endif
1721 #endif
1722 ])],
1723 ns_osx_have_105=yes,
1724 ns_osx_have_105=no)
1725 AC_MSG_RESULT([$ns_osx_have_105])
1726 if test $ns_osx_have_105 = yes; then
1727 macfont_file="macfont.o"
1728 fi
1729 fi
1730 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <Foundation/NSObjCRuntime.h>],
1731 [NSInteger i;])],
1732 ns_have_nsinteger=yes,
1733 ns_have_nsinteger=no)
1734 if test $ns_have_nsinteger = yes; then
1735 AC_DEFINE(NS_HAVE_NSINTEGER, 1, [Define to 1 if `NSInteger' is defined.])
1736 fi
1737 fi
1738
1739 AC_SUBST(LIBS_GNUSTEP)
1740
1741 INSTALL_ARCH_INDEP_EXTRA=install-etc
1742 ns_self_contained=no
1743 NS_OBJ=
1744 NS_OBJC_OBJ=
1745 if test "${HAVE_NS}" = yes; then
1746 if test "$with_toolkit_scroll_bars" = "no"; then
1747 AC_MSG_ERROR([Non-toolkit scroll bars are not implemented for Nextstep.])
1748 fi
1749
1750 window_system=nextstep
1751 # set up packaging dirs
1752 if test "${EN_NS_SELF_CONTAINED}" = yes; then
1753 ns_self_contained=yes
1754 prefix=${ns_appresdir}
1755 exec_prefix=${ns_appbindir}
1756 dnl This one isn't really used, only archlibdir is.
1757 libexecdir="\${ns_appbindir}/libexec"
1758 archlibdir="\${ns_appbindir}/libexec"
1759 etcdocdir="\${ns_appresdir}/etc"
1760 etcdir="\${ns_appresdir}/etc"
1761 dnl FIXME maybe set datarootdir instead.
1762 dnl That would also get applications, icons, man.
1763 infodir="\${ns_appresdir}/info"
1764 mandir="\${ns_appresdir}/man"
1765 lispdir="\${ns_appresdir}/lisp"
1766 INSTALL_ARCH_INDEP_EXTRA=
1767 fi
1768
1769 NS_OBJC_OBJ="nsterm.o nsfns.o nsmenu.o nsselect.o nsimage.o nsfont.o $macfont_file"
1770 fi
1771 CFLAGS="$tmp_CFLAGS"
1772 CPPFLAGS="$tmp_CPPFLAGS"
1773 AC_SUBST(INSTALL_ARCH_INDEP_EXTRA)
1774 AC_SUBST(ns_self_contained)
1775 AC_SUBST(NS_OBJ)
1776 AC_SUBST(NS_OBJC_OBJ)
1777
1778 HAVE_W32=no
1779 W32_OBJ=
1780 W32_LIBS=
1781 EMACSRES=
1782 CLIENTRES=
1783 CLIENTW=
1784 W32_RES_LINK=
1785 EMACS_MANIFEST=
1786 UPDATE_MANIFEST=
1787 if test "${with_w32}" != no; then
1788 case "${opsys}" in
1789 cygwin)
1790 AC_CHECK_HEADER([windows.h], [HAVE_W32=yes],
1791 [AC_MSG_ERROR([`--with-w32' was specified, but windows.h
1792 cannot be found.])])
1793 ;;
1794 mingw32)
1795 ## Using --with-w32 with MinGW is a no-op, but we allow it.
1796 ;;
1797 *)
1798 AC_MSG_ERROR([Using w32 with an autotools build is only supported for Cygwin and MinGW32.])
1799 ;;
1800 esac
1801 fi
1802
1803 if test "${opsys}" = "mingw32"; then
1804 AC_MSG_CHECKING([whether Windows API headers are recent enough])
1805 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1806 #include <windows.h>
1807 #include <usp10.h>]],
1808 [[PIMAGE_NT_HEADERS pHeader;
1809 PIMAGE_SECTION_HEADER pSection = IMAGE_FIRST_SECTION(pHeader)]])],
1810 [emacs_cv_w32api=yes
1811 HAVE_W32=yes],
1812 emacs_cv_w32api=no)
1813 AC_MSG_RESULT($emacs_cv_w32api)
1814 if test "${emacs_cv_w32api}" = "no"; then
1815 AC_MSG_ERROR([the Windows API headers are too old to support this build.])
1816 fi
1817 fi
1818
1819 FIRSTFILE_OBJ=
1820 NTDIR=
1821 LIBS_ECLIENT=
1822 LIB_WSOCK32=
1823 NTLIB=
1824 CM_OBJ="cm.o"
1825 XARGS_LIMIT=
1826 if test "${HAVE_W32}" = "yes"; then
1827 AC_DEFINE(HAVE_NTGUI, 1, [Define to use native MS Windows GUI.])
1828 AC_CHECK_TOOL(WINDRES, [windres],
1829 [AC_MSG_ERROR([No resource compiler found.])])
1830 W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"
1831 W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o"
1832 EMACSRES="emacs.res"
1833 case "$canonical" in
1834 x86_64-*-*) EMACS_MANIFEST="emacs-x64.manifest" ;;
1835 *) EMACS_MANIFEST="emacs-x86.manifest" ;;
1836 esac
1837 if test "${opsys}" = "cygwin"; then
1838 W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32"
1839 W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool"
1840 # Tell the linker that emacs.res is an object (which we compile from
1841 # the rc file), not a linker script.
1842 W32_RES_LINK="-Wl,emacs.res"
1843 else
1844 UPDATE_MANIFEST=update-game-score.exe.manifest
1845 W32_OBJ="$W32_OBJ w32.o w32console.o w32heap.o w32inevt.o w32proc.o"
1846 W32_LIBS="$W32_LIBS -lwinmm -lgdi32 -lcomdlg32"
1847 W32_LIBS="$W32_LIBS -lmpr -lwinspool -lole32 -lcomctl32 -lusp10"
1848 W32_RES_LINK="\$(EMACSRES)"
1849 CLIENTRES="emacsclient.res"
1850 CLIENTW="emacsclientw\$(EXEEXT)"
1851 FIRSTFILE_OBJ=firstfile.o
1852 NTDIR=nt
1853 CM_OBJ=
1854 LIBS_ECLIENT="-lcomctl32"
1855 LIB_WSOCK32="-lwsock32"
1856 NTLIB="ntlib.$ac_objext"
1857 XARGS_LIMIT="-s 10000"
1858 fi
1859 fi
1860 AC_SUBST(W32_OBJ)
1861 AC_SUBST(W32_LIBS)
1862 AC_SUBST(EMACSRES)
1863 AC_SUBST(EMACS_MANIFEST)
1864 AC_SUBST(UPDATE_MANIFEST)
1865 AC_SUBST(CLIENTRES)
1866 AC_SUBST(CLIENTW)
1867 AC_SUBST(W32_RES_LINK)
1868 AC_SUBST(FIRSTFILE_OBJ)
1869 AC_SUBST(NTDIR)
1870 AC_SUBST(CM_OBJ)
1871 AC_SUBST(LIBS_ECLIENT)
1872 AC_SUBST(LIB_WSOCK32)
1873 AC_SUBST(NTLIB)
1874 AC_SUBST(XARGS_LIMIT)
1875
1876 if test "${HAVE_W32}" = "yes"; then
1877 window_system=w32
1878 with_xft=no
1879 fi
1880
1881 ## $window_system is now set to the window system we will
1882 ## ultimately use.
1883
1884 if test "$window_system" = none && test "$gl_gcc_warnings" = yes; then
1885 # Too many warnings for now.
1886 nw=
1887 nw="$nw -Wsuggest-attribute=const"
1888 nw="$nw -Wsuggest-attribute=noreturn"
1889 gl_MANYWARN_COMPLEMENT([WARN_CFLAGS], [$WARN_CFLAGS], [$nw])
1890
1891 gl_WARN_ADD([-Wno-unused-variable])
1892 gl_WARN_ADD([-Wno-unused-but-set-variable])
1893 gl_WARN_ADD([-Wno-unused-but-set-parameter])
1894 fi
1895
1896 term_header=
1897 HAVE_X_WINDOWS=no
1898 HAVE_X11=no
1899 USE_X_TOOLKIT=none
1900
1901 case "${window_system}" in
1902 x11 )
1903 HAVE_X_WINDOWS=yes
1904 HAVE_X11=yes
1905 term_header=xterm.h
1906 case "${with_x_toolkit}" in
1907 athena | lucid ) USE_X_TOOLKIT=LUCID ;;
1908 motif ) USE_X_TOOLKIT=MOTIF ;;
1909 gtk ) with_gtk=yes
1910 term_header=gtkutil.h
1911 dnl Don't set this for GTK. A lot of tests below assumes Xt when
1912 dnl USE_X_TOOLKIT is set.
1913 USE_X_TOOLKIT=none ;;
1914 gtk2 ) with_gtk2=yes
1915 term_header=gtkutil.h
1916 USE_X_TOOLKIT=none ;;
1917 gtk3 ) with_gtk3=yes
1918 term_header=gtkutil.h
1919 USE_X_TOOLKIT=none ;;
1920 no ) USE_X_TOOLKIT=none ;;
1921 dnl If user did not say whether to use a toolkit, make this decision later:
1922 dnl use the toolkit if we have gtk, or X11R5 or newer.
1923 * ) USE_X_TOOLKIT=maybe ;;
1924 esac
1925 ;;
1926 nextstep )
1927 term_header=nsterm.h
1928 ;;
1929 w32 )
1930 term_header=w32term.h
1931 ;;
1932 esac
1933
1934 if test "$window_system" = none && test "X$with_x" != "Xno"; then
1935 AC_CHECK_PROG(HAVE_XSERVER, X, true, false)
1936 if test "$HAVE_XSERVER" = true ||
1937 test -n "$DISPLAY" ||
1938 test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then
1939 AC_MSG_ERROR([You seem to be running X, but no X development libraries
1940 were found. You should install the relevant development files for X
1941 and for the toolkit you want, such as Gtk+ or Motif. Also make
1942 sure you have development files for image handling, i.e.
1943 tiff, gif, jpeg, png and xpm.
1944 If you are sure you want Emacs compiled without X window support, pass
1945 --without-x
1946 to configure.])
1947 fi
1948 fi
1949
1950 # Does the opsystem file prohibit the use of the GNU malloc?
1951 # Assume not, until told otherwise.
1952 GNU_MALLOC=yes
1953
1954 AC_CACHE_CHECK(
1955 [whether malloc is Doug Lea style],
1956 [emacs_cv_var_doug_lea_malloc],
1957 [emacs_cv_var_doug_lea_malloc=no
1958 dnl Hooks do not work with address sanitization.
1959 if test "$emacs_cv_sanitize_address" != yes; then
1960 AC_LINK_IFELSE(
1961 [AC_LANG_PROGRAM(
1962 [[#include <malloc.h>
1963 static void hook (void) {}]],
1964 [[malloc_set_state (malloc_get_state ());
1965 __after_morecore_hook = hook;
1966 __malloc_initialize_hook = hook;]])],
1967 [emacs_cv_var_doug_lea_malloc=yes])])
1968 fi
1969 doug_lea_malloc=$emacs_cv_var_doug_lea_malloc
1970
1971 system_malloc=$emacs_cv_sanitize_address
1972 case "$opsys" in
1973 ## darwin ld insists on the use of malloc routines in the System framework.
1974 darwin|sol2-10) system_malloc=yes ;;
1975 esac
1976
1977 GMALLOC_OBJ=
1978 if test "${system_malloc}" = "yes"; then
1979 AC_DEFINE([SYSTEM_MALLOC], 1,
1980 [Define to 1 to use the system memory allocator, even if it is not
1981 Doug Lea style.])
1982 GNU_MALLOC=no
1983 GNU_MALLOC_reason="
1984 (The GNU allocators don't work with this system configuration.)"
1985 VMLIMIT_OBJ=
1986 else
1987 test "$doug_lea_malloc" != "yes" && GMALLOC_OBJ=gmalloc.o
1988 VMLIMIT_OBJ=vm-limit.o
1989
1990 AC_CHECK_HEADERS([sys/vlimit.h])
1991 AC_CACHE_CHECK([for data_start], [emacs_cv_data_start],
1992 [AC_LINK_IFELSE(
1993 [AC_LANG_PROGRAM(
1994 [[extern char data_start[]; char ch;]],
1995 [[return data_start < &ch;]])],
1996 [emacs_cv_data_start=yes],
1997 [emacs_cv_data_start=no])])
1998 if test $emacs_cv_data_start = yes; then
1999 AC_DEFINE([HAVE_DATA_START], 1,
2000 [Define to 1 if data_start is the address of the start
2001 of the main data segment.])
2002 fi
2003 fi
2004 AC_SUBST(GMALLOC_OBJ)
2005 AC_SUBST(VMLIMIT_OBJ)
2006
2007 if test "$doug_lea_malloc" = "yes" ; then
2008 if test "$GNU_MALLOC" = yes ; then
2009 GNU_MALLOC_reason="
2010 (Using Doug Lea's new malloc from the GNU C Library.)"
2011 fi
2012 AC_DEFINE(DOUG_LEA_MALLOC, 1,
2013 [Define to 1 if the system memory allocator is Doug Lea style,
2014 with malloc hooks and malloc_set_state.])
2015
2016 ## Use mmap directly for allocating larger buffers.
2017 ## FIXME this comes from src/s/{gnu,gnu-linux}.h:
2018 ## #ifdef DOUG_LEA_MALLOC; #undef REL_ALLOC; #endif
2019 ## Does the AC_FUNC_MMAP test below make this check unnecessary?
2020 case "$opsys" in
2021 gnu*) REL_ALLOC=no ;;
2022 esac
2023 fi
2024
2025 if test x"${REL_ALLOC}" = x; then
2026 REL_ALLOC=${GNU_MALLOC}
2027 fi
2028
2029 use_mmap_for_buffers=no
2030 case "$opsys" in
2031 cygwin|freebsd|irix6-5) use_mmap_for_buffers=yes ;;
2032 esac
2033
2034 AC_FUNC_MMAP
2035 if test $use_mmap_for_buffers = yes; then
2036 AC_DEFINE(USE_MMAP_FOR_BUFFERS, 1, [Define to use mmap to allocate buffer text.])
2037 REL_ALLOC=no
2038 fi
2039
2040 LIBS="$LIBS_SYSTEM $LIBS"
2041
2042 dnl If found, this adds -ldnet to LIBS, which Autoconf uses for checks.
2043 AC_CHECK_LIB(dnet, dnet_ntoa)
2044 dnl This causes -lresolv to get used in subsequent tests,
2045 dnl which causes failures on some systems such as HPUX 9.
2046 dnl AC_CHECK_LIB(resolv, gethostbyname)
2047
2048 dnl FIXME replace main with a function we actually want from this library.
2049 AC_CHECK_LIB(Xbsd, main, LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd")
2050
2051 dnl Check if pthreads is available.
2052 LIB_PTHREAD=
2053 AC_CHECK_HEADERS_ONCE(pthread.h)
2054 if test "$ac_cv_header_pthread_h"; then
2055 dnl gmalloc.c uses pthread_atfork, which is not available on older-style
2056 dnl hosts such as MirBSD 10, so test for pthread_atfork instead of merely
2057 dnl testing for pthread_self if Emacs uses gmalloc.c.
2058 if test "$GMALLOC_OBJ" = gmalloc.o; then
2059 emacs_pthread_function=pthread_atfork
2060 else
2061 emacs_pthread_function=pthread_self
2062 fi
2063 AC_CHECK_LIB(pthread, $emacs_pthread_function, HAVE_PTHREAD=yes)
2064 fi
2065 if test "$HAVE_PTHREAD" = yes; then
2066 case "${canonical}" in
2067 *-hpux*) ;;
2068 *) LIB_PTHREAD="-lpthread"
2069 LIBS="$LIB_PTHREAD $LIBS" ;;
2070 esac
2071 AC_DEFINE(HAVE_PTHREAD, 1, [Define to 1 if you have pthread (-lpthread).])
2072 fi
2073 AC_SUBST([LIB_PTHREAD])
2074
2075 AC_CHECK_LIB(pthreads, cma_open)
2076
2077 ## Note: when using cpp in s/aix4.2.h, this definition depended on
2078 ## HAVE_LIBPTHREADS. That was not defined earlier in configure when
2079 ## the system file was sourced. Hence the value of LIBS_SYSTEM
2080 ## added to LIBS in configure would never contain the pthreads part,
2081 ## but the value used in Makefiles might. FIXME?
2082 ##
2083 ## -lpthreads seems to be necessary for Xlib in X11R6, and should
2084 ## be harmless on older versions of X where it happens to exist.
2085 test "$opsys" = "aix4-2" && \
2086 test $ac_cv_lib_pthreads_cma_open = yes && \
2087 LIBS_SYSTEM="$LIBS_SYSTEM -lpthreads"
2088
2089 dnl Check for need for bigtoc support on IBM AIX
2090
2091 case ${host_os} in
2092 aix*)
2093 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
2094 case $GCC in
2095 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
2096 *) gdb_cv_bigtoc=-bbigtoc ;;
2097 esac
2098
2099 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
2100 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[int i;]])], [], [gdb_cv_bigtoc=])
2101 ])
2102 ;;
2103 esac
2104
2105 # Change CFLAGS and CPPFLAGS temporarily so that C_SWITCH_X_SITE gets
2106 # used for the tests that follow. We set them back to REAL_CFLAGS and
2107 # REAL_CPPFLAGS later on.
2108
2109 REAL_CFLAGS="$CFLAGS"
2110 REAL_CPPFLAGS="$CPPFLAGS"
2111
2112 if test "${HAVE_X11}" = "yes"; then
2113 DEFS="$C_SWITCH_X_SITE $DEFS"
2114 LDFLAGS="$LDFLAGS $LD_SWITCH_X_SITE"
2115 LIBS="-lX11 $LIBS"
2116 CFLAGS="$C_SWITCH_X_SITE $CFLAGS"
2117 CPPFLAGS="$C_SWITCH_X_SITE $CPPFLAGS"
2118
2119 # On Solaris, arrange for LD_RUN_PATH to point to the X libraries for tests.
2120 # This is handled by LD_SWITCH_X_SITE_RPATH during the real build,
2121 # but it's more convenient here to set LD_RUN_PATH since this
2122 # also works on hosts that don't understand LD_SWITCH_X_SITE_RPATH.
2123 if test "${x_libraries}" != NONE && test -n "${x_libraries}"; then
2124 LD_RUN_PATH=$x_libraries${LD_RUN_PATH+:}$LD_RUN_PATH
2125 export LD_RUN_PATH
2126 fi
2127
2128 if test "${opsys}" = "gnu-linux"; then
2129 AC_MSG_CHECKING(whether X on GNU/Linux needs -b to link)
2130 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
2131 [[XOpenDisplay ("foo");]])],
2132 [xgnu_linux_first_failure=no],
2133 [xgnu_linux_first_failure=yes])
2134 if test "${xgnu_linux_first_failure}" = "yes"; then
2135 OLD_LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE"
2136 OLD_C_SWITCH_X_SITE="$C_SWITCH_X_SITE"
2137 OLD_CPPFLAGS="$CPPFLAGS"
2138 OLD_LIBS="$LIBS"
2139 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -b i486-linuxaout"
2140 C_SWITCH_X_SITE="$C_SWITCH_X_SITE -b i486-linuxaout"
2141 CPPFLAGS="$CPPFLAGS -b i486-linuxaout"
2142 LIBS="$LIBS -b i486-linuxaout"
2143 AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],
2144 [[XOpenDisplay ("foo");]])],
2145 [xgnu_linux_second_failure=no],
2146 [xgnu_linux_second_failure=yes])
2147 if test "${xgnu_linux_second_failure}" = "yes"; then
2148 # If we get the same failure with -b, there is no use adding -b.
2149 # So take it out. This plays safe.
2150 LD_SWITCH_X_SITE="$OLD_LD_SWITCH_X_SITE"
2151 C_SWITCH_X_SITE="$OLD_C_SWITCH_X_SITE"
2152 CPPFLAGS="$OLD_CPPFLAGS"
2153 LIBS="$OLD_LIBS"
2154 AC_MSG_RESULT(no)
2155 else
2156 AC_MSG_RESULT(yes)
2157 fi
2158 else
2159 AC_MSG_RESULT(no)
2160 fi
2161 fi
2162
2163 # Reportedly, some broken Solaris systems have XKBlib.h but are missing
2164 # header files included from there.
2165 AC_MSG_CHECKING(for Xkb)
2166 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>
2167 #include <X11/XKBlib.h>]],
2168 [[XkbDescPtr kb = XkbGetKeyboard (0, XkbAllComponentsMask, XkbUseCoreKbd);]])],
2169 emacs_xkb=yes, emacs_xkb=no)
2170 AC_MSG_RESULT($emacs_xkb)
2171 if test $emacs_xkb = yes; then
2172 AC_DEFINE(HAVE_XKB, 1, [Define to 1 if you have the Xkb extension.])
2173 fi
2174
2175 AC_CHECK_FUNCS(XrmSetDatabase XScreenResourceString \
2176 XScreenNumberOfScreen)
2177 fi
2178
2179 if test "${window_system}" = "x11"; then
2180 AC_MSG_CHECKING(X11 version 6)
2181 AC_CACHE_VAL(emacs_cv_x11_version_6,
2182 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <X11/Xlib.h>]],
2183 [[#if XlibSpecificationRelease < 6
2184 fail;
2185 #endif
2186 ]])], emacs_cv_x11_version_6=yes, emacs_cv_x11_version_6=no)])
2187 if test $emacs_cv_x11_version_6 = yes; then
2188 AC_MSG_RESULT(6 or newer)
2189 AC_DEFINE(HAVE_X11R6, 1,
2190 [Define to 1 if you have the X11R6 or newer version of Xlib.])
2191 AC_DEFINE(HAVE_X_I18N, 1, [Define if you have usable i18n support.])
2192 ## inoue@ainet.or.jp says Solaris has a bug related to X11R6-style
2193 ## XIM support.
2194 case "$opsys" in
2195 sol2-*) : ;;
2196 *) AC_DEFINE(HAVE_X11R6_XIM, 1,
2197 [Define if you have usable X11R6-style XIM support.])
2198 ;;
2199 esac
2200 else
2201 AC_MSG_RESULT(before 6)
2202 fi
2203 fi
2204
2205
2206 ### Use -lrsvg-2 if available, unless `--with-rsvg=no' is specified.
2207 HAVE_RSVG=no
2208 if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test "${opsys}" = "mingw32"; then
2209 if test "${with_rsvg}" != "no"; then
2210 RSVG_REQUIRED=2.11.0
2211 RSVG_MODULE="librsvg-2.0 >= $RSVG_REQUIRED"
2212
2213 PKG_CHECK_MODULES(RSVG, $RSVG_MODULE, HAVE_RSVG=yes, :)
2214 AC_SUBST(RSVG_CFLAGS)
2215 AC_SUBST(RSVG_LIBS)
2216
2217 if test $HAVE_RSVG = yes; then
2218 AC_DEFINE(HAVE_RSVG, 1, [Define to 1 if using librsvg.])
2219 CFLAGS="$CFLAGS $RSVG_CFLAGS"
2220 # Windows loads librsvg dynamically
2221 if test "${opsys}" = "mingw32"; then
2222 RSVG_LIBS=
2223 fi
2224 LIBS="$RSVG_LIBS $LIBS"
2225 fi
2226 fi
2227 fi
2228
2229 HAVE_IMAGEMAGICK=no
2230 if test "${HAVE_X11}" = "yes" || test "${HAVE_NS}" = "yes" || test "${HAVE_W32}" = "yes"; then
2231 if test "${with_imagemagick}" != "no"; then
2232 ## 6.3.5 is the earliest version known to work; see Bug#17339.
2233 ## 6.8.2 makes Emacs crash; see Bug#13867.
2234 IMAGEMAGICK_MODULE="Wand >= 6.3.5 Wand != 6.8.2"
2235 PKG_CHECK_MODULES(IMAGEMAGICK, $IMAGEMAGICK_MODULE, HAVE_IMAGEMAGICK=yes, :)
2236 AC_SUBST(IMAGEMAGICK_CFLAGS)
2237 AC_SUBST(IMAGEMAGICK_LIBS)
2238
2239 if test $HAVE_IMAGEMAGICK = yes; then
2240 AC_DEFINE(HAVE_IMAGEMAGICK, 1, [Define to 1 if using imagemagick.])
2241 CFLAGS="$CFLAGS $IMAGEMAGICK_CFLAGS"
2242 LIBS="$IMAGEMAGICK_LIBS $LIBS"
2243 AC_CHECK_FUNCS(MagickExportImagePixels MagickMergeImageLayers)
2244 fi
2245 fi
2246 fi
2247
2248
2249 HAVE_GTK=no
2250 GTK_OBJ=
2251 gtk_term_header=$term_header
2252 check_gtk2=no
2253 gtk3_pkg_errors=
2254 if test "${opsys}" != "mingw32"; then
2255 if test "${with_gtk3}" = "yes" || test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "maybe"; then
2256 GLIB_REQUIRED=2.28
2257 GTK_REQUIRED=3.0
2258 GTK_MODULES="gtk+-3.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED"
2259
2260 dnl Checks for libraries.
2261 PKG_CHECK_MODULES(GTK, $GTK_MODULES, pkg_check_gtk=yes, pkg_check_gtk=no)
2262 if test "$pkg_check_gtk" = "no" && test "$with_gtk3" = "yes"; then
2263 AC_MSG_ERROR($GTK_PKG_ERRORS)
2264 fi
2265 if test "$pkg_check_gtk" = "yes"; then
2266 AC_DEFINE(HAVE_GTK3, 1, [Define to 1 if using GTK 3 or later.])
2267 GTK_OBJ=emacsgtkfixed.o
2268 gtk_term_header=gtkutil.h
2269 USE_GTK_TOOLKIT="GTK3"
2270 if test "x$ac_enable_gtk_deprecation_warnings" = x; then
2271 AC_DEFINE([GDK_DISABLE_DEPRECATION_WARNINGS], [1],
2272 [Define to 1 to disable GTK+/GDK deprecation warnings.])
2273 AC_DEFINE([GLIB_DISABLE_DEPRECATION_WARNINGS], [1],
2274 [Define to 1 to disable Glib deprecation warnings.])
2275 fi
2276 else
2277 check_gtk2=yes
2278 gtk3_pkg_errors="$GTK_PKG_ERRORS "
2279 fi
2280 fi
2281
2282 if test "${with_gtk2}" = "yes" || test "$check_gtk2" = "yes"; then
2283 GLIB_REQUIRED=2.10
2284 GTK_REQUIRED=2.10
2285 GTK_MODULES="gtk+-2.0 >= $GTK_REQUIRED glib-2.0 >= $GLIB_REQUIRED"
2286
2287 dnl Checks for libraries.
2288 PKG_CHECK_MODULES(GTK, $GTK_MODULES, pkg_check_gtk=yes, pkg_check_gtk=no)
2289 if test "$pkg_check_gtk" = "no" &&
2290 { test "$with_gtk" = yes || test "$with_gtk2" = "yes"; }
2291 then
2292 AC_MSG_ERROR($gtk3_pkg_errors$GTK_PKG_ERRORS)
2293 fi
2294 test "$pkg_check_gtk" = "yes" && USE_GTK_TOOLKIT="GTK2"
2295 fi
2296 fi
2297
2298 if test x"$pkg_check_gtk" = xyes; then
2299
2300 AC_SUBST(GTK_LIBS)
2301 C_SWITCH_X_SITE="$C_SWITCH_X_SITE $GTK_CFLAGS"
2302 CFLAGS="$CFLAGS $GTK_CFLAGS"
2303 LIBS="$GTK_LIBS $LIBS"
2304 dnl Try to compile a simple GTK program.
2305 AC_MSG_CHECKING([whether GTK compiles])
2306 GTK_COMPILES=no
2307 AC_LINK_IFELSE(
2308 [AC_LANG_PROGRAM(
2309 [[/* Check the Gtk and Glib APIs. */
2310 #include <gtk/gtk.h>
2311 #include <glib-object.h>
2312 static void
2313 callback (GObject *go, GParamSpec *spec, gpointer user_data)
2314 {}
2315 ]],
2316 [[
2317 GtkSettings *gs = 0;
2318 /* Use G_CALLBACK to make sure function pointers can be cast to void *;
2319 strict C prohibits this. Use gtk_main_iteration to test that the
2320 libraries are there. */
2321 if (g_signal_handler_find (G_OBJECT (gs), G_SIGNAL_MATCH_FUNC,
2322 0, 0, 0, G_CALLBACK (callback), 0))
2323 gtk_main_iteration ();
2324 ]])],
2325 [GTK_COMPILES=yes])
2326 AC_MSG_RESULT([$GTK_COMPILES])
2327 if test "${GTK_COMPILES}" != "yes"; then
2328 GTK_OBJ=
2329 if test "$USE_X_TOOLKIT" != "maybe"; then
2330 AC_MSG_ERROR([Gtk+ wanted, but it does not compile, see config.log. Maybe some x11-devel files missing?]);
2331 fi
2332 else
2333 HAVE_GTK=yes
2334 AC_DEFINE(USE_GTK, 1, [Define to 1 if using GTK.])
2335 GTK_OBJ="gtkutil.o $GTK_OBJ"
2336 term_header=$gtk_term_header
2337 USE_X_TOOLKIT=none
2338 if "$PKG_CONFIG" --atleast-version=2.10 gtk+-2.0; then
2339 :
2340 else
2341 AC_MSG_WARN([[Your version of Gtk+ will have problems with
2342 closing open displays. This is no problem if you just use
2343 one display, but if you use more than one and close one of them
2344 Emacs may crash.]])
2345 sleep 3
2346 fi
2347 fi
2348
2349 fi
2350 AC_SUBST(GTK_OBJ)
2351
2352
2353 if test "${HAVE_GTK}" = "yes"; then
2354
2355 dnl GTK scrollbars resemble toolkit scrollbars a lot, so to avoid
2356 dnl a lot if #ifdef:s, say we have toolkit scrollbars.
2357 if test "$with_toolkit_scroll_bars" != no; then
2358 with_toolkit_scroll_bars=yes
2359 fi
2360
2361 dnl Check if we have the old file selection dialog declared and
2362 dnl in the link library. In 2.x it may be in the library,
2363 dnl but not declared if deprecated featured has been selected out.
2364 dnl AC_CHECK_DECL checks for a macro, so check for GTK_TYPE_FILE_SELECTION.
2365 HAVE_GTK_FILE_SELECTION=no
2366 AC_CHECK_DECL(GTK_TYPE_FILE_SELECTION, HAVE_GTK_FILE_SELECTION=yes,
2367 HAVE_GTK_FILE_SELECTION=no, [AC_INCLUDES_DEFAULT
2368 #include <gtk/gtk.h>])
2369 if test "$HAVE_GTK_FILE_SELECTION" = yes; then
2370 AC_CHECK_FUNCS(gtk_file_selection_new)
2371 fi
2372
2373 dnl Same as above for gtk_handle_box.
2374 HAVE_GTK_HANDLE_BOX=no
2375 AC_CHECK_DECL(GTK_TYPE_HANDLE_BOX, HAVE_GTK_HANDLE_BOX=yes,
2376 HAVE_GTK_HANDLE_BOX=no, [AC_INCLUDES_DEFAULT
2377 #include <gtk/gtk.h>])
2378 if test "$HAVE_GTK_HANDLE_BOX" = yes; then
2379 AC_CHECK_FUNCS(gtk_handle_box_new)
2380 fi
2381
2382 dnl Same as above for gtk_tearoff_menu_item.
2383 HAVE_GTK_TEAROFF_MENU_ITEM=no
2384 AC_CHECK_DECL(GTK_TYPE_TEAROFF_MENU_ITEM, HAVE_GTK_TEAROFF_MENU_ITEM=yes,
2385 HAVE_GTK_TEAROFF_MENU_ITEM=no, [AC_INCLUDES_DEFAULT
2386 #include <gtk/gtk.h>])
2387 if test "$HAVE_GTK_TEAROFF_MENU_ITEM" = yes; then
2388 AC_CHECK_FUNCS(gtk_tearoff_menu_item_new)
2389 fi
2390
2391 dnl Check for functions introduced in 2.14 and later.
2392 AC_CHECK_FUNCS(gtk_widget_get_window gtk_widget_set_has_window \
2393 gtk_dialog_get_action_area gtk_widget_get_sensitive \
2394 gtk_widget_get_mapped gtk_adjustment_get_page_size \
2395 gtk_orientable_set_orientation \
2396 gtk_window_set_has_resize_grip)
2397
2398 term_header=gtkutil.h
2399 fi
2400
2401 dnl D-Bus has been tested under GNU/Linux only. Must be adapted for
2402 dnl other platforms.
2403 HAVE_DBUS=no
2404 DBUS_OBJ=
2405 if test "${with_dbus}" = "yes"; then
2406 PKG_CHECK_MODULES(DBUS, dbus-1 >= 1.0, HAVE_DBUS=yes, HAVE_DBUS=no)
2407 if test "$HAVE_DBUS" = yes; then
2408 LIBS="$LIBS $DBUS_LIBS"
2409 AC_DEFINE(HAVE_DBUS, 1, [Define to 1 if using D-Bus.])
2410 dnl dbus_watch_get_unix_fd has been introduced in D-Bus 1.1.1.
2411 dnl dbus_type_is_valid and dbus_validate_* have been introduced in
2412 dnl D-Bus 1.5.12.
2413 AC_CHECK_FUNCS(dbus_watch_get_unix_fd \
2414 dbus_type_is_valid \
2415 dbus_validate_bus_name \
2416 dbus_validate_path \
2417 dbus_validate_interface \
2418 dbus_validate_member)
2419 DBUS_OBJ=dbusbind.o
2420 fi
2421 fi
2422 AC_SUBST(DBUS_OBJ)
2423
2424 dnl GSettings has been tested under GNU/Linux only.
2425 HAVE_GSETTINGS=no
2426 if test "${HAVE_X11}" = "yes" && test "${with_gsettings}" = "yes"; then
2427 PKG_CHECK_MODULES(GSETTINGS, gio-2.0 >= 2.26, HAVE_GSETTINGS=yes, HAVE_GSETTINGS=no)
2428 if test "$HAVE_GSETTINGS" = "yes"; then
2429 old_CFLAGS=$CFLAGS
2430 CFLAGS="$CFLAGS $GSETTINGS_CFLAGS"
2431 old_LIBS=$LIBS
2432 LIBS="$LIBS $GSETTINGS_LIBS"
2433 AC_MSG_CHECKING([whether GSettings is in gio])
2434 AC_LINK_IFELSE(
2435 [AC_LANG_PROGRAM(
2436 [[/* Check that gsettings really is present. */
2437 #include <glib-object.h>
2438 #include <gio/gio.h>
2439 ]],
2440 [[
2441 GSettings *settings;
2442 GVariant *val = g_settings_get_value (settings, "");
2443 ]])],
2444 [], HAVE_GSETTINGS=no)
2445 AC_MSG_RESULT([$HAVE_GSETTINGS])
2446
2447 if test "$HAVE_GSETTINGS" = "yes"; then
2448 AC_DEFINE(HAVE_GSETTINGS, 1, [Define to 1 if using GSettings.])
2449 SETTINGS_CFLAGS="$GSETTINGS_CFLAGS"
2450 SETTINGS_LIBS="$GSETTINGS_LIBS"
2451 fi
2452 CFLAGS=$old_CFLAGS
2453 LIBS=$old_LIBS
2454 fi
2455 fi
2456
2457 dnl GConf has been tested under GNU/Linux only.
2458 dnl The version is really arbitrary, it is about the same age as Gtk+ 2.6.
2459 HAVE_GCONF=no
2460 if test "${HAVE_X11}" = "yes" && test "${with_gconf}" = "yes"; then
2461 PKG_CHECK_MODULES(GCONF, gconf-2.0 >= 2.13, HAVE_GCONF=yes, HAVE_GCONF=no)
2462 if test "$HAVE_GCONF" = yes; then
2463 AC_DEFINE(HAVE_GCONF, 1, [Define to 1 if using GConf.])
2464 dnl Newer GConf doesn't link with g_objects, so this is not defined.
2465 SETTINGS_CFLAGS="$SETTINGS_CFLAGS $GCONF_CFLAGS"
2466 SETTINGS_LIBS="$SETTINGS_LIBS $GCONF_LIBS"
2467 fi
2468 fi
2469
2470 if test "$HAVE_GSETTINGS" = "yes" || test "$HAVE_GCONF" = "yes"; then
2471 PKG_CHECK_MODULES(GOBJECT, gobject-2.0 >= 2.0, HAVE_GOBJECT=yes, HAVE_GOBJECT=no)
2472 if test "$HAVE_GOBJECT" = "yes"; then
2473 SETTINGS_CFLAGS="$SETTINGS_CFLAGS $GOBJECT_CFLAGS"
2474 SETTINGS_LIBS="$SETTINGS_LIBS $GOBJECT_LIBS"
2475 fi
2476 SAVE_CFLAGS="$CFLAGS"
2477 SAVE_LIBS="$LIBS"
2478 CFLAGS="$SETTINGS_CFLAGS $CFLAGS"
2479 LIBS="$SETTINGS_LIBS $LIBS"
2480 CFLAGS="$SAVE_CFLAGS"
2481 LIBS="$SAVE_LIBS"
2482 fi
2483 AC_SUBST(SETTINGS_CFLAGS)
2484 AC_SUBST(SETTINGS_LIBS)
2485
2486
2487 dnl SELinux is available for GNU/Linux only.
2488 HAVE_LIBSELINUX=no
2489 LIBSELINUX_LIBS=
2490 if test "${with_selinux}" = "yes"; then
2491 AC_CHECK_LIB([selinux], [lgetfilecon], HAVE_LIBSELINUX=yes, HAVE_LIBSELINUX=no)
2492 if test "$HAVE_LIBSELINUX" = yes; then
2493 AC_DEFINE(HAVE_LIBSELINUX, 1, [Define to 1 if using SELinux.])
2494 LIBSELINUX_LIBS=-lselinux
2495 fi
2496 fi
2497 AC_SUBST(LIBSELINUX_LIBS)
2498
2499 HAVE_GNUTLS=no
2500 HAVE_GNUTLS3=no
2501 if test "${with_gnutls}" = "yes" ; then
2502 PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 3.0.0], HAVE_GNUTLS3=yes, HAVE_GNUTLS3=no)
2503 if test "${HAVE_GNUTLS3}" = "yes"; then
2504 AC_DEFINE(HAVE_GNUTLS3, 1, [Define if using GnuTLS v3.])
2505 HAVE_GNUTLS="yes"
2506 else
2507 PKG_CHECK_MODULES([LIBGNUTLS], [gnutls >= 2.6.6], HAVE_GNUTLS=yes, HAVE_GNUTLS=no)
2508 fi
2509 if test "${HAVE_GNUTLS}" = "yes"; then
2510 AC_DEFINE(HAVE_GNUTLS, 1, [Define if using GnuTLS.])
2511 fi
2512
2513 # Windows loads GnuTLS dynamically
2514 if test "${opsys}" = "mingw32"; then
2515 LIBGNUTLS_LIBS=
2516 fi
2517 fi
2518
2519 AC_SUBST(LIBGNUTLS_LIBS)
2520 AC_SUBST(LIBGNUTLS_CFLAGS)
2521
2522 NOTIFY_OBJ=
2523 NOTIFY_SUMMARY=no
2524
2525 dnl FIXME? Don't auto-detect on NS, but do allow someone to specify
2526 dnl a particular library. This doesn't make much sense?
2527 if test "${with_ns}" = yes && test ${with_file_notification} = yes; then
2528 with_file_notification=no
2529 fi
2530
2531 dnl MS Windows native file monitor is available for mingw32 only.
2532 case $with_file_notification,$opsys in
2533 w32,* | yes,mingw32)
2534 AC_CHECK_HEADER(windows.h)
2535 if test "$ac_cv_header_windows_h" = yes ; then
2536 AC_DEFINE(HAVE_W32NOTIFY, 1, [Define to 1 to use w32notify.])
2537 NOTIFY_OBJ=w32notify.o
2538 NOTIFY_SUMMARY="yes (w32)"
2539 fi ;;
2540 esac
2541
2542 dnl g_file_monitor exists since glib 2.18. G_FILE_MONITOR_EVENT_MOVED
2543 dnl has been added in glib 2.24. It has been tested under
2544 dnl GNU/Linux only. We take precedence over inotify, but this makes
2545 dnl only sense when glib has been compiled with inotify support. How
2546 dnl to check?
2547 case $with_file_notification,$NOTIFY_OBJ in
2548 gfile, | yes,)
2549 PKG_CHECK_MODULES(GFILENOTIFY, gio-2.0 >= 2.24, HAVE_GFILENOTIFY=yes, HAVE_GFILENOTIFY=no)
2550 if test "$HAVE_GFILENOTIFY" = "yes"; then
2551 AC_DEFINE(HAVE_GFILENOTIFY, 1, [Define to 1 if using GFile.])
2552 NOTIFY_OBJ=gfilenotify.o
2553 NOTIFY_SUMMARY="yes -lgio (gfile)"
2554 fi ;;
2555 esac
2556
2557 dnl inotify is only available on GNU/Linux.
2558 case $with_file_notification,$NOTIFY_OBJ in
2559 inotify, | yes,)
2560 AC_CHECK_HEADER(sys/inotify.h)
2561 if test "$ac_cv_header_sys_inotify_h" = yes ; then
2562 AC_CHECK_FUNC(inotify_init1)
2563 if test "$ac_cv_func_inotify_init1" = yes; then
2564 AC_DEFINE(HAVE_INOTIFY, 1, [Define to 1 to use inotify.])
2565 NOTIFY_OBJ=inotify.o
2566 NOTIFY_SUMMARY="yes -lglibc (inotify)"
2567 fi
2568 fi ;;
2569 esac
2570
2571 case $with_file_notification,$NOTIFY_OBJ in
2572 yes,* | no,* | *,?*) ;;
2573 *) AC_MSG_ERROR([File notification `$with_file_notification' requested but requirements not found.]) ;;
2574 esac
2575
2576 if test -n "$NOTIFY_OBJ"; then
2577 AC_DEFINE(USE_FILE_NOTIFY, 1, [Define to 1 if using file notifications.])
2578 fi
2579 AC_SUBST(NOTIFY_OBJ)
2580 AC_SUBST(GFILENOTIFY_CFLAGS)
2581 AC_SUBST(GFILENOTIFY_LIBS)
2582
2583 dnl Do not put whitespace before the #include statements below.
2584 dnl Older compilers (eg sunos4 cc) choke on it.
2585 HAVE_XAW3D=no
2586 LUCID_LIBW=
2587 if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then
2588 if test "$with_xaw3d" != no; then
2589 AC_CACHE_VAL(emacs_cv_xaw3d,
2590 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2591 #include <X11/Intrinsic.h>
2592 #include <X11/Xaw3d/Simple.h>]],
2593 [[]])],
2594 [AC_CHECK_LIB(Xaw3d, XawScrollbarSetThumb,
2595 emacs_cv_xaw3d=yes, emacs_cv_xaw3d=no)],
2596 emacs_cv_xaw3d=no)])
2597 else
2598 emacs_cv_xaw3d=no
2599 fi
2600 if test $emacs_cv_xaw3d = yes; then
2601 AC_MSG_CHECKING(for xaw3d)
2602 AC_MSG_RESULT([yes; using Lucid toolkit])
2603 USE_X_TOOLKIT=LUCID
2604 HAVE_XAW3D=yes
2605 LUCID_LIBW=-lXaw3d
2606 AC_DEFINE(HAVE_XAW3D, 1,
2607 [Define to 1 if you have the Xaw3d library (-lXaw3d).])
2608 else
2609 AC_MSG_CHECKING(for xaw3d)
2610 AC_MSG_RESULT(no)
2611 AC_MSG_CHECKING(for libXaw)
2612 AC_CACHE_VAL(emacs_cv_xaw,
2613 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[
2614 #include <X11/Intrinsic.h>
2615 #include <X11/Xaw/Simple.h>]],
2616 [[]])],
2617 emacs_cv_xaw=yes,
2618 emacs_cv_xaw=no)])
2619 if test $emacs_cv_xaw = yes; then
2620 AC_MSG_RESULT([yes; using Lucid toolkit])
2621 USE_X_TOOLKIT=LUCID
2622 LUCID_LIBW=-lXaw
2623 elif test x"${USE_X_TOOLKIT}" = xLUCID; then
2624 AC_MSG_ERROR([Lucid toolkit requires X11/Xaw include files])
2625 else
2626 AC_MSG_ERROR([No X toolkit could be found.
2627 If you are sure you want Emacs compiled without an X toolkit, pass
2628 --with-x-toolkit=no
2629 to configure. Otherwise, install the development libraries for the toolkit
2630 that you want to use (e.g. Gtk+) and re-run configure.])
2631 fi
2632 fi
2633 fi
2634
2635 X_TOOLKIT_TYPE=$USE_X_TOOLKIT
2636
2637 LIBXTR6=
2638 if test "${USE_X_TOOLKIT}" != "none"; then
2639 AC_MSG_CHECKING(X11 toolkit version)
2640 AC_CACHE_VAL(emacs_cv_x11_toolkit_version_6,
2641 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <X11/Intrinsic.h>]],
2642 [[#if XtSpecificationRelease < 6
2643 fail;
2644 #endif
2645 ]])], emacs_cv_x11_toolkit_version_6=yes, emacs_cv_x11_toolkit_version_6=no)])
2646 HAVE_X11XTR6=$emacs_cv_x11_toolkit_version_6
2647 if test $emacs_cv_x11_toolkit_version_6 = yes; then
2648 AC_MSG_RESULT(6 or newer)
2649 AC_DEFINE(HAVE_X11XTR6, 1,
2650 [Define to 1 if you have the X11R6 or newer version of Xt.])
2651 LIBXTR6="-lSM -lICE"
2652 case "$opsys" in
2653 ## Use libw.a along with X11R6 Xt.
2654 unixware) LIBXTR6="$LIBXTR6 -lw" ;;
2655 esac
2656 else
2657 AC_MSG_RESULT(before 6)
2658 fi
2659
2660 dnl If using toolkit, check whether libXmu.a exists.
2661 dnl tranle@intellicorp.com says libXmu.a can need XtMalloc in libXt.a to link.
2662 OLDLIBS="$LIBS"
2663 if test x$HAVE_X11XTR6 = xyes; then
2664 LIBS="-lXt -lSM -lICE $LIBS"
2665 else
2666 LIBS="-lXt $LIBS"
2667 fi
2668 AC_CHECK_LIB(Xmu, XmuConvertStandardSelection)
2669 test $ac_cv_lib_Xmu_XmuConvertStandardSelection = no && LIBS="$OLDLIBS"
2670 dnl ac_cv_lib_Xmu_XmuConvertStandardSelection is also referenced below.
2671 fi
2672 AC_SUBST(LIBXTR6)
2673
2674 dnl FIXME the logic here seems weird, but this is what cpp was doing.
2675 dnl Why not just test for libxmu in the normal way?
2676 LIBXMU=-lXmu
2677 case $opsys in
2678 ## These systems don't supply Xmu.
2679 hpux* | aix4-2 )
2680 test "X$ac_cv_lib_Xmu_XmuConvertStandardSelection" != "Xyes" && LIBXMU=
2681 ;;
2682 mingw32 )
2683 LIBXMU=
2684 ;;
2685 esac
2686 AC_SUBST(LIBXMU)
2687
2688 # On Irix 6.5, at least, we need XShapeQueryExtension from -lXext for Xaw3D.
2689 if test "${HAVE_X11}" = "yes"; then
2690 if test "${USE_X_TOOLKIT}" != "none"; then
2691 AC_CHECK_LIB(Xext, XShapeQueryExtension)
2692 fi
2693 fi
2694
2695 LIBXP=
2696 if test "${USE_X_TOOLKIT}" = "MOTIF"; then
2697 # OpenMotif may be installed in such a way on some GNU/Linux systems.
2698 if test -d /usr/include/openmotif; then
2699 CPPFLAGS="-I/usr/include/openmotif $CPPFLAGS"
2700 emacs_cv_openmotif=yes
2701 case "$canonical" in
2702 x86_64-*-linux-gnu* | powerpc64-*-linux-gnu* | sparc64-*-linux-gnu*)
2703 test -d /usr/lib64/openmotif && LDFLAGS="-L/usr/lib64/openmotif $LDFLAGS"
2704 ;;
2705 *)
2706 test -d /usr/lib/openmotif && LDFLAGS="-L/usr/lib/openmotif $LDFLAGS"
2707 esac
2708 else
2709 emacs_cv_openmotif=no
2710 fi
2711 AC_CACHE_CHECK(for (Open)Motif version 2.1, emacs_cv_motif_version_2_1,
2712 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <Xm/Xm.h>]],
2713 [[#if XmVERSION > 2 || (XmVERSION == 2 && XmREVISION >= 1)
2714 int x = 5;
2715 #else
2716 Motif version prior to 2.1.
2717 #endif]])],
2718 emacs_cv_motif_version_2_1=yes, emacs_cv_motif_version_2_1=no)])
2719 if test $emacs_cv_motif_version_2_1 = yes; then
2720 AC_CHECK_LIB(Xp, XpCreateContext, LIBXP=-lXp)
2721 if test x$emacs_cv_openmotif = xyes; then
2722 REAL_CPPFLAGS="-I/usr/include/openmotif $REAL_CPPFLAGS"
2723 fi
2724 else
2725 AC_CACHE_CHECK(for LessTif where some systems put it, emacs_cv_lesstif,
2726 # We put this in CFLAGS temporarily to precede other -I options
2727 # that might be in CFLAGS temporarily.
2728 # We put this in CPPFLAGS where it precedes the other -I options.
2729 OLD_CPPFLAGS=$CPPFLAGS
2730 OLD_CFLAGS=$CFLAGS
2731 CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CPPFLAGS"
2732 CFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $CFLAGS"
2733 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include </usr/X11R6/LessTif/Motif1.2/include/Xm/Xm.h>]],
2734 [[int x = 5;]])],
2735 emacs_cv_lesstif=yes, emacs_cv_lesstif=no)])
2736 if test $emacs_cv_lesstif = yes; then
2737 # Make sure this -I option remains in CPPFLAGS after it is set
2738 # back to REAL_CPPFLAGS.
2739 # There is no need to change REAL_CFLAGS, because REAL_CFLAGS does not
2740 # have those other -I options anyway. Ultimately, having this
2741 # directory ultimately in CPPFLAGS will be enough.
2742 REAL_CPPFLAGS="-I/usr/X11R6/LessTif/Motif1.2/include $REAL_CPPFLAGS"
2743 LDFLAGS="-L/usr/X11R6/LessTif/Motif1.2/lib $LDFLAGS"
2744 else
2745 CFLAGS=$OLD_CFLAGS
2746 CPPFLAGS=$OLD_CPPFLAGS
2747 fi
2748 fi
2749 AC_CHECK_HEADER([Xm/BulletinB.h], [],
2750 [AC_MSG_ERROR([Motif toolkit requested but requirements not found.])])
2751 fi
2752
2753 dnl Use toolkit scroll bars if configured for GTK or X toolkit and either
2754 dnl using Motif or Xaw3d is available, and unless
2755 dnl --with-toolkit-scroll-bars=no was specified.
2756
2757 AH_TEMPLATE(USE_TOOLKIT_SCROLL_BARS,
2758 [Define to 1 if we should use toolkit scroll bars.])dnl
2759 USE_TOOLKIT_SCROLL_BARS=no
2760 if test "${with_toolkit_scroll_bars}" != "no"; then
2761 if test "${USE_X_TOOLKIT}" != "none"; then
2762 if test "${USE_X_TOOLKIT}" = "MOTIF"; then
2763 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2764 HAVE_XAW3D=no
2765 USE_TOOLKIT_SCROLL_BARS=yes
2766 elif test "${HAVE_XAW3D}" = "yes" || test "${USE_X_TOOLKIT}" = "LUCID"; then
2767 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2768 USE_TOOLKIT_SCROLL_BARS=yes
2769 fi
2770 elif test "${HAVE_GTK}" = "yes"; then
2771 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2772 USE_TOOLKIT_SCROLL_BARS=yes
2773 elif test "${HAVE_NS}" = "yes"; then
2774 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2775 USE_TOOLKIT_SCROLL_BARS=yes
2776 elif test "${HAVE_W32}" = "yes"; then
2777 AC_DEFINE(USE_TOOLKIT_SCROLL_BARS)
2778 USE_TOOLKIT_SCROLL_BARS=yes
2779 fi
2780 fi
2781
2782 dnl See if XIM is available.
2783 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2784 #include <X11/Xlib.h>
2785 #include <X11/Xresource.h>]],
2786 [[XIMProc callback;]])],
2787 [HAVE_XIM=yes
2788 AC_DEFINE(HAVE_XIM, 1, [Define to 1 if XIM is available])],
2789 HAVE_XIM=no)
2790
2791 dnl `--with-xim' now controls only the initial value of use_xim at run time.
2792
2793 if test "${with_xim}" != "no"; then
2794 AC_DEFINE(USE_XIM, 1,
2795 [Define to 1 if we should use XIM, if it is available.])
2796 fi
2797
2798
2799 if test "${HAVE_XIM}" != "no"; then
2800 late_CFLAGS=$CFLAGS
2801 if test "$GCC" = yes; then
2802 CFLAGS="$CFLAGS --pedantic-errors"
2803 fi
2804 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2805 #include <X11/Xlib.h>
2806 #include <X11/Xresource.h>]],
2807 [[Display *display;
2808 XrmDatabase db;
2809 char *res_name;
2810 char *res_class;
2811 XIMProc callback;
2812 XPointer *client_data;
2813 #ifndef __GNUC__
2814 /* If we're not using GCC, it's probably not XFree86, and this is
2815 probably right, but we can't use something like --pedantic-errors. */
2816 extern Bool XRegisterIMInstantiateCallback(Display*, XrmDatabase, char*,
2817 char*, XIMProc, XPointer*);
2818 #endif
2819 (void)XRegisterIMInstantiateCallback(display, db, res_name, res_class, callback,
2820 client_data);]])],
2821 [emacs_cv_arg6_star=yes])
2822 AH_TEMPLATE(XRegisterIMInstantiateCallback_arg6,
2823 [Define to the type of the 6th arg of XRegisterIMInstantiateCallback,
2824 either XPointer or XPointer*.])dnl
2825 if test "$emacs_cv_arg6_star" = yes; then
2826 AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer*])
2827 else
2828 AC_DEFINE(XRegisterIMInstantiateCallback_arg6, [XPointer])
2829 fi
2830 CFLAGS=$late_CFLAGS
2831 fi
2832
2833 ### Start of font-backend (under any platform) section.
2834 # (nothing here yet -- this is a placeholder)
2835 ### End of font-backend (under any platform) section.
2836
2837 ### Start of font-backend (under X11) section.
2838 if test "${HAVE_X11}" = "yes"; then
2839 PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= 2.2.0, HAVE_FC=yes, HAVE_FC=no)
2840
2841 ## Use -lXft if available, unless `--with-xft=no'.
2842 HAVE_XFT=maybe
2843 if test "${HAVE_FC}" = "no" || test "x${with_x}" = "xno"; then
2844 with_xft="no";
2845 fi
2846 if test "x${with_xft}" != "xno"; then
2847
2848 PKG_CHECK_MODULES(XFT, xft >= 0.13.0, , HAVE_XFT=no)
2849 ## Because xftfont.c uses XRenderQueryExtension, we also
2850 ## need to link to -lXrender.
2851 HAVE_XRENDER=no
2852 AC_CHECK_LIB(Xrender, XRenderQueryExtension, HAVE_XRENDER=yes)
2853 if test "$HAVE_XFT" != no && test "$HAVE_XRENDER" != no; then
2854 OLD_CPPFLAGS="$CPPFLAGS"
2855 OLD_CFLAGS="$CFLAGS"
2856 OLD_LIBS="$LIBS"
2857 CPPFLAGS="$CPPFLAGS $XFT_CFLAGS"
2858 CFLAGS="$CFLAGS $XFT_CFLAGS"
2859 XFT_LIBS="-lXrender $XFT_LIBS"
2860 LIBS="$XFT_LIBS $LIBS"
2861 AC_CHECK_HEADER(X11/Xft/Xft.h,
2862 AC_CHECK_LIB(Xft, XftFontOpen, HAVE_XFT=yes, , $XFT_LIBS) , ,
2863 [[#include <X11/X.h>]])
2864
2865 if test "${HAVE_XFT}" = "yes"; then
2866 AC_DEFINE(HAVE_XFT, 1, [Define to 1 if you have the Xft library.])
2867 AC_SUBST(XFT_LIBS)
2868 C_SWITCH_X_SITE="$C_SWITCH_X_SITE $XFT_CFLAGS"
2869 else
2870 CPPFLAGS="$OLD_CPPFLAGS"
2871 CFLAGS="$OLD_CFLAGS"
2872 LIBS="$OLD_LIBS"
2873 fi # "${HAVE_XFT}" = "yes"
2874 fi # "$HAVE_XFT" != no
2875 fi # "x${with_xft}" != "xno"
2876
2877 ## We used to allow building with FreeType and without Xft.
2878 ## However, the ftx font backend driver is not in good shape.
2879 if test "$HAVE_XFT" != "yes"; then
2880 dnl For the "Does Emacs use" message at the end.
2881 HAVE_XFT=no
2882 HAVE_FREETYPE=no
2883 else
2884 dnl Strict linkers fail with
2885 dnl ftfont.o: undefined reference to symbol 'FT_New_Face'
2886 dnl if -lfreetype is not specified.
2887 dnl The following is needed to set FREETYPE_LIBS.
2888 PKG_CHECK_MODULES(FREETYPE, freetype2, HAVE_FREETYPE=yes,
2889 HAVE_FREETYPE=no)
2890
2891 test "$HAVE_FREETYPE" = "no" && AC_MSG_ERROR(libxft requires libfreetype)
2892 fi
2893
2894 HAVE_LIBOTF=no
2895 if test "${HAVE_FREETYPE}" = "yes"; then
2896 AC_DEFINE(HAVE_FREETYPE, 1,
2897 [Define to 1 if using the freetype and fontconfig libraries.])
2898 if test "${with_libotf}" != "no"; then
2899 PKG_CHECK_MODULES(LIBOTF, libotf, HAVE_LIBOTF=yes,
2900 HAVE_LIBOTF=no)
2901 if test "$HAVE_LIBOTF" = "yes"; then
2902 AC_DEFINE(HAVE_LIBOTF, 1, [Define to 1 if using libotf.])
2903 AC_CHECK_LIB(otf, OTF_get_variation_glyphs,
2904 HAVE_OTF_GET_VARIATION_GLYPHS=yes,
2905 HAVE_OTF_GET_VARIATION_GLYPHS=no)
2906 if test "${HAVE_OTF_GET_VARIATION_GLYPHS}" = "yes"; then
2907 AC_DEFINE(HAVE_OTF_GET_VARIATION_GLYPHS, 1,
2908 [Define to 1 if libotf has OTF_get_variation_glyphs.])
2909 fi
2910 fi
2911 fi
2912 dnl FIXME should there be an error if HAVE_FREETYPE != yes?
2913 dnl Does the new font backend require it, or can it work without it?
2914 fi
2915
2916 HAVE_M17N_FLT=no
2917 if test "${HAVE_LIBOTF}" = yes; then
2918 if test "${with_m17n_flt}" != "no"; then
2919 PKG_CHECK_MODULES(M17N_FLT, m17n-flt, HAVE_M17N_FLT=yes, HAVE_M17N_FLT=no)
2920 if test "$HAVE_M17N_FLT" = "yes"; then
2921 AC_DEFINE(HAVE_M17N_FLT, 1, [Define to 1 if using libm17n-flt.])
2922 fi
2923 fi
2924 fi
2925 else
2926 HAVE_XFT=no
2927 HAVE_FREETYPE=no
2928 HAVE_LIBOTF=no
2929 HAVE_M17N_FLT=no
2930 fi
2931
2932 ### End of font-backend (under X11) section.
2933
2934 AC_SUBST(FREETYPE_CFLAGS)
2935 AC_SUBST(FREETYPE_LIBS)
2936 AC_SUBST(FONTCONFIG_CFLAGS)
2937 AC_SUBST(FONTCONFIG_LIBS)
2938 AC_SUBST(LIBOTF_CFLAGS)
2939 AC_SUBST(LIBOTF_LIBS)
2940 AC_SUBST(M17N_FLT_CFLAGS)
2941 AC_SUBST(M17N_FLT_LIBS)
2942
2943 ### Use -lXpm if available, unless `--with-xpm=no'.
2944 ### mingw32 doesn't use -lXpm, since it loads the library dynamically.
2945 HAVE_XPM=no
2946 LIBXPM=
2947 if test "${HAVE_W32}" = "yes" && test "${opsys}" = "cygwin"; then
2948 if test "${with_xpm}" != "no"; then
2949 SAVE_CPPFLAGS="$CPPFLAGS"
2950 SAVE_LDFLAGS="$LDFLAGS"
2951 CPPFLAGS="$CPPFLAGS -I/usr/include/noX"
2952 LDFLAGS="$LDFLAGS -L/usr/lib/noX"
2953 AC_CHECK_HEADER(X11/xpm.h,
2954 [AC_CHECK_LIB(Xpm, XpmReadFileToImage, HAVE_XPM=yes)])
2955 if test "${HAVE_XPM}" = "yes"; then
2956 AC_MSG_CHECKING(for XpmReturnAllocPixels preprocessor define)
2957 AC_EGREP_CPP(no_return_alloc_pixels,
2958 [#include "X11/xpm.h"
2959 #ifndef XpmReturnAllocPixels
2960 no_return_alloc_pixels
2961 #endif
2962 ], HAVE_XPM=no, HAVE_XPM=yes)
2963
2964 if test "${HAVE_XPM}" = "yes"; then
2965 REAL_CPPFLAGS="$REAL_CPPFLAGS -I/usr/include/noX"
2966 AC_MSG_RESULT(yes)
2967 else
2968 AC_MSG_RESULT(no)
2969 CPPFLAGS="$SAVE_CPPFLAGS"
2970 LDFLAGS="$SAVE_LDFLAGS"
2971 fi
2972 fi
2973 fi
2974
2975 if test "${HAVE_XPM}" = "yes"; then
2976 AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm library (-lXpm).])
2977 LIBXPM=-lXpm
2978 fi
2979 fi
2980
2981 if test "${HAVE_X11}" = "yes"; then
2982 if test "${with_xpm}" != "no"; then
2983 AC_CHECK_HEADER(X11/xpm.h,
2984 [AC_CHECK_LIB(Xpm, XpmReadFileToPixmap, HAVE_XPM=yes, , -lX11)])
2985 if test "${HAVE_XPM}" = "yes"; then
2986 AC_MSG_CHECKING(for XpmReturnAllocPixels preprocessor define)
2987 AC_EGREP_CPP(no_return_alloc_pixels,
2988 [#include "X11/xpm.h"
2989 #ifndef XpmReturnAllocPixels
2990 no_return_alloc_pixels
2991 #endif
2992 ], HAVE_XPM=no, HAVE_XPM=yes)
2993
2994 if test "${HAVE_XPM}" = "yes"; then
2995 AC_MSG_RESULT(yes)
2996 else
2997 AC_MSG_RESULT(no)
2998 fi
2999 fi
3000 fi
3001
3002 if test "${HAVE_XPM}" = "yes"; then
3003 AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm library (-lXpm).])
3004 LIBXPM=-lXpm
3005 fi
3006 fi
3007
3008 ### FIXME: Perhaps regroup to minimize code duplication due to MinGW's
3009 ### slightly different requirements wrt image libraries (it doesn't
3010 ### use -lXpm because it loads the xpm shared library dynamically at
3011 ### run time).
3012 if test "${opsys}" = "mingw32"; then
3013 if test "${with_xpm}" != "no"; then
3014 AC_CHECK_HEADER(X11/xpm.h, HAVE_XPM=yes, HAVE_XPM=no, [
3015 #define FOR_MSW 1])
3016 fi
3017
3018 if test "${HAVE_XPM}" = "yes"; then
3019 AC_DEFINE(HAVE_XPM, 1, [Define to 1 if you have the Xpm library (-lXpm).])
3020 fi
3021 fi
3022
3023 AC_SUBST(LIBXPM)
3024
3025 ### Use -ljpeg if available, unless `--with-jpeg=no'.
3026 ### mingw32 doesn't use -ljpeg, since it loads the library dynamically.
3027 HAVE_JPEG=no
3028 LIBJPEG=
3029 if test "${opsys}" = "mingw32"; then
3030 if test "${with_jpeg}" != "no"; then
3031 dnl Checking for jpeglib.h can lose because of a redefinition of
3032 dnl HAVE_STDLIB_H.
3033 AC_CHECK_HEADER(jerror.h, HAVE_JPEG=yes, HAVE_JPEG=no)
3034 fi
3035 AH_TEMPLATE(HAVE_JPEG, [Define to 1 if you have the jpeg library (-ljpeg).])dnl
3036 if test "${HAVE_JPEG}" = "yes"; then
3037 AC_DEFINE(HAVE_JPEG)
3038 AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
3039 [#include <jpeglib.h>
3040 version=JPEG_LIB_VERSION
3041 ],
3042 [AC_DEFINE(HAVE_JPEG)],
3043 [AC_MSG_WARN([libjpeg found, but not version 6b or later])
3044 HAVE_JPEG=no])
3045 fi
3046 elif test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then
3047 if test "${with_jpeg}" != "no"; then
3048 dnl Checking for jpeglib.h can lose because of a redefinition of
3049 dnl HAVE_STDLIB_H.
3050 AC_CHECK_HEADER(jerror.h,
3051 [AC_CHECK_LIB(jpeg, jpeg_destroy_compress, HAVE_JPEG=yes)])
3052 fi
3053
3054 AH_TEMPLATE(HAVE_JPEG, [Define to 1 if you have the jpeg library (-ljpeg).])dnl
3055 if test "${HAVE_JPEG}" = "yes"; then
3056 AC_DEFINE(HAVE_JPEG)
3057 AC_EGREP_CPP([version= *(6[2-9]|[7-9][0-9])],
3058 [#include <jpeglib.h>
3059 version=JPEG_LIB_VERSION
3060 ],
3061 [AC_DEFINE(HAVE_JPEG)],
3062 [AC_MSG_WARN([libjpeg found, but not version 6b or later])
3063 HAVE_JPEG=no])
3064 fi
3065 if test "${HAVE_JPEG}" = "yes"; then
3066 LIBJPEG=-ljpeg
3067 fi
3068 fi
3069 AC_SUBST(LIBJPEG)
3070
3071 ### Use -lpng if available, unless `--with-png=no'.
3072 ### mingw32 doesn't use -lpng, since it loads the library dynamically.
3073 HAVE_PNG=no
3074 LIBPNG=
3075 if test "${opsys}" = "mingw32"; then
3076 if test "${with_png}" != "no"; then
3077 AC_CHECK_HEADER(png.h, HAVE_PNG=yes, HAVE_PNG=no)
3078 fi
3079 if test "${HAVE_PNG}" = "yes"; then
3080 AC_DEFINE(HAVE_PNG, 1, [Define to 1 if you have the png library (-lpng).])
3081
3082 AC_CHECK_DECL(png_longjmp,
3083 [],
3084 [AC_DEFINE(PNG_DEPSTRUCT, [],
3085 [Define to empty to suppress deprecation warnings when building
3086 with --enable-gcc-warnings and with libpng versions before 1.5,
3087 which lack png_longjmp.])],
3088 [[#ifdef HAVE_LIBPNG_PNG_H
3089 # include <libpng/png.h>
3090 #else
3091 # include <png.h>
3092 #endif
3093 ]])
3094 fi
3095 elif test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then
3096 if test "${with_png}" != "no"; then
3097 # Debian unstable as of July 2003 has multiple libpngs, and puts png.h
3098 # in /usr/include/libpng.
3099 AC_CHECK_HEADERS(png.h libpng/png.h, break)
3100 if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then
3101 AC_CHECK_LIB(png, png_get_channels, HAVE_PNG=yes, , -lz -lm)
3102 fi
3103 fi
3104
3105 if test "${HAVE_PNG}" = "yes"; then
3106 AC_DEFINE(HAVE_PNG, 1, [Define to 1 if you have the png library.])
3107
3108 dnl Some systems, eg NetBSD 6, only provide eg "libpng16", not "libpng".
3109 lpng=`libpng-config --libs 2> /dev/null`
3110 case $lpng in
3111 -l*) : ;;
3112 *) lpng="-lpng" ;;
3113 esac
3114 LIBPNG="$lpng -lz -lm"
3115
3116 AC_CHECK_DECL(png_longjmp,
3117 [],
3118 [AC_DEFINE(PNG_DEPSTRUCT, [],
3119 [Define to empty to suppress deprecation warnings when building
3120 with --enable-gcc-warnings and with libpng versions before 1.5,
3121 which lack png_longjmp.])],
3122 [[#ifdef HAVE_LIBPNG_PNG_H
3123 # include <libpng/png.h>
3124 #else
3125 # include <png.h>
3126 #endif
3127 ]])
3128 fi
3129 fi
3130 AC_SUBST(LIBPNG)
3131
3132 HAVE_ZLIB=no
3133 LIBZ=
3134 if test "${with_zlib}" != "no"; then
3135 OLIBS=$LIBS
3136 AC_SEARCH_LIBS([inflateEnd], [z], [HAVE_ZLIB=yes])
3137 LIBS=$OLIBS
3138 case $ac_cv_search_inflateEnd in
3139 -*) LIBZ=$ac_cv_search_inflateEnd ;;
3140 esac
3141 fi
3142 if test "${HAVE_ZLIB}" = "yes"; then
3143 AC_DEFINE([HAVE_ZLIB], 1, [Define to 1 if you have the zlib library (-lz).])
3144 ### mingw32 doesn't use -lz, since it loads the library dynamically.
3145 if test "${opsys}" = "mingw32"; then
3146 LIBZ=
3147 fi
3148 fi
3149 AC_SUBST(LIBZ)
3150
3151
3152 ### Use -ltiff if available, unless `--with-tiff=no'.
3153 ### mingw32 doesn't use -ltiff, since it loads the library dynamically.
3154 HAVE_TIFF=no
3155 LIBTIFF=
3156 if test "${opsys}" = "mingw32"; then
3157 if test "${with_tiff}" != "no"; then
3158 AC_CHECK_HEADER(tiffio.h, HAVE_TIFF=yes, HAVE_TIFF=no)
3159 fi
3160 if test "${HAVE_TIFF}" = "yes"; then
3161 AC_DEFINE(HAVE_TIFF, 1, [Define to 1 if you have the tiff library (-ltiff).])
3162 fi
3163 elif test "${HAVE_X11}" = "yes" || test "${HAVE_W32}" = "yes"; then
3164 if test "${with_tiff}" != "no"; then
3165 AC_CHECK_HEADER(tiffio.h,
3166 [tifflibs="-lz -lm"
3167 # At least one tiff package requires the jpeg library.
3168 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
3169 AC_CHECK_LIB(tiff, TIFFGetVersion, HAVE_TIFF=yes, , $tifflibs)])
3170 fi
3171
3172 if test "${HAVE_TIFF}" = "yes"; then
3173 AC_DEFINE(HAVE_TIFF, 1, [Define to 1 if you have the tiff library (-ltiff).])
3174 dnl FIXME -lz -lm, as per libpng?
3175 LIBTIFF=-ltiff
3176 fi
3177 fi
3178 AC_SUBST(LIBTIFF)
3179
3180 ### Use -lgif or -lungif if available, unless `--with-gif=no'.
3181 ### mingw32 doesn't use -lgif/-lungif, since it loads the library dynamically.
3182 HAVE_GIF=no
3183 LIBGIF=
3184 if test "${opsys}" = "mingw32"; then
3185 if test "${with_gif}" != "no"; then
3186 AC_CHECK_HEADER(gif_lib.h, HAVE_GIF=yes, HAVE_GIF=no)
3187 fi
3188 if test "${HAVE_GIF}" = "yes"; then
3189 AC_DEFINE(HAVE_GIF, 1, [Define to 1 if you have a gif (or ungif) library.])
3190 fi
3191 elif test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no" \
3192 || test "${HAVE_W32}" = "yes"; then
3193 AC_CHECK_HEADER(gif_lib.h,
3194 # EGifPutExtensionLast only exists from version libungif-4.1.0b1.
3195 # Earlier versions can crash Emacs, but version 5.0 removes EGifPutExtensionLast.
3196 [AC_CHECK_LIB(gif, GifMakeMapObject, HAVE_GIF=yes,
3197 [AC_CHECK_LIB(gif, EGifPutExtensionLast, HAVE_GIF=yes, HAVE_GIF=maybe)])])
3198
3199 if test "$HAVE_GIF" = yes; then
3200 LIBGIF=-lgif
3201 elif test "$HAVE_GIF" = maybe; then
3202 # If gif_lib.h but no libgif, try libungif.
3203 AC_CHECK_LIB(ungif, EGifPutExtensionLast, HAVE_GIF=yes, HAVE_GIF=no)
3204 test "$HAVE_GIF" = yes && LIBGIF=-lungif
3205 fi
3206
3207 if test "${HAVE_GIF}" = "yes"; then
3208 AC_DEFINE(HAVE_GIF, 1, [Define to 1 if you have a gif (or ungif) library.])
3209 fi
3210 fi
3211 AC_SUBST(LIBGIF)
3212
3213 dnl Check for required libraries.
3214 if test "${HAVE_X11}" = "yes"; then
3215 MISSING=""
3216 WITH_NO=""
3217 test "${with_xpm}" != "no" && test "${HAVE_XPM}" != "yes" &&
3218 MISSING="libXpm" && WITH_NO="--with-xpm=no"
3219 test "${with_jpeg}" != "no" && test "${HAVE_JPEG}" != "yes" &&
3220 MISSING="$MISSING libjpeg" && WITH_NO="$WITH_NO --with-jpeg=no"
3221 test "${with_png}" != "no" && test "${HAVE_PNG}" != "yes" &&
3222 MISSING="$MISSING libpng" && WITH_NO="$WITH_NO --with-png=no"
3223 test "${with_gif}" != "no" && test "${HAVE_GIF}" != "yes" &&
3224 MISSING="$MISSING libgif/libungif" && WITH_NO="$WITH_NO --with-gif=no"
3225 test "${with_tiff}" != "no" && test "${HAVE_TIFF}" != "yes" &&
3226 MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no"
3227
3228 if test "X${MISSING}" != X; then
3229 AC_MSG_ERROR([The following required libraries were not found:
3230 $MISSING
3231 Maybe some development libraries/packages are missing?
3232 If you don't want to link with them give
3233 $WITH_NO
3234 as options to configure])
3235 fi
3236 fi
3237
3238 ### Use -lgpm if available, unless `--with-gpm=no'.
3239 HAVE_GPM=no
3240 LIBGPM=
3241 if test "${with_gpm}" != "no"; then
3242 AC_CHECK_HEADER(gpm.h,
3243 [AC_CHECK_LIB(gpm, Gpm_Open, HAVE_GPM=yes)])
3244
3245 if test "${HAVE_GPM}" = "yes"; then
3246 AC_DEFINE(HAVE_GPM, 1, [Define to 1 if you have the gpm library (-lgpm).])
3247 LIBGPM=-lgpm
3248 fi
3249 fi
3250 AC_SUBST(LIBGPM)
3251
3252 dnl Check for malloc/malloc.h on darwin
3253 AC_CHECK_HEADERS_ONCE(malloc/malloc.h)
3254
3255 GNUSTEP_CFLAGS=
3256 ### Use NeXTstep API to implement GUI.
3257 if test "${HAVE_NS}" = "yes"; then
3258 AC_DEFINE(HAVE_NS, 1, [Define to 1 if you are using the NeXTstep API, either GNUstep or Cocoa on Mac OS X.])
3259 if test "${NS_IMPL_COCOA}" = "yes"; then
3260 AC_DEFINE(NS_IMPL_COCOA, 1, [Define to 1 if you are using NS windowing under MacOS X.])
3261 fi
3262 if test "${NS_IMPL_GNUSTEP}" = "yes"; then
3263 AC_DEFINE(NS_IMPL_GNUSTEP, 1, [Define to 1 if you are using NS windowing under GNUstep.])
3264 # See also .m.o rule in Makefile.in */
3265 # FIXME: are all these flags really needed? Document here why. */
3266 GNUSTEP_CFLAGS="-D_REENTRANT -fPIC -fno-strict-aliasing -I${GNUSTEP_SYSTEM_HEADERS} ${GNUSTEP_LOCAL_HEADERS}"
3267 ## Extra CFLAGS applied to src/*.m files.
3268 GNU_OBJC_CFLAGS="$GNU_OBJC_CFLAGS -fgnu-runtime -Wno-import -fconstant-string-class=NSConstantString -DGNUSTEP_BASE_LIBRARY=1 -DGNU_GUI_LIBRARY=1 -DGNU_RUNTIME=1 -DGSWARN -DGSDIAGNOSE"
3269 fi
3270 OTHER_FILES=ns-app
3271 fi
3272
3273 ### Use session management (-lSM -lICE) if available
3274 HAVE_X_SM=no
3275 LIBXSM=
3276 if test "${HAVE_X11}" = "yes"; then
3277 AC_CHECK_HEADER(X11/SM/SMlib.h,
3278 [AC_CHECK_LIB(SM, SmcOpenConnection, HAVE_X_SM=yes, , -lICE)])
3279
3280 if test "${HAVE_X_SM}" = "yes"; then
3281 AC_DEFINE(HAVE_X_SM, 1, [Define to 1 if you have the SM library (-lSM).])
3282 LIBXSM="-lSM -lICE"
3283 case "$LIBS" in
3284 *-lSM*) ;;
3285 *) LIBS="$LIBXSM $LIBS" ;;
3286 esac
3287 fi
3288 fi
3289 AC_SUBST(LIBXSM)
3290
3291 ### Use XRandr (-lXrandr) if available
3292 HAVE_XRANDR=no
3293 if test "${HAVE_X11}" = "yes"; then
3294 XRANDR_REQUIRED=1.2.2
3295 XRANDR_MODULES="xrandr >= $XRANDR_REQUIRED"
3296 PKG_CHECK_MODULES(XRANDR, $XRANDR_MODULES, HAVE_XRANDR=yes, HAVE_XRANDR=no)
3297 if test $HAVE_XRANDR = no; then
3298 # Test old way in case pkg-config doesn't have it (older machines).
3299 AC_CHECK_HEADER(X11/extensions/Xrandr.h,
3300 [AC_CHECK_LIB(Xrandr, XRRGetScreenResources, HAVE_XRANDR=yes)])
3301 if test $HAVE_XRANDR = yes; then
3302 XRANDR_LIBS=-lXrandr
3303 AC_SUBST(XRANDR_LIBS)
3304 fi
3305 fi
3306 if test $HAVE_XRANDR = yes; then
3307 SAVE_CFLAGS="$CFLAGS"
3308 SAVE_LIBS="$LIBS"
3309 CFLAGS="$XRANDR_CFLAGS $CFLAGS"
3310 LIBS="$XRANDR_LIBS $LIBS"
3311 AC_CHECK_FUNCS(XRRGetOutputPrimary XRRGetScreenResourcesCurrent)
3312 CFLAGS="$SAVE_CFLAGS"
3313 LIBS="$SAVE_LIBS"
3314
3315 AC_DEFINE(HAVE_XRANDR, 1, [Define to 1 if you have the XRandr extension.])
3316 fi
3317 fi
3318
3319 ### Use Xinerama (-lXinerama) if available
3320 HAVE_XINERAMA=no
3321 if test "${HAVE_X11}" = "yes"; then
3322 XINERAMA_REQUIRED=1.0.2
3323 XINERAMA_MODULES="xinerama >= $XINERAMA_REQUIRED"
3324 PKG_CHECK_MODULES(XINERAMA, $XINERAMA_MODULES, HAVE_XINERAMA=yes,
3325 HAVE_XINERAMA=no)
3326 if test $HAVE_XINERAMA = no; then
3327 # Test old way in case pkg-config doesn't have it (older machines).
3328 AC_CHECK_HEADER(X11/extensions/Xinerama.h,
3329 [AC_CHECK_LIB(Xinerama, XineramaQueryExtension, HAVE_XINERAMA=yes)])
3330 if test $HAVE_XINERAMA = yes; then
3331 XINERAMA_LIBS=-lXinerama
3332 AC_SUBST(XINERAMA_LIBS)
3333 fi
3334 fi
3335 if test $HAVE_XINERAMA = yes; then
3336 AC_DEFINE(HAVE_XINERAMA, 1, [Define to 1 if you have the Xinerama extension.])
3337 fi
3338 fi
3339
3340
3341 ### Use libxml (-lxml2) if available
3342 ### mingw32 doesn't use -lxml2, since it loads the library dynamically.
3343 HAVE_LIBXML2=no
3344 if test "${with_xml2}" != "no"; then
3345 ### I'm not sure what the version number should be, so I just guessed.
3346 PKG_CHECK_MODULES(LIBXML2, libxml-2.0 > 2.6.17, HAVE_LIBXML2=yes, HAVE_LIBXML2=no)
3347 # Built-in libxml2 on OS X 10.8 lacks libxml-2.0.pc.
3348 if test "${HAVE_LIBXML2}" != "yes" -a "$opsys" = "darwin"; then
3349 SAVE_CPPFLAGS="$CPPFLAGS"
3350 CPPFLAGS="$CPPFLAGS -I$xcsdkdir/usr/include/libxml2"
3351 AC_CHECK_HEADER(libxml/HTMLparser.h,
3352 [AC_CHECK_DECL(HTML_PARSE_RECOVER, HAVE_LIBXML2=yes, ,
3353 [#include <libxml/HTMLparser.h>])])
3354 CPPFLAGS="$SAVE_CPPFLAGS"
3355 if test "${HAVE_LIBXML2}" = "yes"; then
3356 LIBXML2_CFLAGS="-I'$xcsdkdir/usr/include/libxml2'"
3357 LIBXML2_LIBS="-lxml2"
3358 fi
3359 fi
3360 if test "${HAVE_LIBXML2}" = "yes"; then
3361 if test "${opsys}" != "mingw32"; then
3362 LIBS="$LIBXML2_LIBS $LIBS"
3363 AC_CHECK_LIB(xml2, htmlReadMemory, HAVE_LIBXML2=yes, HAVE_LIBXML2=no)
3364 else
3365 LIBXML2_LIBS=""
3366 fi
3367 if test "${HAVE_LIBXML2}" = "yes"; then
3368 AC_DEFINE(HAVE_LIBXML2, 1, [Define to 1 if you have the libxml library (-lxml2).])
3369 else
3370 LIBXML2_LIBS=""
3371 LIBXML2_CFLAGS=""
3372 fi
3373 fi
3374 fi
3375 AC_SUBST(LIBXML2_LIBS)
3376 AC_SUBST(LIBXML2_CFLAGS)
3377
3378 # If netdb.h doesn't declare h_errno, we must declare it by hand.
3379 # On MinGW, that is provided by nt/inc/sys/socket.h and w32.c.
3380 if test "${opsys}" = "mingw32"; then
3381 emacs_cv_netdb_declares_h_errno=yes
3382 fi
3383 AC_CACHE_CHECK(whether netdb declares h_errno,
3384 emacs_cv_netdb_declares_h_errno,
3385 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]],
3386 [[return h_errno;]])],
3387 emacs_cv_netdb_declares_h_errno=yes, emacs_cv_netdb_declares_h_errno=no)])
3388 if test $emacs_cv_netdb_declares_h_errno = yes; then
3389 AC_DEFINE(HAVE_H_ERRNO, 1, [Define to 1 if netdb.h declares h_errno.])
3390 fi
3391
3392 # sqrt and other floating-point functions such as fmod and frexp
3393 # are found in -lm on most systems, but mingw32 doesn't use -lm.
3394 if test "${opsys}" != "mingw32"; then
3395 AC_CHECK_LIB(m, sqrt)
3396 fi
3397
3398 # Check for mail-locking functions in a "mail" library. Probably this should
3399 # have the same check as for liblockfile below.
3400 AC_CHECK_LIB(mail, maillock, have_mail=yes, have_mail=no)
3401 if test $have_mail = yes; then
3402 LIBS_MAIL=-lmail
3403 LIBS="$LIBS_MAIL $LIBS"
3404 AC_DEFINE(HAVE_LIBMAIL, 1, [Define to 1 if you have the `mail' library (-lmail).])
3405 else
3406 LIBS_MAIL=
3407 fi
3408 dnl Debian, at least:
3409 AC_CHECK_LIB(lockfile, maillock, have_lockfile=yes, have_lockfile=no)
3410 if test $have_lockfile = yes; then
3411 LIBS_MAIL=-llockfile
3412 LIBS="$LIBS_MAIL $LIBS"
3413 AC_DEFINE(HAVE_LIBLOCKFILE, 1, [Define to 1 if you have the `lockfile' library (-llockfile).])
3414 else
3415 # If we have the shared liblockfile, assume we must use it for mail
3416 # locking (e.g. Debian). If we couldn't link against liblockfile
3417 # (no liblockfile.a installed), ensure that we don't need to.
3418 dnl This works for files generally, not just executables.
3419 dnl Should we look elsewhere for it? Maybe examine /etc/ld.so.conf?
3420 AC_CHECK_PROG(liblockfile, liblockfile.so, yes, no,
3421 /usr/lib:/lib:/usr/local/lib:$LD_LIBRARY_PATH)
3422 if test $ac_cv_prog_liblockfile = yes; then
3423 AC_MSG_ERROR([Shared liblockfile found but can't link against it.
3424 This probably means that movemail could lose mail.
3425 There may be a `development' package to install containing liblockfile.])
3426 fi
3427 fi
3428 AC_CHECK_HEADERS_ONCE(maillock.h)
3429 AC_SUBST(LIBS_MAIL)
3430
3431 ## Define MAIL_USE_FLOCK (or LOCKF) if the mailer uses flock (or lockf) to
3432 ## interlock access to the mail spool. The alternative is a lock file named
3433 ## /usr/spool/mail/$USER.lock.
3434 mail_lock=no
3435 case "$opsys" in
3436 aix4-2) mail_lock="lockf" ;;
3437
3438 gnu|freebsd|dragonfly|netbsd|openbsd|darwin|irix6-5) mail_lock="flock" ;;
3439
3440 ## On GNU/Linux systems, both methods are used by various mail programs.
3441 ## I assume most people are using newer mailers that have heard of flock.
3442 ## Change this if you need to.
3443 ## Debian contains a patch which says: ``On Debian/GNU/Linux systems,
3444 ## configure gets the right answers, and that means *NOT* using flock.
3445 ## Using flock is guaranteed to be the wrong thing. See Debian Policy
3446 ## for details.'' and then uses `#ifdef DEBIAN'. Unfortunately the
3447 ## Debian maintainer hasn't provided a clean fix for Emacs.
3448 ## movemail.c will use `maillock' when MAILDIR, HAVE_LIBMAIL and
3449 ## HAVE_MAILLOCK_H are defined, so the following appears to be the
3450 ## correct logic. -- fx
3451 ## We must check for HAVE_LIBLOCKFILE too, as movemail does.
3452 ## liblockfile is a Free Software replacement for libmail, used on
3453 ## Debian systems and elsewhere. -rfr.
3454 gnu-*)
3455 mail_lock="flock"
3456 if test $have_mail = yes || test $have_lockfile = yes; then
3457 test $ac_cv_header_maillock_h = yes && mail_lock=no
3458 fi
3459 ;;
3460
3461 mingw32)
3462 mail_lock="none-needed" ;;
3463 esac
3464
3465 BLESSMAIL_TARGET=
3466 case "$mail_lock" in
3467 flock) AC_DEFINE(MAIL_USE_FLOCK, 1, [Define if the mailer uses flock to interlock the mail spool.]) ;;
3468
3469 lockf) AC_DEFINE(MAIL_USE_LOCKF, 1, [Define if the mailer uses lockf to interlock the mail spool.]) ;;
3470
3471 none-needed) ;;
3472
3473 *) BLESSMAIL_TARGET="need-blessmail" ;;
3474 esac
3475 AC_SUBST(BLESSMAIL_TARGET)
3476
3477
3478 AC_CHECK_FUNCS(accept4 gethostname \
3479 getrusage get_current_dir_name \
3480 lrand48 \
3481 select getpagesize setlocale \
3482 getrlimit setrlimit shutdown getaddrinfo \
3483 strsignal setitimer \
3484 sendto recvfrom getsockname getpeername getifaddrs freeifaddrs \
3485 gai_strerror getline getdelim sync \
3486 getpwent endpwent getgrent endgrent \
3487 touchlock \
3488 cfmakeraw cfsetspeed copysign __executable_start log2)
3489
3490 dnl No need to check for aligned_alloc and posix_memalign if using
3491 dnl gmalloc.o, as it supplies them. Don't use these functions on
3492 dnl Darwin as they are incompatible with unexmacosx.c.
3493 if test -z "$GMALLOC_OBJ" && test "$opsys" != darwin; then
3494 AC_CHECK_FUNCS([aligned_alloc posix_memalign], [break])
3495 fi
3496
3497 ## Eric Backus <ericb@lsid.hp.com> says, HP-UX 9.x on HP 700 machines
3498 ## has a broken `rint' in some library versions including math library
3499 ## version number A.09.05.
3500 ## You can fix the math library by installing patch number PHSS_4630.
3501 ## But we can fix it more reliably for Emacs by just not using rint.
3502 ## We also skip HAVE_RANDOM - see comments in src/conf_post.h.
3503 case $opsys in
3504 hpux*) : ;;
3505 *) AC_CHECK_FUNCS(random rint) ;;
3506 esac
3507
3508 dnl Cannot use AC_CHECK_FUNCS
3509 AC_CACHE_CHECK([for __builtin_unwind_init],
3510 emacs_cv_func___builtin_unwind_init,
3511 [AC_LINK_IFELSE([AC_LANG_PROGRAM([], [__builtin_unwind_init ();])],
3512 emacs_cv_func___builtin_unwind_init=yes,
3513 emacs_cv_func___builtin_unwind_init=no)])
3514 if test $emacs_cv_func___builtin_unwind_init = yes; then
3515 AC_DEFINE(HAVE___BUILTIN_UNWIND_INIT, 1,
3516 [Define to 1 if you have the `__builtin_unwind_init' function.])
3517 fi
3518
3519 AC_CHECK_HEADERS_ONCE(sys/un.h)
3520
3521 AC_FUNC_FSEEKO
3522
3523 # UNIX98 PTYs.
3524 AC_CHECK_FUNCS(grantpt)
3525
3526 # PTY-related GNU extensions.
3527 AC_CHECK_FUNCS(getpt posix_openpt)
3528
3529 # Check this now, so that we will NOT find the above functions in ncurses.
3530 # That is because we have not set up to link ncurses in lib-src.
3531 # It's better to believe a function is not available
3532 # than to expect to find it in ncurses.
3533 # Also we need tputs and friends to be able to build at all.
3534 AC_MSG_CHECKING([for library containing tputs])
3535 # Run a test program that contains a call to tputs, a call that is
3536 # never executed. This tests whether a pre-'main' dynamic linker
3537 # works with the library. It's too much trouble to actually call
3538 # tputs in the test program, due to portability hassles. When
3539 # cross-compiling, assume the test program will run if it links.
3540 AC_DEFUN([tputs_link_source], [
3541 AC_LANG_SOURCE(
3542 [[extern void tputs (const char *, int, int (*)(int));
3543 int main (int argc, char **argv)
3544 {
3545 if (argc == 10000)
3546 tputs (argv[0], 0, 0);
3547 return 0;
3548 }]])
3549 ])
3550 if test "${opsys}" = "mingw32"; then
3551 msg='none required'
3552 else
3553 # Maybe curses should be tried earlier?
3554 # See http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9736#35
3555 for tputs_library in '' tinfo ncurses terminfo termcap curses; do
3556 OLIBS=$LIBS
3557 if test -z "$tputs_library"; then
3558 LIBS_TERMCAP=
3559 msg='none required'
3560 else
3561 LIBS_TERMCAP=-l$tputs_library
3562 msg=$LIBS_TERMCAP
3563 LIBS="$LIBS_TERMCAP $LIBS"
3564 fi
3565 AC_RUN_IFELSE([tputs_link_source], [], [msg=no],
3566 [AC_LINK_IFELSE([tputs_link_source], [], [msg=no])])
3567 LIBS=$OLIBS
3568 if test "X$msg" != Xno; then
3569 break
3570 fi
3571 done
3572 fi
3573 AC_MSG_RESULT([$msg])
3574 if test "X$msg" = Xno; then
3575 AC_MSG_ERROR([The required function `tputs' was not found in any library.
3576 The following libraries were tried (in order):
3577 libtinfo, libncurses, libterminfo, libtermcap, libcurses
3578 Please try installing whichever of these libraries is most appropriate
3579 for your system, together with its header files.
3580 For example, a libncurses-dev(el) or similar package.])
3581 fi
3582
3583 ## Use termcap instead of terminfo?
3584 ## Only true for: freebsd < 40000, ms-w32, msdos, netbsd < 599002500.
3585 TERMINFO=yes
3586 ## FIXME? In the cases below where we unconditionally set
3587 ## LIBS_TERMCAP="-lncurses", this overrides LIBS_TERMCAP = -ltinfo,
3588 ## if that was found above to have tputs.
3589 ## Should we use the gnu* logic everywhere?
3590 case "$opsys" in
3591 ## darwin: Prevents crashes when running Emacs in Terminal.app under 10.2.
3592 ## The ncurses library has been moved out of the System framework in
3593 ## Mac OS X 10.2. So if configure detects it, set the command-line
3594 ## option to use it.
3595 darwin) LIBS_TERMCAP="-lncurses" ;;
3596
3597 gnu*) test -z "$LIBS_TERMCAP" && LIBS_TERMCAP="-lncurses" ;;
3598
3599 freebsd)
3600 AC_MSG_CHECKING([whether FreeBSD is new enough to use terminfo])
3601 AC_CACHE_VAL(emacs_cv_freebsd_terminfo,
3602 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <osreldate.h>]],
3603 [[#if __FreeBSD_version < 400000
3604 fail;
3605 #endif
3606 ]])], emacs_cv_freebsd_terminfo=yes, emacs_cv_freebsd_terminfo=no)])
3607
3608 AC_MSG_RESULT($emacs_cv_freebsd_terminfo)
3609
3610 if test $emacs_cv_freebsd_terminfo = yes; then
3611 LIBS_TERMCAP="-lncurses"
3612 else
3613 TERMINFO=no
3614 LIBS_TERMCAP="-ltermcap"
3615 fi
3616 ;;
3617
3618 mingw32)
3619 TERMINFO=no
3620 LIBS_TERMCAP=
3621 ;;
3622
3623 netbsd)
3624 if test "x$LIBS_TERMCAP" != "x-lterminfo"; then
3625 TERMINFO=no
3626 LIBS_TERMCAP="-ltermcap"
3627 fi
3628 ;;
3629
3630 openbsd | dragonfly) LIBS_TERMCAP="-lncurses" ;;
3631
3632 ## hpux: Make sure we get select from libc rather than from libcurses
3633 ## because libcurses on HPUX 10.10 has a broken version of select.
3634 ## We used to use -lc -lcurses, but this may be cleaner.
3635 ## FIXME? But TERMINFO = yes on hpux (it used to be explicitly
3636 # set that way, now it uses the default). Isn't this a contradiction?
3637 hpux*) LIBS_TERMCAP="-ltermcap" ;;
3638
3639 esac
3640
3641 TERMCAP_OBJ=tparam.o
3642 if test $TERMINFO = yes; then
3643 AC_DEFINE(TERMINFO, 1, [Define to 1 if you use terminfo instead of termcap.])
3644 TERMCAP_OBJ=terminfo.o
3645 fi
3646 if test "X$LIBS_TERMCAP" = "X-lncurses"; then
3647 AC_DEFINE(USE_NCURSES, 1, [Define to 1 if you use ncurses.])
3648 fi
3649 AC_SUBST(LIBS_TERMCAP)
3650 AC_SUBST(TERMCAP_OBJ)
3651
3652
3653 # Do we have res_init, for detecting changes in /etc/resolv.conf?
3654 # On Darwin, res_init appears not to be useful: see bug#562 and
3655 # http://lists.gnu.org/archive/html/emacs-devel/2007-11/msg01467.html
3656 resolv=no
3657
3658 if test $opsys != darwin; then
3659
3660 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netinet/in.h>
3661 #include <arpa/nameser.h>
3662 #include <resolv.h>]],
3663 [[return res_init();]])],
3664 have_res_init=yes, have_res_init=no)
3665 if test "$have_res_init" = no; then
3666 OLIBS="$LIBS"
3667 LIBS="$LIBS -lresolv"
3668 AC_MSG_CHECKING(for res_init with -lresolv)
3669 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <netinet/in.h>
3670 #include <arpa/nameser.h>
3671 #include <resolv.h>]],
3672 [[return res_init();]])],
3673 have_res_init=yes, have_res_init=no)
3674 AC_MSG_RESULT($have_res_init)
3675 if test "$have_res_init" = yes ; then
3676 resolv=yes
3677 fi
3678 LIBS="$OLIBS"
3679 fi
3680
3681 if test "$have_res_init" = yes; then
3682 AC_DEFINE(HAVE_RES_INIT, 1, [Define to 1 if res_init is available.])
3683 fi
3684 fi dnl !darwin
3685
3686 # Do we need the Hesiod library to provide the support routines?
3687 dnl FIXME? Should we be skipping this on Darwin too?
3688 LIBHESIOD=
3689 if test "$with_hesiod" != no ; then
3690 # Don't set $LIBS here -- see comments above. FIXME which comments?
3691 AC_CHECK_FUNC(res_send, , [AC_CHECK_FUNC(__res_send, ,
3692 [AC_CHECK_LIB(resolv, res_send, resolv=yes,
3693 [AC_CHECK_LIB(resolv, __res_send, resolv=yes)])])])
3694 if test "$resolv" = yes ; then
3695 RESOLVLIB=-lresolv
3696 else
3697 RESOLVLIB=
3698 fi
3699 AC_CHECK_FUNC(hes_getmailhost, , [AC_CHECK_LIB(hesiod, hes_getmailhost,
3700 hesiod=yes, :, $RESOLVLIB)])
3701
3702 if test x"$hesiod" = xyes; then
3703 LIBHESIOD=-lhesiod
3704 fi
3705 fi
3706 AC_SUBST(LIBHESIOD)
3707
3708 # Do we need libresolv (due to res_init or Hesiod)?
3709 if test "$resolv" = yes && test $opsys != darwin; then
3710 LIBRESOLV=-lresolv
3711 else
3712 LIBRESOLV=
3713 fi
3714 AC_SUBST(LIBRESOLV)
3715
3716 # These tell us which Kerberos-related libraries to use.
3717 COM_ERRLIB=
3718 CRYPTOLIB=
3719 KRB5LIB=
3720 DESLIB=
3721 KRB4LIB=
3722
3723 if test "${with_kerberos}" != no; then
3724 AC_CHECK_LIB(com_err, com_err, have_com_err=yes, have_com_err=no)
3725 if test $have_com_err = yes; then
3726 COM_ERRLIB=-lcom_err
3727 LIBS="$COM_ERRLIB $LIBS"
3728 fi
3729 AC_CHECK_LIB(crypto, mit_des_cbc_encrypt, have_crypto=yes, have_crypto=no)
3730 if test $have_crypto = yes; then
3731 CRYPTOLIB=-lcrypto
3732 LIBS="$CRYPTOLIB $LIBS"
3733 fi
3734 AC_CHECK_LIB(k5crypto, mit_des_cbc_encrypt, have_k5crypto=yes, have_k5crypto=no)
3735 if test $have_k5crypto = yes; then
3736 CRYPTOLIB=-lk5crypto
3737 LIBS="$CRYPTOLIB $LIBS"
3738 fi
3739 AC_CHECK_LIB(krb5, krb5_init_context, have_krb5=yes, have_krb5=no)
3740 if test $have_krb5=yes; then
3741 KRB5LIB=-lkrb5
3742 LIBS="$KRB5LIB $LIBS"
3743 fi
3744 dnl FIXME Simplify. Does not match 22 logic, thanks to default_off?
3745 if test "${with_kerberos5}" = no; then
3746 AC_CHECK_LIB(des425, des_cbc_encrypt, have_des425=yes, have_des425=no )
3747 if test $have_des425 = yes; then
3748 DESLIB=-ldes425
3749 LIBS="$DESLIB $LIBS"
3750 else
3751 AC_CHECK_LIB(des, des_cbc_encrypt, have_des=yes, have_des=no)
3752 if test $have_des = yes; then
3753 DESLIB=-ldes
3754 LIBS="$DESLIB $LIBS"
3755 fi
3756 fi
3757 AC_CHECK_LIB(krb4, krb_get_cred, have_krb4=yes, have_krb4=no)
3758 if test $have_krb4 = yes; then
3759 KRB4LIB=-lkrb4
3760 LIBS="$KRB4LIB $LIBS"
3761 else
3762 AC_CHECK_LIB(krb, krb_get_cred, have_krb=yes, have_krb=no)
3763 if test $have_krb = yes; then
3764 KRB4LIB=-lkrb
3765 LIBS="$KRB4LIB $LIBS"
3766 fi
3767 fi
3768 fi
3769
3770 if test "${with_kerberos5}" != no; then
3771 AC_CHECK_HEADERS(krb5.h,
3772 [AC_CHECK_MEMBERS([krb5_error.text, krb5_error.e_text],,,
3773 [#include <krb5.h>])])
3774 else
3775 AC_CHECK_HEADERS(krb.h,,
3776 [AC_CHECK_HEADERS(kerberosIV/krb.h,,
3777 [AC_CHECK_HEADERS(kerberos/krb.h)])])
3778 fi
3779 AC_CHECK_HEADERS(com_err.h)
3780 fi
3781
3782 AC_SUBST(COM_ERRLIB)
3783 AC_SUBST(CRYPTOLIB)
3784 AC_SUBST(KRB5LIB)
3785 AC_SUBST(DESLIB)
3786 AC_SUBST(KRB4LIB)
3787
3788 AC_CHECK_HEADERS(valgrind/valgrind.h)
3789
3790 AC_CHECK_FUNCS_ONCE(tzset)
3791 AC_MSG_CHECKING(whether localtime caches TZ)
3792 AC_CACHE_VAL(emacs_cv_localtime_cache,
3793 [if test x$ac_cv_func_tzset = xyes; then
3794 AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <time.h>
3795 char TZ_GMT0[] = "TZ=GMT0";
3796 char TZ_PST8[] = "TZ=PST8";
3797 main()
3798 {
3799 time_t now = time ((time_t *) 0);
3800 int hour_GMT0, hour_unset;
3801 if (putenv (TZ_GMT0) != 0)
3802 exit (1);
3803 hour_GMT0 = localtime (&now)->tm_hour;
3804 unsetenv("TZ");
3805 hour_unset = localtime (&now)->tm_hour;
3806 if (putenv (TZ_PST8) != 0)
3807 exit (1);
3808 if (localtime (&now)->tm_hour == hour_GMT0)
3809 exit (1);
3810 unsetenv("TZ");
3811 if (localtime (&now)->tm_hour != hour_unset)
3812 exit (1);
3813 exit (0);
3814 }]])], emacs_cv_localtime_cache=no, emacs_cv_localtime_cache=yes,
3815 [# If we have tzset, assume the worst when cross-compiling.
3816 emacs_cv_localtime_cache=yes])
3817 else
3818 # If we lack tzset, report that localtime does not cache TZ,
3819 # since we can't invalidate the cache if we don't have tzset.
3820 emacs_cv_localtime_cache=no
3821 fi])dnl
3822 AC_MSG_RESULT($emacs_cv_localtime_cache)
3823 if test $emacs_cv_localtime_cache = yes; then
3824 AC_DEFINE(LOCALTIME_CACHE, 1,
3825 [Define to 1 if localtime caches TZ.])
3826 fi
3827
3828 ok_so_far=yes
3829 AC_CHECK_FUNC(socket, , ok_so_far=no)
3830 if test $ok_so_far = yes; then
3831 AC_CHECK_HEADER(netinet/in.h, , ok_so_far=no)
3832 fi
3833 if test $ok_so_far = yes; then
3834 AC_CHECK_HEADER(arpa/inet.h, , ok_so_far=no)
3835 fi
3836 if test $ok_so_far = yes; then
3837 dnl Fixme: Not used. Should this be HAVE_SOCKETS?
3838 AC_DEFINE(HAVE_INET_SOCKETS, 1,
3839 [Define to 1 if you have inet sockets.])
3840 fi
3841
3842 dnl Check for a Solaris 2.4 vfork bug that Autoconf misses (through 2.69).
3843 dnl This can be removed once we assume Autoconf 2.70.
3844 case $canonical in
3845 *-solaris2.4 | *-solaris2.4.*)
3846 dnl Disable the Autoconf-generated vfork test.
3847 : ${ac_cv_func_vfork_works=no};;
3848 esac
3849
3850 AC_FUNC_FORK
3851
3852 AC_CHECK_FUNCS(snprintf)
3853
3854 dnl Check this late. It depends on what other libraries (lrsvg, Gtk+ etc)
3855 dnl Emacs uses.
3856 XGSELOBJ=
3857 OLDCFLAGS="$CFLAGS"
3858 OLDLIBS="$LIBS"
3859 CFLAGS="$CFLAGS $GFILENOTIFY_CFLAGS"
3860 LIBS="$LIBS $GFILENOTIFY_LIBS"
3861 AC_MSG_CHECKING([whether GLib is linked in])
3862 AC_LINK_IFELSE([AC_LANG_PROGRAM(
3863 [[#include <glib.h>
3864 ]],
3865 [[g_print ("Hello world");]])],
3866 [links_glib=yes],
3867 [links_glib=no])
3868 AC_MSG_RESULT([$links_glib])
3869 if test "${links_glib}" = "yes"; then
3870 AC_DEFINE(HAVE_GLIB, 1, [Define to 1 if GLib is linked in.])
3871 if test "$HAVE_NS" = no;then
3872 XGSELOBJ=xgselect.o
3873 fi
3874 fi
3875 CFLAGS="$OLDCFLAGS"
3876 LIBS="$OLDLIBS"
3877 AC_SUBST(XGSELOBJ)
3878
3879 dnl Adapted from Haible's version.
3880 AC_CACHE_CHECK([for nl_langinfo and CODESET], emacs_cv_langinfo_codeset,
3881 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <langinfo.h>]],
3882 [[char* cs = nl_langinfo(CODESET);]])],
3883 emacs_cv_langinfo_codeset=yes,
3884 emacs_cv_langinfo_codeset=no)
3885 ])
3886 if test $emacs_cv_langinfo_codeset = yes; then
3887 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
3888 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
3889 fi
3890
3891 AC_TYPE_MBSTATE_T
3892
3893 AC_CACHE_CHECK([for C restricted array declarations], emacs_cv_c_restrict_arr,
3894 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[void fred (int x[__restrict]);]], [[]])],
3895 emacs_cv_c_restrict_arr=yes, emacs_cv_c_restrict_arr=no)])
3896 if test "$emacs_cv_c_restrict_arr" = yes; then
3897 AC_DEFINE(__restrict_arr, __restrict,
3898 [Define to compiler's equivalent of C99 restrict keyword in array
3899 declarations. Define as empty for no equivalent.])
3900 fi
3901
3902 dnl Fixme: AC_SYS_POSIX_TERMIOS should probably be used, but it's not clear
3903 dnl how the tty code is related to POSIX and/or other versions of termios.
3904 dnl The following looks like a useful start.
3905 dnl
3906 dnl AC_SYS_POSIX_TERMIOS
3907 dnl if test $ac_cv_sys_posix_termios = yes; then
3908 dnl AC_DEFINE(HAVE_TERMIOS, 1, [Define to 1 if you have POSIX-style functions
3909 dnl and macros for terminal control.])
3910 dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.])
3911 dnl fi
3912
3913 dnl Turned on June 1996 supposing nobody will mind it.
3914 dnl MinGW emulates passwd database, so this feature doesn't make sense there.
3915 if test "${opsys}" != "mingw32"; then
3916 AC_DEFINE(AMPERSAND_FULL_NAME, 1, [Define to use the convention that &
3917 in the full name stands for the login id.])
3918 fi
3919
3920 dnl Every platform that uses configure supports this.
3921 dnl There is a create-lockfiles option you can
3922 dnl customize if you do not want the lock files to be written.
3923 dnl So it is not clear that this #define still needs to exist.
3924 AC_DEFINE(CLASH_DETECTION, 1, [Define if you want lock files to be written,
3925 so that Emacs can tell instantly when you try to modify a file that
3926 someone else has modified in his/her Emacs.])
3927
3928 dnl Everybody supports this, except MS.
3929 dnl Seems like the kind of thing we should be testing for, though.
3930 ## Note: PTYs are broken on darwin <6. Use at your own risk.
3931 if test "${opsys}" != "mingw32"; then
3932 AC_DEFINE(HAVE_PTYS, 1, [Define if the system supports pty devices.])
3933 fi
3934
3935 dnl Everybody supports this, except MS-DOS.
3936 dnl Seems like the kind of thing we should be testing for, though.
3937 dnl Compare with HAVE_INET_SOCKETS (which is unused...) above.
3938 AC_DEFINE(HAVE_SOCKETS, 1, [Define if the system supports
3939 4.2-compatible sockets.])
3940
3941 AH_TEMPLATE(INTERNAL_TERMINAL, [This is substituted when $TERM is "internal".])
3942
3943 AH_TEMPLATE(NULL_DEVICE, [Name of the file to open to get
3944 a null file, or a data sink.])
3945 if test "${opsys}" = "mingw32"; then
3946 AC_DEFINE(NULL_DEVICE, ["NUL:"])
3947 else
3948 AC_DEFINE(NULL_DEVICE, ["/dev/null"])
3949 fi
3950
3951 if test "${opsys}" = "mingw32"; then
3952 SEPCHAR=';'
3953 else
3954 SEPCHAR=':'
3955 fi
3956 AC_DEFINE_UNQUOTED(SEPCHAR, ['$SEPCHAR'], [Character that separates PATH elements.])
3957 dnl This is for MinGW, and is used in test/automated/Makefile.in.
3958 dnl The MSYS Bash has heuristics for replacing ':' with ';' when it
3959 dnl decides that a command-line argument to be passed to a MinGW program
3960 dnl is a PATH-style list of directories. But that heuristics plays it
3961 dnl safe, and only does the replacement when it is _absolutely_ sure it
3962 dnl sees a colon-separated list of file names; e.g. ":." is left alone,
3963 dnl which breaks in-tree builds. So we do this manually instead.
3964 dnl Note that we cannot rely on PATH_SEPARATOR, as that one will always
3965 dnl be computed as ':' in MSYS Bash.
3966 AC_SUBST(SEPCHAR)
3967
3968 dnl Everybody supports this, except MS-DOS.
3969 AC_DEFINE(subprocesses, 1, [Define to enable asynchronous subprocesses.])
3970
3971 AC_DEFINE(USER_FULL_NAME, [pw->pw_gecos], [How to get a user's full name.])
3972
3973
3974 AC_DEFINE(DIRECTORY_SEP, ['/'],
3975 [Character that separates directories in a file name.])
3976
3977 if test "${opsys}" = "mingw32"; then
3978 AC_DEFINE(IS_DEVICE_SEP(_c_), [((_c_) == ':')],
3979 [Returns true if character is a device separator.])
3980
3981 AC_DEFINE(IS_DIRECTORY_SEP(_c_), [((_c_) == '/' || (_c_) == '\\')],
3982 [Returns true if character is a directory separator.])
3983
3984 AC_DEFINE(IS_ANY_SEP(_c_), [(IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP(_c_))],
3985 [Returns true if character is any form of separator.])
3986 else
3987 AC_DEFINE(IS_DEVICE_SEP(_c_), 0,
3988 [Returns true if character is a device separator.])
3989
3990 AC_DEFINE(IS_DIRECTORY_SEP(_c_), [((_c_) == DIRECTORY_SEP)],
3991 [Returns true if character is a directory separator.])
3992
3993 AC_DEFINE(IS_ANY_SEP(_c_), [(IS_DIRECTORY_SEP (_c_))],
3994 [Returns true if character is any form of separator.])
3995 fi
3996
3997 AH_TEMPLATE(NO_EDITRES, [Define if XEditRes should not be used.])
3998
3999 case $opsys in
4000 aix4-2)
4001 dnl Unfortunately without libXmu we cannot support EditRes.
4002 if test x$ac_cv_lib_Xmu_XmuConvertStandardSelection != xyes; then
4003 AC_DEFINE(NO_EDITRES, 1)
4004 fi
4005 ;;
4006
4007 hpux*)
4008 dnl Assar Westerlund <assar@sics.se> says this is necessary for
4009 dnl HP-UX 10.20, and that it works for HP-UX 0 as well.
4010 AC_DEFINE(NO_EDITRES, 1)
4011 ;;
4012 esac
4013
4014
4015 case $opsys in
4016 irix6-5 | sol2* | unixware )
4017 dnl Some SVr4s don't define NSIG in sys/signal.h for ANSI environments;
4018 dnl instead, there's a system variable _sys_nsig. Unfortunately, we
4019 dnl need the constant to dimension an array. So wire in the appropriate
4020 dnl value here.
4021 AC_DEFINE(NSIG_MINIMUM, 32, [Minimum value of NSIG.])
4022 ;;
4023 esac
4024
4025 emacs_broken_SIGIO=no
4026
4027 case $opsys in
4028 dnl SIGIO exists, but the feature doesn't work in the way Emacs needs.
4029 dnl See eg <http://article.gmane.org/gmane.os.openbsd.ports/46831>.
4030 hpux* | irix6-5 | openbsd | sol2* | unixware )
4031 emacs_broken_SIGIO=yes
4032 ;;
4033
4034 aix4-2)
4035 dnl On AIX Emacs uses the gmalloc.c malloc implementation. But given
4036 dnl the way this system works, libc functions that return malloced
4037 dnl memory use the libc malloc implementation. Calling xfree or
4038 dnl xrealloc on the results of such functions results in a crash.
4039 dnl
4040 dnl One solution for this could be to define SYSTEM_MALLOC in configure,
4041 dnl but that does not currently work on this system.
4042 dnl
4043 dnl It is possible to completely override the malloc implementation on
4044 dnl AIX, but that involves putting the malloc functions in a shared
4045 dnl library and setting the MALLOCTYPE environment variable to point to
4046 dnl that shared library.
4047 dnl
4048 dnl Emacs currently calls xrealloc on the results of get_current_dir name,
4049 dnl to avoid a crash just use the Emacs implementation for that function.
4050 dnl
4051 dnl FIXME We could change the AC_CHECK_FUNCS call near the start
4052 dnl of this file, so that we do not check for get_current_dir_name
4053 dnl on AIX. But that might be fragile if something else ends
4054 dnl up testing for get_current_dir_name as a dependency.
4055 AC_DEFINE(BROKEN_GET_CURRENT_DIR_NAME, 1, [Define if
4056 get_current_dir_name should not be used.])
4057 ;;
4058
4059 freebsd)
4060 dnl Circumvent a bug in FreeBSD. In the following sequence of
4061 dnl writes/reads on a PTY, read(2) returns bogus data:
4062 dnl
4063 dnl write(2) 1022 bytes
4064 dnl write(2) 954 bytes, get EAGAIN
4065 dnl read(2) 1024 bytes in process_read_output
4066 dnl read(2) 11 bytes in process_read_output
4067 dnl
4068 dnl That is, read(2) returns more bytes than have ever been written
4069 dnl successfully. The 1033 bytes read are the 1022 bytes written
4070 dnl successfully after processing (for example with CRs added if the
4071 dnl terminal is set up that way which it is here). The same bytes will
4072 dnl be seen again in a later read(2), without the CRs.
4073 AC_DEFINE(BROKEN_PTY_READ_AFTER_EAGAIN, 1, [Define on FreeBSD to
4074 work around an issue when reading from a PTY.])
4075 ;;
4076 esac
4077
4078 case $opsys in
4079 gnu-* | sol2-10 )
4080 dnl FIXME Can't we test if this exists (eg /proc/$$)?
4081 AC_DEFINE(HAVE_PROCFS, 1, [Define if you have the /proc filesystem.])
4082 ;;
4083 esac
4084
4085 case $opsys in
4086 darwin | dragonfly | freebsd | netbsd | openbsd )
4087 AC_DEFINE(DONT_REOPEN_PTY, 1, [Define if process.c does not need to
4088 close a pty to make it a controlling terminal (it is already a
4089 controlling terminal of the subprocess, because we did ioctl TIOCSCTTY).])
4090 ;;
4091 esac
4092
4093 dnl FIXME Surely we can test for this rather than hard-code it.
4094 case $opsys in
4095 netbsd | openbsd) sound_device="/dev/audio" ;;
4096 *) sound_device="/dev/dsp" ;;
4097 esac
4098
4099 dnl Used in sound.c
4100 AC_DEFINE_UNQUOTED(DEFAULT_SOUND_DEVICE, "$sound_device",
4101 [Name of the default sound device.])
4102
4103
4104 dnl Emacs can read input using SIGIO and buffering characters itself,
4105 dnl or using CBREAK mode and making C-g cause SIGINT.
4106 dnl The choice is controlled by the variable interrupt_input.
4107 dnl
4108 dnl Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO)
4109 dnl
4110 dnl Emacs uses the presence of the USABLE_SIGIO macro
4111 dnl to indicate whether or not signal-driven I/O is possible. It uses
4112 dnl INTERRUPT_INPUT to decide whether to use it by default.
4113 dnl
4114 dnl SIGIO can be used only on systems that implement it (4.2 and 4.3).
4115 dnl CBREAK mode has two disadvantages
4116 dnl 1) At least in 4.2, it is impossible to handle the Meta key properly.
4117 dnl I hear that in system V this problem does not exist.
4118 dnl 2) Control-G causes output to be discarded.
4119 dnl I do not know whether this can be fixed in system V.
4120 dnl
4121 dnl Another method of doing input is planned but not implemented.
4122 dnl It would have Emacs fork off a separate process
4123 dnl to read the input and send it to the true Emacs process
4124 dnl through a pipe.
4125 case $opsys in
4126 darwin | gnu-linux | gnu-kfreebsd )
4127 AC_DEFINE(INTERRUPT_INPUT, 1, [Define to read input using SIGIO.])
4128 ;;
4129 esac
4130
4131
4132 dnl If the system's imake configuration file defines `NeedWidePrototypes'
4133 dnl as `NO', we must define NARROWPROTO manually. Such a define is
4134 dnl generated in the Makefile generated by `xmkmf'. If we don't define
4135 dnl NARROWPROTO, we will see the wrong function prototypes for X functions
4136 dnl taking float or double parameters.
4137 case $opsys in
4138 cygwin|gnu|gnu-linux|gnu-kfreebsd|irix6-5|freebsd|netbsd|openbsd)
4139 AC_DEFINE(NARROWPROTO, 1, [Define if system's imake configuration
4140 file defines `NeedWidePrototypes' as `NO'.])
4141 ;;
4142 esac
4143
4144
4145 dnl Used in process.c, this must be a loop, even if it only runs once.
4146 dnl (Except on SGI; see below. Take that, clarity and consistency!)
4147 AH_TEMPLATE(PTY_ITERATION, [How to iterate over PTYs.])
4148 dnl Only used if !PTY_ITERATION. Iterate from FIRST_PTY_LETTER to z,
4149 dnl trying suffixes 0-16.
4150 AH_TEMPLATE(FIRST_PTY_LETTER, [Letter to use in finding device name of
4151 first PTY, if PTYs are supported.])
4152 AH_TEMPLATE(PTY_OPEN, [How to open a PTY, if non-standard.])
4153 AH_TEMPLATE(PTY_NAME_SPRINTF, [How to get the device name of the control
4154 end of a PTY, if non-standard.])
4155 AH_TEMPLATE(PTY_TTY_NAME_SPRINTF, [How to get device name of the tty
4156 end of a PTY, if non-standard.])
4157
4158 case $opsys in
4159 aix4-2 )
4160 AC_DEFINE(PTY_ITERATION, [int c; for (c = 0; !c ; c++)])
4161 dnl You allocate a pty by opening /dev/ptc to get the master side.
4162 dnl To get the name of the slave side, you just ttyname() the master side.
4163 AC_DEFINE(PTY_NAME_SPRINTF, [strcpy (pty_name, "/dev/ptc");])
4164 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [strcpy (pty_name, ttyname (fd));])
4165 ;;
4166
4167 cygwin )
4168 AC_DEFINE(PTY_ITERATION, [int i; for (i = 0; i < 1; i++)])
4169 dnl multi-line AC_DEFINEs are hard. :(
4170 AC_DEFINE(PTY_OPEN, [ do { int dummy; sigset_t blocked, procmask; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, &procmask); if (-1 == openpty (&fd, &dummy, pty_name, 0, 0)) fd = -1; pthread_sigmask (SIG_SETMASK, &procmask, 0); if (fd >= 0) emacs_close (dummy); } while (false)])
4171 AC_DEFINE(PTY_NAME_SPRINTF, [])
4172 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [])
4173 ;;
4174
4175 dnl FIXME? Maybe use same as freebsd - see bug#12040.
4176 darwin )
4177 AC_DEFINE(PTY_ITERATION, [int i; for (i = 0; i < 1; i++)])
4178 dnl Not used, because PTY_ITERATION is defined.
4179 AC_DEFINE(FIRST_PTY_LETTER, ['p'])
4180 dnl Note that openpty may fork via grantpt on Mac OS X 10.4/Darwin 8.
4181 dnl But we don't have to block SIGCHLD because it is blocked in the
4182 dnl implementation of grantpt.
4183 AC_DEFINE(PTY_OPEN, [ do { int slave; if (openpty (&fd, &slave, pty_name, NULL, NULL) == -1) fd = -1; else emacs_close (slave); } while (false)])
4184 AC_DEFINE(PTY_NAME_SPRINTF, [])
4185 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [])
4186 ;;
4187
4188 gnu | openbsd )
4189 AC_DEFINE(FIRST_PTY_LETTER, ['p'])
4190 ;;
4191
4192 gnu-linux | gnu-kfreebsd | dragonfly | freebsd | netbsd )
4193 dnl if HAVE_GRANTPT
4194 if test "x$ac_cv_func_grantpt" = xyes; then
4195 AC_DEFINE(UNIX98_PTYS, 1, [Define if the system has Unix98 PTYs.])
4196 AC_DEFINE(PTY_ITERATION, [int i; for (i = 0; i < 1; i++)])
4197 dnl Note that grantpt and unlockpt may fork. We must block SIGCHLD
4198 dnl to prevent sigchld_handler from intercepting the child's death.
4199 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [{ char *ptyname = 0; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); if (grantpt (fd) != -1 && unlockpt (fd) != -1) ptyname = ptsname(fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (!ptyname) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }])
4200 dnl if HAVE_POSIX_OPENPT
4201 if test "x$ac_cv_func_posix_openpt" = xyes; then
4202 AC_DEFINE(PTY_OPEN, [do { fd = posix_openpt (O_RDWR | O_CLOEXEC | O_NOCTTY); if (fd < 0 && errno == EINVAL) fd = posix_openpt (O_RDWR | O_NOCTTY); } while (false)])
4203 AC_DEFINE(PTY_NAME_SPRINTF, [])
4204 dnl if HAVE_GETPT
4205 elif test "x$ac_cv_func_getpt" = xyes; then
4206 AC_DEFINE(PTY_OPEN, [fd = getpt ()])
4207 AC_DEFINE(PTY_NAME_SPRINTF, [])
4208 else
4209 AC_DEFINE(PTY_NAME_SPRINTF, [strcpy (pty_name, "/dev/ptmx");])
4210 fi
4211 else
4212 AC_DEFINE(FIRST_PTY_LETTER, ['p'])
4213 fi
4214 ;;
4215
4216 hpux*)
4217 AC_DEFINE(FIRST_PTY_LETTER, ['p'])
4218 AC_DEFINE(PTY_NAME_SPRINTF, [sprintf (pty_name, "/dev/ptym/pty%c%x", c, i);])
4219 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [sprintf (pty_name, "/dev/pty/tty%c%x", c, i);])
4220 ;;
4221
4222 irix6-5 )
4223 dnl It looks like this cannot be right, because it is not a loop.
4224 dnl However, process.c actually does this:
4225 dnl # ifndef __sgi
4226 dnl continue;
4227 dnl # else
4228 dnl return -1;
4229 dnl # endif
4230 dnl which presumably makes it OK, since irix == sgi (?).
4231 dnl FIXME it seems like this special treatment is unnecessary?
4232 dnl Why can't irix use a single-trip loop like eg cygwin?
4233 AC_DEFINE(PTY_ITERATION, [])
4234 dnl Not used, because PTY_ITERATION is defined.
4235 AC_DEFINE(FIRST_PTY_LETTER, ['q'])
4236 AC_DEFINE(PTY_OPEN, [ { struct sigaction ocstat, cstat; struct stat stb; char * name; sigemptyset(&cstat.sa_mask); cstat.sa_handler = SIG_DFL; cstat.sa_flags = 0; sigaction(SIGCHLD, &cstat, &ocstat); name = _getpty (&fd, O_RDWR | O_NDELAY, 0600, 0); sigaction(SIGCHLD, &ocstat, (struct sigaction *)0); if (name == 0) return -1; if (fd < 0) return -1; if (fstat (fd, &stb) < 0) return -1; strcpy (pty_name, name); }])
4237 dnl No need to get the pty name at all.
4238 AC_DEFINE(PTY_NAME_SPRINTF, [])
4239 dnl No need to use sprintf to get the tty name--we get that from _getpty.
4240 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [])
4241 ;;
4242
4243 sol2* )
4244 dnl On SysVr4, grantpt(3) forks a subprocess, so keep sigchld_handler()
4245 dnl from intercepting that death. If any child but grantpt's should die
4246 dnl within, it should be caught after sigrelse(2).
4247 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [{ char *ptsname (int), *ptyname; int grantpt_result; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); grantpt_result = grantpt (fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (grantpt_result == -1 || unlockpt (fd) == -1 || !(ptyname = ptsname (fd))) { emacs_close (fd); return -1; } snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }])
4248 ;;
4249
4250 unixware )
4251 dnl Comments are as per sol2*.
4252 AC_DEFINE(PTY_TTY_NAME_SPRINTF, [{ char *ptsname (int), *ptyname; int grantpt_result; sigset_t blocked; sigemptyset (&blocked); sigaddset (&blocked, SIGCHLD); pthread_sigmask (SIG_BLOCK, &blocked, 0); grantpt_result = grantpt (fd); pthread_sigmask (SIG_UNBLOCK, &blocked, 0); if (grantpt_result == -1) fatal("could not grant slave pty"); if (unlockpt(fd) == -1) fatal("could not unlock slave pty"); if (!(ptyname = ptsname(fd))) fatal ("could not enable slave pty"); snprintf (pty_name, PTY_NAME_SIZE, "%s", ptyname); }])
4253 ;;
4254 esac
4255
4256
4257 case $opsys in
4258 sol2* | unixware )
4259 dnl This change means that we don't loop through allocate_pty too
4260 dnl many times in the (rare) event of a failure.
4261 AC_DEFINE(FIRST_PTY_LETTER, ['z'])
4262 AC_DEFINE(PTY_NAME_SPRINTF, [strcpy (pty_name, "/dev/ptmx");])
4263 dnl Push various streams modules onto a PTY channel. Used in process.c.
4264 AC_DEFINE(SETUP_SLAVE_PTY, [if (ioctl (xforkin, I_PUSH, "ptem") == -1) fatal ("ioctl I_PUSH ptem"); if (ioctl (xforkin, I_PUSH, "ldterm") == -1) fatal ("ioctl I_PUSH ldterm"); if (ioctl (xforkin, I_PUSH, "ttcompat") == -1) fatal ("ioctl I_PUSH ttcompat");], [How to set up a slave PTY, if needed.])
4265 ;;
4266 esac
4267
4268
4269 AH_TEMPLATE(SIGNALS_VIA_CHARACTERS, [Make process_send_signal work by
4270 "typing" a signal character on the pty.])
4271
4272 case $opsys in
4273 dnl Perry Smith <pedz@ddivt1.austin.ibm.com> says this is correct for AIX.
4274 dnl thomas@mathematik.uni-bremen.de says this is needed for IRIX.
4275 aix4-2 | cygwin | gnu | irix6-5 | dragonfly | freebsd | netbsd | openbsd | darwin )
4276 AC_DEFINE(SIGNALS_VIA_CHARACTERS, 1)
4277 ;;
4278
4279 dnl 21 Jun 06: Eric Hanchrow <offby1@blarg.net> says this works.
4280 dnl FIXME Does gnu-kfreebsd have linux/version.h? It seems unlikely...
4281 gnu-linux | gnu-kfreebsd )
4282
4283 AC_MSG_CHECKING([for signals via characters])
4284 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
4285 #include <linux/version.h>
4286 #if LINUX_VERSION_CODE < 0x20400
4287 # error "Linux version too old"
4288 #endif
4289 ]], [[]])], emacs_signals_via_chars=yes, emacs_signals_via_chars=no)
4290
4291 AC_MSG_RESULT([$emacs_signals_via_chars])
4292 test $emacs_signals_via_chars = yes && AC_DEFINE(SIGNALS_VIA_CHARACTERS, 1)
4293 ;;
4294 esac
4295
4296
4297 dnl Used in lisp.h, emacs.c, vm-limit.c
4298 dnl NEWS.18 describes this as "a number which contains
4299 dnl the high bits to be inclusive or'ed with pointers that are unpacked."
4300 AH_TEMPLATE(DATA_SEG_BITS, [Extra bits to be or'd in with any pointers
4301 stored in a Lisp_Object.])
4302 dnl if Emacs uses fewer than 32 bits for the value field of a LISP_OBJECT.
4303
4304 case $opsys in
4305 aix*)
4306 dnl This works with 32-bit executables; Emacs doesn't support 64-bit.
4307 AC_DEFINE(DATA_SEG_BITS, [0x20000000])
4308 ;;
4309 hpux*)
4310 dnl The data segment on this machine always starts at address 0x40000000.
4311 AC_DEFINE(DATA_SEG_BITS, [0x40000000])
4312 ;;
4313 irix6-5)
4314 AC_DEFINE(DATA_SEG_BITS, [0x10000000])
4315 ;;
4316 esac
4317
4318
4319 AH_TEMPLATE(TAB3, [Undocumented.])
4320
4321 case $opsys in
4322 darwin) AC_DEFINE(TAB3, OXTABS) ;;
4323
4324 gnu | dragonfly | freebsd | netbsd | openbsd )
4325 AC_DEFINE(TABDLY, OXTABS, [Undocumented.])
4326 AC_DEFINE(TAB3, OXTABS)
4327 ;;
4328
4329 gnu-linux | gnu-kfreebsd )
4330 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
4331 #ifndef __ia64__
4332 # error "not ia64"
4333 #endif
4334 ]], [[]])], AC_DEFINE(GC_MARK_SECONDARY_STACK(),
4335 [do { extern void *__libc_ia64_register_backing_store_base; __builtin_ia64_flushrs (); mark_memory (__libc_ia64_register_backing_store_base, __builtin_ia64_bsp ());} while (false)],
4336 [Mark a secondary stack, like the register stack on the ia64.]), [])
4337 ;;
4338
4339 hpux*)
4340 AC_DEFINE(RUN_TIME_REMAP, 1, [Define if emacs.c needs to call
4341 run_time_remap; for HPUX.])
4342 ;;
4343 esac
4344
4345
4346 dnl This won't be used automatically yet. We also need to know, at least,
4347 dnl that the stack is continuous.
4348 AH_TEMPLATE(GC_SETJMP_WORKS, [Define if setjmp is known to save all
4349 registers relevant for conservative garbage collection in the jmp_buf.])
4350
4351
4352 case $opsys in
4353 dnl Not all the architectures are tested, but there are Debian packages
4354 dnl for SCM and/or Guile on them, so the technique must work. See also
4355 dnl comments in alloc.c concerning setjmp and gcc.
4356 dnl Fixme: it's probably safe to just use the GCC conditional below.
4357 gnu-linux | gnu-kfreebsd )
4358 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
4359 #if defined __i386__ || defined __sparc__ || defined __mc68000__ \
4360 || defined __alpha__ || defined __mips__ || defined __s390__ \
4361 || defined __arm__ || defined __powerpc__ || defined __amd64__ \
4362 || defined __ia64__ || defined __sh__
4363 /* ok */
4364 #else
4365 # error "setjmp not known to work on this arch"
4366 #endif
4367 ]], [[]])], AC_DEFINE(GC_SETJMP_WORKS, 1))
4368 ;;
4369 esac
4370
4371
4372 if test x$GCC = xyes; then
4373 dnl GC_SETJMP_WORKS is nearly always appropriate for GCC.
4374 AC_DEFINE(GC_SETJMP_WORKS, 1)
4375 else
4376 case $opsys in
4377 dnl irix: Tested on Irix 6.5. SCM worked on earlier versions.
4378 dragonfly | freebsd | netbsd | openbsd | irix6-5 | sol2* )
4379 AC_DEFINE(GC_SETJMP_WORKS, 1)
4380 ;;
4381 esac
4382 fi dnl GCC?
4383
4384 dnl In a weird quirk, MS runtime uses _setjmp and longjmp.
4385 AC_CACHE_CHECK([for _setjmp], [emacs_cv_func__setjmp],
4386 [AC_LINK_IFELSE(
4387 [AC_LANG_PROGRAM(
4388 [[#include <setjmp.h>
4389 #ifdef __MINGW32__
4390 # define _longjmp longjmp
4391 #endif
4392 ]],
4393 [[jmp_buf j;
4394 if (! _setjmp (j))
4395 _longjmp (j, 1);]])],
4396 [emacs_cv_func__setjmp=yes],
4397 [emacs_cv_func__setjmp=no])])
4398 if test $emacs_cv_func__setjmp = yes; then
4399 AC_DEFINE([HAVE__SETJMP], 1, [Define to 1 if _setjmp and _longjmp work.])
4400 else
4401 AC_CACHE_CHECK([for sigsetjmp], [emacs_cv_func_sigsetjmp],
4402 [AC_LINK_IFELSE(
4403 [AC_LANG_PROGRAM(
4404 [[#include <setjmp.h>
4405 ]],
4406 [[sigjmp_buf j;
4407 if (! sigsetjmp (j, 1))
4408 siglongjmp (j, 1);]])],
4409 [emacs_cv_func_sigsetjmp=yes],
4410 [emacs_cv_func_sigsetjmp=no])])
4411 if test $emacs_cv_func_sigsetjmp = yes; then
4412 AC_DEFINE([HAVE_SIGSETJMP], 1,
4413 [Define to 1 if sigsetjmp and siglongjmp work.
4414 The value of this symbol is irrelevant if HAVE__SETJMP is defined.])
4415 fi
4416 fi
4417
4418 case $opsys in
4419 sol2* | unixware )
4420 dnl TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY
4421 dnl subprocesses the usual way. But TIOCSIGNAL does work for PTYs,
4422 dnl and this is all we need.
4423 AC_DEFINE(TIOCSIGSEND, TIOCSIGNAL, [Some platforms redefine this.])
4424 ;;
4425 esac
4426
4427
4428 case $opsys in
4429 hpux* | sol2* )
4430 dnl Used in xfaces.c.
4431 AC_DEFINE(XOS_NEEDS_TIME_H, 1, [Compensate for a bug in Xos.h on
4432 some systems, where it requires time.h.])
4433 ;;
4434 esac
4435
4436
4437 dnl Define symbols to identify the version of Unix this is.
4438 dnl Define all the symbols that apply correctly.
4439 AH_TEMPLATE(DOS_NT, [Define if the system is MS DOS or MS Windows.])
4440 AH_TEMPLATE(MSDOS, [Define if the system is MS DOS.])
4441 AH_TEMPLATE(USG, [Define if the system is compatible with System III.])
4442 AH_TEMPLATE(USG5_4, [Define if the system is compatible with System V Release 4.])
4443
4444 case $opsys in
4445 aix4-2)
4446 AC_DEFINE(USG, [])
4447 dnl This symbol should be defined on AIX Version 3 ???????
4448 AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
4449 #ifndef _AIX
4450 # error "_AIX not defined"
4451 #endif
4452 ]], [[]])], [], AC_DEFINE(_AIX, [], [Define if the system is AIX.]))
4453 ;;
4454
4455 cygwin)
4456 AC_DEFINE(CYGWIN, 1, [Define if the system is Cygwin.])
4457 ;;
4458
4459 darwin)
4460 dnl Not __APPLE__, as this may not be defined on non-OSX Darwin.
4461 dnl Not DARWIN, because Panther and lower CoreFoundation.h use DARWIN to
4462 dnl distinguish OS X from pure Darwin.
4463 AC_DEFINE(DARWIN_OS, [], [Define if the system is Darwin.])
4464 ;;
4465
4466 gnu-linux | gnu-kfreebsd )
4467 AC_DEFINE(USG, [])
4468 AC_DEFINE(GNU_LINUX, [], [Define if ths system is compatible with GNU/Linux.])
4469 ;;
4470
4471 hpux*)
4472 AC_DEFINE(USG, [])
4473 AC_DEFINE(HPUX, [], [Define if the system is HPUX.])
4474 ;;
4475
4476 irix6-5)
4477 AC_DEFINE(USG, [])
4478 AC_DEFINE(USG5_4, [])
4479 AC_DEFINE(IRIX6_5, [], [Define if the system is IRIX.])
4480 ;;
4481
4482 mingw32)
4483 AC_DEFINE(DOS_NT, [])
4484 AC_DEFINE(WINDOWSNT, 1, [Define if compiling for native MS Windows.])
4485 if test "x$ac_enable_checking" != "x" ; then
4486 AC_DEFINE(EMACSDEBUG, 1, [Define to 1 to enable w32 debug facilities.])
4487 fi
4488 ;;
4489
4490 sol2*)
4491 AC_DEFINE(USG, [])
4492 AC_DEFINE(USG5_4, [])
4493 AC_DEFINE(SOLARIS2, [], [Define if the system is Solaris.])
4494 ;;
4495
4496 unixware)
4497 AC_DEFINE(USG, [])
4498 AC_DEFINE(USG5_4, [])
4499 ;;
4500 esac
4501
4502 AC_CACHE_CHECK([for usable FIONREAD], [emacs_cv_usable_FIONREAD],
4503 [case $opsys in
4504 aix4-2)
4505 dnl BUILD 9008 - FIONREAD problem still exists in X-Windows.
4506 emacs_cv_usable_FIONREAD=no
4507 ;;
4508
4509 mingw32)
4510 emacs_cv_usable_FIONREAD=yes
4511 ;;
4512
4513 *)
4514 AC_COMPILE_IFELSE(
4515 [AC_LANG_PROGRAM([[#include <sys/types.h>
4516 #include <sys/ioctl.h>
4517 #ifdef USG5_4
4518 # include <sys/filio.h>
4519 #endif
4520 ]],
4521 [[int foo = ioctl (0, FIONREAD, &foo);]])],
4522 [emacs_cv_usable_FIONREAD=yes],
4523 [emacs_cv_usable_FIONREAD=no])
4524 ;;
4525 esac])
4526 if test $emacs_cv_usable_FIONREAD = yes; then
4527 AC_DEFINE([USABLE_FIONREAD], [1], [Define to 1 if FIONREAD is usable.])
4528
4529 if test $emacs_broken_SIGIO = no; then
4530 AC_CACHE_CHECK([for usable SIGIO], [emacs_cv_usable_SIGIO],
4531 [AC_COMPILE_IFELSE(
4532 [AC_LANG_PROGRAM([[#include <fcntl.h>
4533 #include <signal.h>
4534 ]],
4535 [[int foo = SIGIO | F_SETFL | FASYNC;]])],
4536 [emacs_cv_usable_SIGIO=yes],
4537 [emacs_cv_usable_SIGIO=no])],
4538 [emacs_cv_usable_SIGIO=yes],
4539 [emacs_cv_usable_SIGIO=no])
4540 if test $emacs_cv_usable_SIGIO = yes; then
4541 AC_DEFINE([USABLE_SIGIO], [1], [Define to 1 if SIGIO is usable.])
4542 fi
4543 fi
4544 fi
4545
4546
4547 case $opsys in
4548 dnl Emacs supplies its own malloc, but glib calls posix_memalign,
4549 dnl and on Cygwin prior to version 1.7.24 that becomes the
4550 dnl Cygwin-supplied posix_memalign. As malloc is not the Cygwin
4551 dnl malloc, the Cygwin posix_memalign always returns ENOSYS. A
4552 dnl workaround is to set G_SLICE=always-malloc. This is no longer
4553 dnl needed starting with cygwin-1.7.24, and it is no longer
4554 dnl effective starting with glib-2.36. */
4555 cygwin)
4556 AC_DEFINE(G_SLICE_ALWAYS_MALLOC, 1, [Define to set the
4557 G_SLICE environment variable to "always-malloc" at startup.])
4558 ;;
4559
4560 hpux11)
4561 dnl It works to open the pty's tty in the parent (Emacs), then
4562 dnl close and reopen it in the child.
4563 AC_DEFINE(USG_SUBTTY_WORKS, 1, [Define for USG systems where it
4564 works to open a pty's tty in the parent process, then close and
4565 reopen it in the child.])
4566 ;;
4567
4568 irix6-5)
4569 AC_DEFINE(PREFER_VSUSP, 1, [Define if process_send_signal should
4570 use VSUSP instead of VSWTCH.])
4571 ;;
4572
4573 sol2-10)
4574 AC_DEFINE(_STRUCTURED_PROC, 1, [Needed for system_process_attributes
4575 on Solaris.])
4576 ;;
4577 esac
4578
4579 # Set up the CFLAGS for real compilation, so we can substitute it.
4580 CFLAGS="$REAL_CFLAGS"
4581 CPPFLAGS="$REAL_CPPFLAGS"
4582
4583 ## Hack to detect a buggy GCC version.
4584 if test "x$GCC" = xyes \
4585 && test x"`$CC --version 2> /dev/null | grep 'gcc.* 4.5.0'`" != x \
4586 && test x"`echo $CFLAGS | grep '\-O@<:@23@:>@'`" != x \
4587 && test x"`echo $CFLAGS | grep '\-fno-optimize-sibling-calls'`" = x; then
4588 AC_MSG_ERROR([GCC 4.5.0 has problems compiling Emacs; see etc/PROBLEMS'.])
4589 fi
4590
4591 version=$PACKAGE_VERSION
4592
4593 copyright="Copyright (C) 2014 Free Software Foundation, Inc."
4594 AC_DEFINE_UNQUOTED(COPYRIGHT, ["$copyright"],
4595 [Short copyright string for this version of Emacs.])
4596 AC_SUBST(copyright)
4597
4598 ### Specify what sort of things we'll be editing into Makefile and config.h.
4599 ### Use configuration here uncanonicalized to avoid exceeding size limits.
4600 AC_SUBST(version)
4601 AC_SUBST(configuration)
4602 ## Unused?
4603 AC_SUBST(canonical)
4604 AC_SUBST(srcdir)
4605 AC_SUBST(prefix)
4606 AC_SUBST(exec_prefix)
4607 AC_SUBST(bindir)
4608 AC_SUBST(datadir)
4609 AC_SUBST(sharedstatedir)
4610 AC_SUBST(libexecdir)
4611 AC_SUBST(mandir)
4612 AC_SUBST(infodir)
4613 AC_SUBST(lispdir)
4614 AC_SUBST(standardlisppath)
4615 AC_SUBST(locallisppath)
4616 AC_SUBST(lisppath)
4617 AC_SUBST(x_default_search_path)
4618 AC_SUBST(etcdir)
4619 AC_SUBST(archlibdir)
4620 AC_SUBST(etcdocdir)
4621 AC_SUBST(bitmapdir)
4622 AC_SUBST(gamedir)
4623 AC_SUBST(gameuser)
4624 ## FIXME? Nothing uses @LD_SWITCH_X_SITE@.
4625 ## src/Makefile.in did add LD_SWITCH_X_SITE (as a cpp define) to the
4626 ## end of LIBX_BASE, but nothing ever set it.
4627 AC_SUBST(LD_SWITCH_X_SITE)
4628 AC_SUBST(C_SWITCH_X_SITE)
4629 AC_SUBST(GNUSTEP_CFLAGS)
4630 AC_SUBST(CFLAGS)
4631 ## Used in lwlib/Makefile.in.
4632 AC_SUBST(X_TOOLKIT_TYPE)
4633 AC_SUBST(ns_appdir)
4634 AC_SUBST(ns_appbindir)
4635 AC_SUBST(ns_appresdir)
4636 AC_SUBST(ns_appsrc)
4637 AC_SUBST(GNU_OBJC_CFLAGS)
4638 AC_SUBST(OTHER_FILES)
4639
4640 if test -n "${term_header}"; then
4641 AC_DEFINE_UNQUOTED(TERM_HEADER, "${term_header}",
4642 [Define to the header for the built-in window system.])
4643 fi
4644
4645 AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}",
4646 [Define to the canonical Emacs configuration name.])
4647 AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${emacs_config_options}",
4648 [Define to the options passed to configure.])
4649 AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure
4650 define this to include extra configuration information.])
4651
4652 case $opsys in
4653 mingw32)
4654 AC_DEFINE(config_opsysfile, <ms-w32.h>, [])
4655 ;;
4656 esac
4657
4658 XMENU_OBJ=
4659 XOBJ=
4660 FONT_OBJ=
4661 if test "${HAVE_X_WINDOWS}" = "yes" ; then
4662 AC_DEFINE(HAVE_X_WINDOWS, 1,
4663 [Define to 1 if you want to use the X window system.])
4664 XMENU_OBJ=xmenu.o
4665 XOBJ="xterm.o xfns.o xselect.o xrdb.o xsmfns.o xsettings.o"
4666 FONT_OBJ=xfont.o
4667 if test "$HAVE_XFT" = "yes"; then
4668 FONT_OBJ="$FONT_OBJ ftfont.o xftfont.o ftxfont.o"
4669 elif test "$HAVE_FREETYPE" = "yes"; then
4670 FONT_OBJ="$FONT_OBJ ftfont.o ftxfont.o"
4671 fi
4672 AC_SUBST(FONT_OBJ)
4673 fi
4674 AC_SUBST(XMENU_OBJ)
4675 AC_SUBST(XOBJ)
4676 AC_SUBST(FONT_OBJ)
4677
4678 WIDGET_OBJ=
4679 MOTIF_LIBW=
4680 if test "${USE_X_TOOLKIT}" != "none" ; then
4681 WIDGET_OBJ=widget.o
4682 AC_DEFINE(USE_X_TOOLKIT, 1, [Define to 1 if using an X toolkit.])
4683 if test "${USE_X_TOOLKIT}" = "LUCID"; then
4684 AC_DEFINE(USE_LUCID, 1, [Define to 1 if using the Lucid X toolkit.])
4685 elif test "${USE_X_TOOLKIT}" = "MOTIF"; then
4686 AC_DEFINE(USE_MOTIF, 1, [Define to 1 if using the Motif X toolkit.])
4687 MOTIF_LIBW=-lXm
4688 case "$opsys" in
4689 gnu-linux)
4690 ## Paul Abrahams <abrahams at equinox.shaysnet.com> says this is needed.
4691 MOTIF_LIBW="$MOTIF_LIBW -lXpm"
4692 ;;
4693
4694 unixware)
4695 ## Richard Anthony Ryan <ryanr at ellingtn.ftc.nrcs.usda.gov>
4696 ## says -lXimp is needed in UNIX_SV ... 4.2 1.1.2.
4697 MOTIF_LIBW="MOTIF_LIBW -lXimp"
4698 ;;
4699
4700 aix4-2)
4701 ## olson@mcs.anl.gov says -li18n is needed by -lXm.
4702 MOTIF_LIBW="$MOTIF_LIBW -li18n"
4703 ;;
4704 esac
4705 MOTIF_LIBW="$MOTIF_LIBW $LIBXP"
4706 fi
4707 fi
4708 AC_SUBST(WIDGET_OBJ)
4709
4710 TOOLKIT_LIBW=
4711 case "$USE_X_TOOLKIT" in
4712 MOTIF) TOOLKIT_LIBW="$MOTIF_LIBW" ;;
4713 LUCID) TOOLKIT_LIBW="$LUCID_LIBW" ;;
4714 none) test "x$HAVE_GTK" = "xyes" && TOOLKIT_LIBW="$GTK_LIBS" ;;
4715 esac
4716 AC_SUBST(TOOLKIT_LIBW)
4717
4718 if test "${opsys}" != "mingw32"; then
4719 if test "$USE_X_TOOLKIT" = "none"; then
4720 LIBXT_OTHER="\$(LIBXSM)"
4721 else
4722 LIBXT_OTHER="\$(LIBXMU) -lXt \$(LIBXTR6) -lXext"
4723 fi
4724 fi
4725 AC_SUBST(LIBXT_OTHER)
4726
4727 if test "${HAVE_X11}" = "yes" ; then
4728 AC_DEFINE(HAVE_X11, 1,
4729 [Define to 1 if you want to use version 11 of X windows.])
4730 LIBX_OTHER="\$(LIBXT) \$(LIBX_EXTRA)"
4731 else
4732 LIBX_OTHER=
4733 fi
4734 AC_SUBST(LIBX_OTHER)
4735
4736 if test "$HAVE_GTK" = yes || test "$HAVE_X11" != yes; then
4737 LIBXMENU=
4738 elif test "$USE_X_TOOLKIT" = none; then
4739 LIBXMENU='$(oldXMenudir)/libXMenu11.a'
4740 else
4741 LIBXMENU='$(lwlibdir)/liblw.a'
4742 fi
4743 AC_SUBST(LIBXMENU)
4744
4745 if test "${GNU_MALLOC}" = "yes" ; then
4746 AC_DEFINE(GNU_MALLOC, 1,
4747 [Define to 1 if you want to use the GNU memory allocator.])
4748 fi
4749
4750 RALLOC_OBJ=
4751 if test "${REL_ALLOC}" = "yes" ; then
4752 AC_DEFINE(REL_ALLOC, 1,
4753 [Define REL_ALLOC if you want to use the relocating allocator for
4754 buffer space.])
4755
4756 test "$system_malloc" != "yes" && RALLOC_OBJ=ralloc.o
4757 fi
4758 AC_SUBST(RALLOC_OBJ)
4759
4760 if test "$opsys" = "cygwin"; then
4761 CYGWIN_OBJ="sheap.o cygw32.o"
4762 ## Cygwin differs because of its unexec().
4763 PRE_ALLOC_OBJ=
4764 POST_ALLOC_OBJ=lastfile.o
4765 elif test "$opsys" = "mingw32"; then
4766 CYGWIN_OBJ=
4767 PRE_ALLOC_OBJ=
4768 POST_ALLOC_OBJ=lastfile.o
4769 else
4770 CYGWIN_OBJ=
4771 PRE_ALLOC_OBJ=lastfile.o
4772 POST_ALLOC_OBJ=
4773 fi
4774 AC_SUBST(CYGWIN_OBJ)
4775 AC_SUBST(PRE_ALLOC_OBJ)
4776 AC_SUBST(POST_ALLOC_OBJ)
4777
4778 dnl Call this 'FORTIFY_SOUR' so that it sorts before the 'FORTIFY_SOURCE'
4779 dnl verbatim defined above. The tricky name is apropos, as this hack
4780 dnl makes Fortify go sour!
4781 AH_VERBATIM([FORTIFY_SOUR],
4782 [/* Without the following workaround, Emacs runs slowly on OS X 10.8.
4783 The workaround disables some useful run-time checking, so it
4784 should be conditional to the platforms with the performance bug.
4785 Perhaps Apple will fix this some day; also see m4/extern-inline.m4. */
4786 #if defined __APPLE__ && defined __GNUC__
4787 # ifndef _DONT_USE_CTYPE_INLINE_
4788 # define _DONT_USE_CTYPE_INLINE_
4789 # endif
4790 # ifndef _FORTIFY_SOURCE
4791 # define _FORTIFY_SOURCE 0
4792 # endif
4793 #endif
4794 ])
4795
4796 # Configure gnulib. Although this does not affect CFLAGS or LIBS permanently.
4797 # it temporarily reverts them to their pre-pkg-config values,
4798 # because gnulib needs to work with both src (which uses the
4799 # pkg-config stuff) and lib-src (which does not). For example, gnulib
4800 # may need to determine whether LIB_CLOCK_GETTIME should contain -lrt,
4801 # and it therefore needs to run in an environment where LIBS does not
4802 # already contain -lrt merely because 'pkg-config --libs' printed '-lrt'
4803 # for some package unrelated to lib-src.
4804 SAVE_CFLAGS=$CFLAGS
4805 SAVE_LIBS=$LIBS
4806 CFLAGS=$pre_PKG_CONFIG_CFLAGS
4807 LIBS="$LIB_PTHREAD $pre_PKG_CONFIG_LIBS"
4808 gl_ASSERT_NO_GNULIB_POSIXCHECK
4809 gl_ASSERT_NO_GNULIB_TESTS
4810 gl_INIT
4811 CFLAGS=$SAVE_CFLAGS
4812 LIBS=$SAVE_LIBS
4813
4814 if test "${opsys}" = "mingw32"; then
4815 CPPFLAGS="$CPPFLAGS -DUSE_CRT_DLL=1 -I \${abs_top_srcdir}/nt/inc"
4816 # Remove unneeded switches from the value of CC that goes to Makefiles
4817 CC=`echo $CC | sed -e "s,$GCC_TEST_OPTIONS,,"`
4818 fi
4819
4820 case "$opsys" in
4821 aix4-2) LD_SWITCH_SYSTEM_TEMACS="-Wl,-bnodelcsect" ;;
4822
4823 darwin)
4824 ## The -headerpad option tells ld (see man page) to leave room at the
4825 ## end of the header for adding load commands. Needed for dumping.
4826 ## 0x690 is the total size of 30 segment load commands (at 56
4827 ## each); under Cocoa 31 commands are required.
4828 if test "$HAVE_NS" = "yes"; then
4829 libs_nsgui="-framework AppKit"
4830 if test "$NS_IMPL_COCOA" = "yes"; then
4831 libs_nsgui="$libs_nsgui -framework IOKit"
4832 fi
4833 headerpad_extra=6C8
4834 else
4835 libs_nsgui=
4836 headerpad_extra=690
4837 fi
4838 LD_SWITCH_SYSTEM_TEMACS="-fno-pie -prebind $libs_nsgui -Xlinker -headerpad -Xlinker $headerpad_extra"
4839
4840 ## This is here because src/Makefile.in did some extra fiddling around
4841 ## with LD_SWITCH_SYSTEM. It seems cleaner to put this in
4842 ## LD_SWITCH_SYSTEM_TEMACS instead,
4843 test "x$LD_SWITCH_SYSTEM" = "x" && test "x$GCC" != "xyes" && \
4844 LD_SWITCH_SYSTEM_TEMACS="-X $LD_SWITCH_SYSTEM_TEMACS"
4845 ;;
4846
4847 ## LD_SWITCH_X_SITE_RPATH is a -rpath option saying where to
4848 ## find X at run-time.
4849 ## When handled by cpp, this was in LD_SWITCH_SYSTEM. However, at the
4850 ## point where configure sourced the s/*.h file, LD_SWITCH_X_SITE_RPATH
4851 ## had not yet been defined and was expanded to null. Hence LD_SWITCH_SYSTEM
4852 ## had different values in configure (in ac_link) and src/Makefile.in.
4853 ## It seems clearer therefore to put this piece in LD_SWITCH_SYSTEM_TEMACS.
4854 gnu*) LD_SWITCH_SYSTEM_TEMACS="\$(LD_SWITCH_X_SITE_RPATH)" ;;
4855
4856 mingw32)
4857 ## MinGW64 does not prepend an underscore to symbols, so we must
4858 ## pass a different -entry switch to linker. FIXME: It is better
4859 ## to make the entry points the same by changing unexw32.c.
4860 case "$canonical" in
4861 x86_64-*-*) LD_SWITCH_SYSTEM_TEMACS="-Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -Wl,-entry,__start -Wl,-Map,./temacs.map" ;;
4862 *) LD_SWITCH_SYSTEM_TEMACS="-Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -Wl,-entry,__start -Wl,-Map,./temacs.map" ;;
4863 esac
4864 ;;
4865
4866 openbsd) LD_SWITCH_SYSTEM_TEMACS='-nopie' ;;
4867
4868 *) LD_SWITCH_SYSTEM_TEMACS= ;;
4869 esac
4870
4871 if test x$ac_enable_profiling != x ; then
4872 case $opsys in
4873 *freebsd | gnu-linux) ;;
4874 *) LD_SWITCH_SYSTEM_TEMACS="$LD_SWITCH_SYSTEM_TEMACS -pg" ;;
4875 esac
4876 fi
4877
4878 LD_SWITCH_SYSTEM_TEMACS="$LDFLAGS_NOCOMBRELOC $LD_SWITCH_SYSTEM_TEMACS"
4879
4880 AC_SUBST(LD_SWITCH_SYSTEM_TEMACS)
4881
4882 ## MinGW-specific post-link processing of temacs.
4883 TEMACS_POST_LINK=":"
4884 ADDSECTION=
4885 EMACS_HEAPSIZE=
4886 if test "${opsys}" = "mingw32"; then
4887 TEMACS_POST_LINK="\$(MINGW_TEMACS_POST_LINK)"
4888 ADDSECTION="../nt/addsection\$(EXEEXT)"
4889 ## Preload heap size of temacs.exe in MB.
4890 case "$canonical" in
4891 x86_64-*-*) EMACS_HEAPSIZE=42 ;;
4892 *) EMACS_HEAPSIZE=27 ;;
4893 esac
4894 fi
4895
4896 AC_SUBST(ADDSECTION)
4897 AC_SUBST(TEMACS_POST_LINK)
4898 AC_SUBST(EMACS_HEAPSIZE)
4899
4900 ## Common for all window systems
4901 if test "$window_system" != "none"; then
4902 AC_DEFINE(HAVE_WINDOW_SYSTEM, 1, [Define if you have a window system.])
4903 WINDOW_SYSTEM_OBJ="fontset.o fringe.o image.o"
4904 fi
4905
4906 AC_SUBST(WINDOW_SYSTEM_OBJ)
4907
4908 AH_TOP([/* GNU Emacs site configuration template file.
4909
4910 Copyright (C) 1988, 1993-1994, 1999-2002, 2004-2014
4911 Free Software Foundation, Inc.
4912
4913 This file is part of GNU Emacs.
4914
4915 GNU Emacs is free software: you can redistribute it and/or modify
4916 it under the terms of the GNU General Public License as published by
4917 the Free Software Foundation, either version 3 of the License, or
4918 (at your option) any later version.
4919
4920 GNU Emacs is distributed in the hope that it will be useful,
4921 but WITHOUT ANY WARRANTY; without even the implied warranty of
4922 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
4923 GNU General Public License for more details.
4924
4925 You should have received a copy of the GNU General Public License
4926 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
4927
4928
4929 /* No code in Emacs #includes config.h twice, but some bits of code
4930 intended to work with other packages as well (like gmalloc.c)
4931 think they can include it as many times as they like. */
4932 #ifndef EMACS_CONFIG_H
4933 #define EMACS_CONFIG_H
4934 ])dnl
4935
4936 AH_BOTTOM([#include <conf_post.h>
4937
4938 #endif /* EMACS_CONFIG_H */
4939
4940 /*
4941 Local Variables:
4942 mode: c
4943 End:
4944 */
4945 ])dnl
4946
4947 #### Report on what we decided to do.
4948 #### Report GTK as a toolkit, even if it doesn't use Xt.
4949 #### It makes printing result more understandable as using GTK sets
4950 #### toolkit_scroll_bars to yes by default.
4951 if test "${HAVE_GTK}" = "yes"; then
4952 USE_X_TOOLKIT="$USE_GTK_TOOLKIT"
4953 fi
4954
4955 if test $USE_ACL -ne 0; then
4956 acl_summary="yes $LIB_ACL"
4957 else
4958 acl_summary=no
4959 fi
4960
4961 echo "
4962 Configured for \`${canonical}'.
4963
4964 Where should the build process find the source code? ${srcdir}
4965 What compiler should emacs be built with? ${CC} ${CFLAGS}
4966 Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason}
4967 Should Emacs use a relocating allocator for buffers? ${REL_ALLOC}
4968 Should Emacs use mmap(2) for buffer allocation? $use_mmap_for_buffers
4969 What window system should Emacs use? ${window_system}
4970 What toolkit should Emacs use? ${USE_X_TOOLKIT}"
4971
4972 if test -n "${x_includes}"; then
4973 echo " Where do we find X Windows header files? ${x_includes}"
4974 else
4975 echo " Where do we find X Windows header files? Standard dirs"
4976 fi
4977 if test -n "${x_libraries}"; then
4978 echo " Where do we find X Windows libraries? ${x_libraries}"
4979 else
4980 echo " Where do we find X Windows libraries? Standard dirs"
4981 fi
4982
4983 echo " Does Emacs use -lXaw3d? ${HAVE_XAW3D}"
4984 echo " Does Emacs use -lXpm? ${HAVE_XPM}"
4985 echo " Does Emacs use -ljpeg? ${HAVE_JPEG}"
4986 echo " Does Emacs use -ltiff? ${HAVE_TIFF}"
4987 echo " Does Emacs use a gif library? ${HAVE_GIF} $LIBGIF"
4988 echo " Does Emacs use a png library? ${HAVE_PNG} $LIBPNG"
4989 echo " Does Emacs use -lrsvg-2? ${HAVE_RSVG}"
4990 echo " Does Emacs use imagemagick? ${HAVE_IMAGEMAGICK}"
4991
4992 echo " Does Emacs support sound? ${HAVE_SOUND}"
4993
4994 echo " Does Emacs use -lgpm? ${HAVE_GPM}"
4995 echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
4996 echo " Does Emacs use -lgconf? ${HAVE_GCONF}"
4997 echo " Does Emacs use GSettings? ${HAVE_GSETTINGS}"
4998 echo " Does Emacs use a file notification library? ${NOTIFY_SUMMARY}"
4999 echo " Does Emacs use access control lists? ${acl_summary}"
5000 echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}"
5001 echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}"
5002 echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}"
5003
5004 echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}"
5005 echo " Does Emacs use -lm17n-flt? ${HAVE_M17N_FLT}"
5006 echo " Does Emacs use -lotf? ${HAVE_LIBOTF}"
5007 echo " Does Emacs use -lxft? ${HAVE_XFT}"
5008 echo " Does Emacs directly use zlib? ${HAVE_ZLIB}"
5009
5010 echo " Does Emacs use toolkit scroll bars? ${USE_TOOLKIT_SCROLL_BARS}"
5011 echo
5012
5013 if test -n "${EMACSDATA}"; then
5014 echo " Environment variable EMACSDATA set to: $EMACSDATA"
5015 fi
5016 if test -n "${EMACSDOC}"; then
5017 echo " Environment variable EMACSDOC set to: $EMACSDOC"
5018 fi
5019
5020 echo
5021
5022 if test "$HAVE_NS" = "yes"; then
5023 echo
5024 echo "You must run \"${MAKE-make} install\" in order to test the built application.
5025 The installed application will go to nextstep/Emacs.app and can be
5026 run or moved from there."
5027 if test "$EN_NS_SELF_CONTAINED" = "yes"; then
5028 echo "The application will be fully self-contained."
5029 else
5030 echo "The lisp resources for the application will be installed under ${prefix}.
5031 You may need to run \"${MAKE-make} install\" with sudo. The application will fail
5032 to run if these resources are not installed."
5033 fi
5034 echo
5035 fi
5036
5037 if test "${opsys}" = "cygwin"; then
5038 case `uname -r` in
5039 1.5.*) AC_MSG_WARN([[building Emacs on Cygwin 1.5 is not supported.]])
5040 echo
5041 ;;
5042 esac
5043 fi
5044
5045 # Remove any trailing slashes in these variables.
5046 [test "${prefix}" != NONE &&
5047 prefix=`echo "${prefix}" | sed 's,\([^/]\)/*$,\1,'`
5048 test "${exec_prefix}" != NONE &&
5049 exec_prefix=`echo "${exec_prefix}" | sed 's,\([^/]\)/*$,\1,'`]
5050
5051 if test "$HAVE_NS" = "yes"; then
5052 if test "$NS_IMPL_GNUSTEP" = yes; then
5053 AC_CONFIG_FILES([nextstep/GNUstep/Emacs.base/Resources/Info-gnustep.plist:nextstep/templates/Info-gnustep.plist.in \
5054 nextstep/GNUstep/Emacs.base/Resources/Emacs.desktop:nextstep/templates/Emacs.desktop.in])
5055 ns_check_file=Resources/Info-gnustep.plist
5056 else
5057 AC_CONFIG_FILES([nextstep/Cocoa/Emacs.base/Contents/Info.plist:nextstep/templates/Info.plist.in \
5058 nextstep/Cocoa/Emacs.base/Contents/Resources/English.lproj/InfoPlist.strings:nextstep/templates/InfoPlist.strings.in])
5059 ns_check_file=Contents/Info.plist
5060 fi
5061 AC_SUBST(ns_check_file)
5062 fi
5063
5064 dnl Obviously there is duplication here wrt $SUBDIR_MAKEFILES.
5065 dnl You _can_ use that variable in AC_CONFIG_FILES, so long as any directory
5066 dnl using automake (ie lib/) is explicitly listed and not "hidden" in a variable
5067 dnl (else you get "no `Makefile.am' found for any configure output").
5068 dnl This will work, but you get a config.status that is not quite right
5069 dnl (see http://lists.gnu.org/archive/html/bug-autoconf/2008-08/msg00028.html).
5070 dnl That doesn't have any obvious consequences for Emacs, but on the whole
5071 dnl it seems better to just live with the duplication.
5072 SUBDIR_MAKEFILES="lib/Makefile lib-src/Makefile oldXMenu/Makefile doc/emacs/Makefile doc/misc/Makefile doc/lispintro/Makefile doc/lispref/Makefile src/Makefile lwlib/Makefile lisp/Makefile leim/Makefile nextstep/Makefile nt/Makefile"
5073
5074 AC_CONFIG_FILES([Makefile lib/Makefile lib-src/Makefile oldXMenu/Makefile \
5075 doc/emacs/Makefile doc/misc/Makefile doc/lispintro/Makefile \
5076 doc/lispref/Makefile src/Makefile lwlib/Makefile lisp/Makefile \
5077 leim/Makefile nextstep/Makefile nt/Makefile])
5078
5079 dnl test/ is not present in release tarfiles.
5080 opt_makefile=test/automated/Makefile
5081
5082 if test -f "$srcdir/$opt_makefile.in"; then
5083 SUBDIR_MAKEFILES="$SUBDIR_MAKEFILES $opt_makefile"
5084 dnl Again, it's best not to use a variable. Though you can add
5085 dnl ", [], [opt_makefile='$opt_makefile']" and it should work.
5086 AC_CONFIG_FILES([test/automated/Makefile])
5087 fi
5088
5089
5090 dnl The admin/ directory used to be excluded from tarfiles.
5091 if test -d $srcdir/admin; then
5092 SUBDIR_MAKEFILES="$SUBDIR_MAKEFILES admin/unidata/Makefile admin/grammars/Makefile"
5093 AC_CONFIG_FILES([admin/unidata/Makefile])
5094 AC_CONFIG_FILES([admin/grammars/Makefile])
5095 fi dnl -d admin
5096
5097
5098 SUBDIR_MAKEFILES_IN=`echo " ${SUBDIR_MAKEFILES}" | sed -e 's| | $(srcdir)/|g' -e 's|Makefile|Makefile.in|g'`
5099
5100 AC_SUBST(SUBDIR_MAKEFILES_IN)
5101
5102 dnl You might wonder (I did) why epaths.h is generated by running make,
5103 dnl rather than just letting configure generate it from epaths.in.
5104 dnl One reason is that the various paths are not fully expanded (see above);
5105 dnl eg gamedir=${prefix}/var/games/emacs.
5106 dnl Secondly, the GNU Coding standards require that one should be able
5107 dnl to run `make prefix=/some/where/else' and override the values set
5108 dnl by configure. This also explains the `move-if-change' test and
5109 dnl the use of force in the `epaths-force' rule in Makefile.in.
5110 AC_CONFIG_COMMANDS([src/epaths.h], [
5111 if test "${opsys}" = "mingw32"; then
5112 ${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force-w32
5113 else
5114 ${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force
5115 fi
5116 ], [GCC="$GCC" CPPFLAGS="$CPPFLAGS" opsys="$opsys"])
5117
5118 dnl NB we have to cheat and use the ac_... version because abs_top_srcdir
5119 dnl is not yet set, sigh. Or we could use ../$srcdir/src/.gdbinit,
5120 dnl or a symlink?
5121 AC_CONFIG_COMMANDS([src/.gdbinit], [
5122 if test ! -f src/.gdbinit && test -f "$srcdir/src/.gdbinit"; then
5123 echo "source $ac_abs_top_srcdir/src/.gdbinit" > src/.gdbinit
5124 fi
5125 ])
5126
5127 AC_OUTPUT