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