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