aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-03-20 16:58:23 -0700
committerGlenn Morris2011-03-20 16:58:23 -0700
commit66b874939b5acd59c76fa53373f2e41871ec1fef (patch)
tree2068f1af187f95a85ac0c7730c7b611b9d4ad8c1
parent1fe275ee28e8a37fdbbd6d6cf75f1b15b9674b4b (diff)
downloademacs-66b874939b5acd59c76fa53373f2e41871ec1fef.tar.gz
emacs-66b874939b5acd59c76fa53373f2e41871ec1fef.zip
(Re)move autotools generated files from the repository.
Ref: http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00225.html * autogen/: New directory, to be excluded from releases. * autogen/copy_autogen, autogen/update_autogen: New scripts. * autogen/README: New file. * autogen/aclocal.m4, autogen/config.in, autogen/configure: * autogen/Makefile.in: Add auto-updated generated files. * autogen.sh: No longer a no-op, now it tests for autotools and runs them as necessary. * configure.in: Defaule maintainer-mode to on. * aclocal.m4, configure, lib/Makefile.in: Remove files. * src/config.in: Remove file. * INSTALL.BZR, admin/make-tarball.txt: Update instructions.
-rw-r--r--ChangeLog12
-rw-r--r--INSTALL.BZR27
-rw-r--r--admin/make-tarball.txt9
-rwxr-xr-xautogen.sh208
-rw-r--r--autogen/Makefile.in (renamed from lib/Makefile.in)0
-rw-r--r--autogen/README14
-rw-r--r--autogen/aclocal.m4 (renamed from aclocal.m4)4
-rw-r--r--autogen/config.in (renamed from src/config.in)3
-rwxr-xr-xautogen/configure (renamed from configure)1191
-rwxr-xr-xautogen/copy_autogen20
-rwxr-xr-xautogen/update_autogen180
-rw-r--r--configure.in2
-rw-r--r--src/ChangeLog4
13 files changed, 1034 insertions, 640 deletions
diff --git a/ChangeLog b/ChangeLog
index 7bb19e04ac1..a58a60465d4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
12011-03-20 Glenn Morris <rgm@gnu.org>
2
3 * autogen/: New directory, to be excluded from releases.
4 * autogen/copy_autogen, autogen/update_autogen: New scripts.
5 * autogen/README: New file.
6 * autogen/aclocal.m4, autogen/config.in, autogen/configure:
7 * autogen/Makefile.in: Add auto-updated generated files.
8 * autogen.sh: No longer a no-op, now it tests for autotools
9 and runs them as necessary.
10 * configure.in: Defaule maintainer-mode to on.
11 * aclocal.m4, configure, lib/Makefile.in: Remove files.
12
12011-03-13 Paul Eggert <eggert@cs.ucla.edu> 132011-03-13 Paul Eggert <eggert@cs.ucla.edu>
2 14
3 Update for gnulib. 15 Update for gnulib.
diff --git a/INSTALL.BZR b/INSTALL.BZR
index 710a73c7048..3859e3cd4fc 100644
--- a/INSTALL.BZR
+++ b/INSTALL.BZR
@@ -4,14 +4,29 @@ See the end of the file for license conditions.
4 4
5 Building and Installing Emacs from Bazaar 5 Building and Installing Emacs from Bazaar
6 6
7If this is the first time you go through it, you'll need to configure 7Building Emacs from Bazaar requires some tools that are not needed
8before bootstrapping: 8when building from a release. You will need:
9 9
10 $ ./configure 10autoconf - at least the version specified near the start of
11 configure.in (in the AC_PREREQ command).
12automake - we recommend at least version 1.11.
13makeinfo - not strictly necessary, but highly recommended, so that
14 you can build the manuals.
15
16The `autogen.sh' script can help you figure out if you have the
17necessary tools.
18
19The first time you build, there are a couple of extra steps.
20First, generate the `configure' script:
21
22 $ ./autogen.sh
11 23
12(Normally there is no need to run `autoconf' etc. If you do need it, 24(or you can just run `autoreconf -I m4').
13the relevant command is `autoreconf -I m4'. Be aware that this will 25
14likely lead to conflicts next time you update from Bazaar.) 26You can then configure your build (use `./configure --help' to see
27options you can set):
28
29 $ ./configure
15 30
16Some of the files that are included in the Emacs tarball, such as 31Some of the files that are included in the Emacs tarball, such as
17byte-compiled Lisp files, are not stored in Bazaar. Therefore, to 32byte-compiled Lisp files, are not stored in Bazaar. Therefore, to
diff --git a/admin/make-tarball.txt b/admin/make-tarball.txt
index 6a8072de06c..9c47d6e1fa2 100644
--- a/admin/make-tarball.txt
+++ b/admin/make-tarball.txt
@@ -28,11 +28,14 @@ For each step, check for possible errors.
28 refer to a newer release of Emacs. (This is probably needed only 28 refer to a newer release of Emacs. (This is probably needed only
29 when preparing a major Emacs release, or branching for it.) 29 when preparing a major Emacs release, or branching for it.)
30 30
315. autoreconf -I m4 --force 315. Edit configure.in so that maintainer-mode is off by default.
32 (FIXME - need to find a better way of dealing with this).
33
34 autoreconf -I m4 --force
32 make bootstrap 35 make bootstrap
33 36
346. Commit configure, src/config.in, etc/AUTHORS, all the files changed 376. Commit etc/AUTHORS, all the files changed by M-x set-version, and
35 by M-x set-version, and lisp/cus-edit.el (if modified). 38 lisp/cus-edit.el (if modified).
36 Copy lisp/loaddefs.el to lisp/ldefs-boot.el and commit lisp/ldefs-boot.el. 39 Copy lisp/loaddefs.el to lisp/ldefs-boot.el and commit lisp/ldefs-boot.el.
37 For a release, also commit the ChangeLog files in all directories. 40 For a release, also commit the ChangeLog files in all directories.
38 41
diff --git a/autogen.sh b/autogen.sh
index 52184c46f51..a56b8d77826 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,7 +1,207 @@
1#!/bin/sh 1#!/bin/sh
2### autogen.sh - tool to help build Emacs from a bzr checkout
2 3
3echo "Please read INSTALL.BZR for instructions on how to build Emacs from Bazaar." 4## Copyright (C) 2011 Free Software Foundation, Inc.
4 5
5# Exit with failure, since people may have generic build scripts that 6## Author: Glenn Morris <rgm@gnu.org>
6# try things like "autogen.sh && ./configure && make". 7
7exit 1 8## This file is part of GNU Emacs.
9
10## GNU Emacs is free software: you can redistribute it and/or modify
11## it under the terms of the GNU General Public License as published by
12## the Free Software Foundation, either version 3 of the License, or
13## (at your option) any later version.
14
15## GNU Emacs is distributed in the hope that it will be useful,
16## but WITHOUT ANY WARRANTY; without even the implied warranty of
17## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18## GNU General Public License for more details.
19
20## You should have received a copy of the GNU General Public License
21## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23### Commentary:
24
25## The Emacs bzr repository does not include the configure script
26## (and associated helpers). The first time you fetch Emacs from bzr,
27## run this script to generate the necessary files.
28## For more details, see the file INSTALL.BZR.
29
30### Code:
31
32## Tools we need:
33progs="autoconf automake"
34
35## Minimum versions we need:
36autoconf_min=`sed -n 's/^ *AC_PREREQ(\([0-9\.]*\)).*/\1/p' configure.in`
37
38## FIXME how to determine this from the sources?
39automake_min=1.11
40
41
42## $1 = program, eg "autoconf".
43## Echo the version string, eg "2.59".
44## FIXME does not handle things like "1.4a", but AFAIK those are
45## all old versions, so it is OK to fail there.
46## Also note that we do not handle micro versions.
47get_version ()
48{
49 $1 --version 2>&1 | sed -n '1 s/.* \([1-9][0-9\.]*\).*/\1/p'
50}
51
52## $1 = version string, eg "2.59"
53## Echo the major version, eg "2".
54major_version ()
55{
56 echo $1 | sed -e 's/\([0-9][0-9]*\)\..*/\1/'
57}
58
59## $1 = version string, eg "2.59"
60## Echo the minor version, eg "59".
61minor_version ()
62{
63 echo $1 | sed -e 's/[0-9][0-9]*\.\([0-9][0-9]*\).*/\1/'
64}
65
66## $1 = program
67## $2 = minimum version.
68## Return 0 if program is present with version >= minumum version.
69## Return 1 if program is missing.
70## Return 2 if program is present but too old.
71## Return 3 for unexpected error (eg failed to parse version).
72check_version ()
73{
74 have_version=`get_version $1`
75
76 [ x"$have_version" = x ] && return 1
77
78 have_maj=`major_version $have_version`
79 need_maj=`major_version $2`
80
81 [ x"$have_maj" != x ] && [ x"$need_maj" != x ] || return 3
82
83 [ $have_maj -gt $need_maj ] && return 0
84 [ $have_maj -lt $need_maj ] && return 2
85
86 have_min=`minor_version $have_version`
87 need_min=`minor_version $2`
88
89 [ x"$have_min" != x ] && [ x"$need_min" != x ] || return 3
90
91 [ $have_min -ge $need_min ] && return 0
92 return 2
93}
94
95
96cat <<EOF
97Checking whether you have the necessary tools...
98(Read INSTALL.BZR for more details on building Emacs)
99
100EOF
101
102missing=
103
104for prog in $progs; do
105
106 eval min=\$${prog}_min
107
108 echo "Checking for $prog (need at least version $min)..."
109
110 check_version $prog $min
111
112 retval=$?
113
114 case $retval in
115 0) stat="ok" ;;
116 1) stat="missing" ;;
117 2) stat="too old" ;;
118 *) stat="unable to check" ;;
119 esac
120
121 echo $stat
122
123 if [ $retval -ne 0 ]; then
124 missing="$missing $prog"
125 eval ${prog}_why=\""$stat"\"
126 fi
127
128done
129
130
131if [ x"$missing" != x ]; then
132
133 cat <<EOF
134
135Building Emacs from Bzr requires the following specialized programs:
136EOF
137
138 for prog in $progs; do
139 eval min=\$${prog}_min
140
141 echo "$prog (minimum version $min)"
142 done
143
144
145 cat <<EOF
146
147Your system seems to be missing the following tool(s):
148EOF
149
150 for prog in $missing; do
151 eval why=\$${prog}_why
152
153 echo "$prog ($why)"
154 done
155
156 cat <<EOF
157
158If you think you have the required tools, please add them to your PATH
159and re-run this script.
160
161Otherwise, please try installing them.
162On systems using rpm and yum, try: "yum install PACKAGE"
163On systems using dpkg and apt, try: "apt-get install PACKAGE"
164Then re-run this script.
165
166If you do not have permission to do this, or if the version provided
167by your system is too old, it is normally straightforward to build
168these packages from source. You can find the sources at:
169
170ftp://ftp.gnu.org/gnu/PACKAGE/
171
172Download the package (make sure you get at least the minimum version
173listed above), extract it using tar, then run configure, make,
174make install. Add the installation directory to your PATH and re-run
175this script.
176
177If you know that the required versions are in your PATH, but this
178script has made an error, then you can simply run
179
180autoreconf -I m4
181
182instead of this script.
183
184If all else fails, you can try using the pre-built versions of the
185generated files by doing:
186
187cd autogen && ./copy_autogen
188
189This is not recommended - see the comments in \`copy_autogen'.
190
191Please report any problems with this script to bug-gnu-emacs@gnu.org .
192EOF
193
194 exit 1
195fi
196
197echo "Your system has the required tools, running autoreconf..."
198
199
200## Let autoreconf figure out what, if anything, needs doing.
201autoreconf -I m4 || exit $?
202
203echo "You can now run \`./configure'."
204
205exit 0
206
207### autogen.sh ends here
diff --git a/lib/Makefile.in b/autogen/Makefile.in
index 502b3dbb927..502b3dbb927 100644
--- a/lib/Makefile.in
+++ b/autogen/Makefile.in
diff --git a/autogen/README b/autogen/README
new file mode 100644
index 00000000000..267ae129959
--- /dev/null
+++ b/autogen/README
@@ -0,0 +1,14 @@
1This directory contains some pre-built generated files.
2Most people do not need to use these files - instead you should
3generate them yourself using eg `autogen.sh'.
4
5File: Destination: Created by:
6configure ../ autoconf
7config.in ../src autoconf * also used by MSDOS bzr build
8aclocal.m4 ../ aclocal
9Makefile.in ../lib automake
10
11There are also some scripts:
12
13copy_autogen - copy pre-built generated files into place
14update_autogen - regenerate generated files (for maintainers)
diff --git a/aclocal.m4 b/autogen/aclocal.m4
index 1536f3b48b5..963faafb453 100644
--- a/aclocal.m4
+++ b/autogen/aclocal.m4
@@ -13,8 +13,8 @@
13 13
14m4_ifndef([AC_AUTOCONF_VERSION], 14m4_ifndef([AC_AUTOCONF_VERSION],
15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl 15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.68],, 16m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
17[m4_warning([this file was generated for autoconf 2.68. 17[m4_warning([this file was generated for autoconf 2.65.
18You have another version of autoconf. It may work, but is not guaranteed to. 18You have another version of autoconf. It may work, but is not guaranteed to.
19If you have problems, you may need to regenerate the build system entirely. 19If you have problems, you may need to regenerate the build system entirely.
20To do so, use the procedure documented by the package, typically `autoreconf'.])]) 20To do so, use the procedure documented by the package, typically `autoreconf'.])])
diff --git a/src/config.in b/autogen/config.in
index fbd3ee9338d..8889213b781 100644
--- a/src/config.in
+++ b/autogen/config.in
@@ -1206,9 +1206,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
1206# define __restrict__ 1206# define __restrict__
1207#endif 1207#endif
1208 1208
1209/* Define to `unsigned int' if <sys/types.h> does not define. */
1210#undef size_t
1211
1212/* Define to any substitute for sys_siglist. */ 1209/* Define to any substitute for sys_siglist. */
1213#undef sys_siglist 1210#undef sys_siglist
1214 1211
diff --git a/configure b/autogen/configure
index 57ecd9d52eb..2f19acbf347 100755
--- a/configure
+++ b/autogen/configure
@@ -1,11 +1,11 @@
1#! /bin/sh 1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles. 2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.68 for emacs 24.0.50. 3# Generated by GNU Autoconf 2.65 for emacs 24.0.50.
4# 4#
5# 5#
6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
7# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software 7# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
8# Foundation, Inc. 8# Inc.
9# 9#
10# 10#
11# This configure script is free software; the Free Software Foundation 11# This configure script is free software; the Free Software Foundation
@@ -89,7 +89,6 @@ fi
89IFS=" "" $as_nl" 89IFS=" "" $as_nl"
90 90
91# Find who we are. Look in the path if we contain no directory separator. 91# Find who we are. Look in the path if we contain no directory separator.
92as_myself=
93case $0 in #(( 92case $0 in #((
94 *[\\/]* ) as_myself=$0 ;; 93 *[\\/]* ) as_myself=$0 ;;
95 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 94 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -215,18 +214,11 @@ IFS=$as_save_IFS
215 # We cannot yet assume a decent shell, so we have to provide a 214 # We cannot yet assume a decent shell, so we have to provide a
216 # neutralization value for shells without unset; and this also 215 # neutralization value for shells without unset; and this also
217 # works around shells that cannot unset nonexistent variables. 216 # works around shells that cannot unset nonexistent variables.
218 # Preserve -v and -x to the replacement shell.
219 BASH_ENV=/dev/null 217 BASH_ENV=/dev/null
220 ENV=/dev/null 218 ENV=/dev/null
221 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 219 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
222 export CONFIG_SHELL 220 export CONFIG_SHELL
223 case $- in # (((( 221 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
224 *v*x* | *x*v* ) as_opts=-vx ;;
225 *v* ) as_opts=-v ;;
226 *x* ) as_opts=-x ;;
227 * ) as_opts= ;;
228 esac
229 exec "$CONFIG_SHELL" $as_opts "$as_myself" ${1+"$@"}
230fi 222fi
231 223
232 if test x$as_have_required = xno; then : 224 if test x$as_have_required = xno; then :
@@ -324,7 +316,7 @@ $as_echo X"$as_dir" |
324 test -d "$as_dir" && break 316 test -d "$as_dir" && break
325 done 317 done
326 test -z "$as_dirs" || eval "mkdir $as_dirs" 318 test -z "$as_dirs" || eval "mkdir $as_dirs"
327 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" 319 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
328 320
329 321
330} # as_fn_mkdir_p 322} # as_fn_mkdir_p
@@ -364,19 +356,19 @@ else
364fi # as_fn_arith 356fi # as_fn_arith
365 357
366 358
367# as_fn_error STATUS ERROR [LINENO LOG_FD] 359# as_fn_error ERROR [LINENO LOG_FD]
368# ---------------------------------------- 360# ---------------------------------
369# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 361# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
370# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 362# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
371# script with STATUS, using 1 if that was 0. 363# script with status $?, using 1 if that was 0.
372as_fn_error () 364as_fn_error ()
373{ 365{
374 as_status=$1; test $as_status -eq 0 && as_status=1 366 as_status=$?; test $as_status -eq 0 && as_status=1
375 if test "$4"; then 367 if test "$3"; then
376 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 368 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
377 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 369 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
378 fi 370 fi
379 $as_echo "$as_me: error: $2" >&2 371 $as_echo "$as_me: error: $1" >&2
380 as_fn_exit $as_status 372 as_fn_exit $as_status
381} # as_fn_error 373} # as_fn_error
382 374
@@ -538,7 +530,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null
538exec 6>&1 530exec 6>&1
539 531
540# Name of the host. 532# Name of the host.
541# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, 533# hostname on some systems (SVR3.2, Linux) returns a bogus exit status,
542# so uname gets run too. 534# so uname gets run too.
543ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 535ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
544 536
@@ -1228,9 +1220,8 @@ do
1228 fi 1220 fi
1229 1221
1230 case $ac_option in 1222 case $ac_option in
1231 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 1223 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
1232 *=) ac_optarg= ;; 1224 *) ac_optarg=yes ;;
1233 *) ac_optarg=yes ;;
1234 esac 1225 esac
1235 1226
1236 # Accept the important Cygnus configure options, so we can diagnose typos. 1227 # Accept the important Cygnus configure options, so we can diagnose typos.
@@ -1275,7 +1266,7 @@ do
1275 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 1266 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
1276 # Reject names that are not valid shell variable names. 1267 # Reject names that are not valid shell variable names.
1277 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1268 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1278 as_fn_error $? "invalid feature name: $ac_useropt" 1269 as_fn_error "invalid feature name: $ac_useropt"
1279 ac_useropt_orig=$ac_useropt 1270 ac_useropt_orig=$ac_useropt
1280 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1271 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1281 case $ac_user_opts in 1272 case $ac_user_opts in
@@ -1301,7 +1292,7 @@ do
1301 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 1292 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
1302 # Reject names that are not valid shell variable names. 1293 # Reject names that are not valid shell variable names.
1303 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1294 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1304 as_fn_error $? "invalid feature name: $ac_useropt" 1295 as_fn_error "invalid feature name: $ac_useropt"
1305 ac_useropt_orig=$ac_useropt 1296 ac_useropt_orig=$ac_useropt
1306 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1297 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1307 case $ac_user_opts in 1298 case $ac_user_opts in
@@ -1505,7 +1496,7 @@ do
1505 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1496 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1506 # Reject names that are not valid shell variable names. 1497 # Reject names that are not valid shell variable names.
1507 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1498 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1508 as_fn_error $? "invalid package name: $ac_useropt" 1499 as_fn_error "invalid package name: $ac_useropt"
1509 ac_useropt_orig=$ac_useropt 1500 ac_useropt_orig=$ac_useropt
1510 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1501 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1511 case $ac_user_opts in 1502 case $ac_user_opts in
@@ -1521,7 +1512,7 @@ do
1521 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1512 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1522 # Reject names that are not valid shell variable names. 1513 # Reject names that are not valid shell variable names.
1523 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1514 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1524 as_fn_error $? "invalid package name: $ac_useropt" 1515 as_fn_error "invalid package name: $ac_useropt"
1525 ac_useropt_orig=$ac_useropt 1516 ac_useropt_orig=$ac_useropt
1526 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1517 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1527 case $ac_user_opts in 1518 case $ac_user_opts in
@@ -1551,8 +1542,8 @@ do
1551 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1542 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1552 x_libraries=$ac_optarg ;; 1543 x_libraries=$ac_optarg ;;
1553 1544
1554 -*) as_fn_error $? "unrecognized option: \`$ac_option' 1545 -*) as_fn_error "unrecognized option: \`$ac_option'
1555Try \`$0 --help' for more information" 1546Try \`$0 --help' for more information."
1556 ;; 1547 ;;
1557 1548
1558 *=*) 1549 *=*)
@@ -1560,7 +1551,7 @@ Try \`$0 --help' for more information"
1560 # Reject names that are not valid shell variable names. 1551 # Reject names that are not valid shell variable names.
1561 case $ac_envvar in #( 1552 case $ac_envvar in #(
1562 '' | [0-9]* | *[!_$as_cr_alnum]* ) 1553 '' | [0-9]* | *[!_$as_cr_alnum]* )
1563 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; 1554 as_fn_error "invalid variable name: \`$ac_envvar'" ;;
1564 esac 1555 esac
1565 eval $ac_envvar=\$ac_optarg 1556 eval $ac_envvar=\$ac_optarg
1566 export $ac_envvar ;; 1557 export $ac_envvar ;;
@@ -1570,7 +1561,7 @@ Try \`$0 --help' for more information"
1570 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1561 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1571 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1562 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1572 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1563 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1573 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" 1564 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
1574 ;; 1565 ;;
1575 1566
1576 esac 1567 esac
@@ -1578,13 +1569,13 @@ done
1578 1569
1579if test -n "$ac_prev"; then 1570if test -n "$ac_prev"; then
1580 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1571 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1581 as_fn_error $? "missing argument to $ac_option" 1572 as_fn_error "missing argument to $ac_option"
1582fi 1573fi
1583 1574
1584if test -n "$ac_unrecognized_opts"; then 1575if test -n "$ac_unrecognized_opts"; then
1585 case $enable_option_checking in 1576 case $enable_option_checking in
1586 no) ;; 1577 no) ;;
1587 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; 1578 fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;;
1588 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1579 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1589 esac 1580 esac
1590fi 1581fi
@@ -1607,7 +1598,7 @@ do
1607 [\\/$]* | ?:[\\/]* ) continue;; 1598 [\\/$]* | ?:[\\/]* ) continue;;
1608 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1599 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1609 esac 1600 esac
1610 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" 1601 as_fn_error "expected an absolute directory name for --$ac_var: $ac_val"
1611done 1602done
1612 1603
1613# There might be people who depend on the old broken behavior: `$host' 1604# There might be people who depend on the old broken behavior: `$host'
@@ -1621,8 +1612,8 @@ target=$target_alias
1621if test "x$host_alias" != x; then 1612if test "x$host_alias" != x; then
1622 if test "x$build_alias" = x; then 1613 if test "x$build_alias" = x; then
1623 cross_compiling=maybe 1614 cross_compiling=maybe
1624 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. 1615 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
1625 If a cross compiler is detected then cross compile mode will be used" >&2 1616 If a cross compiler is detected then cross compile mode will be used." >&2
1626 elif test "x$build_alias" != "x$host_alias"; then 1617 elif test "x$build_alias" != "x$host_alias"; then
1627 cross_compiling=yes 1618 cross_compiling=yes
1628 fi 1619 fi
@@ -1637,9 +1628,9 @@ test "$silent" = yes && exec 6>/dev/null
1637ac_pwd=`pwd` && test -n "$ac_pwd" && 1628ac_pwd=`pwd` && test -n "$ac_pwd" &&
1638ac_ls_di=`ls -di .` && 1629ac_ls_di=`ls -di .` &&
1639ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1630ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1640 as_fn_error $? "working directory cannot be determined" 1631 as_fn_error "working directory cannot be determined"
1641test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1632test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1642 as_fn_error $? "pwd does not report name of working directory" 1633 as_fn_error "pwd does not report name of working directory"
1643 1634
1644 1635
1645# Find the source files, if location was not specified. 1636# Find the source files, if location was not specified.
@@ -1678,11 +1669,11 @@ else
1678fi 1669fi
1679if test ! -r "$srcdir/$ac_unique_file"; then 1670if test ! -r "$srcdir/$ac_unique_file"; then
1680 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1671 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1681 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" 1672 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir"
1682fi 1673fi
1683ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1674ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1684ac_abs_confdir=`( 1675ac_abs_confdir=`(
1685 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" 1676 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg"
1686 pwd)` 1677 pwd)`
1687# When building in place, set srcdir=. 1678# When building in place, set srcdir=.
1688if test "$ac_abs_confdir" = "$ac_pwd"; then 1679if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1722,7 +1713,7 @@ Configuration:
1722 --help=short display options specific to this package 1713 --help=short display options specific to this package
1723 --help=recursive display the short help of all the included packages 1714 --help=recursive display the short help of all the included packages
1724 -V, --version display version information and exit 1715 -V, --version display version information and exit
1725 -q, --quiet, --silent do not print \`checking ...' messages 1716 -q, --quiet, --silent do not print \`checking...' messages
1726 --cache-file=FILE cache test results in FILE [disabled] 1717 --cache-file=FILE cache test results in FILE [disabled]
1727 -C, --config-cache alias for \`--cache-file=config.cache' 1718 -C, --config-cache alias for \`--cache-file=config.cache'
1728 -n, --no-create do not create output files 1719 -n, --no-create do not create output files
@@ -1944,9 +1935,9 @@ test -n "$ac_init_help" && exit $ac_status
1944if $ac_init_version; then 1935if $ac_init_version; then
1945 cat <<\_ACEOF 1936 cat <<\_ACEOF
1946emacs configure 24.0.50 1937emacs configure 24.0.50
1947generated by GNU Autoconf 2.68 1938generated by GNU Autoconf 2.65
1948 1939
1949Copyright (C) 2010 Free Software Foundation, Inc. 1940Copyright (C) 2009 Free Software Foundation, Inc.
1950This configure script is free software; the Free Software Foundation 1941This configure script is free software; the Free Software Foundation
1951gives unlimited permission to copy, distribute and modify it. 1942gives unlimited permission to copy, distribute and modify it.
1952_ACEOF 1943_ACEOF
@@ -1990,7 +1981,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
1990 1981
1991 ac_retval=1 1982 ac_retval=1
1992fi 1983fi
1993 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 1984 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
1994 as_fn_set_status $ac_retval 1985 as_fn_set_status $ac_retval
1995 1986
1996} # ac_fn_c_try_compile 1987} # ac_fn_c_try_compile
@@ -2016,7 +2007,7 @@ $as_echo "$ac_try_echo"; } >&5
2016 mv -f conftest.er1 conftest.err 2007 mv -f conftest.er1 conftest.err
2017 fi 2008 fi
2018 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 2009 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
2019 test $ac_status = 0; } > conftest.i && { 2010 test $ac_status = 0; } >/dev/null && {
2020 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 2011 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
2021 test ! -s conftest.err 2012 test ! -s conftest.err
2022 }; then : 2013 }; then :
@@ -2027,7 +2018,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
2027 2018
2028 ac_retval=1 2019 ac_retval=1
2029fi 2020fi
2030 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2021 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2031 as_fn_set_status $ac_retval 2022 as_fn_set_status $ac_retval
2032 2023
2033} # ac_fn_c_try_cpp 2024} # ac_fn_c_try_cpp
@@ -2040,10 +2031,10 @@ fi
2040ac_fn_c_check_header_mongrel () 2031ac_fn_c_check_header_mongrel ()
2041{ 2032{
2042 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2033 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2043 if eval \${$3+:} false; then : 2034 if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2044 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2035 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2045$as_echo_n "checking for $2... " >&6; } 2036$as_echo_n "checking for $2... " >&6; }
2046if eval \${$3+:} false; then : 2037if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2047 $as_echo_n "(cached) " >&6 2038 $as_echo_n "(cached) " >&6
2048fi 2039fi
2049eval ac_res=\$$3 2040eval ac_res=\$$3
@@ -2079,7 +2070,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
2079else 2070else
2080 ac_header_preproc=no 2071 ac_header_preproc=no
2081fi 2072fi
2082rm -f conftest.err conftest.i conftest.$ac_ext 2073rm -f conftest.err conftest.$ac_ext
2083{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 2074{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
2084$as_echo "$ac_header_preproc" >&6; } 2075$as_echo "$ac_header_preproc" >&6; }
2085 2076
@@ -2106,7 +2097,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
2106esac 2097esac
2107 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2098 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2108$as_echo_n "checking for $2... " >&6; } 2099$as_echo_n "checking for $2... " >&6; }
2109if eval \${$3+:} false; then : 2100if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2110 $as_echo_n "(cached) " >&6 2101 $as_echo_n "(cached) " >&6
2111else 2102else
2112 eval "$3=\$ac_header_compiler" 2103 eval "$3=\$ac_header_compiler"
@@ -2115,7 +2106,7 @@ eval ac_res=\$$3
2115 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2106 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2116$as_echo "$ac_res" >&6; } 2107$as_echo "$ac_res" >&6; }
2117fi 2108fi
2118 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2109 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2119 2110
2120} # ac_fn_c_check_header_mongrel 2111} # ac_fn_c_check_header_mongrel
2121 2112
@@ -2156,7 +2147,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
2156 ac_retval=$ac_status 2147 ac_retval=$ac_status
2157fi 2148fi
2158 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 2149 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
2159 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2150 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2160 as_fn_set_status $ac_retval 2151 as_fn_set_status $ac_retval
2161 2152
2162} # ac_fn_c_try_run 2153} # ac_fn_c_try_run
@@ -2170,7 +2161,7 @@ ac_fn_c_check_header_compile ()
2170 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2161 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2171 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2162 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2172$as_echo_n "checking for $2... " >&6; } 2163$as_echo_n "checking for $2... " >&6; }
2173if eval \${$3+:} false; then : 2164if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2174 $as_echo_n "(cached) " >&6 2165 $as_echo_n "(cached) " >&6
2175else 2166else
2176 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2167 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2188,7 +2179,7 @@ fi
2188eval ac_res=\$$3 2179eval ac_res=\$$3
2189 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2180 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2190$as_echo "$ac_res" >&6; } 2181$as_echo "$ac_res" >&6; }
2191 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2182 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2192 2183
2193} # ac_fn_c_check_header_compile 2184} # ac_fn_c_check_header_compile
2194 2185
@@ -2233,23 +2224,20 @@ fi
2233 # interfere with the next link command; also delete a directory that is 2224 # interfere with the next link command; also delete a directory that is
2234 # left behind by Apple's compiler. We do this before executing the actions. 2225 # left behind by Apple's compiler. We do this before executing the actions.
2235 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 2226 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
2236 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2227 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2237 as_fn_set_status $ac_retval 2228 as_fn_set_status $ac_retval
2238 2229
2239} # ac_fn_c_try_link 2230} # ac_fn_c_try_link
2240 2231
2241# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES 2232# ac_fn_c_check_decl LINENO SYMBOL VAR
2242# --------------------------------------------- 2233# ------------------------------------
2243# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR 2234# Tests whether SYMBOL is declared, setting cache variable VAR accordingly.
2244# accordingly.
2245ac_fn_c_check_decl () 2235ac_fn_c_check_decl ()
2246{ 2236{
2247 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2237 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2248 as_decl_name=`echo $2|sed 's/ *(.*//'` 2238 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5
2249 as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` 2239$as_echo_n "checking whether $2 is declared... " >&6; }
2250 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 2240if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2251$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
2252if eval \${$3+:} false; then :
2253 $as_echo_n "(cached) " >&6 2241 $as_echo_n "(cached) " >&6
2254else 2242else
2255 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2243 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2258,12 +2246,8 @@ $4
2258int 2246int
2259main () 2247main ()
2260{ 2248{
2261#ifndef $as_decl_name 2249#ifndef $2
2262#ifdef __cplusplus 2250 (void) $2;
2263 (void) $as_decl_use;
2264#else
2265 (void) $as_decl_name;
2266#endif
2267#endif 2251#endif
2268 2252
2269 ; 2253 ;
@@ -2280,7 +2264,7 @@ fi
2280eval ac_res=\$$3 2264eval ac_res=\$$3
2281 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2265 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2282$as_echo "$ac_res" >&6; } 2266$as_echo "$ac_res" >&6; }
2283 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2267 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2284 2268
2285} # ac_fn_c_check_decl 2269} # ac_fn_c_check_decl
2286 2270
@@ -2292,7 +2276,7 @@ ac_fn_c_check_header_preproc ()
2292 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2276 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2293 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2277 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2294$as_echo_n "checking for $2... " >&6; } 2278$as_echo_n "checking for $2... " >&6; }
2295if eval \${$3+:} false; then : 2279if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2296 $as_echo_n "(cached) " >&6 2280 $as_echo_n "(cached) " >&6
2297else 2281else
2298 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2282 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2304,12 +2288,12 @@ if ac_fn_c_try_cpp "$LINENO"; then :
2304else 2288else
2305 eval "$3=no" 2289 eval "$3=no"
2306fi 2290fi
2307rm -f conftest.err conftest.i conftest.$ac_ext 2291rm -f conftest.err conftest.$ac_ext
2308fi 2292fi
2309eval ac_res=\$$3 2293eval ac_res=\$$3
2310 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2294 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2311$as_echo "$ac_res" >&6; } 2295$as_echo "$ac_res" >&6; }
2312 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2296 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2313 2297
2314} # ac_fn_c_check_header_preproc 2298} # ac_fn_c_check_header_preproc
2315 2299
@@ -2322,7 +2306,7 @@ ac_fn_c_check_member ()
2322 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2306 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2323 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 2307 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
2324$as_echo_n "checking for $2.$3... " >&6; } 2308$as_echo_n "checking for $2.$3... " >&6; }
2325if eval \${$4+:} false; then : 2309if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then :
2326 $as_echo_n "(cached) " >&6 2310 $as_echo_n "(cached) " >&6
2327else 2311else
2328 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2312 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2366,7 +2350,7 @@ fi
2366eval ac_res=\$$4 2350eval ac_res=\$$4
2367 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2351 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2368$as_echo "$ac_res" >&6; } 2352$as_echo "$ac_res" >&6; }
2369 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2353 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2370 2354
2371} # ac_fn_c_check_member 2355} # ac_fn_c_check_member
2372 2356
@@ -2378,7 +2362,7 @@ ac_fn_c_check_func ()
2378 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2362 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2379 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2363 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2380$as_echo_n "checking for $2... " >&6; } 2364$as_echo_n "checking for $2... " >&6; }
2381if eval \${$3+:} false; then : 2365if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2382 $as_echo_n "(cached) " >&6 2366 $as_echo_n "(cached) " >&6
2383else 2367else
2384 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2368 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2433,7 +2417,7 @@ fi
2433eval ac_res=\$$3 2417eval ac_res=\$$3
2434 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2418 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2435$as_echo "$ac_res" >&6; } 2419$as_echo "$ac_res" >&6; }
2436 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2420 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2437 2421
2438} # ac_fn_c_check_func 2422} # ac_fn_c_check_func
2439 2423
@@ -2446,7 +2430,7 @@ ac_fn_c_check_type ()
2446 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2430 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2447 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2431 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2448$as_echo_n "checking for $2... " >&6; } 2432$as_echo_n "checking for $2... " >&6; }
2449if eval \${$3+:} false; then : 2433if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then :
2450 $as_echo_n "(cached) " >&6 2434 $as_echo_n "(cached) " >&6
2451else 2435else
2452 eval "$3=no" 2436 eval "$3=no"
@@ -2487,7 +2471,7 @@ fi
2487eval ac_res=\$$3 2471eval ac_res=\$$3
2488 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2472 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2489$as_echo "$ac_res" >&6; } 2473$as_echo "$ac_res" >&6; }
2490 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2474 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2491 2475
2492} # ac_fn_c_check_type 2476} # ac_fn_c_check_type
2493 2477
@@ -2664,7 +2648,7 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
2664rm -f conftest.val 2648rm -f conftest.val
2665 2649
2666 fi 2650 fi
2667 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno 2651 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;}
2668 as_fn_set_status $ac_retval 2652 as_fn_set_status $ac_retval
2669 2653
2670} # ac_fn_c_compute_int 2654} # ac_fn_c_compute_int
@@ -2673,7 +2657,7 @@ This file contains any messages produced by compilers while
2673running configure, to aid debugging if configure makes a mistake. 2657running configure, to aid debugging if configure makes a mistake.
2674 2658
2675It was created by emacs $as_me 24.0.50, which was 2659It was created by emacs $as_me 24.0.50, which was
2676generated by GNU Autoconf 2.68. Invocation command line was 2660generated by GNU Autoconf 2.65. Invocation command line was
2677 2661
2678 $ $0 $@ 2662 $ $0 $@
2679 2663
@@ -2783,9 +2767,11 @@ trap 'exit_status=$?
2783 { 2767 {
2784 echo 2768 echo
2785 2769
2786 $as_echo "## ---------------- ## 2770 cat <<\_ASBOX
2771## ---------------- ##
2787## Cache variables. ## 2772## Cache variables. ##
2788## ---------------- ##" 2773## ---------------- ##
2774_ASBOX
2789 echo 2775 echo
2790 # The following way of writing the cache mishandles newlines in values, 2776 # The following way of writing the cache mishandles newlines in values,
2791( 2777(
@@ -2819,9 +2805,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2819) 2805)
2820 echo 2806 echo
2821 2807
2822 $as_echo "## ----------------- ## 2808 cat <<\_ASBOX
2809## ----------------- ##
2823## Output variables. ## 2810## Output variables. ##
2824## ----------------- ##" 2811## ----------------- ##
2812_ASBOX
2825 echo 2813 echo
2826 for ac_var in $ac_subst_vars 2814 for ac_var in $ac_subst_vars
2827 do 2815 do
@@ -2834,9 +2822,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2834 echo 2822 echo
2835 2823
2836 if test -n "$ac_subst_files"; then 2824 if test -n "$ac_subst_files"; then
2837 $as_echo "## ------------------- ## 2825 cat <<\_ASBOX
2826## ------------------- ##
2838## File substitutions. ## 2827## File substitutions. ##
2839## ------------------- ##" 2828## ------------------- ##
2829_ASBOX
2840 echo 2830 echo
2841 for ac_var in $ac_subst_files 2831 for ac_var in $ac_subst_files
2842 do 2832 do
@@ -2850,9 +2840,11 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2850 fi 2840 fi
2851 2841
2852 if test -s confdefs.h; then 2842 if test -s confdefs.h; then
2853 $as_echo "## ----------- ## 2843 cat <<\_ASBOX
2844## ----------- ##
2854## confdefs.h. ## 2845## confdefs.h. ##
2855## ----------- ##" 2846## ----------- ##
2847_ASBOX
2856 echo 2848 echo
2857 cat confdefs.h 2849 cat confdefs.h
2858 echo 2850 echo
@@ -2907,12 +2899,7 @@ _ACEOF
2907ac_site_file1=NONE 2899ac_site_file1=NONE
2908ac_site_file2=NONE 2900ac_site_file2=NONE
2909if test -n "$CONFIG_SITE"; then 2901if test -n "$CONFIG_SITE"; then
2910 # We do not want a PATH search for config.site. 2902 ac_site_file1=$CONFIG_SITE
2911 case $CONFIG_SITE in #((
2912 -*) ac_site_file1=./$CONFIG_SITE;;
2913 */*) ac_site_file1=$CONFIG_SITE;;
2914 *) ac_site_file1=./$CONFIG_SITE;;
2915 esac
2916elif test "x$prefix" != xNONE; then 2903elif test "x$prefix" != xNONE; then
2917 ac_site_file1=$prefix/share/config.site 2904 ac_site_file1=$prefix/share/config.site
2918 ac_site_file2=$prefix/etc/config.site 2905 ac_site_file2=$prefix/etc/config.site
@@ -2927,11 +2914,7 @@ do
2927 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 2914 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2928$as_echo "$as_me: loading site script $ac_site_file" >&6;} 2915$as_echo "$as_me: loading site script $ac_site_file" >&6;}
2929 sed 's/^/| /' "$ac_site_file" >&5 2916 sed 's/^/| /' "$ac_site_file" >&5
2930 . "$ac_site_file" \ 2917 . "$ac_site_file"
2931 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2932$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2933as_fn_error $? "failed to load site script $ac_site_file
2934See \`config.log' for more details" "$LINENO" 5; }
2935 fi 2918 fi
2936done 2919done
2937 2920
@@ -3022,7 +3005,7 @@ if $ac_cache_corrupted; then
3022$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3005$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3023 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 3006 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
3024$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 3007$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
3025 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 3008 as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
3026fi 3009fi
3027## -------------------- ## 3010## -------------------- ##
3028## Main body of script. ## 3011## Main body of script. ##
@@ -3042,22 +3025,16 @@ am__api_version='1.11'
3042 3025
3043ac_aux_dir= 3026ac_aux_dir=
3044for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do 3027for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
3045 if test -f "$ac_dir/install-sh"; then 3028 for ac_t in install-sh install.sh shtool; do
3046 ac_aux_dir=$ac_dir 3029 if test -f "$ac_dir/$ac_t"; then
3047 ac_install_sh="$ac_aux_dir/install-sh -c" 3030 ac_aux_dir=$ac_dir
3048 break 3031 ac_install_sh="$ac_aux_dir/$ac_t -c"
3049 elif test -f "$ac_dir/install.sh"; then 3032 break 2
3050 ac_aux_dir=$ac_dir 3033 fi
3051 ac_install_sh="$ac_aux_dir/install.sh -c" 3034 done
3052 break
3053 elif test -f "$ac_dir/shtool"; then
3054 ac_aux_dir=$ac_dir
3055 ac_install_sh="$ac_aux_dir/shtool install -c"
3056 break
3057 fi
3058done 3035done
3059if test -z "$ac_aux_dir"; then 3036if test -z "$ac_aux_dir"; then
3060 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 3037 as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
3061fi 3038fi
3062 3039
3063# These three variables are undocumented and unsupported, 3040# These three variables are undocumented and unsupported,
@@ -3086,7 +3063,7 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
3086{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 3063{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
3087$as_echo_n "checking for a BSD-compatible install... " >&6; } 3064$as_echo_n "checking for a BSD-compatible install... " >&6; }
3088if test -z "$INSTALL"; then 3065if test -z "$INSTALL"; then
3089if ${ac_cv_path_install+:} false; then : 3066if test "${ac_cv_path_install+set}" = set; then :
3090 $as_echo_n "(cached) " >&6 3067 $as_echo_n "(cached) " >&6
3091else 3068else
3092 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3069 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -3173,11 +3150,11 @@ am_lf='
3173' 3150'
3174case `pwd` in 3151case `pwd` in
3175 *[\\\"\#\$\&\'\`$am_lf]*) 3152 *[\\\"\#\$\&\'\`$am_lf]*)
3176 as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; 3153 as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
3177esac 3154esac
3178case $srcdir in 3155case $srcdir in
3179 *[\\\"\#\$\&\'\`$am_lf\ \ ]*) 3156 *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
3180 as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;; 3157 as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
3181esac 3158esac
3182 3159
3183# Do `set' in a subshell so we don't clobber the current shell's 3160# Do `set' in a subshell so we don't clobber the current shell's
@@ -3199,7 +3176,7 @@ if (
3199 # if, for instance, CONFIG_SHELL is bash and it inherits a 3176 # if, for instance, CONFIG_SHELL is bash and it inherits a
3200 # broken ls alias from the environment. This has actually 3177 # broken ls alias from the environment. This has actually
3201 # happened. Such a system could not be considered "sane". 3178 # happened. Such a system could not be considered "sane".
3202 as_fn_error $? "ls -t appears to fail. Make sure there is not a broken 3179 as_fn_error "ls -t appears to fail. Make sure there is not a broken
3203alias in your environment" "$LINENO" 5 3180alias in your environment" "$LINENO" 5
3204 fi 3181 fi
3205 3182
@@ -3209,7 +3186,7 @@ then
3209 # Ok. 3186 # Ok.
3210 : 3187 :
3211else 3188else
3212 as_fn_error $? "newly created file is older than distributed files! 3189 as_fn_error "newly created file is older than distributed files!
3213Check your system clock" "$LINENO" 5 3190Check your system clock" "$LINENO" 5
3214fi 3191fi
3215{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 3192{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -3263,7 +3240,7 @@ if test "$cross_compiling" != no; then
3263set dummy ${ac_tool_prefix}strip; ac_word=$2 3240set dummy ${ac_tool_prefix}strip; ac_word=$2
3264{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3241{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3265$as_echo_n "checking for $ac_word... " >&6; } 3242$as_echo_n "checking for $ac_word... " >&6; }
3266if ${ac_cv_prog_STRIP+:} false; then : 3243if test "${ac_cv_prog_STRIP+set}" = set; then :
3267 $as_echo_n "(cached) " >&6 3244 $as_echo_n "(cached) " >&6
3268else 3245else
3269 if test -n "$STRIP"; then 3246 if test -n "$STRIP"; then
@@ -3303,7 +3280,7 @@ if test -z "$ac_cv_prog_STRIP"; then
3303set dummy strip; ac_word=$2 3280set dummy strip; ac_word=$2
3304{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3281{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3305$as_echo_n "checking for $ac_word... " >&6; } 3282$as_echo_n "checking for $ac_word... " >&6; }
3306if ${ac_cv_prog_ac_ct_STRIP+:} false; then : 3283if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
3307 $as_echo_n "(cached) " >&6 3284 $as_echo_n "(cached) " >&6
3308else 3285else
3309 if test -n "$ac_ct_STRIP"; then 3286 if test -n "$ac_ct_STRIP"; then
@@ -3356,7 +3333,7 @@ INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
3356{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 3333{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
3357$as_echo_n "checking for a thread-safe mkdir -p... " >&6; } 3334$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
3358if test -z "$MKDIR_P"; then 3335if test -z "$MKDIR_P"; then
3359 if ${ac_cv_path_mkdir+:} false; then : 3336 if test "${ac_cv_path_mkdir+set}" = set; then :
3360 $as_echo_n "(cached) " >&6 3337 $as_echo_n "(cached) " >&6
3361else 3338else
3362 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3339 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -3408,7 +3385,7 @@ do
3408set dummy $ac_prog; ac_word=$2 3385set dummy $ac_prog; ac_word=$2
3409{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3386{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3410$as_echo_n "checking for $ac_word... " >&6; } 3387$as_echo_n "checking for $ac_word... " >&6; }
3411if ${ac_cv_prog_AWK+:} false; then : 3388if test "${ac_cv_prog_AWK+set}" = set; then :
3412 $as_echo_n "(cached) " >&6 3389 $as_echo_n "(cached) " >&6
3413else 3390else
3414 if test -n "$AWK"; then 3391 if test -n "$AWK"; then
@@ -3448,7 +3425,7 @@ done
3448$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 3425$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
3449set x ${MAKE-make} 3426set x ${MAKE-make}
3450ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 3427ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
3451if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : 3428if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
3452 $as_echo_n "(cached) " >&6 3429 $as_echo_n "(cached) " >&6
3453else 3430else
3454 cat >conftest.make <<\_ACEOF 3431 cat >conftest.make <<\_ACEOF
@@ -3456,7 +3433,7 @@ SHELL = /bin/sh
3456all: 3433all:
3457 @echo '@@@%%%=$(MAKE)=@@@%%%' 3434 @echo '@@@%%%=$(MAKE)=@@@%%%'
3458_ACEOF 3435_ACEOF
3459# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. 3436# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
3460case `${MAKE-make} -f conftest.make 2>/dev/null` in 3437case `${MAKE-make} -f conftest.make 2>/dev/null` in
3461 *@@@%%%=?*=@@@%%%*) 3438 *@@@%%%=?*=@@@%%%*)
3462 eval ac_cv_prog_make_${ac_make}_set=yes;; 3439 eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -3490,7 +3467,7 @@ if test "`cd $srcdir && pwd`" != "`pwd`"; then
3490 am__isrc=' -I$(srcdir)' 3467 am__isrc=' -I$(srcdir)'
3491 # test to see if srcdir already configured 3468 # test to see if srcdir already configured
3492 if test -f $srcdir/config.status; then 3469 if test -f $srcdir/config.status; then
3493 as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 3470 as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
3494 fi 3471 fi
3495fi 3472fi
3496 3473
@@ -3693,7 +3670,7 @@ if test "${with_x_toolkit+set}" = set; then :
3693 g | gt | gtk ) val=gtk ;; 3670 g | gt | gtk ) val=gtk ;;
3694 gtk3 ) val=gtk3 ;; 3671 gtk3 ) val=gtk3 ;;
3695 * ) 3672 * )
3696as_fn_error $? "\`--with-x-toolkit=$withval' is invalid; 3673as_fn_error "\`--with-x-toolkit=$withval' is invalid;
3697this option's value should be \`yes', \`no', \`lucid', \`athena', \`motif', \`gtk' or 3674this option's value should be \`yes', \`no', \`lucid', \`athena', \`motif', \`gtk' or
3698\`gtk3'. \`yes' and \`gtk' are synonyms. \`athena' and \`lucid' are synonyms." "$LINENO" 5 3675\`gtk3'. \`yes' and \`gtk' are synonyms. \`athena' and \`lucid' are synonyms." "$LINENO" 5
3699 ;; 3676 ;;
@@ -4006,7 +3983,7 @@ do
4006 stringfreelist) ac_gc_check_string_free_list=1 ;; 3983 stringfreelist) ac_gc_check_string_free_list=1 ;;
4007 xmallocoverrun) ac_xmalloc_overrun=1 ;; 3984 xmallocoverrun) ac_xmalloc_overrun=1 ;;
4008 conslist) ac_gc_check_cons_list=1 ;; 3985 conslist) ac_gc_check_cons_list=1 ;;
4009 *) as_fn_error $? "unknown check category $check" "$LINENO" 5 ;; 3986 *) as_fn_error "unknown check category $check" "$LINENO" 5 ;;
4010 esac 3987 esac
4011done 3988done
4012IFS="$ac_save_IFS" 3989IFS="$ac_save_IFS"
@@ -4121,27 +4098,27 @@ fi
4121 4098
4122# Make sure we can run config.sub. 4099# Make sure we can run config.sub.
4123$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 4100$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
4124 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 4101 as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
4125 4102
4126{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 4103{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
4127$as_echo_n "checking build system type... " >&6; } 4104$as_echo_n "checking build system type... " >&6; }
4128if ${ac_cv_build+:} false; then : 4105if test "${ac_cv_build+set}" = set; then :
4129 $as_echo_n "(cached) " >&6 4106 $as_echo_n "(cached) " >&6
4130else 4107else
4131 ac_build_alias=$build_alias 4108 ac_build_alias=$build_alias
4132test "x$ac_build_alias" = x && 4109test "x$ac_build_alias" = x &&
4133 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 4110 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
4134test "x$ac_build_alias" = x && 4111test "x$ac_build_alias" = x &&
4135 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 4112 as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5
4136ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 4113ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
4137 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 4114 as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
4138 4115
4139fi 4116fi
4140{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 4117{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
4141$as_echo "$ac_cv_build" >&6; } 4118$as_echo "$ac_cv_build" >&6; }
4142case $ac_cv_build in 4119case $ac_cv_build in
4143*-*-*) ;; 4120*-*-*) ;;
4144*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; 4121*) as_fn_error "invalid value of canonical build" "$LINENO" 5;;
4145esac 4122esac
4146build=$ac_cv_build 4123build=$ac_cv_build
4147ac_save_IFS=$IFS; IFS='-' 4124ac_save_IFS=$IFS; IFS='-'
@@ -4159,14 +4136,14 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
4159 4136
4160{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 4137{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
4161$as_echo_n "checking host system type... " >&6; } 4138$as_echo_n "checking host system type... " >&6; }
4162if ${ac_cv_host+:} false; then : 4139if test "${ac_cv_host+set}" = set; then :
4163 $as_echo_n "(cached) " >&6 4140 $as_echo_n "(cached) " >&6
4164else 4141else
4165 if test "x$host_alias" = x; then 4142 if test "x$host_alias" = x; then
4166 ac_cv_host=$ac_cv_build 4143 ac_cv_host=$ac_cv_build
4167else 4144else
4168 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 4145 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
4169 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 4146 as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
4170fi 4147fi
4171 4148
4172fi 4149fi
@@ -4174,7 +4151,7 @@ fi
4174$as_echo "$ac_cv_host" >&6; } 4151$as_echo "$ac_cv_host" >&6; }
4175case $ac_cv_host in 4152case $ac_cv_host in
4176*-*-*) ;; 4153*-*-*) ;;
4177*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; 4154*) as_fn_error "invalid value of canonical host" "$LINENO" 5;;
4178esac 4155esac
4179host=$ac_cv_host 4156host=$ac_cv_host
4180ac_save_IFS=$IFS; IFS='-' 4157ac_save_IFS=$IFS; IFS='-'
@@ -4428,7 +4405,7 @@ fi
4428 4405
4429 4406
4430if test $unported = yes; then 4407if test $unported = yes; then
4431 as_fn_error $? "Emacs hasn't been ported to \`${canonical}' systems. 4408 as_fn_error "Emacs hasn't been ported to \`${canonical}' systems.
4432Check \`etc/MACHINES' for recognized configuration names." "$LINENO" 5 4409Check \`etc/MACHINES' for recognized configuration names." "$LINENO" 5
4433fi 4410fi
4434 4411
@@ -4456,7 +4433,7 @@ if test -n "$ac_tool_prefix"; then
4456set dummy ${ac_tool_prefix}gcc; ac_word=$2 4433set dummy ${ac_tool_prefix}gcc; ac_word=$2
4457{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4434{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4458$as_echo_n "checking for $ac_word... " >&6; } 4435$as_echo_n "checking for $ac_word... " >&6; }
4459if ${ac_cv_prog_CC+:} false; then : 4436if test "${ac_cv_prog_CC+set}" = set; then :
4460 $as_echo_n "(cached) " >&6 4437 $as_echo_n "(cached) " >&6
4461else 4438else
4462 if test -n "$CC"; then 4439 if test -n "$CC"; then
@@ -4496,7 +4473,7 @@ if test -z "$ac_cv_prog_CC"; then
4496set dummy gcc; ac_word=$2 4473set dummy gcc; ac_word=$2
4497{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4474{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4498$as_echo_n "checking for $ac_word... " >&6; } 4475$as_echo_n "checking for $ac_word... " >&6; }
4499if ${ac_cv_prog_ac_ct_CC+:} false; then : 4476if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
4500 $as_echo_n "(cached) " >&6 4477 $as_echo_n "(cached) " >&6
4501else 4478else
4502 if test -n "$ac_ct_CC"; then 4479 if test -n "$ac_ct_CC"; then
@@ -4549,7 +4526,7 @@ if test -z "$CC"; then
4549set dummy ${ac_tool_prefix}cc; ac_word=$2 4526set dummy ${ac_tool_prefix}cc; ac_word=$2
4550{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4527{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4551$as_echo_n "checking for $ac_word... " >&6; } 4528$as_echo_n "checking for $ac_word... " >&6; }
4552if ${ac_cv_prog_CC+:} false; then : 4529if test "${ac_cv_prog_CC+set}" = set; then :
4553 $as_echo_n "(cached) " >&6 4530 $as_echo_n "(cached) " >&6
4554else 4531else
4555 if test -n "$CC"; then 4532 if test -n "$CC"; then
@@ -4589,7 +4566,7 @@ if test -z "$CC"; then
4589set dummy cc; ac_word=$2 4566set dummy cc; ac_word=$2
4590{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4567{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4591$as_echo_n "checking for $ac_word... " >&6; } 4568$as_echo_n "checking for $ac_word... " >&6; }
4592if ${ac_cv_prog_CC+:} false; then : 4569if test "${ac_cv_prog_CC+set}" = set; then :
4593 $as_echo_n "(cached) " >&6 4570 $as_echo_n "(cached) " >&6
4594else 4571else
4595 if test -n "$CC"; then 4572 if test -n "$CC"; then
@@ -4648,7 +4625,7 @@ if test -z "$CC"; then
4648set dummy $ac_tool_prefix$ac_prog; ac_word=$2 4625set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4649{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4626{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4650$as_echo_n "checking for $ac_word... " >&6; } 4627$as_echo_n "checking for $ac_word... " >&6; }
4651if ${ac_cv_prog_CC+:} false; then : 4628if test "${ac_cv_prog_CC+set}" = set; then :
4652 $as_echo_n "(cached) " >&6 4629 $as_echo_n "(cached) " >&6
4653else 4630else
4654 if test -n "$CC"; then 4631 if test -n "$CC"; then
@@ -4692,7 +4669,7 @@ do
4692set dummy $ac_prog; ac_word=$2 4669set dummy $ac_prog; ac_word=$2
4693{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 4670{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
4694$as_echo_n "checking for $ac_word... " >&6; } 4671$as_echo_n "checking for $ac_word... " >&6; }
4695if ${ac_cv_prog_ac_ct_CC+:} false; then : 4672if test "${ac_cv_prog_ac_ct_CC+set}" = set; then :
4696 $as_echo_n "(cached) " >&6 4673 $as_echo_n "(cached) " >&6
4697else 4674else
4698 if test -n "$ac_ct_CC"; then 4675 if test -n "$ac_ct_CC"; then
@@ -4746,8 +4723,8 @@ fi
4746 4723
4747test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4724test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4748$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4725$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4749as_fn_error $? "no acceptable C compiler found in \$PATH 4726as_fn_error "no acceptable C compiler found in \$PATH
4750See \`config.log' for more details" "$LINENO" 5; } 4727See \`config.log' for more details." "$LINENO" 5; }
4751 4728
4752# Provide some information about the compiler. 4729# Provide some information about the compiler.
4753$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 4730$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -4861,8 +4838,9 @@ sed 's/^/| /' conftest.$ac_ext >&5
4861 4838
4862{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4839{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4863$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4840$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4864as_fn_error 77 "C compiler cannot create executables 4841{ as_fn_set_status 77
4865See \`config.log' for more details" "$LINENO" 5; } 4842as_fn_error "C compiler cannot create executables
4843See \`config.log' for more details." "$LINENO" 5; }; }
4866else 4844else
4867 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 4845 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
4868$as_echo "yes" >&6; } 4846$as_echo "yes" >&6; }
@@ -4904,8 +4882,8 @@ done
4904else 4882else
4905 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4883 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4906$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4884$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4907as_fn_error $? "cannot compute suffix of executables: cannot compile and link 4885as_fn_error "cannot compute suffix of executables: cannot compile and link
4908See \`config.log' for more details" "$LINENO" 5; } 4886See \`config.log' for more details." "$LINENO" 5; }
4909fi 4887fi
4910rm -f conftest conftest$ac_cv_exeext 4888rm -f conftest conftest$ac_cv_exeext
4911{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 4889{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -4962,9 +4940,9 @@ $as_echo "$ac_try_echo"; } >&5
4962 else 4940 else
4963 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4941 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4964$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4942$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4965as_fn_error $? "cannot run C compiled programs. 4943as_fn_error "cannot run C compiled programs.
4966If you meant to cross compile, use \`--host'. 4944If you meant to cross compile, use \`--host'.
4967See \`config.log' for more details" "$LINENO" 5; } 4945See \`config.log' for more details." "$LINENO" 5; }
4968 fi 4946 fi
4969 fi 4947 fi
4970fi 4948fi
@@ -4975,7 +4953,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
4975ac_clean_files=$ac_clean_files_save 4953ac_clean_files=$ac_clean_files_save
4976{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 4954{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
4977$as_echo_n "checking for suffix of object files... " >&6; } 4955$as_echo_n "checking for suffix of object files... " >&6; }
4978if ${ac_cv_objext+:} false; then : 4956if test "${ac_cv_objext+set}" = set; then :
4979 $as_echo_n "(cached) " >&6 4957 $as_echo_n "(cached) " >&6
4980else 4958else
4981 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4959 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -5015,8 +4993,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
5015 4993
5016{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4994{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
5017$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4995$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
5018as_fn_error $? "cannot compute suffix of object files: cannot compile 4996as_fn_error "cannot compute suffix of object files: cannot compile
5019See \`config.log' for more details" "$LINENO" 5; } 4997See \`config.log' for more details." "$LINENO" 5; }
5020fi 4998fi
5021rm -f conftest.$ac_cv_objext conftest.$ac_ext 4999rm -f conftest.$ac_cv_objext conftest.$ac_ext
5022fi 5000fi
@@ -5026,7 +5004,7 @@ OBJEXT=$ac_cv_objext
5026ac_objext=$OBJEXT 5004ac_objext=$OBJEXT
5027{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 5005{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
5028$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 5006$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
5029if ${ac_cv_c_compiler_gnu+:} false; then : 5007if test "${ac_cv_c_compiler_gnu+set}" = set; then :
5030 $as_echo_n "(cached) " >&6 5008 $as_echo_n "(cached) " >&6
5031else 5009else
5032 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5010 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -5063,7 +5041,7 @@ ac_test_CFLAGS=${CFLAGS+set}
5063ac_save_CFLAGS=$CFLAGS 5041ac_save_CFLAGS=$CFLAGS
5064{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 5042{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
5065$as_echo_n "checking whether $CC accepts -g... " >&6; } 5043$as_echo_n "checking whether $CC accepts -g... " >&6; }
5066if ${ac_cv_prog_cc_g+:} false; then : 5044if test "${ac_cv_prog_cc_g+set}" = set; then :
5067 $as_echo_n "(cached) " >&6 5045 $as_echo_n "(cached) " >&6
5068else 5046else
5069 ac_save_c_werror_flag=$ac_c_werror_flag 5047 ac_save_c_werror_flag=$ac_c_werror_flag
@@ -5141,7 +5119,7 @@ else
5141fi 5119fi
5142{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 5120{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
5143$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 5121$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
5144if ${ac_cv_prog_cc_c89+:} false; then : 5122if test "${ac_cv_prog_cc_c89+set}" = set; then :
5145 $as_echo_n "(cached) " >&6 5123 $as_echo_n "(cached) " >&6
5146else 5124else
5147 ac_cv_prog_cc_c89=no 5125 ac_cv_prog_cc_c89=no
@@ -5302,7 +5280,7 @@ depcc="$CC" am_compiler_list=
5302 5280
5303{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 5281{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
5304$as_echo_n "checking dependency style of $depcc... " >&6; } 5282$as_echo_n "checking dependency style of $depcc... " >&6; }
5305if ${am_cv_CC_dependencies_compiler_type+:} false; then : 5283if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then :
5306 $as_echo_n "(cached) " >&6 5284 $as_echo_n "(cached) " >&6
5307else 5285else
5308 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then 5286 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
@@ -5434,7 +5412,7 @@ $as_echo_n "checking whether cc understands -c and -o together... " >&6; }
5434fi 5412fi
5435set dummy $CC; ac_cc=`$as_echo "$2" | 5413set dummy $CC; ac_cc=`$as_echo "$2" |
5436 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'` 5414 sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
5437if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then : 5415if { as_var=ac_cv_prog_cc_${ac_cc}_c_o; eval "test \"\${$as_var+set}\" = set"; }; then :
5438 $as_echo_n "(cached) " >&6 5416 $as_echo_n "(cached) " >&6
5439else 5417else
5440 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5418 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -5558,7 +5536,7 @@ if test -n "$ac_tool_prefix"; then
5558set dummy ${ac_tool_prefix}ranlib; ac_word=$2 5536set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5559{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5537{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5560$as_echo_n "checking for $ac_word... " >&6; } 5538$as_echo_n "checking for $ac_word... " >&6; }
5561if ${ac_cv_prog_RANLIB+:} false; then : 5539if test "${ac_cv_prog_RANLIB+set}" = set; then :
5562 $as_echo_n "(cached) " >&6 5540 $as_echo_n "(cached) " >&6
5563else 5541else
5564 if test -n "$RANLIB"; then 5542 if test -n "$RANLIB"; then
@@ -5598,7 +5576,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
5598set dummy ranlib; ac_word=$2 5576set dummy ranlib; ac_word=$2
5599{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5577{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5600$as_echo_n "checking for $ac_word... " >&6; } 5578$as_echo_n "checking for $ac_word... " >&6; }
5601if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : 5579if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
5602 $as_echo_n "(cached) " >&6 5580 $as_echo_n "(cached) " >&6
5603else 5581else
5604 if test -n "$ac_ct_RANLIB"; then 5582 if test -n "$ac_ct_RANLIB"; then
@@ -5658,7 +5636,7 @@ if test -n "$CPP" && test -d "$CPP"; then
5658 CPP= 5636 CPP=
5659fi 5637fi
5660if test -z "$CPP"; then 5638if test -z "$CPP"; then
5661 if ${ac_cv_prog_CPP+:} false; then : 5639 if test "${ac_cv_prog_CPP+set}" = set; then :
5662 $as_echo_n "(cached) " >&6 5640 $as_echo_n "(cached) " >&6
5663else 5641else
5664 # Double quotes because CPP needs to be expanded 5642 # Double quotes because CPP needs to be expanded
@@ -5688,7 +5666,7 @@ else
5688 # Broken: fails on valid input. 5666 # Broken: fails on valid input.
5689continue 5667continue
5690fi 5668fi
5691rm -f conftest.err conftest.i conftest.$ac_ext 5669rm -f conftest.err conftest.$ac_ext
5692 5670
5693 # OK, works on sane cases. Now check whether nonexistent headers 5671 # OK, works on sane cases. Now check whether nonexistent headers
5694 # can be detected and how. 5672 # can be detected and how.
@@ -5704,11 +5682,11 @@ else
5704ac_preproc_ok=: 5682ac_preproc_ok=:
5705break 5683break
5706fi 5684fi
5707rm -f conftest.err conftest.i conftest.$ac_ext 5685rm -f conftest.err conftest.$ac_ext
5708 5686
5709done 5687done
5710# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5688# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5711rm -f conftest.i conftest.err conftest.$ac_ext 5689rm -f conftest.err conftest.$ac_ext
5712if $ac_preproc_ok; then : 5690if $ac_preproc_ok; then :
5713 break 5691 break
5714fi 5692fi
@@ -5747,7 +5725,7 @@ else
5747 # Broken: fails on valid input. 5725 # Broken: fails on valid input.
5748continue 5726continue
5749fi 5727fi
5750rm -f conftest.err conftest.i conftest.$ac_ext 5728rm -f conftest.err conftest.$ac_ext
5751 5729
5752 # OK, works on sane cases. Now check whether nonexistent headers 5730 # OK, works on sane cases. Now check whether nonexistent headers
5753 # can be detected and how. 5731 # can be detected and how.
@@ -5763,18 +5741,18 @@ else
5763ac_preproc_ok=: 5741ac_preproc_ok=:
5764break 5742break
5765fi 5743fi
5766rm -f conftest.err conftest.i conftest.$ac_ext 5744rm -f conftest.err conftest.$ac_ext
5767 5745
5768done 5746done
5769# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5747# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5770rm -f conftest.i conftest.err conftest.$ac_ext 5748rm -f conftest.err conftest.$ac_ext
5771if $ac_preproc_ok; then : 5749if $ac_preproc_ok; then :
5772 5750
5773else 5751else
5774 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 5752 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
5775$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 5753$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
5776as_fn_error $? "C preprocessor \"$CPP\" fails sanity check 5754as_fn_error "C preprocessor \"$CPP\" fails sanity check
5777See \`config.log' for more details" "$LINENO" 5; } 5755See \`config.log' for more details." "$LINENO" 5; }
5778fi 5756fi
5779 5757
5780ac_ext=c 5758ac_ext=c
@@ -5786,7 +5764,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
5786 5764
5787{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 5765{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
5788$as_echo_n "checking for grep that handles long lines and -e... " >&6; } 5766$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
5789if ${ac_cv_path_GREP+:} false; then : 5767if test "${ac_cv_path_GREP+set}" = set; then :
5790 $as_echo_n "(cached) " >&6 5768 $as_echo_n "(cached) " >&6
5791else 5769else
5792 if test -z "$GREP"; then 5770 if test -z "$GREP"; then
@@ -5835,7 +5813,7 @@ esac
5835 done 5813 done
5836IFS=$as_save_IFS 5814IFS=$as_save_IFS
5837 if test -z "$ac_cv_path_GREP"; then 5815 if test -z "$ac_cv_path_GREP"; then
5838 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 5816 as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
5839 fi 5817 fi
5840else 5818else
5841 ac_cv_path_GREP=$GREP 5819 ac_cv_path_GREP=$GREP
@@ -5849,7 +5827,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
5849 5827
5850{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 5828{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
5851$as_echo_n "checking for egrep... " >&6; } 5829$as_echo_n "checking for egrep... " >&6; }
5852if ${ac_cv_path_EGREP+:} false; then : 5830if test "${ac_cv_path_EGREP+set}" = set; then :
5853 $as_echo_n "(cached) " >&6 5831 $as_echo_n "(cached) " >&6
5854else 5832else
5855 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 5833 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
@@ -5901,7 +5879,7 @@ esac
5901 done 5879 done
5902IFS=$as_save_IFS 5880IFS=$as_save_IFS
5903 if test -z "$ac_cv_path_EGREP"; then 5881 if test -z "$ac_cv_path_EGREP"; then
5904 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 5882 as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
5905 fi 5883 fi
5906else 5884else
5907 ac_cv_path_EGREP=$EGREP 5885 ac_cv_path_EGREP=$EGREP
@@ -5916,7 +5894,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; }
5916 5894
5917{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 5895{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
5918$as_echo_n "checking for ANSI C header files... " >&6; } 5896$as_echo_n "checking for ANSI C header files... " >&6; }
5919if ${ac_cv_header_stdc+:} false; then : 5897if test "${ac_cv_header_stdc+set}" = set; then :
5920 $as_echo_n "(cached) " >&6 5898 $as_echo_n "(cached) " >&6
5921else 5899else
5922 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5900 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6033,7 +6011,8 @@ do :
6033 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 6011 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
6034ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 6012ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
6035" 6013"
6036if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 6014eval as_val=\$$as_ac_Header
6015 if test "x$as_val" = x""yes; then :
6037 cat >>confdefs.h <<_ACEOF 6016 cat >>confdefs.h <<_ACEOF
6038#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 6017#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
6039_ACEOF 6018_ACEOF
@@ -6047,7 +6026,7 @@ done
6047 6026
6048 6027
6049 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" 6028 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
6050if test "x$ac_cv_header_minix_config_h" = xyes; then : 6029if test "x$ac_cv_header_minix_config_h" = x""yes; then :
6051 MINIX=yes 6030 MINIX=yes
6052else 6031else
6053 MINIX= 6032 MINIX=
@@ -6077,7 +6056,7 @@ $as_echo "#define _XOPEN_SOURCE 500" >>confdefs.h
6077 6056
6078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 6057 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
6079$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } 6058$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
6080if ${ac_cv_safe_to_define___extensions__+:} false; then : 6059if test "${ac_cv_safe_to_define___extensions__+set}" = set; then :
6081 $as_echo_n "(cached) " >&6 6060 $as_echo_n "(cached) " >&6
6082else 6061else
6083 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6062 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6166,7 +6145,7 @@ if test x"$GCC" != xyes && test x"$emacs_check_sunpro_c" = xyes && \
6166 test x"$CPP" = x; then 6145 test x"$CPP" = x; then
6167 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using a Sun C compiler" >&5 6146 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using a Sun C compiler" >&5
6168$as_echo_n "checking whether we are using a Sun C compiler... " >&6; } 6147$as_echo_n "checking whether we are using a Sun C compiler... " >&6; }
6169 if ${emacs_cv_sunpro_c+:} false; then : 6148 if test "${emacs_cv_sunpro_c+set}" = set; then :
6170 $as_echo_n "(cached) " >&6 6149 $as_echo_n "(cached) " >&6
6171else 6150else
6172 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6151 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6334,7 +6313,7 @@ if test -n "$CPP" && test -d "$CPP"; then
6334 CPP= 6313 CPP=
6335fi 6314fi
6336if test -z "$CPP"; then 6315if test -z "$CPP"; then
6337 if ${ac_cv_prog_CPP+:} false; then : 6316 if test "${ac_cv_prog_CPP+set}" = set; then :
6338 $as_echo_n "(cached) " >&6 6317 $as_echo_n "(cached) " >&6
6339else 6318else
6340 # Double quotes because CPP needs to be expanded 6319 # Double quotes because CPP needs to be expanded
@@ -6364,7 +6343,7 @@ else
6364 # Broken: fails on valid input. 6343 # Broken: fails on valid input.
6365continue 6344continue
6366fi 6345fi
6367rm -f conftest.err conftest.i conftest.$ac_ext 6346rm -f conftest.err conftest.$ac_ext
6368 6347
6369 # OK, works on sane cases. Now check whether nonexistent headers 6348 # OK, works on sane cases. Now check whether nonexistent headers
6370 # can be detected and how. 6349 # can be detected and how.
@@ -6380,11 +6359,11 @@ else
6380ac_preproc_ok=: 6359ac_preproc_ok=:
6381break 6360break
6382fi 6361fi
6383rm -f conftest.err conftest.i conftest.$ac_ext 6362rm -f conftest.err conftest.$ac_ext
6384 6363
6385done 6364done
6386# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 6365# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
6387rm -f conftest.i conftest.err conftest.$ac_ext 6366rm -f conftest.err conftest.$ac_ext
6388if $ac_preproc_ok; then : 6367if $ac_preproc_ok; then :
6389 break 6368 break
6390fi 6369fi
@@ -6423,7 +6402,7 @@ else
6423 # Broken: fails on valid input. 6402 # Broken: fails on valid input.
6424continue 6403continue
6425fi 6404fi
6426rm -f conftest.err conftest.i conftest.$ac_ext 6405rm -f conftest.err conftest.$ac_ext
6427 6406
6428 # OK, works on sane cases. Now check whether nonexistent headers 6407 # OK, works on sane cases. Now check whether nonexistent headers
6429 # can be detected and how. 6408 # can be detected and how.
@@ -6439,18 +6418,18 @@ else
6439ac_preproc_ok=: 6418ac_preproc_ok=:
6440break 6419break
6441fi 6420fi
6442rm -f conftest.err conftest.i conftest.$ac_ext 6421rm -f conftest.err conftest.$ac_ext
6443 6422
6444done 6423done
6445# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 6424# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
6446rm -f conftest.i conftest.err conftest.$ac_ext 6425rm -f conftest.err conftest.$ac_ext
6447if $ac_preproc_ok; then : 6426if $ac_preproc_ok; then :
6448 6427
6449else 6428else
6450 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 6429 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
6451$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 6430$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
6452as_fn_error $? "C preprocessor \"$CPP\" fails sanity check 6431as_fn_error "C preprocessor \"$CPP\" fails sanity check
6453See \`config.log' for more details" "$LINENO" 5; } 6432See \`config.log' for more details." "$LINENO" 5; }
6454fi 6433fi
6455 6434
6456ac_ext=c 6435ac_ext=c
@@ -6466,7 +6445,7 @@ if test "x$RANLIB" = x; then
6466set dummy ${ac_tool_prefix}ranlib; ac_word=$2 6445set dummy ${ac_tool_prefix}ranlib; ac_word=$2
6467{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6446{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6468$as_echo_n "checking for $ac_word... " >&6; } 6447$as_echo_n "checking for $ac_word... " >&6; }
6469if ${ac_cv_prog_RANLIB+:} false; then : 6448if test "${ac_cv_prog_RANLIB+set}" = set; then :
6470 $as_echo_n "(cached) " >&6 6449 $as_echo_n "(cached) " >&6
6471else 6450else
6472 if test -n "$RANLIB"; then 6451 if test -n "$RANLIB"; then
@@ -6506,7 +6485,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
6506set dummy ranlib; ac_word=$2 6485set dummy ranlib; ac_word=$2
6507{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6486{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6508$as_echo_n "checking for $ac_word... " >&6; } 6487$as_echo_n "checking for $ac_word... " >&6; }
6509if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : 6488if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then :
6510 $as_echo_n "(cached) " >&6 6489 $as_echo_n "(cached) " >&6
6511else 6490else
6512 if test -n "$ac_ct_RANLIB"; then 6491 if test -n "$ac_ct_RANLIB"; then
@@ -6561,7 +6540,7 @@ fi
6561## is running in i386 mode, we can help them out. 6540## is running in i386 mode, we can help them out.
6562if test "$machine" = "amdx86-64"; then 6541if test "$machine" = "amdx86-64"; then
6563 ac_fn_c_check_decl "$LINENO" "i386" "ac_cv_have_decl_i386" "$ac_includes_default" 6542 ac_fn_c_check_decl "$LINENO" "i386" "ac_cv_have_decl_i386" "$ac_includes_default"
6564if test "x$ac_cv_have_decl_i386" = xyes; then : 6543if test "x$ac_cv_have_decl_i386" = x""yes; then :
6565 6544
6566fi 6545fi
6567 6546
@@ -6576,7 +6555,7 @@ fi
6576set dummy install-info; ac_word=$2 6555set dummy install-info; ac_word=$2
6577{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6556{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6578$as_echo_n "checking for $ac_word... " >&6; } 6557$as_echo_n "checking for $ac_word... " >&6; }
6579if ${ac_cv_path_INSTALL_INFO+:} false; then : 6558if test "${ac_cv_path_INSTALL_INFO+set}" = set; then :
6580 $as_echo_n "(cached) " >&6 6559 $as_echo_n "(cached) " >&6
6581else 6560else
6582 case $INSTALL_INFO in 6561 case $INSTALL_INFO in
@@ -6616,7 +6595,7 @@ fi
6616set dummy install-info; ac_word=$2 6595set dummy install-info; ac_word=$2
6617{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6596{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6618$as_echo_n "checking for $ac_word... " >&6; } 6597$as_echo_n "checking for $ac_word... " >&6; }
6619if ${ac_cv_path_INSTALL_INFO+:} false; then : 6598if test "${ac_cv_path_INSTALL_INFO+set}" = set; then :
6620 $as_echo_n "(cached) " >&6 6599 $as_echo_n "(cached) " >&6
6621else 6600else
6622 case $INSTALL_INFO in 6601 case $INSTALL_INFO in
@@ -6656,7 +6635,7 @@ fi
6656set dummy install-info; ac_word=$2 6635set dummy install-info; ac_word=$2
6657{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6636{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6658$as_echo_n "checking for $ac_word... " >&6; } 6637$as_echo_n "checking for $ac_word... " >&6; }
6659if ${ac_cv_path_INSTALL_INFO+:} false; then : 6638if test "${ac_cv_path_INSTALL_INFO+set}" = set; then :
6660 $as_echo_n "(cached) " >&6 6639 $as_echo_n "(cached) " >&6
6661else 6640else
6662 case $INSTALL_INFO in 6641 case $INSTALL_INFO in
@@ -6697,7 +6676,7 @@ fi
6697set dummy gzip; ac_word=$2 6676set dummy gzip; ac_word=$2
6698{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6677{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6699$as_echo_n "checking for $ac_word... " >&6; } 6678$as_echo_n "checking for $ac_word... " >&6; }
6700if ${ac_cv_path_GZIP_PROG+:} false; then : 6679if test "${ac_cv_path_GZIP_PROG+set}" = set; then :
6701 $as_echo_n "(cached) " >&6 6680 $as_echo_n "(cached) " >&6
6702else 6681else
6703 case $GZIP_PROG in 6682 case $GZIP_PROG in
@@ -6740,7 +6719,7 @@ fi
6740set dummy makeinfo; ac_word=$2 6719set dummy makeinfo; ac_word=$2
6741{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6720{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6742$as_echo_n "checking for $ac_word... " >&6; } 6721$as_echo_n "checking for $ac_word... " >&6; }
6743if ${ac_cv_path_MAKEINFO+:} false; then : 6722if test "${ac_cv_path_MAKEINFO+set}" = set; then :
6744 $as_echo_n "(cached) " >&6 6723 $as_echo_n "(cached) " >&6
6745else 6724else
6746 case $MAKEINFO in 6725 case $MAKEINFO in
@@ -6798,7 +6777,7 @@ if test "$MAKEINFO" = "no"; then
6798 if test "x${with_makeinfo}" = "xno"; then 6777 if test "x${with_makeinfo}" = "xno"; then
6799 HAVE_MAKEINFO=no 6778 HAVE_MAKEINFO=no
6800 elif test ! -e $srcdir/info/emacs; then 6779 elif test ! -e $srcdir/info/emacs; then
6801 as_fn_error $? "You do not seem to have makeinfo >= 4.6, and your 6780 as_fn_error "You do not seem to have makeinfo >= 4.6, and your
6802source tree does not seem to have pre-built manuals in the \`info' directory. 6781source tree does not seem to have pre-built manuals in the \`info' directory.
6803Either install a suitable version of makeinfo, or re-run configure 6782Either install a suitable version of makeinfo, or re-run configure
6804with the \`--without-makeinfo' option to build without the manuals. " "$LINENO" 5 6783with the \`--without-makeinfo' option to build without the manuals. " "$LINENO" 5
@@ -6946,7 +6925,7 @@ esac
6946C_SWITCH_MACHINE= 6925C_SWITCH_MACHINE=
6947if test "$machine" = "alpha"; then 6926if test "$machine" = "alpha"; then
6948 ac_fn_c_check_decl "$LINENO" "__ELF__" "ac_cv_have_decl___ELF__" "$ac_includes_default" 6927 ac_fn_c_check_decl "$LINENO" "__ELF__" "ac_cv_have_decl___ELF__" "$ac_includes_default"
6949if test "x$ac_cv_have_decl___ELF__" = xyes; then : 6928if test "x$ac_cv_have_decl___ELF__" = x""yes; then :
6950 6929
6951fi 6930fi
6952 6931
@@ -6959,7 +6938,7 @@ fi
6959 if test "x$GCC" = "xyes"; then 6938 if test "x$GCC" = "xyes"; then
6960 C_SWITCH_MACHINE="-fno-common" 6939 C_SWITCH_MACHINE="-fno-common"
6961 else 6940 else
6962 as_fn_error $? "What gives? Fix me if DEC Unix supports ELF now." "$LINENO" 5 6941 as_fn_error "What gives? Fix me if DEC Unix supports ELF now." "$LINENO" 5
6963 fi 6942 fi
6964 else 6943 else
6965 UNEXEC_OBJ=unexalpha.o 6944 UNEXEC_OBJ=unexalpha.o
@@ -7014,7 +6993,7 @@ if test "$enable_largefile" != no; then
7014 6993
7015 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 6994 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
7016$as_echo_n "checking for special C compiler options needed for large files... " >&6; } 6995$as_echo_n "checking for special C compiler options needed for large files... " >&6; }
7017if ${ac_cv_sys_largefile_CC+:} false; then : 6996if test "${ac_cv_sys_largefile_CC+set}" = set; then :
7018 $as_echo_n "(cached) " >&6 6997 $as_echo_n "(cached) " >&6
7019else 6998else
7020 ac_cv_sys_largefile_CC=no 6999 ac_cv_sys_largefile_CC=no
@@ -7065,7 +7044,7 @@ $as_echo "$ac_cv_sys_largefile_CC" >&6; }
7065 7044
7066 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 7045 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
7067$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } 7046$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
7068if ${ac_cv_sys_file_offset_bits+:} false; then : 7047if test "${ac_cv_sys_file_offset_bits+set}" = set; then :
7069 $as_echo_n "(cached) " >&6 7048 $as_echo_n "(cached) " >&6
7070else 7049else
7071 while :; do 7050 while :; do
@@ -7134,7 +7113,7 @@ rm -rf conftest*
7134 if test $ac_cv_sys_file_offset_bits = unknown; then 7113 if test $ac_cv_sys_file_offset_bits = unknown; then
7135 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 7114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
7136$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } 7115$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
7137if ${ac_cv_sys_large_files+:} false; then : 7116if test "${ac_cv_sys_large_files+set}" = set; then :
7138 $as_echo_n "(cached) " >&6 7117 $as_echo_n "(cached) " >&6
7139else 7118else
7140 while :; do 7119 while :; do
@@ -7235,7 +7214,7 @@ else
7235 ## Some platforms don't use any of these files, so it is not 7214 ## Some platforms don't use any of these files, so it is not
7236 ## appropriate to put this test outside the if block. 7215 ## appropriate to put this test outside the if block.
7237 test -e $CRT_DIR/crtn.o || test -e $CRT_DIR/crt0.o || \ 7216 test -e $CRT_DIR/crtn.o || test -e $CRT_DIR/crt0.o || \
7238 as_fn_error $? "crt*.o not found in specified location." "$LINENO" 5 7217 as_fn_error "crt*.o not found in specified location." "$LINENO" 5
7239 7218
7240fi 7219fi
7241 7220
@@ -7290,7 +7269,8 @@ if test "${with_sound}" != "no"; then
7290do : 7269do :
7291 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 7270 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7292ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 7271ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
7293if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 7272eval as_val=\$$as_ac_Header
7273 if test "x$as_val" = x""yes; then :
7294 cat >>confdefs.h <<_ACEOF 7274 cat >>confdefs.h <<_ACEOF
7295#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 7275#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7296_ACEOF 7276_ACEOF
@@ -7302,7 +7282,7 @@ done
7302 # Emulation library used on NetBSD. 7282 # Emulation library used on NetBSD.
7303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5 7283 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5
7304$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; } 7284$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; }
7305if ${ac_cv_lib_ossaudio__oss_ioctl+:} false; then : 7285if test "${ac_cv_lib_ossaudio__oss_ioctl+set}" = set; then :
7306 $as_echo_n "(cached) " >&6 7286 $as_echo_n "(cached) " >&6
7307else 7287else
7308 ac_check_lib_save_LIBS=$LIBS 7288 ac_check_lib_save_LIBS=$LIBS
@@ -7336,7 +7316,7 @@ LIBS=$ac_check_lib_save_LIBS
7336fi 7316fi
7337{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 7317{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5
7338$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } 7318$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; }
7339if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes; then : 7319if test "x$ac_cv_lib_ossaudio__oss_ioctl" = x""yes; then :
7340 LIBSOUND=-lossaudio 7320 LIBSOUND=-lossaudio
7341else 7321else
7342 LIBSOUND= 7322 LIBSOUND=
@@ -7353,7 +7333,7 @@ fi
7353set dummy pkg-config; ac_word=$2 7333set dummy pkg-config; ac_word=$2
7354{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 7334{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7355$as_echo_n "checking for $ac_word... " >&6; } 7335$as_echo_n "checking for $ac_word... " >&6; }
7356if ${ac_cv_path_PKG_CONFIG+:} false; then : 7336if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
7357 $as_echo_n "(cached) " >&6 7337 $as_echo_n "(cached) " >&6
7358else 7338else
7359 case $PKG_CONFIG in 7339 case $PKG_CONFIG in
@@ -7481,7 +7461,7 @@ else
7481fi 7461fi
7482rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 7462rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
7483 if test "$emacs_alsa_subdir" != yes; then 7463 if test "$emacs_alsa_subdir" != yes; then
7484 as_fn_error $? "pkg-config found alsa, but it does not compile. See config.log for error messages." "$LINENO" 5 7464 as_fn_error "pkg-config found alsa, but it does not compile. See config.log for error messages." "$LINENO" 5
7485 fi 7465 fi
7486 ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE" 7466 ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE"
7487 fi 7467 fi
@@ -7516,7 +7496,8 @@ for ac_header in sys/select.h sys/time.h unistd.h utime.h \
7516do : 7496do :
7517 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 7497 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7518ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 7498ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
7519if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 7499eval as_val=\$$as_ac_Header
7500 if test "x$as_val" = x""yes; then :
7520 cat >>confdefs.h <<_ACEOF 7501 cat >>confdefs.h <<_ACEOF
7521#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 7502#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7522_ACEOF 7503_ACEOF
@@ -7557,7 +7538,7 @@ fi
7557for ac_header in term.h 7538for ac_header in term.h
7558do : 7539do :
7559 ac_fn_c_check_header_preproc "$LINENO" "term.h" "ac_cv_header_term_h" 7540 ac_fn_c_check_header_preproc "$LINENO" "term.h" "ac_cv_header_term_h"
7560if test "x$ac_cv_header_term_h" = xyes; then : 7541if test "x$ac_cv_header_term_h" = x""yes; then :
7561 cat >>confdefs.h <<_ACEOF 7542 cat >>confdefs.h <<_ACEOF
7562#define HAVE_TERM_H 1 7543#define HAVE_TERM_H 1
7563_ACEOF 7544_ACEOF
@@ -7568,7 +7549,7 @@ done
7568 7549
7569{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 7550{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
7570$as_echo_n "checking for ANSI C header files... " >&6; } 7551$as_echo_n "checking for ANSI C header files... " >&6; }
7571if ${ac_cv_header_stdc+:} false; then : 7552if test "${ac_cv_header_stdc+set}" = set; then :
7572 $as_echo_n "(cached) " >&6 7553 $as_echo_n "(cached) " >&6
7573else 7554else
7574 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7555 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7680,7 +7661,7 @@ fi
7680 7661
7681{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 7662{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
7682$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } 7663$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; }
7683if ${ac_cv_header_time+:} false; then : 7664if test "${ac_cv_header_time+set}" = set; then :
7684 $as_echo_n "(cached) " >&6 7665 $as_echo_n "(cached) " >&6
7685else 7666else
7686 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7667 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7714,7 +7695,7 @@ $as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h
7714fi 7695fi
7715 7696
7716ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "$ac_includes_default" 7697ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "$ac_includes_default"
7717if test "x$ac_cv_have_decl_sys_siglist" = xyes; then : 7698if test "x$ac_cv_have_decl_sys_siglist" = x""yes; then :
7718 ac_have_decl=1 7699 ac_have_decl=1
7719else 7700else
7720 ac_have_decl=0 7701 ac_have_decl=0
@@ -7727,7 +7708,7 @@ _ACEOF
7727if test $ac_cv_have_decl_sys_siglist != yes; then 7708if test $ac_cv_have_decl_sys_siglist != yes; then
7728 # For Tru64, at least: 7709 # For Tru64, at least:
7729 ac_fn_c_check_decl "$LINENO" "__sys_siglist" "ac_cv_have_decl___sys_siglist" "$ac_includes_default" 7710 ac_fn_c_check_decl "$LINENO" "__sys_siglist" "ac_cv_have_decl___sys_siglist" "$ac_includes_default"
7730if test "x$ac_cv_have_decl___sys_siglist" = xyes; then : 7711if test "x$ac_cv_have_decl___sys_siglist" = x""yes; then :
7731 ac_have_decl=1 7712 ac_have_decl=1
7732else 7713else
7733 ac_have_decl=0 7714 ac_have_decl=0
@@ -7745,7 +7726,7 @@ $as_echo "#define sys_siglist __sys_siglist" >>confdefs.h
7745fi 7726fi
7746{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 7727{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5
7747$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } 7728$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; }
7748if ${ac_cv_header_sys_wait_h+:} false; then : 7729if test "${ac_cv_header_sys_wait_h+set}" = set; then :
7749 $as_echo_n "(cached) " >&6 7730 $as_echo_n "(cached) " >&6
7750else 7731else
7751 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7732 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7787,7 +7768,7 @@ fi
7787 7768
7788{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utimbuf" >&5 7769{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utimbuf" >&5
7789$as_echo_n "checking for struct utimbuf... " >&6; } 7770$as_echo_n "checking for struct utimbuf... " >&6; }
7790if ${emacs_cv_struct_utimbuf+:} false; then : 7771if test "${emacs_cv_struct_utimbuf+set}" = set; then :
7791 $as_echo_n "(cached) " >&6 7772 $as_echo_n "(cached) " >&6
7792else 7773else
7793 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7774 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7830,7 +7811,7 @@ fi
7830 7811
7831{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 7812{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
7832$as_echo_n "checking return type of signal handlers... " >&6; } 7813$as_echo_n "checking return type of signal handlers... " >&6; }
7833if ${ac_cv_type_signal+:} false; then : 7814if test "${ac_cv_type_signal+set}" = set; then :
7834 $as_echo_n "(cached) " >&6 7815 $as_echo_n "(cached) " >&6
7835else 7816else
7836 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7817 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7864,7 +7845,7 @@ _ACEOF
7864 7845
7865{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for speed_t" >&5 7846{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for speed_t" >&5
7866$as_echo_n "checking for speed_t... " >&6; } 7847$as_echo_n "checking for speed_t... " >&6; }
7867if ${emacs_cv_speed_t+:} false; then : 7848if test "${emacs_cv_speed_t+set}" = set; then :
7868 $as_echo_n "(cached) " >&6 7849 $as_echo_n "(cached) " >&6
7869else 7850else
7870 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7851 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7895,7 +7876,7 @@ fi
7895 7876
7896{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timeval" >&5 7877{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timeval" >&5
7897$as_echo_n "checking for struct timeval... " >&6; } 7878$as_echo_n "checking for struct timeval... " >&6; }
7898if ${emacs_cv_struct_timeval+:} false; then : 7879if test "${emacs_cv_struct_timeval+set}" = set; then :
7899 $as_echo_n "(cached) " >&6 7880 $as_echo_n "(cached) " >&6
7900else 7881else
7901 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7882 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7936,7 +7917,7 @@ fi
7936 7917
7937{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct exception" >&5 7918{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct exception" >&5
7938$as_echo_n "checking for struct exception... " >&6; } 7919$as_echo_n "checking for struct exception... " >&6; }
7939if ${emacs_cv_struct_exception+:} false; then : 7920if test "${emacs_cv_struct_exception+set}" = set; then :
7940 $as_echo_n "(cached) " >&6 7921 $as_echo_n "(cached) " >&6
7941else 7922else
7942 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7923 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7969,7 +7950,7 @@ fi
7969for ac_header in sys/socket.h 7950for ac_header in sys/socket.h
7970do : 7951do :
7971 ac_fn_c_check_header_mongrel "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default" 7952 ac_fn_c_check_header_mongrel "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default"
7972if test "x$ac_cv_header_sys_socket_h" = xyes; then : 7953if test "x$ac_cv_header_sys_socket_h" = x""yes; then :
7973 cat >>confdefs.h <<_ACEOF 7954 cat >>confdefs.h <<_ACEOF
7974#define HAVE_SYS_SOCKET_H 1 7955#define HAVE_SYS_SOCKET_H 1
7975_ACEOF 7956_ACEOF
@@ -7985,7 +7966,7 @@ do :
7985#include <sys/socket.h> 7966#include <sys/socket.h>
7986#endif 7967#endif
7987" 7968"
7988if test "x$ac_cv_header_net_if_h" = xyes; then : 7969if test "x$ac_cv_header_net_if_h" = x""yes; then :
7989 cat >>confdefs.h <<_ACEOF 7970 cat >>confdefs.h <<_ACEOF
7990#define HAVE_NET_IF_H 1 7971#define HAVE_NET_IF_H 1
7991_ACEOF 7972_ACEOF
@@ -7997,7 +7978,7 @@ done
7997 7978
7998{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 7979{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
7999$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } 7980$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; }
8000if ${ac_cv_struct_tm+:} false; then : 7981if test "${ac_cv_struct_tm+set}" = set; then :
8001 $as_echo_n "(cached) " >&6 7982 $as_echo_n "(cached) " >&6
8002else 7983else
8003 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7984 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8034,7 +8015,7 @@ ac_fn_c_check_member "$LINENO" "struct tm" "tm_zone" "ac_cv_member_struct_tm_tm_
8034#include <$ac_cv_struct_tm> 8015#include <$ac_cv_struct_tm>
8035 8016
8036" 8017"
8037if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then : 8018if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then :
8038 8019
8039cat >>confdefs.h <<_ACEOF 8020cat >>confdefs.h <<_ACEOF
8040#define HAVE_STRUCT_TM_TM_ZONE 1 8021#define HAVE_STRUCT_TM_TM_ZONE 1
@@ -8050,7 +8031,7 @@ $as_echo "#define HAVE_TM_ZONE 1" >>confdefs.h
8050else 8031else
8051 ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include <time.h> 8032 ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include <time.h>
8052" 8033"
8053if test "x$ac_cv_have_decl_tzname" = xyes; then : 8034if test "x$ac_cv_have_decl_tzname" = x""yes; then :
8054 ac_have_decl=1 8035 ac_have_decl=1
8055else 8036else
8056 ac_have_decl=0 8037 ac_have_decl=0
@@ -8062,7 +8043,7 @@ _ACEOF
8062 8043
8063 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5 8044 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5
8064$as_echo_n "checking for tzname... " >&6; } 8045$as_echo_n "checking for tzname... " >&6; }
8065if ${ac_cv_var_tzname+:} false; then : 8046if test "${ac_cv_var_tzname+set}" = set; then :
8066 $as_echo_n "(cached) " >&6 8047 $as_echo_n "(cached) " >&6
8067else 8048else
8068 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8049 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8099,7 +8080,7 @@ fi
8099 8080
8100ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h> 8081ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h>
8101" 8082"
8102if test "x$ac_cv_member_struct_tm_tm_gmtoff" = xyes; then : 8083if test "x$ac_cv_member_struct_tm_tm_gmtoff" = x""yes; then :
8103 8084
8104$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h 8085$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h
8105 8086
@@ -8113,7 +8094,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_flags" "ac_cv_member_struct_i
8113#include <net/if.h> 8094#include <net/if.h>
8114#endif 8095#endif
8115" 8096"
8116if test "x$ac_cv_member_struct_ifreq_ifr_flags" = xyes; then : 8097if test "x$ac_cv_member_struct_ifreq_ifr_flags" = x""yes; then :
8117 8098
8118cat >>confdefs.h <<_ACEOF 8099cat >>confdefs.h <<_ACEOF
8119#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1 8100#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
@@ -8129,7 +8110,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_hwaddr" "ac_cv_member_struct_
8129#include <net/if.h> 8110#include <net/if.h>
8130#endif 8111#endif
8131" 8112"
8132if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes; then : 8113if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = x""yes; then :
8133 8114
8134cat >>confdefs.h <<_ACEOF 8115cat >>confdefs.h <<_ACEOF
8135#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1 8116#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
@@ -8145,7 +8126,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_netmask" "ac_cv_member_struct
8145#include <net/if.h> 8126#include <net/if.h>
8146#endif 8127#endif
8147" 8128"
8148if test "x$ac_cv_member_struct_ifreq_ifr_netmask" = xyes; then : 8129if test "x$ac_cv_member_struct_ifreq_ifr_netmask" = x""yes; then :
8149 8130
8150cat >>confdefs.h <<_ACEOF 8131cat >>confdefs.h <<_ACEOF
8151#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1 8132#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
@@ -8161,7 +8142,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_broadaddr" "ac_cv_member_stru
8161#include <net/if.h> 8142#include <net/if.h>
8162#endif 8143#endif
8163" 8144"
8164if test "x$ac_cv_member_struct_ifreq_ifr_broadaddr" = xyes; then : 8145if test "x$ac_cv_member_struct_ifreq_ifr_broadaddr" = x""yes; then :
8165 8146
8166cat >>confdefs.h <<_ACEOF 8147cat >>confdefs.h <<_ACEOF
8167#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1 8148#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
@@ -8177,7 +8158,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_addr" "ac_cv_member_struct_if
8177#include <net/if.h> 8158#include <net/if.h>
8178#endif 8159#endif
8179" 8160"
8180if test "x$ac_cv_member_struct_ifreq_ifr_addr" = xyes; then : 8161if test "x$ac_cv_member_struct_ifreq_ifr_addr" = x""yes; then :
8181 8162
8182cat >>confdefs.h <<_ACEOF 8163cat >>confdefs.h <<_ACEOF
8183#define HAVE_STRUCT_IFREQ_IFR_ADDR 1 8164#define HAVE_STRUCT_IFREQ_IFR_ADDR 1
@@ -8206,7 +8187,7 @@ fi
8206 8187
8207{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5 8188{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
8208$as_echo_n "checking for working volatile... " >&6; } 8189$as_echo_n "checking for working volatile... " >&6; }
8209if ${ac_cv_c_volatile+:} false; then : 8190if test "${ac_cv_c_volatile+set}" = set; then :
8210 $as_echo_n "(cached) " >&6 8191 $as_echo_n "(cached) " >&6
8211else 8192else
8212 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8193 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8240,7 +8221,7 @@ fi
8240 8221
8241{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 8222{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
8242$as_echo_n "checking for an ANSI C-conforming const... " >&6; } 8223$as_echo_n "checking for an ANSI C-conforming const... " >&6; }
8243if ${ac_cv_c_const+:} false; then : 8224if test "${ac_cv_c_const+set}" = set; then :
8244 $as_echo_n "(cached) " >&6 8225 $as_echo_n "(cached) " >&6
8245else 8226else
8246 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8227 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8320,7 +8301,7 @@ fi
8320 8301
8321{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for void * support" >&5 8302{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for void * support" >&5
8322$as_echo_n "checking for void * support... " >&6; } 8303$as_echo_n "checking for void * support... " >&6; }
8323if ${emacs_cv_void_star+:} false; then : 8304if test "${emacs_cv_void_star+set}" = set; then :
8324 $as_echo_n "(cached) " >&6 8305 $as_echo_n "(cached) " >&6
8325else 8306else
8326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8307 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8353,7 +8334,7 @@ fi
8353 8334
8354 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 8335 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
8355$as_echo_n "checking whether byte ordering is bigendian... " >&6; } 8336$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
8356if ${ac_cv_c_bigendian+:} false; then : 8337if test "${ac_cv_c_bigendian+set}" = set; then :
8357 $as_echo_n "(cached) " >&6 8338 $as_echo_n "(cached) " >&6
8358else 8339else
8359 ac_cv_c_bigendian=unknown 8340 ac_cv_c_bigendian=unknown
@@ -8571,14 +8552,14 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
8571 8552
8572 ;; #( 8553 ;; #(
8573 *) 8554 *)
8574 as_fn_error $? "unknown endianness 8555 as_fn_error "unknown endianness
8575 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; 8556 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
8576 esac 8557 esac
8577 8558
8578 8559
8579{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__ ((__aligned__ (expr)))" >&5 8560{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __attribute__ ((__aligned__ (expr)))" >&5
8580$as_echo_n "checking for __attribute__ ((__aligned__ (expr)))... " >&6; } 8561$as_echo_n "checking for __attribute__ ((__aligned__ (expr)))... " >&6; }
8581if ${emacs_cv_attribute_aligned+:} false; then : 8562if test "${emacs_cv_attribute_aligned+set}" = set; then :
8582 $as_echo_n "(cached) " >&6 8563 $as_echo_n "(cached) " >&6
8583else 8564else
8584 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8565 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8611,7 +8592,7 @@ fi
8611$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 8592$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
8612set x ${MAKE-make} 8593set x ${MAKE-make}
8613ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 8594ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
8614if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : 8595if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then :
8615 $as_echo_n "(cached) " >&6 8596 $as_echo_n "(cached) " >&6
8616else 8597else
8617 cat >conftest.make <<\_ACEOF 8598 cat >conftest.make <<\_ACEOF
@@ -8619,7 +8600,7 @@ SHELL = /bin/sh
8619all: 8600all:
8620 @echo '@@@%%%=$(MAKE)=@@@%%%' 8601 @echo '@@@%%%=$(MAKE)=@@@%%%'
8621_ACEOF 8602_ACEOF
8622# GNU make sometimes prints "make[1]: Entering ...", which would confuse us. 8603# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
8623case `${MAKE-make} -f conftest.make 2>/dev/null` in 8604case `${MAKE-make} -f conftest.make 2>/dev/null` in
8624 *@@@%%%=?*=@@@%%%*) 8605 *@@@%%%=?*=@@@%%%*)
8625 eval ac_cv_prog_make_${ac_make}_set=yes;; 8606 eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -8699,7 +8680,7 @@ deps_frag=$srcdir/src/$deps_frag
8699 8680
8700{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long file names" >&5 8681{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long file names" >&5
8701$as_echo_n "checking for long file names... " >&6; } 8682$as_echo_n "checking for long file names... " >&6; }
8702if ${ac_cv_sys_long_file_names+:} false; then : 8683if test "${ac_cv_sys_long_file_names+set}" = set; then :
8703 $as_echo_n "(cached) " >&6 8684 $as_echo_n "(cached) " >&6
8704else 8685else
8705 ac_cv_sys_long_file_names=yes 8686 ac_cv_sys_long_file_names=yes
@@ -8755,8 +8736,8 @@ if test "x$with_x" = xno; then
8755 have_x=disabled 8736 have_x=disabled
8756else 8737else
8757 case $x_includes,$x_libraries in #( 8738 case $x_includes,$x_libraries in #(
8758 *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( 8739 *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #(
8759 *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then : 8740 *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then :
8760 $as_echo_n "(cached) " >&6 8741 $as_echo_n "(cached) " >&6
8761else 8742else
8762 # One or both of the vars are not set, and there is no cached value. 8743 # One or both of the vars are not set, and there is no cached value.
@@ -8773,7 +8754,7 @@ libdir:
8773 @echo libdir='${LIBDIR}' 8754 @echo libdir='${LIBDIR}'
8774_ACEOF 8755_ACEOF
8775 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then 8756 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
8776 # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. 8757 # GNU make sometimes prints "make[1]: Entering...", which would confuse us.
8777 for ac_var in incroot usrlibdir libdir; do 8758 for ac_var in incroot usrlibdir libdir; do
8778 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" 8759 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
8779 done 8760 done
@@ -8859,7 +8840,7 @@ else
8859 fi 8840 fi
8860done 8841done
8861fi 8842fi
8862rm -f conftest.err conftest.i conftest.$ac_ext 8843rm -f conftest.err conftest.$ac_ext
8863fi # $ac_x_includes = no 8844fi # $ac_x_includes = no
8864 8845
8865if test "$ac_x_libraries" = no; then 8846if test "$ac_x_libraries" = no; then
@@ -9039,10 +9020,10 @@ if test "${with_ns}" != no; then
9039 TEMACS_LDFLAGS2= 9020 TEMACS_LDFLAGS2=
9040 fi 9021 fi
9041 ac_fn_c_check_header_mongrel "$LINENO" "AppKit/AppKit.h" "ac_cv_header_AppKit_AppKit_h" "$ac_includes_default" 9022 ac_fn_c_check_header_mongrel "$LINENO" "AppKit/AppKit.h" "ac_cv_header_AppKit_AppKit_h" "$ac_includes_default"
9042if test "x$ac_cv_header_AppKit_AppKit_h" = xyes; then : 9023if test "x$ac_cv_header_AppKit_AppKit_h" = x""yes; then :
9043 HAVE_NS=yes 9024 HAVE_NS=yes
9044else 9025else
9045 as_fn_error $? "\`--with-ns' was specified, but the include 9026 as_fn_error "\`--with-ns' was specified, but the include
9046 files are missing or cannot be compiled." "$LINENO" 5 9027 files are missing or cannot be compiled." "$LINENO" 5
9047fi 9028fi
9048 9029
@@ -9124,7 +9105,7 @@ if test "$window_system" = none && test "X$with_x" != "Xno"; then
9124set dummy X; ac_word=$2 9105set dummy X; ac_word=$2
9125{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9106{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9126$as_echo_n "checking for $ac_word... " >&6; } 9107$as_echo_n "checking for $ac_word... " >&6; }
9127if ${ac_cv_prog_HAVE_XSERVER+:} false; then : 9108if test "${ac_cv_prog_HAVE_XSERVER+set}" = set; then :
9128 $as_echo_n "(cached) " >&6 9109 $as_echo_n "(cached) " >&6
9129else 9110else
9130 if test -n "$HAVE_XSERVER"; then 9111 if test -n "$HAVE_XSERVER"; then
@@ -9161,7 +9142,7 @@ fi
9161 if test "$HAVE_XSERVER" = true || 9142 if test "$HAVE_XSERVER" = true ||
9162 test -n "$DISPLAY" || 9143 test -n "$DISPLAY" ||
9163 test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then 9144 test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then
9164 as_fn_error $? "You seem to be running X, but no X development libraries 9145 as_fn_error "You seem to be running X, but no X development libraries
9165were found. You should install the relevant development files for X 9146were found. You should install the relevant development files for X
9166and for the toolkit you want, such as Gtk+, Lesstif or Motif. Also make 9147and for the toolkit you want, such as Gtk+, Lesstif or Motif. Also make
9167sure you have development files for image handling, i.e. 9148sure you have development files for image handling, i.e.
@@ -9183,14 +9164,14 @@ esac
9183GNU_MALLOC=yes 9164GNU_MALLOC=yes
9184doug_lea_malloc=yes 9165doug_lea_malloc=yes
9185ac_fn_c_check_func "$LINENO" "malloc_get_state" "ac_cv_func_malloc_get_state" 9166ac_fn_c_check_func "$LINENO" "malloc_get_state" "ac_cv_func_malloc_get_state"
9186if test "x$ac_cv_func_malloc_get_state" = xyes; then : 9167if test "x$ac_cv_func_malloc_get_state" = x""yes; then :
9187 9168
9188else 9169else
9189 doug_lea_malloc=no 9170 doug_lea_malloc=no
9190fi 9171fi
9191 9172
9192ac_fn_c_check_func "$LINENO" "malloc_set_state" "ac_cv_func_malloc_set_state" 9173ac_fn_c_check_func "$LINENO" "malloc_set_state" "ac_cv_func_malloc_set_state"
9193if test "x$ac_cv_func_malloc_set_state" = xyes; then : 9174if test "x$ac_cv_func_malloc_set_state" = x""yes; then :
9194 9175
9195else 9176else
9196 doug_lea_malloc=no 9177 doug_lea_malloc=no
@@ -9198,7 +9179,7 @@ fi
9198 9179
9199{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __after_morecore_hook exists" >&5 9180{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __after_morecore_hook exists" >&5
9200$as_echo_n "checking whether __after_morecore_hook exists... " >&6; } 9181$as_echo_n "checking whether __after_morecore_hook exists... " >&6; }
9201if ${emacs_cv_var___after_morecore_hook+:} false; then : 9182if test "${emacs_cv_var___after_morecore_hook+set}" = set; then :
9202 $as_echo_n "(cached) " >&6 9183 $as_echo_n "(cached) " >&6
9203else 9184else
9204 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9185 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9284,7 +9265,8 @@ do :
9284 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 9265 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
9285ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 9266ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
9286" 9267"
9287if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 9268eval as_val=\$$as_ac_Header
9269 if test "x$as_val" = x""yes; then :
9288 cat >>confdefs.h <<_ACEOF 9270 cat >>confdefs.h <<_ACEOF
9289#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 9271#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
9290_ACEOF 9272_ACEOF
@@ -9303,7 +9285,7 @@ done
9303for ac_func in getpagesize 9285for ac_func in getpagesize
9304do : 9286do :
9305 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" 9287 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize"
9306if test "x$ac_cv_func_getpagesize" = xyes; then : 9288if test "x$ac_cv_func_getpagesize" = x""yes; then :
9307 cat >>confdefs.h <<_ACEOF 9289 cat >>confdefs.h <<_ACEOF
9308#define HAVE_GETPAGESIZE 1 9290#define HAVE_GETPAGESIZE 1
9309_ACEOF 9291_ACEOF
@@ -9313,7 +9295,7 @@ done
9313 9295
9314{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 9296{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5
9315$as_echo_n "checking for working mmap... " >&6; } 9297$as_echo_n "checking for working mmap... " >&6; }
9316if ${ac_cv_func_mmap_fixed_mapped+:} false; then : 9298if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then :
9317 $as_echo_n "(cached) " >&6 9299 $as_echo_n "(cached) " >&6
9318else 9300else
9319 if test "$cross_compiling" = yes; then : 9301 if test "$cross_compiling" = yes; then :
@@ -9488,7 +9470,7 @@ LIBS="$LIBS_SYSTEM $LIBS"
9488 9470
9489{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 9471{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
9490$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } 9472$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
9491if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then : 9473if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then :
9492 $as_echo_n "(cached) " >&6 9474 $as_echo_n "(cached) " >&6
9493else 9475else
9494 ac_check_lib_save_LIBS=$LIBS 9476 ac_check_lib_save_LIBS=$LIBS
@@ -9522,7 +9504,7 @@ LIBS=$ac_check_lib_save_LIBS
9522fi 9504fi
9523{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 9505{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
9524$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } 9506$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
9525if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then : 9507if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then :
9526 cat >>confdefs.h <<_ACEOF 9508 cat >>confdefs.h <<_ACEOF
9527#define HAVE_LIBDNET 1 9509#define HAVE_LIBDNET 1
9528_ACEOF 9510_ACEOF
@@ -9534,7 +9516,7 @@ fi
9534 9516
9535{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXbsd" >&5 9517{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXbsd" >&5
9536$as_echo_n "checking for main in -lXbsd... " >&6; } 9518$as_echo_n "checking for main in -lXbsd... " >&6; }
9537if ${ac_cv_lib_Xbsd_main+:} false; then : 9519if test "${ac_cv_lib_Xbsd_main+set}" = set; then :
9538 $as_echo_n "(cached) " >&6 9520 $as_echo_n "(cached) " >&6
9539else 9521else
9540 ac_check_lib_save_LIBS=$LIBS 9522 ac_check_lib_save_LIBS=$LIBS
@@ -9562,14 +9544,14 @@ LIBS=$ac_check_lib_save_LIBS
9562fi 9544fi
9563{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xbsd_main" >&5 9545{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xbsd_main" >&5
9564$as_echo "$ac_cv_lib_Xbsd_main" >&6; } 9546$as_echo "$ac_cv_lib_Xbsd_main" >&6; }
9565if test "x$ac_cv_lib_Xbsd_main" = xyes; then : 9547if test "x$ac_cv_lib_Xbsd_main" = x""yes; then :
9566 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd" 9548 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd"
9567fi 9549fi
9568 9550
9569 9551
9570{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cma_open in -lpthreads" >&5 9552{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cma_open in -lpthreads" >&5
9571$as_echo_n "checking for cma_open in -lpthreads... " >&6; } 9553$as_echo_n "checking for cma_open in -lpthreads... " >&6; }
9572if ${ac_cv_lib_pthreads_cma_open+:} false; then : 9554if test "${ac_cv_lib_pthreads_cma_open+set}" = set; then :
9573 $as_echo_n "(cached) " >&6 9555 $as_echo_n "(cached) " >&6
9574else 9556else
9575 ac_check_lib_save_LIBS=$LIBS 9557 ac_check_lib_save_LIBS=$LIBS
@@ -9603,7 +9585,7 @@ LIBS=$ac_check_lib_save_LIBS
9603fi 9585fi
9604{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_cma_open" >&5 9586{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_cma_open" >&5
9605$as_echo "$ac_cv_lib_pthreads_cma_open" >&6; } 9587$as_echo "$ac_cv_lib_pthreads_cma_open" >&6; }
9606if test "x$ac_cv_lib_pthreads_cma_open" = xyes; then : 9588if test "x$ac_cv_lib_pthreads_cma_open" = x""yes; then :
9607 cat >>confdefs.h <<_ACEOF 9589 cat >>confdefs.h <<_ACEOF
9608#define HAVE_LIBPTHREADS 1 9590#define HAVE_LIBPTHREADS 1
9609_ACEOF 9591_ACEOF
@@ -9630,7 +9612,7 @@ case ${host_os} in
9630aix*) 9612aix*)
9631 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -bbigtoc option" >&5 9613 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -bbigtoc option" >&5
9632$as_echo_n "checking for -bbigtoc option... " >&6; } 9614$as_echo_n "checking for -bbigtoc option... " >&6; }
9633if ${gdb_cv_bigtoc+:} false; then : 9615if test "${gdb_cv_bigtoc+set}" = set; then :
9634 $as_echo_n "(cached) " >&6 9616 $as_echo_n "(cached) " >&6
9635else 9617else
9636 9618
@@ -9791,7 +9773,8 @@ XScreenNumberOfScreen XSetWMProtocols
9791do : 9773do :
9792 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 9774 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
9793ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 9775ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
9794if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 9776eval as_val=\$$as_ac_var
9777 if test "x$as_val" = x""yes; then :
9795 cat >>confdefs.h <<_ACEOF 9778 cat >>confdefs.h <<_ACEOF
9796#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 9779#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
9797_ACEOF 9780_ACEOF
@@ -9804,7 +9787,7 @@ fi
9804if test "${window_system}" = "x11"; then 9787if test "${window_system}" = "x11"; then
9805 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 version 6" >&5 9788 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 version 6" >&5
9806$as_echo_n "checking X11 version 6... " >&6; } 9789$as_echo_n "checking X11 version 6... " >&6; }
9807 if ${emacs_cv_x11_version_6+:} false; then : 9790 if test "${emacs_cv_x11_version_6+set}" = set; then :
9808 $as_echo_n "(cached) " >&6 9791 $as_echo_n "(cached) " >&6
9809else 9792else
9810 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9793 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9869,7 +9852,7 @@ if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then
9869set dummy pkg-config; ac_word=$2 9852set dummy pkg-config; ac_word=$2
9870{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9853{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9871$as_echo_n "checking for $ac_word... " >&6; } 9854$as_echo_n "checking for $ac_word... " >&6; }
9872if ${ac_cv_path_PKG_CONFIG+:} false; then : 9855if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
9873 $as_echo_n "(cached) " >&6 9856 $as_echo_n "(cached) " >&6
9874else 9857else
9875 case $PKG_CONFIG in 9858 case $PKG_CONFIG in
@@ -9980,7 +9963,7 @@ if test "${HAVE_X11}" = "yes"; then
9980set dummy pkg-config; ac_word=$2 9963set dummy pkg-config; ac_word=$2
9981{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9964{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9982$as_echo_n "checking for $ac_word... " >&6; } 9965$as_echo_n "checking for $ac_word... " >&6; }
9983if ${ac_cv_path_PKG_CONFIG+:} false; then : 9966if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
9984 $as_echo_n "(cached) " >&6 9967 $as_echo_n "(cached) " >&6
9985else 9968else
9986 case $PKG_CONFIG in 9969 case $PKG_CONFIG in
@@ -10079,7 +10062,7 @@ $as_echo "#define HAVE_IMAGEMAGICK 1" >>confdefs.h
10079 for ac_func in MagickExportImagePixels 10062 for ac_func in MagickExportImagePixels
10080do : 10063do :
10081 ac_fn_c_check_func "$LINENO" "MagickExportImagePixels" "ac_cv_func_MagickExportImagePixels" 10064 ac_fn_c_check_func "$LINENO" "MagickExportImagePixels" "ac_cv_func_MagickExportImagePixels"
10082if test "x$ac_cv_func_MagickExportImagePixels" = xyes; then : 10065if test "x$ac_cv_func_MagickExportImagePixels" = x""yes; then :
10083 cat >>confdefs.h <<_ACEOF 10066 cat >>confdefs.h <<_ACEOF
10084#define HAVE_MAGICKEXPORTIMAGEPIXELS 1 10067#define HAVE_MAGICKEXPORTIMAGEPIXELS 1
10085_ACEOF 10068_ACEOF
@@ -10105,7 +10088,7 @@ if test "${with_gtk3}" = "yes"; then
10105set dummy pkg-config; ac_word=$2 10088set dummy pkg-config; ac_word=$2
10106{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10089{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10107$as_echo_n "checking for $ac_word... " >&6; } 10090$as_echo_n "checking for $ac_word... " >&6; }
10108if ${ac_cv_path_PKG_CONFIG+:} false; then : 10091if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
10109 $as_echo_n "(cached) " >&6 10092 $as_echo_n "(cached) " >&6
10110else 10093else
10111 case $PKG_CONFIG in 10094 case $PKG_CONFIG in
@@ -10193,7 +10176,7 @@ $as_echo "no" >&6; }
10193 fi 10176 fi
10194 10177
10195 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then 10178 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then
10196 as_fn_error $? "$GTK_PKG_ERRORS" "$LINENO" 5 10179 as_fn_error "$GTK_PKG_ERRORS" "$LINENO" 5
10197 fi 10180 fi
10198 10181
10199$as_echo "#define HAVE_GTK3 1" >>confdefs.h 10182$as_echo "#define HAVE_GTK3 1" >>confdefs.h
@@ -10214,7 +10197,7 @@ if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "maybe"; then
10214set dummy pkg-config; ac_word=$2 10197set dummy pkg-config; ac_word=$2
10215{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10198{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10216$as_echo_n "checking for $ac_word... " >&6; } 10199$as_echo_n "checking for $ac_word... " >&6; }
10217if ${ac_cv_path_PKG_CONFIG+:} false; then : 10200if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
10218 $as_echo_n "(cached) " >&6 10201 $as_echo_n "(cached) " >&6
10219else 10202else
10220 case $PKG_CONFIG in 10203 case $PKG_CONFIG in
@@ -10302,7 +10285,7 @@ $as_echo "no" >&6; }
10302 fi 10285 fi
10303 10286
10304 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then 10287 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then
10305 as_fn_error $? "$GTK_PKG_ERRORS" "$LINENO" 5 10288 as_fn_error "$GTK_PKG_ERRORS" "$LINENO" 5
10306 fi 10289 fi
10307fi 10290fi
10308fi 10291fi
@@ -10319,7 +10302,7 @@ if test x"$pkg_check_gtk" = xyes; then
10319 for ac_func in gtk_main 10302 for ac_func in gtk_main
10320do : 10303do :
10321 ac_fn_c_check_func "$LINENO" "gtk_main" "ac_cv_func_gtk_main" 10304 ac_fn_c_check_func "$LINENO" "gtk_main" "ac_cv_func_gtk_main"
10322if test "x$ac_cv_func_gtk_main" = xyes; then : 10305if test "x$ac_cv_func_gtk_main" = x""yes; then :
10323 cat >>confdefs.h <<_ACEOF 10306 cat >>confdefs.h <<_ACEOF
10324#define HAVE_GTK_MAIN 1 10307#define HAVE_GTK_MAIN 1
10325_ACEOF 10308_ACEOF
@@ -10329,7 +10312,7 @@ done
10329 10312
10330 if test "${GTK_COMPILES}" != "yes"; then 10313 if test "${GTK_COMPILES}" != "yes"; then
10331 if test "$USE_X_TOOLKIT" != "maybe"; then 10314 if test "$USE_X_TOOLKIT" != "maybe"; then
10332 as_fn_error $? "Gtk+ wanted, but it does not compile, see config.log. Maybe some x11-devel files missing?" "$LINENO" 5; 10315 as_fn_error "Gtk+ wanted, but it does not compile, see config.log. Maybe some x11-devel files missing?" "$LINENO" 5;
10333 fi 10316 fi
10334 else 10317 else
10335 HAVE_GTK=yes 10318 HAVE_GTK=yes
@@ -10367,7 +10350,7 @@ if test "${HAVE_GTK}" = "yes"; then
10367 ac_fn_c_check_decl "$LINENO" "GTK_TYPE_FILE_SELECTION" "ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" "$ac_includes_default 10350 ac_fn_c_check_decl "$LINENO" "GTK_TYPE_FILE_SELECTION" "ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" "$ac_includes_default
10368#include <gtk/gtk.h> 10351#include <gtk/gtk.h>
10369" 10352"
10370if test "x$ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" = xyes; then : 10353if test "x$ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" = x""yes; then :
10371 HAVE_GTK_FILE_SELECTION=yes 10354 HAVE_GTK_FILE_SELECTION=yes
10372else 10355else
10373 HAVE_GTK_FILE_SELECTION=no 10356 HAVE_GTK_FILE_SELECTION=no
@@ -10377,7 +10360,7 @@ fi
10377 for ac_func in gtk_file_selection_new 10360 for ac_func in gtk_file_selection_new
10378do : 10361do :
10379 ac_fn_c_check_func "$LINENO" "gtk_file_selection_new" "ac_cv_func_gtk_file_selection_new" 10362 ac_fn_c_check_func "$LINENO" "gtk_file_selection_new" "ac_cv_func_gtk_file_selection_new"
10380if test "x$ac_cv_func_gtk_file_selection_new" = xyes; then : 10363if test "x$ac_cv_func_gtk_file_selection_new" = x""yes; then :
10381 cat >>confdefs.h <<_ACEOF 10364 cat >>confdefs.h <<_ACEOF
10382#define HAVE_GTK_FILE_SELECTION_NEW 1 10365#define HAVE_GTK_FILE_SELECTION_NEW 1
10383_ACEOF 10366_ACEOF
@@ -10391,7 +10374,7 @@ done
10391 for ac_header in pthread.h 10374 for ac_header in pthread.h
10392do : 10375do :
10393 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" 10376 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
10394if test "x$ac_cv_header_pthread_h" = xyes; then : 10377if test "x$ac_cv_header_pthread_h" = x""yes; then :
10395 cat >>confdefs.h <<_ACEOF 10378 cat >>confdefs.h <<_ACEOF
10396#define HAVE_PTHREAD_H 1 10379#define HAVE_PTHREAD_H 1
10397_ACEOF 10380_ACEOF
@@ -10403,7 +10386,7 @@ done
10403 if test "$ac_cv_header_pthread_h"; then 10386 if test "$ac_cv_header_pthread_h"; then
10404 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_self in -lpthread" >&5 10387 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_self in -lpthread" >&5
10405$as_echo_n "checking for pthread_self in -lpthread... " >&6; } 10388$as_echo_n "checking for pthread_self in -lpthread... " >&6; }
10406if ${ac_cv_lib_pthread_pthread_self+:} false; then : 10389if test "${ac_cv_lib_pthread_pthread_self+set}" = set; then :
10407 $as_echo_n "(cached) " >&6 10390 $as_echo_n "(cached) " >&6
10408else 10391else
10409 ac_check_lib_save_LIBS=$LIBS 10392 ac_check_lib_save_LIBS=$LIBS
@@ -10437,7 +10420,7 @@ LIBS=$ac_check_lib_save_LIBS
10437fi 10420fi
10438{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_self" >&5 10421{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_self" >&5
10439$as_echo "$ac_cv_lib_pthread_pthread_self" >&6; } 10422$as_echo "$ac_cv_lib_pthread_pthread_self" >&6; }
10440if test "x$ac_cv_lib_pthread_pthread_self" = xyes; then : 10423if test "x$ac_cv_lib_pthread_pthread_self" = x""yes; then :
10441 HAVE_GTK_AND_PTHREAD=yes 10424 HAVE_GTK_AND_PTHREAD=yes
10442fi 10425fi
10443 10426
@@ -10459,7 +10442,8 @@ $as_echo "#define HAVE_GTK_AND_PTHREAD 1" >>confdefs.h
10459do : 10442do :
10460 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 10443 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
10461ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 10444ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
10462if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 10445eval as_val=\$$as_ac_var
10446 if test "x$as_val" = x""yes; then :
10463 cat >>confdefs.h <<_ACEOF 10447 cat >>confdefs.h <<_ACEOF
10464#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 10448#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
10465_ACEOF 10449_ACEOF
@@ -10480,7 +10464,7 @@ if test "${with_dbus}" = "yes"; then
10480set dummy pkg-config; ac_word=$2 10464set dummy pkg-config; ac_word=$2
10481{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10465{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10482$as_echo_n "checking for $ac_word... " >&6; } 10466$as_echo_n "checking for $ac_word... " >&6; }
10483if ${ac_cv_path_PKG_CONFIG+:} false; then : 10467if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
10484 $as_echo_n "(cached) " >&6 10468 $as_echo_n "(cached) " >&6
10485else 10469else
10486 case $PKG_CONFIG in 10470 case $PKG_CONFIG in
@@ -10575,7 +10559,7 @@ $as_echo "#define HAVE_DBUS 1" >>confdefs.h
10575 for ac_func in dbus_watch_get_unix_fd 10559 for ac_func in dbus_watch_get_unix_fd
10576do : 10560do :
10577 ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd" 10561 ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd"
10578if test "x$ac_cv_func_dbus_watch_get_unix_fd" = xyes; then : 10562if test "x$ac_cv_func_dbus_watch_get_unix_fd" = x""yes; then :
10579 cat >>confdefs.h <<_ACEOF 10563 cat >>confdefs.h <<_ACEOF
10580#define HAVE_DBUS_WATCH_GET_UNIX_FD 1 10564#define HAVE_DBUS_WATCH_GET_UNIX_FD 1
10581_ACEOF 10565_ACEOF
@@ -10597,7 +10581,7 @@ if test "${HAVE_X11}" = "yes" && test "${with_gconf}" = "yes"; then
10597set dummy pkg-config; ac_word=$2 10581set dummy pkg-config; ac_word=$2
10598{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10582{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10599$as_echo_n "checking for $ac_word... " >&6; } 10583$as_echo_n "checking for $ac_word... " >&6; }
10600if ${ac_cv_path_PKG_CONFIG+:} false; then : 10584if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
10601 $as_echo_n "(cached) " >&6 10585 $as_echo_n "(cached) " >&6
10602else 10586else
10603 case $PKG_CONFIG in 10587 case $PKG_CONFIG in
@@ -10691,7 +10675,7 @@ $as_echo "#define HAVE_GCONF 1" >>confdefs.h
10691 for ac_func in g_type_init 10675 for ac_func in g_type_init
10692do : 10676do :
10693 ac_fn_c_check_func "$LINENO" "g_type_init" "ac_cv_func_g_type_init" 10677 ac_fn_c_check_func "$LINENO" "g_type_init" "ac_cv_func_g_type_init"
10694if test "x$ac_cv_func_g_type_init" = xyes; then : 10678if test "x$ac_cv_func_g_type_init" = x""yes; then :
10695 cat >>confdefs.h <<_ACEOF 10679 cat >>confdefs.h <<_ACEOF
10696#define HAVE_G_TYPE_INIT 1 10680#define HAVE_G_TYPE_INIT 1
10697_ACEOF 10681_ACEOF
@@ -10707,7 +10691,7 @@ LIBSELINUX_LIBS=
10707if test "${with_selinux}" = "yes"; then 10691if test "${with_selinux}" = "yes"; then
10708 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lgetfilecon in -lselinux" >&5 10692 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lgetfilecon in -lselinux" >&5
10709$as_echo_n "checking for lgetfilecon in -lselinux... " >&6; } 10693$as_echo_n "checking for lgetfilecon in -lselinux... " >&6; }
10710if ${ac_cv_lib_selinux_lgetfilecon+:} false; then : 10694if test "${ac_cv_lib_selinux_lgetfilecon+set}" = set; then :
10711 $as_echo_n "(cached) " >&6 10695 $as_echo_n "(cached) " >&6
10712else 10696else
10713 ac_check_lib_save_LIBS=$LIBS 10697 ac_check_lib_save_LIBS=$LIBS
@@ -10741,7 +10725,7 @@ LIBS=$ac_check_lib_save_LIBS
10741fi 10725fi
10742{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_lgetfilecon" >&5 10726{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_lgetfilecon" >&5
10743$as_echo "$ac_cv_lib_selinux_lgetfilecon" >&6; } 10727$as_echo "$ac_cv_lib_selinux_lgetfilecon" >&6; }
10744if test "x$ac_cv_lib_selinux_lgetfilecon" = xyes; then : 10728if test "x$ac_cv_lib_selinux_lgetfilecon" = x""yes; then :
10745 HAVE_LIBSELINUX=yes 10729 HAVE_LIBSELINUX=yes
10746else 10730else
10747 HAVE_LIBSELINUX=no 10731 HAVE_LIBSELINUX=no
@@ -10765,7 +10749,7 @@ if test "${with_gnutls}" = "yes" ; then
10765set dummy pkg-config; ac_word=$2 10749set dummy pkg-config; ac_word=$2
10766{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10750{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10767$as_echo_n "checking for $ac_word... " >&6; } 10751$as_echo_n "checking for $ac_word... " >&6; }
10768if ${ac_cv_path_PKG_CONFIG+:} false; then : 10752if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
10769 $as_echo_n "(cached) " >&6 10753 $as_echo_n "(cached) " >&6
10770else 10754else
10771 case $PKG_CONFIG in 10755 case $PKG_CONFIG in
@@ -10867,7 +10851,7 @@ if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then
10867 if test "$with_xaw3d" != no; then 10851 if test "$with_xaw3d" != no; then
10868 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xaw3d" >&5 10852 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xaw3d" >&5
10869$as_echo_n "checking for xaw3d... " >&6; } 10853$as_echo_n "checking for xaw3d... " >&6; }
10870 if ${emacs_cv_xaw3d+:} false; then : 10854 if test "${emacs_cv_xaw3d+set}" = set; then :
10871 $as_echo_n "(cached) " >&6 10855 $as_echo_n "(cached) " >&6
10872else 10856else
10873 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 10857 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -10886,7 +10870,7 @@ _ACEOF
10886if ac_fn_c_try_link "$LINENO"; then : 10870if ac_fn_c_try_link "$LINENO"; then :
10887 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XawScrollbarSetThumb in -lXaw3d" >&5 10871 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XawScrollbarSetThumb in -lXaw3d" >&5
10888$as_echo_n "checking for XawScrollbarSetThumb in -lXaw3d... " >&6; } 10872$as_echo_n "checking for XawScrollbarSetThumb in -lXaw3d... " >&6; }
10889if ${ac_cv_lib_Xaw3d_XawScrollbarSetThumb+:} false; then : 10873if test "${ac_cv_lib_Xaw3d_XawScrollbarSetThumb+set}" = set; then :
10890 $as_echo_n "(cached) " >&6 10874 $as_echo_n "(cached) " >&6
10891else 10875else
10892 ac_check_lib_save_LIBS=$LIBS 10876 ac_check_lib_save_LIBS=$LIBS
@@ -10920,7 +10904,7 @@ LIBS=$ac_check_lib_save_LIBS
10920fi 10904fi
10921{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&5 10905{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&5
10922$as_echo "$ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&6; } 10906$as_echo "$ac_cv_lib_Xaw3d_XawScrollbarSetThumb" >&6; }
10923if test "x$ac_cv_lib_Xaw3d_XawScrollbarSetThumb" = xyes; then : 10907if test "x$ac_cv_lib_Xaw3d_XawScrollbarSetThumb" = x""yes; then :
10924 emacs_cv_xaw3d=yes 10908 emacs_cv_xaw3d=yes
10925else 10909else
10926 emacs_cv_xaw3d=no 10910 emacs_cv_xaw3d=no
@@ -10950,7 +10934,7 @@ $as_echo "#define HAVE_XAW3D 1" >>confdefs.h
10950$as_echo "no" >&6; } 10934$as_echo "no" >&6; }
10951 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libXaw" >&5 10935 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libXaw" >&5
10952$as_echo_n "checking for libXaw... " >&6; } 10936$as_echo_n "checking for libXaw... " >&6; }
10953 if ${emacs_cv_xaw+:} false; then : 10937 if test "${emacs_cv_xaw+set}" = set; then :
10954 $as_echo_n "(cached) " >&6 10938 $as_echo_n "(cached) " >&6
10955else 10939else
10956 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 10940 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -10981,7 +10965,7 @@ $as_echo "yes; using Lucid toolkit" >&6; }
10981 USE_X_TOOLKIT=LUCID 10965 USE_X_TOOLKIT=LUCID
10982 LUCID_LIBW=-lXaw 10966 LUCID_LIBW=-lXaw
10983 elif test x"${USE_X_TOOLKIT}" = xLUCID; then 10967 elif test x"${USE_X_TOOLKIT}" = xLUCID; then
10984 as_fn_error $? "Lucid toolkit requires X11/Xaw include files" "$LINENO" 5 10968 as_fn_error "Lucid toolkit requires X11/Xaw include files" "$LINENO" 5
10985 else 10969 else
10986 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no; do not use toolkit by default" >&5 10970 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no; do not use toolkit by default" >&5
10987$as_echo "no; do not use toolkit by default" >&6; } 10971$as_echo "no; do not use toolkit by default" >&6; }
@@ -10996,7 +10980,7 @@ LIBXTR6=
10996if test "${USE_X_TOOLKIT}" != "none"; then 10980if test "${USE_X_TOOLKIT}" != "none"; then
10997 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 toolkit version" >&5 10981 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 toolkit version" >&5
10998$as_echo_n "checking X11 toolkit version... " >&6; } 10982$as_echo_n "checking X11 toolkit version... " >&6; }
10999 if ${emacs_cv_x11_toolkit_version_6+:} false; then : 10983 if test "${emacs_cv_x11_toolkit_version_6+set}" = set; then :
11000 $as_echo_n "(cached) " >&6 10984 $as_echo_n "(cached) " >&6
11001else 10985else
11002 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 10986 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11047,7 +11031,7 @@ $as_echo "before 6" >&6; }
11047 fi 11031 fi
11048 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuConvertStandardSelection in -lXmu" >&5 11032 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuConvertStandardSelection in -lXmu" >&5
11049$as_echo_n "checking for XmuConvertStandardSelection in -lXmu... " >&6; } 11033$as_echo_n "checking for XmuConvertStandardSelection in -lXmu... " >&6; }
11050if ${ac_cv_lib_Xmu_XmuConvertStandardSelection+:} false; then : 11034if test "${ac_cv_lib_Xmu_XmuConvertStandardSelection+set}" = set; then :
11051 $as_echo_n "(cached) " >&6 11035 $as_echo_n "(cached) " >&6
11052else 11036else
11053 ac_check_lib_save_LIBS=$LIBS 11037 ac_check_lib_save_LIBS=$LIBS
@@ -11081,7 +11065,7 @@ LIBS=$ac_check_lib_save_LIBS
11081fi 11065fi
11082{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuConvertStandardSelection" >&5 11066{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuConvertStandardSelection" >&5
11083$as_echo "$ac_cv_lib_Xmu_XmuConvertStandardSelection" >&6; } 11067$as_echo "$ac_cv_lib_Xmu_XmuConvertStandardSelection" >&6; }
11084if test "x$ac_cv_lib_Xmu_XmuConvertStandardSelection" = xyes; then : 11068if test "x$ac_cv_lib_Xmu_XmuConvertStandardSelection" = x""yes; then :
11085 cat >>confdefs.h <<_ACEOF 11069 cat >>confdefs.h <<_ACEOF
11086#define HAVE_LIBXMU 1 11070#define HAVE_LIBXMU 1
11087_ACEOF 11071_ACEOF
@@ -11108,7 +11092,7 @@ if test "${HAVE_X11}" = "yes"; then
11108 if test "${USE_X_TOOLKIT}" != "none"; then 11092 if test "${USE_X_TOOLKIT}" != "none"; then
11109 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5 11093 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
11110$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; } 11094$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; }
11111if ${ac_cv_lib_Xext_XShapeQueryExtension+:} false; then : 11095if test "${ac_cv_lib_Xext_XShapeQueryExtension+set}" = set; then :
11112 $as_echo_n "(cached) " >&6 11096 $as_echo_n "(cached) " >&6
11113else 11097else
11114 ac_check_lib_save_LIBS=$LIBS 11098 ac_check_lib_save_LIBS=$LIBS
@@ -11142,7 +11126,7 @@ LIBS=$ac_check_lib_save_LIBS
11142fi 11126fi
11143{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 11127{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5
11144$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } 11128$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; }
11145if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes; then : 11129if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = x""yes; then :
11146 cat >>confdefs.h <<_ACEOF 11130 cat >>confdefs.h <<_ACEOF
11147#define HAVE_LIBXEXT 1 11131#define HAVE_LIBXEXT 1
11148_ACEOF 11132_ACEOF
@@ -11158,7 +11142,7 @@ LIBXP=
11158if test "${USE_X_TOOLKIT}" = "MOTIF"; then 11142if test "${USE_X_TOOLKIT}" = "MOTIF"; then
11159 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Motif version 2.1" >&5 11143 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Motif version 2.1" >&5
11160$as_echo_n "checking for Motif version 2.1... " >&6; } 11144$as_echo_n "checking for Motif version 2.1... " >&6; }
11161if ${emacs_cv_motif_version_2_1+:} false; then : 11145if test "${emacs_cv_motif_version_2_1+set}" = set; then :
11162 $as_echo_n "(cached) " >&6 11146 $as_echo_n "(cached) " >&6
11163else 11147else
11164 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 11148 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11188,7 +11172,7 @@ $as_echo "$emacs_cv_motif_version_2_1" >&6; }
11188 if test $emacs_cv_motif_version_2_1 = yes; then 11172 if test $emacs_cv_motif_version_2_1 = yes; then
11189 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpCreateContext in -lXp" >&5 11173 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpCreateContext in -lXp" >&5
11190$as_echo_n "checking for XpCreateContext in -lXp... " >&6; } 11174$as_echo_n "checking for XpCreateContext in -lXp... " >&6; }
11191if ${ac_cv_lib_Xp_XpCreateContext+:} false; then : 11175if test "${ac_cv_lib_Xp_XpCreateContext+set}" = set; then :
11192 $as_echo_n "(cached) " >&6 11176 $as_echo_n "(cached) " >&6
11193else 11177else
11194 ac_check_lib_save_LIBS=$LIBS 11178 ac_check_lib_save_LIBS=$LIBS
@@ -11222,14 +11206,14 @@ LIBS=$ac_check_lib_save_LIBS
11222fi 11206fi
11223{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpCreateContext" >&5 11207{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpCreateContext" >&5
11224$as_echo "$ac_cv_lib_Xp_XpCreateContext" >&6; } 11208$as_echo "$ac_cv_lib_Xp_XpCreateContext" >&6; }
11225if test "x$ac_cv_lib_Xp_XpCreateContext" = xyes; then : 11209if test "x$ac_cv_lib_Xp_XpCreateContext" = x""yes; then :
11226 LIBXP=-lXp 11210 LIBXP=-lXp
11227fi 11211fi
11228 11212
11229 else 11213 else
11230 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LessTif where some systems put it" >&5 11214 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LessTif where some systems put it" >&5
11231$as_echo_n "checking for LessTif where some systems put it... " >&6; } 11215$as_echo_n "checking for LessTif where some systems put it... " >&6; }
11232if ${emacs_cv_lesstif+:} false; then : 11216if test "${emacs_cv_lesstif+set}" = set; then :
11233 $as_echo_n "(cached) " >&6 11217 $as_echo_n "(cached) " >&6
11234else 11218else
11235 # We put this in CFLAGS temporarily to precede other -I options 11219 # We put this in CFLAGS temporarily to precede other -I options
@@ -11388,7 +11372,7 @@ if test "${HAVE_X11}" = "yes"; then
11388set dummy pkg-config; ac_word=$2 11372set dummy pkg-config; ac_word=$2
11389{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11373{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11390$as_echo_n "checking for $ac_word... " >&6; } 11374$as_echo_n "checking for $ac_word... " >&6; }
11391if ${ac_cv_path_PKG_CONFIG+:} false; then : 11375if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
11392 $as_echo_n "(cached) " >&6 11376 $as_echo_n "(cached) " >&6
11393else 11377else
11394 case $PKG_CONFIG in 11378 case $PKG_CONFIG in
@@ -11490,7 +11474,7 @@ $as_echo "no" >&6; }
11490set dummy pkg-config; ac_word=$2 11474set dummy pkg-config; ac_word=$2
11491{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11475{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11492$as_echo_n "checking for $ac_word... " >&6; } 11476$as_echo_n "checking for $ac_word... " >&6; }
11493if ${ac_cv_path_PKG_CONFIG+:} false; then : 11477if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
11494 $as_echo_n "(cached) " >&6 11478 $as_echo_n "(cached) " >&6
11495else 11479else
11496 case $PKG_CONFIG in 11480 case $PKG_CONFIG in
@@ -11582,7 +11566,7 @@ $as_echo "no" >&6; }
11582 HAVE_XRENDER=no 11566 HAVE_XRENDER=no
11583 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderQueryExtension in -lXrender" >&5 11567 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderQueryExtension in -lXrender" >&5
11584$as_echo_n "checking for XRenderQueryExtension in -lXrender... " >&6; } 11568$as_echo_n "checking for XRenderQueryExtension in -lXrender... " >&6; }
11585if ${ac_cv_lib_Xrender_XRenderQueryExtension+:} false; then : 11569if test "${ac_cv_lib_Xrender_XRenderQueryExtension+set}" = set; then :
11586 $as_echo_n "(cached) " >&6 11570 $as_echo_n "(cached) " >&6
11587else 11571else
11588 ac_check_lib_save_LIBS=$LIBS 11572 ac_check_lib_save_LIBS=$LIBS
@@ -11616,7 +11600,7 @@ LIBS=$ac_check_lib_save_LIBS
11616fi 11600fi
11617{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderQueryExtension" >&5 11601{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderQueryExtension" >&5
11618$as_echo "$ac_cv_lib_Xrender_XRenderQueryExtension" >&6; } 11602$as_echo "$ac_cv_lib_Xrender_XRenderQueryExtension" >&6; }
11619if test "x$ac_cv_lib_Xrender_XRenderQueryExtension" = xyes; then : 11603if test "x$ac_cv_lib_Xrender_XRenderQueryExtension" = x""yes; then :
11620 HAVE_XRENDER=yes 11604 HAVE_XRENDER=yes
11621fi 11605fi
11622 11606
@@ -11629,10 +11613,10 @@ fi
11629 XFT_LIBS="-lXrender $XFT_LIBS" 11613 XFT_LIBS="-lXrender $XFT_LIBS"
11630 LIBS="$XFT_LIBS $LIBS" 11614 LIBS="$XFT_LIBS $LIBS"
11631 ac_fn_c_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default" 11615 ac_fn_c_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default"
11632if test "x$ac_cv_header_X11_Xft_Xft_h" = xyes; then : 11616if test "x$ac_cv_header_X11_Xft_Xft_h" = x""yes; then :
11633 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftFontOpen in -lXft" >&5 11617 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftFontOpen in -lXft" >&5
11634$as_echo_n "checking for XftFontOpen in -lXft... " >&6; } 11618$as_echo_n "checking for XftFontOpen in -lXft... " >&6; }
11635if ${ac_cv_lib_Xft_XftFontOpen+:} false; then : 11619if test "${ac_cv_lib_Xft_XftFontOpen+set}" = set; then :
11636 $as_echo_n "(cached) " >&6 11620 $as_echo_n "(cached) " >&6
11637else 11621else
11638 ac_check_lib_save_LIBS=$LIBS 11622 ac_check_lib_save_LIBS=$LIBS
@@ -11666,7 +11650,7 @@ LIBS=$ac_check_lib_save_LIBS
11666fi 11650fi
11667{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftFontOpen" >&5 11651{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftFontOpen" >&5
11668$as_echo "$ac_cv_lib_Xft_XftFontOpen" >&6; } 11652$as_echo "$ac_cv_lib_Xft_XftFontOpen" >&6; }
11669if test "x$ac_cv_lib_Xft_XftFontOpen" = xyes; then : 11653if test "x$ac_cv_lib_Xft_XftFontOpen" = x""yes; then :
11670 HAVE_XFT=yes 11654 HAVE_XFT=yes
11671fi 11655fi
11672 11656
@@ -11701,7 +11685,7 @@ $as_echo "#define HAVE_XFT 1" >>confdefs.h
11701set dummy pkg-config; ac_word=$2 11685set dummy pkg-config; ac_word=$2
11702{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11686{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11703$as_echo_n "checking for $ac_word... " >&6; } 11687$as_echo_n "checking for $ac_word... " >&6; }
11704if ${ac_cv_path_PKG_CONFIG+:} false; then : 11688if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
11705 $as_echo_n "(cached) " >&6 11689 $as_echo_n "(cached) " >&6
11706else 11690else
11707 case $PKG_CONFIG in 11691 case $PKG_CONFIG in
@@ -11789,7 +11773,7 @@ $as_echo "no" >&6; }
11789 fi 11773 fi
11790 11774
11791 11775
11792 test "$HAVE_FREETYPE" = "no" && as_fn_error $? "libxft requires libfreetype" "$LINENO" 5 11776 test "$HAVE_FREETYPE" = "no" && as_fn_error "libxft requires libfreetype" "$LINENO" 5
11793 fi 11777 fi
11794 11778
11795 HAVE_LIBOTF=no 11779 HAVE_LIBOTF=no
@@ -11805,7 +11789,7 @@ $as_echo "#define HAVE_FREETYPE 1" >>confdefs.h
11805set dummy pkg-config; ac_word=$2 11789set dummy pkg-config; ac_word=$2
11806{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11790{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11807$as_echo_n "checking for $ac_word... " >&6; } 11791$as_echo_n "checking for $ac_word... " >&6; }
11808if ${ac_cv_path_PKG_CONFIG+:} false; then : 11792if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
11809 $as_echo_n "(cached) " >&6 11793 $as_echo_n "(cached) " >&6
11810else 11794else
11811 case $PKG_CONFIG in 11795 case $PKG_CONFIG in
@@ -11898,7 +11882,7 @@ $as_echo "#define HAVE_LIBOTF 1" >>confdefs.h
11898 11882
11899 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OTF_get_variation_glyphs in -lotf" >&5 11883 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OTF_get_variation_glyphs in -lotf" >&5
11900$as_echo_n "checking for OTF_get_variation_glyphs in -lotf... " >&6; } 11884$as_echo_n "checking for OTF_get_variation_glyphs in -lotf... " >&6; }
11901if ${ac_cv_lib_otf_OTF_get_variation_glyphs+:} false; then : 11885if test "${ac_cv_lib_otf_OTF_get_variation_glyphs+set}" = set; then :
11902 $as_echo_n "(cached) " >&6 11886 $as_echo_n "(cached) " >&6
11903else 11887else
11904 ac_check_lib_save_LIBS=$LIBS 11888 ac_check_lib_save_LIBS=$LIBS
@@ -11932,7 +11916,7 @@ LIBS=$ac_check_lib_save_LIBS
11932fi 11916fi
11933{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_otf_OTF_get_variation_glyphs" >&5 11917{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_otf_OTF_get_variation_glyphs" >&5
11934$as_echo "$ac_cv_lib_otf_OTF_get_variation_glyphs" >&6; } 11918$as_echo "$ac_cv_lib_otf_OTF_get_variation_glyphs" >&6; }
11935if test "x$ac_cv_lib_otf_OTF_get_variation_glyphs" = xyes; then : 11919if test "x$ac_cv_lib_otf_OTF_get_variation_glyphs" = x""yes; then :
11936 HAVE_OTF_GET_VARIATION_GLYPHS=yes 11920 HAVE_OTF_GET_VARIATION_GLYPHS=yes
11937else 11921else
11938 HAVE_OTF_GET_VARIATION_GLYPHS=no 11922 HAVE_OTF_GET_VARIATION_GLYPHS=no
@@ -11957,7 +11941,7 @@ $as_echo "#define HAVE_OTF_GET_VARIATION_GLYPHS 1" >>confdefs.h
11957set dummy pkg-config; ac_word=$2 11941set dummy pkg-config; ac_word=$2
11958{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11942{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11959$as_echo_n "checking for $ac_word... " >&6; } 11943$as_echo_n "checking for $ac_word... " >&6; }
11960if ${ac_cv_path_PKG_CONFIG+:} false; then : 11944if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
11961 $as_echo_n "(cached) " >&6 11945 $as_echo_n "(cached) " >&6
11962else 11946else
11963 case $PKG_CONFIG in 11947 case $PKG_CONFIG in
@@ -12075,10 +12059,10 @@ LIBXPM=
12075if test "${HAVE_X11}" = "yes"; then 12059if test "${HAVE_X11}" = "yes"; then
12076 if test "${with_xpm}" != "no"; then 12060 if test "${with_xpm}" != "no"; then
12077 ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default" 12061 ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default"
12078if test "x$ac_cv_header_X11_xpm_h" = xyes; then : 12062if test "x$ac_cv_header_X11_xpm_h" = x""yes; then :
12079 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReadFileToPixmap in -lXpm" >&5 12063 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReadFileToPixmap in -lXpm" >&5
12080$as_echo_n "checking for XpmReadFileToPixmap in -lXpm... " >&6; } 12064$as_echo_n "checking for XpmReadFileToPixmap in -lXpm... " >&6; }
12081if ${ac_cv_lib_Xpm_XpmReadFileToPixmap+:} false; then : 12065if test "${ac_cv_lib_Xpm_XpmReadFileToPixmap+set}" = set; then :
12082 $as_echo_n "(cached) " >&6 12066 $as_echo_n "(cached) " >&6
12083else 12067else
12084 ac_check_lib_save_LIBS=$LIBS 12068 ac_check_lib_save_LIBS=$LIBS
@@ -12112,7 +12096,7 @@ LIBS=$ac_check_lib_save_LIBS
12112fi 12096fi
12113{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5 12097{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5
12114$as_echo "$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6; } 12098$as_echo "$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6; }
12115if test "x$ac_cv_lib_Xpm_XpmReadFileToPixmap" = xyes; then : 12099if test "x$ac_cv_lib_Xpm_XpmReadFileToPixmap" = x""yes; then :
12116 HAVE_XPM=yes 12100 HAVE_XPM=yes
12117fi 12101fi
12118 12102
@@ -12164,10 +12148,10 @@ LIBJPEG=
12164if test "${HAVE_X11}" = "yes"; then 12148if test "${HAVE_X11}" = "yes"; then
12165 if test "${with_jpeg}" != "no"; then 12149 if test "${with_jpeg}" != "no"; then
12166 ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default" 12150 ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default"
12167if test "x$ac_cv_header_jerror_h" = xyes; then : 12151if test "x$ac_cv_header_jerror_h" = x""yes; then :
12168 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_destroy_compress in -ljpeg" >&5 12152 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_destroy_compress in -ljpeg" >&5
12169$as_echo_n "checking for jpeg_destroy_compress in -ljpeg... " >&6; } 12153$as_echo_n "checking for jpeg_destroy_compress in -ljpeg... " >&6; }
12170if ${ac_cv_lib_jpeg_jpeg_destroy_compress+:} false; then : 12154if test "${ac_cv_lib_jpeg_jpeg_destroy_compress+set}" = set; then :
12171 $as_echo_n "(cached) " >&6 12155 $as_echo_n "(cached) " >&6
12172else 12156else
12173 ac_check_lib_save_LIBS=$LIBS 12157 ac_check_lib_save_LIBS=$LIBS
@@ -12201,7 +12185,7 @@ LIBS=$ac_check_lib_save_LIBS
12201fi 12185fi
12202{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_destroy_compress" >&5 12186{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_destroy_compress" >&5
12203$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_compress" >&6; } 12187$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_compress" >&6; }
12204if test "x$ac_cv_lib_jpeg_jpeg_destroy_compress" = xyes; then : 12188if test "x$ac_cv_lib_jpeg_jpeg_destroy_compress" = x""yes; then :
12205 HAVE_JPEG=yes 12189 HAVE_JPEG=yes
12206fi 12190fi
12207 12191
@@ -12248,7 +12232,8 @@ if test "${HAVE_X11}" = "yes"; then
12248do : 12232do :
12249 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 12233 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
12250ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 12234ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
12251if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 12235eval as_val=\$$as_ac_Header
12236 if test "x$as_val" = x""yes; then :
12252 cat >>confdefs.h <<_ACEOF 12237 cat >>confdefs.h <<_ACEOF
12253#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 12238#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
12254_ACEOF 12239_ACEOF
@@ -12260,7 +12245,7 @@ done
12260 if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then 12245 if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then
12261 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_get_channels in -lpng" >&5 12246 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_get_channels in -lpng" >&5
12262$as_echo_n "checking for png_get_channels in -lpng... " >&6; } 12247$as_echo_n "checking for png_get_channels in -lpng... " >&6; }
12263if ${ac_cv_lib_png_png_get_channels+:} false; then : 12248if test "${ac_cv_lib_png_png_get_channels+set}" = set; then :
12264 $as_echo_n "(cached) " >&6 12249 $as_echo_n "(cached) " >&6
12265else 12250else
12266 ac_check_lib_save_LIBS=$LIBS 12251 ac_check_lib_save_LIBS=$LIBS
@@ -12294,7 +12279,7 @@ LIBS=$ac_check_lib_save_LIBS
12294fi 12279fi
12295{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_get_channels" >&5 12280{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_get_channels" >&5
12296$as_echo "$ac_cv_lib_png_png_get_channels" >&6; } 12281$as_echo "$ac_cv_lib_png_png_get_channels" >&6; }
12297if test "x$ac_cv_lib_png_png_get_channels" = xyes; then : 12282if test "x$ac_cv_lib_png_png_get_channels" = x""yes; then :
12298 HAVE_PNG=yes 12283 HAVE_PNG=yes
12299fi 12284fi
12300 12285
@@ -12316,13 +12301,13 @@ LIBTIFF=
12316if test "${HAVE_X11}" = "yes"; then 12301if test "${HAVE_X11}" = "yes"; then
12317 if test "${with_tiff}" != "no"; then 12302 if test "${with_tiff}" != "no"; then
12318 ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" 12303 ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default"
12319if test "x$ac_cv_header_tiffio_h" = xyes; then : 12304if test "x$ac_cv_header_tiffio_h" = x""yes; then :
12320 tifflibs="-lz -lm" 12305 tifflibs="-lz -lm"
12321 # At least one tiff package requires the jpeg library. 12306 # At least one tiff package requires the jpeg library.
12322 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi 12307 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
12323 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFGetVersion in -ltiff" >&5 12308 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFGetVersion in -ltiff" >&5
12324$as_echo_n "checking for TIFFGetVersion in -ltiff... " >&6; } 12309$as_echo_n "checking for TIFFGetVersion in -ltiff... " >&6; }
12325if ${ac_cv_lib_tiff_TIFFGetVersion+:} false; then : 12310if test "${ac_cv_lib_tiff_TIFFGetVersion+set}" = set; then :
12326 $as_echo_n "(cached) " >&6 12311 $as_echo_n "(cached) " >&6
12327else 12312else
12328 ac_check_lib_save_LIBS=$LIBS 12313 ac_check_lib_save_LIBS=$LIBS
@@ -12356,7 +12341,7 @@ LIBS=$ac_check_lib_save_LIBS
12356fi 12341fi
12357{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFGetVersion" >&5 12342{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFGetVersion" >&5
12358$as_echo "$ac_cv_lib_tiff_TIFFGetVersion" >&6; } 12343$as_echo "$ac_cv_lib_tiff_TIFFGetVersion" >&6; }
12359if test "x$ac_cv_lib_tiff_TIFFGetVersion" = xyes; then : 12344if test "x$ac_cv_lib_tiff_TIFFGetVersion" = x""yes; then :
12360 HAVE_TIFF=yes 12345 HAVE_TIFF=yes
12361fi 12346fi
12362 12347
@@ -12379,12 +12364,12 @@ HAVE_GIF=no
12379LIBGIF= 12364LIBGIF=
12380if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then 12365if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then
12381 ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default" 12366 ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default"
12382if test "x$ac_cv_header_gif_lib_h" = xyes; then : 12367if test "x$ac_cv_header_gif_lib_h" = x""yes; then :
12383 # EGifPutExtensionLast only exists from version libungif-4.1.0b1. 12368 # EGifPutExtensionLast only exists from version libungif-4.1.0b1.
12384# Earlier versions can crash Emacs. 12369# Earlier versions can crash Emacs.
12385 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lgif" >&5 12370 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lgif" >&5
12386$as_echo_n "checking for EGifPutExtensionLast in -lgif... " >&6; } 12371$as_echo_n "checking for EGifPutExtensionLast in -lgif... " >&6; }
12387if ${ac_cv_lib_gif_EGifPutExtensionLast+:} false; then : 12372if test "${ac_cv_lib_gif_EGifPutExtensionLast+set}" = set; then :
12388 $as_echo_n "(cached) " >&6 12373 $as_echo_n "(cached) " >&6
12389else 12374else
12390 ac_check_lib_save_LIBS=$LIBS 12375 ac_check_lib_save_LIBS=$LIBS
@@ -12418,7 +12403,7 @@ LIBS=$ac_check_lib_save_LIBS
12418fi 12403fi
12419{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gif_EGifPutExtensionLast" >&5 12404{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gif_EGifPutExtensionLast" >&5
12420$as_echo "$ac_cv_lib_gif_EGifPutExtensionLast" >&6; } 12405$as_echo "$ac_cv_lib_gif_EGifPutExtensionLast" >&6; }
12421if test "x$ac_cv_lib_gif_EGifPutExtensionLast" = xyes; then : 12406if test "x$ac_cv_lib_gif_EGifPutExtensionLast" = x""yes; then :
12422 HAVE_GIF=yes 12407 HAVE_GIF=yes
12423else 12408else
12424 HAVE_GIF=maybe 12409 HAVE_GIF=maybe
@@ -12434,7 +12419,7 @@ fi
12434# If gif_lib.h but no libgif, try libungif. 12419# If gif_lib.h but no libgif, try libungif.
12435 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lungif" >&5 12420 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lungif" >&5
12436$as_echo_n "checking for EGifPutExtensionLast in -lungif... " >&6; } 12421$as_echo_n "checking for EGifPutExtensionLast in -lungif... " >&6; }
12437if ${ac_cv_lib_ungif_EGifPutExtensionLast+:} false; then : 12422if test "${ac_cv_lib_ungif_EGifPutExtensionLast+set}" = set; then :
12438 $as_echo_n "(cached) " >&6 12423 $as_echo_n "(cached) " >&6
12439else 12424else
12440 ac_check_lib_save_LIBS=$LIBS 12425 ac_check_lib_save_LIBS=$LIBS
@@ -12468,7 +12453,7 @@ LIBS=$ac_check_lib_save_LIBS
12468fi 12453fi
12469{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ungif_EGifPutExtensionLast" >&5 12454{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ungif_EGifPutExtensionLast" >&5
12470$as_echo "$ac_cv_lib_ungif_EGifPutExtensionLast" >&6; } 12455$as_echo "$ac_cv_lib_ungif_EGifPutExtensionLast" >&6; }
12471if test "x$ac_cv_lib_ungif_EGifPutExtensionLast" = xyes; then : 12456if test "x$ac_cv_lib_ungif_EGifPutExtensionLast" = x""yes; then :
12472 HAVE_GIF=yes 12457 HAVE_GIF=yes
12473else 12458else
12474 HAVE_GIF=no 12459 HAVE_GIF=no
@@ -12500,7 +12485,7 @@ if test "${HAVE_X11}" = "yes"; then
12500 MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no" 12485 MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no"
12501 12486
12502 if test "X${MISSING}" != X; then 12487 if test "X${MISSING}" != X; then
12503 as_fn_error $? "The following required libraries were not found: 12488 as_fn_error "The following required libraries were not found:
12504 $MISSING 12489 $MISSING
12505Maybe some development libraries/packages are missing? 12490Maybe some development libraries/packages are missing?
12506If you don't want to link with them give 12491If you don't want to link with them give
@@ -12515,10 +12500,10 @@ LIBGPM=
12515MOUSE_SUPPORT= 12500MOUSE_SUPPORT=
12516if test "${with_gpm}" != "no"; then 12501if test "${with_gpm}" != "no"; then
12517 ac_fn_c_check_header_mongrel "$LINENO" "gpm.h" "ac_cv_header_gpm_h" "$ac_includes_default" 12502 ac_fn_c_check_header_mongrel "$LINENO" "gpm.h" "ac_cv_header_gpm_h" "$ac_includes_default"
12518if test "x$ac_cv_header_gpm_h" = xyes; then : 12503if test "x$ac_cv_header_gpm_h" = x""yes; then :
12519 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Gpm_Open in -lgpm" >&5 12504 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Gpm_Open in -lgpm" >&5
12520$as_echo_n "checking for Gpm_Open in -lgpm... " >&6; } 12505$as_echo_n "checking for Gpm_Open in -lgpm... " >&6; }
12521if ${ac_cv_lib_gpm_Gpm_Open+:} false; then : 12506if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then :
12522 $as_echo_n "(cached) " >&6 12507 $as_echo_n "(cached) " >&6
12523else 12508else
12524 ac_check_lib_save_LIBS=$LIBS 12509 ac_check_lib_save_LIBS=$LIBS
@@ -12552,7 +12537,7 @@ LIBS=$ac_check_lib_save_LIBS
12552fi 12537fi
12553{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpm_Gpm_Open" >&5 12538{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpm_Gpm_Open" >&5
12554$as_echo "$ac_cv_lib_gpm_Gpm_Open" >&6; } 12539$as_echo "$ac_cv_lib_gpm_Gpm_Open" >&6; }
12555if test "x$ac_cv_lib_gpm_Gpm_Open" = xyes; then : 12540if test "x$ac_cv_lib_gpm_Gpm_Open" = x""yes; then :
12556 HAVE_GPM=yes 12541 HAVE_GPM=yes
12557fi 12542fi
12558 12543
@@ -12572,7 +12557,7 @@ fi
12572 12557
12573 12558
12574ac_fn_c_check_header_mongrel "$LINENO" "malloc/malloc.h" "ac_cv_header_malloc_malloc_h" "$ac_includes_default" 12559ac_fn_c_check_header_mongrel "$LINENO" "malloc/malloc.h" "ac_cv_header_malloc_malloc_h" "$ac_includes_default"
12575if test "x$ac_cv_header_malloc_malloc_h" = xyes; then : 12560if test "x$ac_cv_header_malloc_malloc_h" = x""yes; then :
12576 12561
12577$as_echo "#define HAVE_MALLOC_MALLOC_H 1" >>confdefs.h 12562$as_echo "#define HAVE_MALLOC_MALLOC_H 1" >>confdefs.h
12578 12563
@@ -12617,10 +12602,10 @@ HAVE_X_SM=no
12617LIBXSM= 12602LIBXSM=
12618if test "${HAVE_X11}" = "yes"; then 12603if test "${HAVE_X11}" = "yes"; then
12619 ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default" 12604 ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default"
12620if test "x$ac_cv_header_X11_SM_SMlib_h" = xyes; then : 12605if test "x$ac_cv_header_X11_SM_SMlib_h" = x""yes; then :
12621 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SmcOpenConnection in -lSM" >&5 12606 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SmcOpenConnection in -lSM" >&5
12622$as_echo_n "checking for SmcOpenConnection in -lSM... " >&6; } 12607$as_echo_n "checking for SmcOpenConnection in -lSM... " >&6; }
12623if ${ac_cv_lib_SM_SmcOpenConnection+:} false; then : 12608if test "${ac_cv_lib_SM_SmcOpenConnection+set}" = set; then :
12624 $as_echo_n "(cached) " >&6 12609 $as_echo_n "(cached) " >&6
12625else 12610else
12626 ac_check_lib_save_LIBS=$LIBS 12611 ac_check_lib_save_LIBS=$LIBS
@@ -12654,7 +12639,7 @@ LIBS=$ac_check_lib_save_LIBS
12654fi 12639fi
12655{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SM_SmcOpenConnection" >&5 12640{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SM_SmcOpenConnection" >&5
12656$as_echo "$ac_cv_lib_SM_SmcOpenConnection" >&6; } 12641$as_echo "$ac_cv_lib_SM_SmcOpenConnection" >&6; }
12657if test "x$ac_cv_lib_SM_SmcOpenConnection" = xyes; then : 12642if test "x$ac_cv_lib_SM_SmcOpenConnection" = x""yes; then :
12658 HAVE_X_SM=yes 12643 HAVE_X_SM=yes
12659fi 12644fi
12660 12645
@@ -12685,7 +12670,7 @@ if test "${with_xml2}" != "no"; then
12685set dummy pkg-config; ac_word=$2 12670set dummy pkg-config; ac_word=$2
12686{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 12671{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
12687$as_echo_n "checking for $ac_word... " >&6; } 12672$as_echo_n "checking for $ac_word... " >&6; }
12688if ${ac_cv_path_PKG_CONFIG+:} false; then : 12673if test "${ac_cv_path_PKG_CONFIG+set}" = set; then :
12689 $as_echo_n "(cached) " >&6 12674 $as_echo_n "(cached) " >&6
12690else 12675else
12691 case $PKG_CONFIG in 12676 case $PKG_CONFIG in
@@ -12776,7 +12761,7 @@ $as_echo "no" >&6; }
12776 LIBS="$LIBXML2_LIBS $LIBS" 12761 LIBS="$LIBXML2_LIBS $LIBS"
12777 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htmlReadMemory in -lxml2" >&5 12762 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htmlReadMemory in -lxml2" >&5
12778$as_echo_n "checking for htmlReadMemory in -lxml2... " >&6; } 12763$as_echo_n "checking for htmlReadMemory in -lxml2... " >&6; }
12779if ${ac_cv_lib_xml2_htmlReadMemory+:} false; then : 12764if test "${ac_cv_lib_xml2_htmlReadMemory+set}" = set; then :
12780 $as_echo_n "(cached) " >&6 12765 $as_echo_n "(cached) " >&6
12781else 12766else
12782 ac_check_lib_save_LIBS=$LIBS 12767 ac_check_lib_save_LIBS=$LIBS
@@ -12810,7 +12795,7 @@ LIBS=$ac_check_lib_save_LIBS
12810fi 12795fi
12811{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_htmlReadMemory" >&5 12796{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_htmlReadMemory" >&5
12812$as_echo "$ac_cv_lib_xml2_htmlReadMemory" >&6; } 12797$as_echo "$ac_cv_lib_xml2_htmlReadMemory" >&6; }
12813if test "x$ac_cv_lib_xml2_htmlReadMemory" = xyes; then : 12798if test "x$ac_cv_lib_xml2_htmlReadMemory" = x""yes; then :
12814 HAVE_LIBXML2=yes 12799 HAVE_LIBXML2=yes
12815else 12800else
12816 HAVE_LIBXML2=no 12801 HAVE_LIBXML2=no
@@ -12832,7 +12817,7 @@ fi
12832# If netdb.h doesn't declare h_errno, we must declare it by hand. 12817# If netdb.h doesn't declare h_errno, we must declare it by hand.
12833{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether netdb declares h_errno" >&5 12818{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether netdb declares h_errno" >&5
12834$as_echo_n "checking whether netdb declares h_errno... " >&6; } 12819$as_echo_n "checking whether netdb declares h_errno... " >&6; }
12835if ${emacs_cv_netdb_declares_h_errno+:} false; then : 12820if test "${emacs_cv_netdb_declares_h_errno+set}" = set; then :
12836 $as_echo_n "(cached) " >&6 12821 $as_echo_n "(cached) " >&6
12837else 12822else
12838 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 12823 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -12862,22 +12847,11 @@ $as_echo "#define HAVE_H_ERRNO 1" >>confdefs.h
12862 12847
12863fi 12848fi
12864 12849
12865ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
12866if test "x$ac_cv_type_size_t" = xyes; then :
12867
12868else
12869
12870cat >>confdefs.h <<_ACEOF
12871#define size_t unsigned int
12872_ACEOF
12873
12874fi
12875
12876# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works 12850# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
12877# for constant arguments. Useless! 12851# for constant arguments. Useless!
12878{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 12852{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5
12879$as_echo_n "checking for working alloca.h... " >&6; } 12853$as_echo_n "checking for working alloca.h... " >&6; }
12880if ${ac_cv_working_alloca_h+:} false; then : 12854if test "${ac_cv_working_alloca_h+set}" = set; then :
12881 $as_echo_n "(cached) " >&6 12855 $as_echo_n "(cached) " >&6
12882else 12856else
12883 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 12857 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -12910,7 +12884,7 @@ fi
12910 12884
12911{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 12885{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5
12912$as_echo_n "checking for alloca... " >&6; } 12886$as_echo_n "checking for alloca... " >&6; }
12913if ${ac_cv_func_alloca_works+:} false; then : 12887if test "${ac_cv_func_alloca_works+set}" = set; then :
12914 $as_echo_n "(cached) " >&6 12888 $as_echo_n "(cached) " >&6
12915else 12889else
12916 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 12890 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -12929,7 +12903,7 @@ else
12929 #pragma alloca 12903 #pragma alloca
12930# else 12904# else
12931# ifndef alloca /* predefined by HP cc +Olibcalls */ 12905# ifndef alloca /* predefined by HP cc +Olibcalls */
12932void *alloca (size_t); 12906char *alloca ();
12933# endif 12907# endif
12934# endif 12908# endif
12935# endif 12909# endif
@@ -12973,7 +12947,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h
12973 12947
12974{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 12948{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5
12975$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } 12949$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; }
12976if ${ac_cv_os_cray+:} false; then : 12950if test "${ac_cv_os_cray+set}" = set; then :
12977 $as_echo_n "(cached) " >&6 12951 $as_echo_n "(cached) " >&6
12978else 12952else
12979 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 12953 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -13000,7 +12974,8 @@ if test $ac_cv_os_cray = yes; then
13000 for ac_func in _getb67 GETB67 getb67; do 12974 for ac_func in _getb67 GETB67 getb67; do
13001 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 12975 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
13002ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 12976ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
13003if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 12977eval as_val=\$$as_ac_var
12978 if test "x$as_val" = x""yes; then :
13004 12979
13005cat >>confdefs.h <<_ACEOF 12980cat >>confdefs.h <<_ACEOF
13006#define CRAY_STACKSEG_END $ac_func 12981#define CRAY_STACKSEG_END $ac_func
@@ -13014,7 +12989,7 @@ fi
13014 12989
13015{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 12990{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5
13016$as_echo_n "checking stack direction for C alloca... " >&6; } 12991$as_echo_n "checking stack direction for C alloca... " >&6; }
13017if ${ac_cv_c_stack_direction+:} false; then : 12992if test "${ac_cv_c_stack_direction+set}" = set; then :
13018 $as_echo_n "(cached) " >&6 12993 $as_echo_n "(cached) " >&6
13019else 12994else
13020 if test "$cross_compiling" = yes; then : 12995 if test "$cross_compiling" = yes; then :
@@ -13064,14 +13039,14 @@ fi
13064 13039
13065 13040
13066if test x"$ac_cv_func_alloca_works" != xyes; then 13041if test x"$ac_cv_func_alloca_works" != xyes; then
13067 as_fn_error $? "a system implementation of alloca is required " "$LINENO" 5 13042 as_fn_error "a system implementation of alloca is required " "$LINENO" 5
13068fi 13043fi
13069 13044
13070# fmod, logb, and frexp are found in -lm on most systems. 13045# fmod, logb, and frexp are found in -lm on most systems.
13071# On HPUX 9.01, -lm does not contain logb, so check for sqrt. 13046# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
13072{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5 13047{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5
13073$as_echo_n "checking for sqrt in -lm... " >&6; } 13048$as_echo_n "checking for sqrt in -lm... " >&6; }
13074if ${ac_cv_lib_m_sqrt+:} false; then : 13049if test "${ac_cv_lib_m_sqrt+set}" = set; then :
13075 $as_echo_n "(cached) " >&6 13050 $as_echo_n "(cached) " >&6
13076else 13051else
13077 ac_check_lib_save_LIBS=$LIBS 13052 ac_check_lib_save_LIBS=$LIBS
@@ -13105,7 +13080,7 @@ LIBS=$ac_check_lib_save_LIBS
13105fi 13080fi
13106{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5 13081{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5
13107$as_echo "$ac_cv_lib_m_sqrt" >&6; } 13082$as_echo "$ac_cv_lib_m_sqrt" >&6; }
13108if test "x$ac_cv_lib_m_sqrt" = xyes; then : 13083if test "x$ac_cv_lib_m_sqrt" = x""yes; then :
13109 cat >>confdefs.h <<_ACEOF 13084 cat >>confdefs.h <<_ACEOF
13110#define HAVE_LIBM 1 13085#define HAVE_LIBM 1
13111_ACEOF 13086_ACEOF
@@ -13119,7 +13094,7 @@ fi
13119# have the same check as for liblockfile below. 13094# have the same check as for liblockfile below.
13120{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -lmail" >&5 13095{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -lmail" >&5
13121$as_echo_n "checking for maillock in -lmail... " >&6; } 13096$as_echo_n "checking for maillock in -lmail... " >&6; }
13122if ${ac_cv_lib_mail_maillock+:} false; then : 13097if test "${ac_cv_lib_mail_maillock+set}" = set; then :
13123 $as_echo_n "(cached) " >&6 13098 $as_echo_n "(cached) " >&6
13124else 13099else
13125 ac_check_lib_save_LIBS=$LIBS 13100 ac_check_lib_save_LIBS=$LIBS
@@ -13153,7 +13128,7 @@ LIBS=$ac_check_lib_save_LIBS
13153fi 13128fi
13154{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mail_maillock" >&5 13129{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mail_maillock" >&5
13155$as_echo "$ac_cv_lib_mail_maillock" >&6; } 13130$as_echo "$ac_cv_lib_mail_maillock" >&6; }
13156if test "x$ac_cv_lib_mail_maillock" = xyes; then : 13131if test "x$ac_cv_lib_mail_maillock" = x""yes; then :
13157 have_mail=yes 13132 have_mail=yes
13158else 13133else
13159 have_mail=no 13134 have_mail=no
@@ -13170,7 +13145,7 @@ else
13170fi 13145fi
13171{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -llockfile" >&5 13146{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -llockfile" >&5
13172$as_echo_n "checking for maillock in -llockfile... " >&6; } 13147$as_echo_n "checking for maillock in -llockfile... " >&6; }
13173if ${ac_cv_lib_lockfile_maillock+:} false; then : 13148if test "${ac_cv_lib_lockfile_maillock+set}" = set; then :
13174 $as_echo_n "(cached) " >&6 13149 $as_echo_n "(cached) " >&6
13175else 13150else
13176 ac_check_lib_save_LIBS=$LIBS 13151 ac_check_lib_save_LIBS=$LIBS
@@ -13204,7 +13179,7 @@ LIBS=$ac_check_lib_save_LIBS
13204fi 13179fi
13205{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lockfile_maillock" >&5 13180{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lockfile_maillock" >&5
13206$as_echo "$ac_cv_lib_lockfile_maillock" >&6; } 13181$as_echo "$ac_cv_lib_lockfile_maillock" >&6; }
13207if test "x$ac_cv_lib_lockfile_maillock" = xyes; then : 13182if test "x$ac_cv_lib_lockfile_maillock" = x""yes; then :
13208 have_lockfile=yes 13183 have_lockfile=yes
13209else 13184else
13210 have_lockfile=no 13185 have_lockfile=no
@@ -13224,7 +13199,7 @@ else
13224set dummy liblockfile.so; ac_word=$2 13199set dummy liblockfile.so; ac_word=$2
13225{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 13200{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
13226$as_echo_n "checking for $ac_word... " >&6; } 13201$as_echo_n "checking for $ac_word... " >&6; }
13227if ${ac_cv_prog_liblockfile+:} false; then : 13202if test "${ac_cv_prog_liblockfile+set}" = set; then :
13228 $as_echo_n "(cached) " >&6 13203 $as_echo_n "(cached) " >&6
13229else 13204else
13230 if test -n "$liblockfile"; then 13205 if test -n "$liblockfile"; then
@@ -13260,7 +13235,7 @@ fi
13260 13235
13261 13236
13262 if test $ac_cv_prog_liblockfile = yes; then 13237 if test $ac_cv_prog_liblockfile = yes; then
13263 as_fn_error $? "Shared liblockfile found but can't link against it. 13238 as_fn_error "Shared liblockfile found but can't link against it.
13264This probably means that movemail could lose mail. 13239This probably means that movemail could lose mail.
13265There may be a \`development' package to install containing liblockfile." "$LINENO" 5 13240There may be a \`development' package to install containing liblockfile." "$LINENO" 5
13266 fi 13241 fi
@@ -13268,7 +13243,7 @@ fi
13268for ac_func in touchlock 13243for ac_func in touchlock
13269do : 13244do :
13270 ac_fn_c_check_func "$LINENO" "touchlock" "ac_cv_func_touchlock" 13245 ac_fn_c_check_func "$LINENO" "touchlock" "ac_cv_func_touchlock"
13271if test "x$ac_cv_func_touchlock" = xyes; then : 13246if test "x$ac_cv_func_touchlock" = x""yes; then :
13272 cat >>confdefs.h <<_ACEOF 13247 cat >>confdefs.h <<_ACEOF
13273#define HAVE_TOUCHLOCK 1 13248#define HAVE_TOUCHLOCK 1
13274_ACEOF 13249_ACEOF
@@ -13279,7 +13254,7 @@ done
13279for ac_header in maillock.h 13254for ac_header in maillock.h
13280do : 13255do :
13281 ac_fn_c_check_header_mongrel "$LINENO" "maillock.h" "ac_cv_header_maillock_h" "$ac_includes_default" 13256 ac_fn_c_check_header_mongrel "$LINENO" "maillock.h" "ac_cv_header_maillock_h" "$ac_includes_default"
13282if test "x$ac_cv_header_maillock_h" = xyes; then : 13257if test "x$ac_cv_header_maillock_h" = x""yes; then :
13283 cat >>confdefs.h <<_ACEOF 13258 cat >>confdefs.h <<_ACEOF
13284#define HAVE_MAILLOCK_H 1 13259#define HAVE_MAILLOCK_H 1
13285_ACEOF 13260_ACEOF
@@ -13349,7 +13324,8 @@ cfmakeraw cfsetspeed isnan copysign __executable_start
13349do : 13324do :
13350 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 13325 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
13351ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 13326ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
13352if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 13327eval as_val=\$$as_ac_var
13328 if test "x$as_val" = x""yes; then :
13353 cat >>confdefs.h <<_ACEOF 13329 cat >>confdefs.h <<_ACEOF
13354#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 13330#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
13355_ACEOF 13331_ACEOF
@@ -13360,7 +13336,7 @@ done
13360 13336
13361{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_unwind_init" >&5 13337{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for __builtin_unwind_init" >&5
13362$as_echo_n "checking for __builtin_unwind_init... " >&6; } 13338$as_echo_n "checking for __builtin_unwind_init... " >&6; }
13363if ${emacs_cv_func___builtin_unwind_init+:} false; then : 13339if test "${emacs_cv_func___builtin_unwind_init+set}" = set; then :
13364 $as_echo_n "(cached) " >&6 13340 $as_echo_n "(cached) " >&6
13365else 13341else
13366 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 13342 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -13393,7 +13369,7 @@ fi
13393for ac_header in sys/un.h 13369for ac_header in sys/un.h
13394do : 13370do :
13395 ac_fn_c_check_header_mongrel "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "$ac_includes_default" 13371 ac_fn_c_check_header_mongrel "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "$ac_includes_default"
13396if test "x$ac_cv_header_sys_un_h" = xyes; then : 13372if test "x$ac_cv_header_sys_un_h" = x""yes; then :
13397 cat >>confdefs.h <<_ACEOF 13373 cat >>confdefs.h <<_ACEOF
13398#define HAVE_SYS_UN_H 1 13374#define HAVE_SYS_UN_H 1
13399_ACEOF 13375_ACEOF
@@ -13405,7 +13381,7 @@ done
13405 13381
13406{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5 13382{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
13407$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; } 13383$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
13408if ${ac_cv_sys_largefile_source+:} false; then : 13384if test "${ac_cv_sys_largefile_source+set}" = set; then :
13409 $as_echo_n "(cached) " >&6 13385 $as_echo_n "(cached) " >&6
13410else 13386else
13411 while :; do 13387 while :; do
@@ -13474,7 +13450,7 @@ fi
13474 13450
13475{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgrp requires zero arguments" >&5 13451{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgrp requires zero arguments" >&5
13476$as_echo_n "checking whether getpgrp requires zero arguments... " >&6; } 13452$as_echo_n "checking whether getpgrp requires zero arguments... " >&6; }
13477if ${ac_cv_func_getpgrp_void+:} false; then : 13453if test "${ac_cv_func_getpgrp_void+set}" = set; then :
13478 $as_echo_n "(cached) " >&6 13454 $as_echo_n "(cached) " >&6
13479else 13455else
13480 # Use it with a single arg. 13456 # Use it with a single arg.
@@ -13523,7 +13499,7 @@ fi
13523 13499
13524 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 13500 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
13525$as_echo_n "checking whether byte ordering is bigendian... " >&6; } 13501$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
13526if ${ac_cv_c_bigendian+:} false; then : 13502if test "${ac_cv_c_bigendian+set}" = set; then :
13527 $as_echo_n "(cached) " >&6 13503 $as_echo_n "(cached) " >&6
13528else 13504else
13529 ac_cv_c_bigendian=unknown 13505 ac_cv_c_bigendian=unknown
@@ -13741,14 +13717,14 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
13741 13717
13742 ;; #( 13718 ;; #(
13743 *) 13719 *)
13744 as_fn_error $? "unknown endianness 13720 as_fn_error "unknown endianness
13745 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; 13721 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
13746 esac 13722 esac
13747 13723
13748 13724
13749{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 13725{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for inline" >&5
13750$as_echo_n "checking for inline... " >&6; } 13726$as_echo_n "checking for inline... " >&6; }
13751if ${ac_cv_c_inline+:} false; then : 13727if test "${ac_cv_c_inline+set}" = set; then :
13752 $as_echo_n "(cached) " >&6 13728 $as_echo_n "(cached) " >&6
13753else 13729else
13754 ac_cv_c_inline=no 13730 ac_cv_c_inline=no
@@ -13791,7 +13767,7 @@ esac
13791 13767
13792 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strtold conforms to C99" >&5 13768 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strtold conforms to C99" >&5
13793$as_echo_n "checking whether strtold conforms to C99... " >&6; } 13769$as_echo_n "checking whether strtold conforms to C99... " >&6; }
13794if ${gl_cv_func_c99_strtold+:} false; then : 13770if test "${gl_cv_func_c99_strtold+set}" = set; then :
13795 $as_echo_n "(cached) " >&6 13771 $as_echo_n "(cached) " >&6
13796else 13772else
13797 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 13773 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -13834,7 +13810,7 @@ $as_echo "#define HAVE_C99_STRTOLD 1" >>confdefs.h
13834 13810
13835{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for st_dm_mode in struct stat" >&5 13811{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for st_dm_mode in struct stat" >&5
13836$as_echo_n "checking for st_dm_mode in struct stat... " >&6; } 13812$as_echo_n "checking for st_dm_mode in struct stat... " >&6; }
13837if ${ac_cv_struct_st_dm_mode+:} false; then : 13813if test "${ac_cv_struct_st_dm_mode+set}" = set; then :
13838 $as_echo_n "(cached) " >&6 13814 $as_echo_n "(cached) " >&6
13839else 13815else
13840 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 13816 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -13868,7 +13844,7 @@ $as_echo "#define HAVE_ST_DM_MODE 1" >>confdefs.h
13868 13844
13869 13845
13870ac_fn_c_check_decl "$LINENO" "strmode" "ac_cv_have_decl_strmode" "$ac_includes_default" 13846ac_fn_c_check_decl "$LINENO" "strmode" "ac_cv_have_decl_strmode" "$ac_includes_default"
13871if test "x$ac_cv_have_decl_strmode" = xyes; then : 13847if test "x$ac_cv_have_decl_strmode" = x""yes; then :
13872 ac_have_decl=1 13848 ac_have_decl=1
13873else 13849else
13874 ac_have_decl=0 13850 ac_have_decl=0
@@ -14057,7 +14033,7 @@ _ACEOF
14057 14033
14058 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5 14034 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5
14059$as_echo_n "checking whether the preprocessor supports include_next... " >&6; } 14035$as_echo_n "checking whether the preprocessor supports include_next... " >&6; }
14060if ${gl_cv_have_include_next+:} false; then : 14036if test "${gl_cv_have_include_next+set}" = set; then :
14061 $as_echo_n "(cached) " >&6 14037 $as_echo_n "(cached) " >&6
14062else 14038else
14063 rm -rf conftestd1a conftestd1b conftestd2 14039 rm -rf conftestd1a conftestd1b conftestd2
@@ -14137,7 +14113,7 @@ $as_echo "$gl_cv_have_include_next" >&6; }
14137 14113
14138 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length" >&5 14114 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length" >&5
14139$as_echo_n "checking whether system header files limit the line length... " >&6; } 14115$as_echo_n "checking whether system header files limit the line length... " >&6; }
14140if ${gl_cv_pragma_columns+:} false; then : 14116if test "${gl_cv_pragma_columns+set}" = set; then :
14141 $as_echo_n "(cached) " >&6 14117 $as_echo_n "(cached) " >&6
14142else 14118else
14143 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14119 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14187,7 +14163,7 @@ $as_echo "$gl_cv_pragma_columns" >&6; }
14187 else 14163 else
14188 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <getopt.h>" >&5 14164 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <getopt.h>" >&5
14189$as_echo_n "checking absolute name of <getopt.h>... " >&6; } 14165$as_echo_n "checking absolute name of <getopt.h>... " >&6; }
14190if ${gl_cv_next_getopt_h+:} false; then : 14166if test "${gl_cv_next_getopt_h+set}" = set; then :
14191 $as_echo_n "(cached) " >&6 14167 $as_echo_n "(cached) " >&6
14192else 14168else
14193 14169
@@ -14246,7 +14222,7 @@ $as_echo "$gl_cv_next_getopt_h" >&6; }
14246 for ac_header in getopt.h 14222 for ac_header in getopt.h
14247do : 14223do :
14248 ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" 14224 ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default"
14249if test "x$ac_cv_header_getopt_h" = xyes; then : 14225if test "x$ac_cv_header_getopt_h" = x""yes; then :
14250 cat >>confdefs.h <<_ACEOF 14226 cat >>confdefs.h <<_ACEOF
14251#define HAVE_GETOPT_H 1 14227#define HAVE_GETOPT_H 1
14252_ACEOF 14228_ACEOF
@@ -14263,7 +14239,7 @@ done
14263 for ac_func in getopt_long_only 14239 for ac_func in getopt_long_only
14264do : 14240do :
14265 ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" 14241 ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only"
14266if test "x$ac_cv_func_getopt_long_only" = xyes; then : 14242if test "x$ac_cv_func_getopt_long_only" = x""yes; then :
14267 cat >>confdefs.h <<_ACEOF 14243 cat >>confdefs.h <<_ACEOF
14268#define HAVE_GETOPT_LONG_ONLY 1 14244#define HAVE_GETOPT_LONG_ONLY 1
14269_ACEOF 14245_ACEOF
@@ -14278,7 +14254,7 @@ done
14278 if test -z "$gl_replace_getopt"; then 14254 if test -z "$gl_replace_getopt"; then
14279 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getopt is POSIX compatible" >&5 14255 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getopt is POSIX compatible" >&5
14280$as_echo_n "checking whether getopt is POSIX compatible... " >&6; } 14256$as_echo_n "checking whether getopt is POSIX compatible... " >&6; }
14281if ${gl_cv_func_getopt_posix+:} false; then : 14257if test "${gl_cv_func_getopt_posix+set}" = set; then :
14282 $as_echo_n "(cached) " >&6 14258 $as_echo_n "(cached) " >&6
14283else 14259else
14284 14260
@@ -14436,7 +14412,7 @@ $as_echo "$gl_cv_func_getopt_posix" >&6; }
14436 if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then 14412 if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then
14437 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5 14413 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5
14438$as_echo_n "checking for working GNU getopt function... " >&6; } 14414$as_echo_n "checking for working GNU getopt function... " >&6; }
14439if ${gl_cv_func_getopt_gnu+:} false; then : 14415if test "${gl_cv_func_getopt_gnu+set}" = set; then :
14440 $as_echo_n "(cached) " >&6 14416 $as_echo_n "(cached) " >&6
14441else 14417else
14442 # Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the 14418 # Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the
@@ -14548,7 +14524,7 @@ $as_echo "$gl_cv_func_getopt_gnu" >&6; }
14548 fi 14524 fi
14549 14525
14550ac_fn_c_check_decl "$LINENO" "getenv" "ac_cv_have_decl_getenv" "$ac_includes_default" 14526ac_fn_c_check_decl "$LINENO" "getenv" "ac_cv_have_decl_getenv" "$ac_includes_default"
14551if test "x$ac_cv_have_decl_getenv" = xyes; then : 14527if test "x$ac_cv_have_decl_getenv" = x""yes; then :
14552 ac_have_decl=1 14528 ac_have_decl=1
14553else 14529else
14554 ac_have_decl=0 14530 ac_have_decl=0
@@ -14643,7 +14619,8 @@ fi
14643do : 14619do :
14644 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 14620 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
14645ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 14621ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
14646if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 14622eval as_val=\$$as_ac_var
14623 if test "x$as_val" = x""yes; then :
14647 cat >>confdefs.h <<_ACEOF 14624 cat >>confdefs.h <<_ACEOF
14648#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 14625#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
14649_ACEOF 14626_ACEOF
@@ -14656,7 +14633,7 @@ done
14656 14633
14657 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5 14634 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5
14658$as_echo_n "checking whether lstat correctly handles trailing slash... " >&6; } 14635$as_echo_n "checking whether lstat correctly handles trailing slash... " >&6; }
14659if ${ac_cv_func_lstat_dereferences_slashed_symlink+:} false; then : 14636if test "${ac_cv_func_lstat_dereferences_slashed_symlink+set}" = set; then :
14660 $as_echo_n "(cached) " >&6 14637 $as_echo_n "(cached) " >&6
14661else 14638else
14662 rm -f conftest.sym conftest.file 14639 rm -f conftest.sym conftest.file
@@ -14786,7 +14763,7 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
14786 14763
14787{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5 14764{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdbool.h that conforms to C99" >&5
14788$as_echo_n "checking for stdbool.h that conforms to C99... " >&6; } 14765$as_echo_n "checking for stdbool.h that conforms to C99... " >&6; }
14789if ${ac_cv_header_stdbool_h+:} false; then : 14766if test "${ac_cv_header_stdbool_h+set}" = set; then :
14790 $as_echo_n "(cached) " >&6 14767 $as_echo_n "(cached) " >&6
14791else 14768else
14792 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14769 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14861,7 +14838,7 @@ fi
14861{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5 14838{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdbool_h" >&5
14862$as_echo "$ac_cv_header_stdbool_h" >&6; } 14839$as_echo "$ac_cv_header_stdbool_h" >&6; }
14863 ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default" 14840 ac_fn_c_check_type "$LINENO" "_Bool" "ac_cv_type__Bool" "$ac_includes_default"
14864if test "x$ac_cv_type__Bool" = xyes; then : 14841if test "x$ac_cv_type__Bool" = x""yes; then :
14865 14842
14866cat >>confdefs.h <<_ACEOF 14843cat >>confdefs.h <<_ACEOF
14867#define HAVE__BOOL 1 14844#define HAVE__BOOL 1
@@ -14879,7 +14856,7 @@ fi
14879 14856
14880 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5 14857 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5
14881$as_echo_n "checking for wchar_t... " >&6; } 14858$as_echo_n "checking for wchar_t... " >&6; }
14882if ${gt_cv_c_wchar_t+:} false; then : 14859if test "${gt_cv_c_wchar_t+set}" = set; then :
14883 $as_echo_n "(cached) " >&6 14860 $as_echo_n "(cached) " >&6
14884else 14861else
14885 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14862 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14912,7 +14889,7 @@ $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h
14912 14889
14913 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5 14890 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5
14914$as_echo_n "checking for unsigned long long int... " >&6; } 14891$as_echo_n "checking for unsigned long long int... " >&6; }
14915if ${ac_cv_type_unsigned_long_long_int+:} false; then : 14892if test "${ac_cv_type_unsigned_long_long_int+set}" = set; then :
14916 $as_echo_n "(cached) " >&6 14893 $as_echo_n "(cached) " >&6
14917else 14894else
14918 ac_cv_type_unsigned_long_long_int=yes 14895 ac_cv_type_unsigned_long_long_int=yes
@@ -14970,7 +14947,7 @@ $as_echo "#define HAVE_UNSIGNED_LONG_LONG_INT 1" >>confdefs.h
14970 14947
14971 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5 14948 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5
14972$as_echo_n "checking for long long int... " >&6; } 14949$as_echo_n "checking for long long int... " >&6; }
14973if ${ac_cv_type_long_long_int+:} false; then : 14950if test "${ac_cv_type_long_long_int+set}" = set; then :
14974 $as_echo_n "(cached) " >&6 14951 $as_echo_n "(cached) " >&6
14975else 14952else
14976 ac_cv_type_long_long_int=yes 14953 ac_cv_type_long_long_int=yes
@@ -15033,7 +15010,7 @@ $as_echo "#define HAVE_LONG_LONG_INT 1" >>confdefs.h
15033 15010
15034 ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h> 15011 ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h>
15035" 15012"
15036if test "x$ac_cv_member_struct_tm_tm_gmtoff" = xyes; then : 15013if test "x$ac_cv_member_struct_tm_tm_gmtoff" = x""yes; then :
15037 15014
15038$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h 15015$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h
15039 15016
@@ -15046,7 +15023,7 @@ fi
15046 15023
15047{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5 15024{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat file-mode macros are broken" >&5
15048$as_echo_n "checking whether stat file-mode macros are broken... " >&6; } 15025$as_echo_n "checking whether stat file-mode macros are broken... " >&6; }
15049if ${ac_cv_header_stat_broken+:} false; then : 15026if test "${ac_cv_header_stat_broken+set}" = set; then :
15050 $as_echo_n "(cached) " >&6 15027 $as_echo_n "(cached) " >&6
15051else 15028else
15052 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 15029 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -15090,7 +15067,7 @@ fi
15090 15067
15091{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword" >&5 15068{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword" >&5
15092$as_echo_n "checking for C/C++ restrict keyword... " >&6; } 15069$as_echo_n "checking for C/C++ restrict keyword... " >&6; }
15093if ${ac_cv_c_restrict+:} false; then : 15070if test "${ac_cv_c_restrict+set}" = set; then :
15094 $as_echo_n "(cached) " >&6 15071 $as_echo_n "(cached) " >&6
15095else 15072else
15096 ac_cv_c_restrict=no 15073 ac_cv_c_restrict=no
@@ -15140,7 +15117,7 @@ _ACEOF
15140 15117
15141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <time.h>" >&5 15118 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <time.h>" >&5
15142$as_echo_n "checking for struct timespec in <time.h>... " >&6; } 15119$as_echo_n "checking for struct timespec in <time.h>... " >&6; }
15143if ${gl_cv_sys_struct_timespec_in_time_h+:} false; then : 15120if test "${gl_cv_sys_struct_timespec_in_time_h+set}" = set; then :
15144 $as_echo_n "(cached) " >&6 15121 $as_echo_n "(cached) " >&6
15145else 15122else
15146 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 15123 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -15173,7 +15150,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_time_h" >&6; }
15173 else 15150 else
15174 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <sys/time.h>" >&5 15151 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <sys/time.h>" >&5
15175$as_echo_n "checking for struct timespec in <sys/time.h>... " >&6; } 15152$as_echo_n "checking for struct timespec in <sys/time.h>... " >&6; }
15176if ${gl_cv_sys_struct_timespec_in_sys_time_h+:} false; then : 15153if test "${gl_cv_sys_struct_timespec_in_sys_time_h+set}" = set; then :
15177 $as_echo_n "(cached) " >&6 15154 $as_echo_n "(cached) " >&6
15178else 15155else
15179 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 15156 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -15202,7 +15179,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_sys_time_h" >&6; }
15202 else 15179 else
15203 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <pthread.h>" >&5 15180 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timespec in <pthread.h>" >&5
15204$as_echo_n "checking for struct timespec in <pthread.h>... " >&6; } 15181$as_echo_n "checking for struct timespec in <pthread.h>... " >&6; }
15205if ${gl_cv_sys_struct_timespec_in_pthread_h+:} false; then : 15182if test "${gl_cv_sys_struct_timespec_in_pthread_h+set}" = set; then :
15206 $as_echo_n "(cached) " >&6 15183 $as_echo_n "(cached) " >&6
15207else 15184else
15208 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 15185 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -15251,7 +15228,7 @@ $as_echo "$gl_cv_sys_struct_timespec_in_pthread_h" >&6; }
15251 else 15228 else
15252 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <time.h>" >&5 15229 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <time.h>" >&5
15253$as_echo_n "checking absolute name of <time.h>... " >&6; } 15230$as_echo_n "checking absolute name of <time.h>... " >&6; }
15254if ${gl_cv_next_time_h+:} false; then : 15231if test "${gl_cv_next_time_h+set}" = set; then :
15255 $as_echo_n "(cached) " >&6 15232 $as_echo_n "(cached) " >&6
15256else 15233else
15257 15234
@@ -15294,7 +15271,7 @@ $as_echo "$gl_cv_next_time_h" >&6; }
15294 15271
15295 15272
15296ac_fn_c_check_decl "$LINENO" "localtime_r" "ac_cv_have_decl_localtime_r" "$ac_includes_default" 15273ac_fn_c_check_decl "$LINENO" "localtime_r" "ac_cv_have_decl_localtime_r" "$ac_includes_default"
15297if test "x$ac_cv_have_decl_localtime_r" = xyes; then : 15274if test "x$ac_cv_have_decl_localtime_r" = x""yes; then :
15298 ac_have_decl=1 15275 ac_have_decl=1
15299else 15276else
15300 ac_have_decl=0 15277 ac_have_decl=0
@@ -15375,14 +15352,14 @@ fi
15375 15352
15376# Make sure getloadavg.c is where it belongs, at configure-time. 15353# Make sure getloadavg.c is where it belongs, at configure-time.
15377test -f "$srcdir/$gl_source_base/getloadavg.c" || 15354test -f "$srcdir/$gl_source_base/getloadavg.c" ||
15378 as_fn_error $? "$srcdir/$gl_source_base/getloadavg.c is missing" "$LINENO" 5 15355 as_fn_error "$srcdir/$gl_source_base/getloadavg.c is missing" "$LINENO" 5
15379 15356
15380gl_save_LIBS=$LIBS 15357gl_save_LIBS=$LIBS
15381 15358
15382# getloadvg is present in libc on glibc >= 2.2, MacOS X, FreeBSD >= 2.0, 15359# getloadvg is present in libc on glibc >= 2.2, MacOS X, FreeBSD >= 2.0,
15383# NetBSD >= 0.9, OpenBSD >= 2.0, Solaris >= 7. 15360# NetBSD >= 0.9, OpenBSD >= 2.0, Solaris >= 7.
15384ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg" 15361ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg"
15385if test "x$ac_cv_func_getloadavg" = xyes; then : 15362if test "x$ac_cv_func_getloadavg" = x""yes; then :
15386 15363
15387else 15364else
15388 gl_have_func=no 15365 gl_have_func=no
@@ -15395,7 +15372,7 @@ else
15395 if test $gl_have_func = no; then 15372 if test $gl_have_func = no; then
15396 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5 15373 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5
15397$as_echo_n "checking for elf_begin in -lelf... " >&6; } 15374$as_echo_n "checking for elf_begin in -lelf... " >&6; }
15398if ${ac_cv_lib_elf_elf_begin+:} false; then : 15375if test "${ac_cv_lib_elf_elf_begin+set}" = set; then :
15399 $as_echo_n "(cached) " >&6 15376 $as_echo_n "(cached) " >&6
15400else 15377else
15401 ac_check_lib_save_LIBS=$LIBS 15378 ac_check_lib_save_LIBS=$LIBS
@@ -15429,13 +15406,13 @@ LIBS=$ac_check_lib_save_LIBS
15429fi 15406fi
15430{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_elf_begin" >&5 15407{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_elf_begin" >&5
15431$as_echo "$ac_cv_lib_elf_elf_begin" >&6; } 15408$as_echo "$ac_cv_lib_elf_elf_begin" >&6; }
15432if test "x$ac_cv_lib_elf_elf_begin" = xyes; then : 15409if test "x$ac_cv_lib_elf_elf_begin" = x""yes; then :
15433 LIBS="-lelf $LIBS" 15410 LIBS="-lelf $LIBS"
15434fi 15411fi
15435 15412
15436 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for kvm_open in -lkvm" >&5 15413 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for kvm_open in -lkvm" >&5
15437$as_echo_n "checking for kvm_open in -lkvm... " >&6; } 15414$as_echo_n "checking for kvm_open in -lkvm... " >&6; }
15438if ${ac_cv_lib_kvm_kvm_open+:} false; then : 15415if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then :
15439 $as_echo_n "(cached) " >&6 15416 $as_echo_n "(cached) " >&6
15440else 15417else
15441 ac_check_lib_save_LIBS=$LIBS 15418 ac_check_lib_save_LIBS=$LIBS
@@ -15469,14 +15446,14 @@ LIBS=$ac_check_lib_save_LIBS
15469fi 15446fi
15470{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kvm_kvm_open" >&5 15447{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kvm_kvm_open" >&5
15471$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; } 15448$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; }
15472if test "x$ac_cv_lib_kvm_kvm_open" = xyes; then : 15449if test "x$ac_cv_lib_kvm_kvm_open" = x""yes; then :
15473 LIBS="-lkvm $LIBS" 15450 LIBS="-lkvm $LIBS"
15474fi 15451fi
15475 15452
15476 # Check for the 4.4BSD definition of getloadavg. 15453 # Check for the 4.4BSD definition of getloadavg.
15477 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lutil" >&5 15454 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lutil" >&5
15478$as_echo_n "checking for getloadavg in -lutil... " >&6; } 15455$as_echo_n "checking for getloadavg in -lutil... " >&6; }
15479if ${ac_cv_lib_util_getloadavg+:} false; then : 15456if test "${ac_cv_lib_util_getloadavg+set}" = set; then :
15480 $as_echo_n "(cached) " >&6 15457 $as_echo_n "(cached) " >&6
15481else 15458else
15482 ac_check_lib_save_LIBS=$LIBS 15459 ac_check_lib_save_LIBS=$LIBS
@@ -15510,7 +15487,7 @@ LIBS=$ac_check_lib_save_LIBS
15510fi 15487fi
15511{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_getloadavg" >&5 15488{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_getloadavg" >&5
15512$as_echo "$ac_cv_lib_util_getloadavg" >&6; } 15489$as_echo "$ac_cv_lib_util_getloadavg" >&6; }
15513if test "x$ac_cv_lib_util_getloadavg" = xyes; then : 15490if test "x$ac_cv_lib_util_getloadavg" = x""yes; then :
15514 LIBS="-lutil $LIBS" gl_have_func=yes 15491 LIBS="-lutil $LIBS" gl_have_func=yes
15515fi 15492fi
15516 15493
@@ -15523,7 +15500,7 @@ fi
15523 LIBS="-L/usr/local/lib $LIBS" 15500 LIBS="-L/usr/local/lib $LIBS"
15524 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lgetloadavg" >&5 15501 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lgetloadavg" >&5
15525$as_echo_n "checking for getloadavg in -lgetloadavg... " >&6; } 15502$as_echo_n "checking for getloadavg in -lgetloadavg... " >&6; }
15526if ${ac_cv_lib_getloadavg_getloadavg+:} false; then : 15503if test "${ac_cv_lib_getloadavg_getloadavg+set}" = set; then :
15527 $as_echo_n "(cached) " >&6 15504 $as_echo_n "(cached) " >&6
15528else 15505else
15529 ac_check_lib_save_LIBS=$LIBS 15506 ac_check_lib_save_LIBS=$LIBS
@@ -15557,7 +15534,7 @@ LIBS=$ac_check_lib_save_LIBS
15557fi 15534fi
15558{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_getloadavg_getloadavg" >&5 15535{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_getloadavg_getloadavg" >&5
15559$as_echo "$ac_cv_lib_getloadavg_getloadavg" >&6; } 15536$as_echo "$ac_cv_lib_getloadavg_getloadavg" >&6; }
15560if test "x$ac_cv_lib_getloadavg_getloadavg" = xyes; then : 15537if test "x$ac_cv_lib_getloadavg_getloadavg" = x""yes; then :
15561 LIBS="-lgetloadavg $LIBS" gl_have_func=yes 15538 LIBS="-lgetloadavg $LIBS" gl_have_func=yes
15562else 15539else
15563 LIBS=$gl_getloadavg_LIBS 15540 LIBS=$gl_getloadavg_LIBS
@@ -15583,7 +15560,7 @@ fi
15583# Solaris has libkstat which does not require root. 15560# Solaris has libkstat which does not require root.
15584{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kstat_open in -lkstat" >&5 15561{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kstat_open in -lkstat" >&5
15585$as_echo_n "checking for kstat_open in -lkstat... " >&6; } 15562$as_echo_n "checking for kstat_open in -lkstat... " >&6; }
15586if ${ac_cv_lib_kstat_kstat_open+:} false; then : 15563if test "${ac_cv_lib_kstat_kstat_open+set}" = set; then :
15587 $as_echo_n "(cached) " >&6 15564 $as_echo_n "(cached) " >&6
15588else 15565else
15589 ac_check_lib_save_LIBS=$LIBS 15566 ac_check_lib_save_LIBS=$LIBS
@@ -15617,7 +15594,7 @@ LIBS=$ac_check_lib_save_LIBS
15617fi 15594fi
15618{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kstat_kstat_open" >&5 15595{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kstat_kstat_open" >&5
15619$as_echo "$ac_cv_lib_kstat_kstat_open" >&6; } 15596$as_echo "$ac_cv_lib_kstat_kstat_open" >&6; }
15620if test "x$ac_cv_lib_kstat_kstat_open" = xyes; then : 15597if test "x$ac_cv_lib_kstat_kstat_open" = x""yes; then :
15621 cat >>confdefs.h <<_ACEOF 15598 cat >>confdefs.h <<_ACEOF
15622#define HAVE_LIBKSTAT 1 15599#define HAVE_LIBKSTAT 1
15623_ACEOF 15600_ACEOF
@@ -15633,7 +15610,7 @@ if test $gl_have_func = no; then
15633 for ac_func in pstat_getdynamic 15610 for ac_func in pstat_getdynamic
15634do : 15611do :
15635 ac_fn_c_check_func "$LINENO" "pstat_getdynamic" "ac_cv_func_pstat_getdynamic" 15612 ac_fn_c_check_func "$LINENO" "pstat_getdynamic" "ac_cv_func_pstat_getdynamic"
15636if test "x$ac_cv_func_pstat_getdynamic" = xyes; then : 15613if test "x$ac_cv_func_pstat_getdynamic" = x""yes; then :
15637 cat >>confdefs.h <<_ACEOF 15614 cat >>confdefs.h <<_ACEOF
15638#define HAVE_PSTAT_GETDYNAMIC 1 15615#define HAVE_PSTAT_GETDYNAMIC 1
15639_ACEOF 15616_ACEOF
@@ -15647,7 +15624,7 @@ fi
15647if test $gl_have_func = no; then 15624if test $gl_have_func = no; then
15648 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perfstat_cpu_total in -lperfstat" >&5 15625 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for perfstat_cpu_total in -lperfstat" >&5
15649$as_echo_n "checking for perfstat_cpu_total in -lperfstat... " >&6; } 15626$as_echo_n "checking for perfstat_cpu_total in -lperfstat... " >&6; }
15650if ${ac_cv_lib_perfstat_perfstat_cpu_total+:} false; then : 15627if test "${ac_cv_lib_perfstat_perfstat_cpu_total+set}" = set; then :
15651 $as_echo_n "(cached) " >&6 15628 $as_echo_n "(cached) " >&6
15652else 15629else
15653 ac_check_lib_save_LIBS=$LIBS 15630 ac_check_lib_save_LIBS=$LIBS
@@ -15681,7 +15658,7 @@ LIBS=$ac_check_lib_save_LIBS
15681fi 15658fi
15682{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_perfstat_perfstat_cpu_total" >&5 15659{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_perfstat_perfstat_cpu_total" >&5
15683$as_echo "$ac_cv_lib_perfstat_perfstat_cpu_total" >&6; } 15660$as_echo "$ac_cv_lib_perfstat_perfstat_cpu_total" >&6; }
15684if test "x$ac_cv_lib_perfstat_perfstat_cpu_total" = xyes; then : 15661if test "x$ac_cv_lib_perfstat_perfstat_cpu_total" = x""yes; then :
15685 cat >>confdefs.h <<_ACEOF 15662 cat >>confdefs.h <<_ACEOF
15686#define HAVE_LIBPERFSTAT 1 15663#define HAVE_LIBPERFSTAT 1
15687_ACEOF 15664_ACEOF
@@ -15695,14 +15672,14 @@ fi
15695 15672
15696if test $gl_have_func = no; then 15673if test $gl_have_func = no; then
15697 ac_fn_c_check_header_mongrel "$LINENO" "sys/dg_sys_info.h" "ac_cv_header_sys_dg_sys_info_h" "$ac_includes_default" 15674 ac_fn_c_check_header_mongrel "$LINENO" "sys/dg_sys_info.h" "ac_cv_header_sys_dg_sys_info_h" "$ac_includes_default"
15698if test "x$ac_cv_header_sys_dg_sys_info_h" = xyes; then : 15675if test "x$ac_cv_header_sys_dg_sys_info_h" = x""yes; then :
15699 gl_have_func=yes 15676 gl_have_func=yes
15700 15677
15701$as_echo "#define DGUX 1" >>confdefs.h 15678$as_echo "#define DGUX 1" >>confdefs.h
15702 15679
15703 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dg_sys_info in -ldgc" >&5 15680 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dg_sys_info in -ldgc" >&5
15704$as_echo_n "checking for dg_sys_info in -ldgc... " >&6; } 15681$as_echo_n "checking for dg_sys_info in -ldgc... " >&6; }
15705if ${ac_cv_lib_dgc_dg_sys_info+:} false; then : 15682if test "${ac_cv_lib_dgc_dg_sys_info+set}" = set; then :
15706 $as_echo_n "(cached) " >&6 15683 $as_echo_n "(cached) " >&6
15707else 15684else
15708 ac_check_lib_save_LIBS=$LIBS 15685 ac_check_lib_save_LIBS=$LIBS
@@ -15736,7 +15713,7 @@ LIBS=$ac_check_lib_save_LIBS
15736fi 15713fi
15737{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dgc_dg_sys_info" >&5 15714{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dgc_dg_sys_info" >&5
15738$as_echo "$ac_cv_lib_dgc_dg_sys_info" >&6; } 15715$as_echo "$ac_cv_lib_dgc_dg_sys_info" >&6; }
15739if test "x$ac_cv_lib_dgc_dg_sys_info" = xyes; then : 15716if test "x$ac_cv_lib_dgc_dg_sys_info" = x""yes; then :
15740 cat >>confdefs.h <<_ACEOF 15717 cat >>confdefs.h <<_ACEOF
15741#define HAVE_LIBDGC 1 15718#define HAVE_LIBDGC 1
15742_ACEOF 15719_ACEOF
@@ -15763,7 +15740,7 @@ fi
15763 15740
15764if test $gl_have_func = no; then 15741if test $gl_have_func = no; then
15765 ac_fn_c_check_header_mongrel "$LINENO" "inq_stats/cpustats.h" "ac_cv_header_inq_stats_cpustats_h" "$ac_includes_default" 15742 ac_fn_c_check_header_mongrel "$LINENO" "inq_stats/cpustats.h" "ac_cv_header_inq_stats_cpustats_h" "$ac_includes_default"
15766if test "x$ac_cv_header_inq_stats_cpustats_h" = xyes; then : 15743if test "x$ac_cv_header_inq_stats_cpustats_h" = x""yes; then :
15767 gl_have_func=yes 15744 gl_have_func=yes
15768 15745
15769$as_echo "#define UMAX 1" >>confdefs.h 15746$as_echo "#define UMAX 1" >>confdefs.h
@@ -15778,7 +15755,7 @@ fi
15778 15755
15779if test $gl_have_func = no; then 15756if test $gl_have_func = no; then
15780 ac_fn_c_check_header_mongrel "$LINENO" "sys/cpustats.h" "ac_cv_header_sys_cpustats_h" "$ac_includes_default" 15757 ac_fn_c_check_header_mongrel "$LINENO" "sys/cpustats.h" "ac_cv_header_sys_cpustats_h" "$ac_includes_default"
15781if test "x$ac_cv_header_sys_cpustats_h" = xyes; then : 15758if test "x$ac_cv_header_sys_cpustats_h" = x""yes; then :
15782 gl_have_func=yes; $as_echo "#define UMAX 1" >>confdefs.h 15759 gl_have_func=yes; $as_echo "#define UMAX 1" >>confdefs.h
15783 15760
15784fi 15761fi
@@ -15790,7 +15767,7 @@ if test $gl_have_func = no; then
15790 for ac_header in mach/mach.h 15767 for ac_header in mach/mach.h
15791do : 15768do :
15792 ac_fn_c_check_header_mongrel "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default" 15769 ac_fn_c_check_header_mongrel "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default"
15793if test "x$ac_cv_header_mach_mach_h" = xyes; then : 15770if test "x$ac_cv_header_mach_mach_h" = x""yes; then :
15794 cat >>confdefs.h <<_ACEOF 15771 cat >>confdefs.h <<_ACEOF
15795#define HAVE_MACH_MACH_H 1 15772#define HAVE_MACH_MACH_H 1
15796_ACEOF 15773_ACEOF
@@ -15804,13 +15781,13 @@ fi
15804for ac_header in nlist.h 15781for ac_header in nlist.h
15805do : 15782do :
15806 ac_fn_c_check_header_mongrel "$LINENO" "nlist.h" "ac_cv_header_nlist_h" "$ac_includes_default" 15783 ac_fn_c_check_header_mongrel "$LINENO" "nlist.h" "ac_cv_header_nlist_h" "$ac_includes_default"
15807if test "x$ac_cv_header_nlist_h" = xyes; then : 15784if test "x$ac_cv_header_nlist_h" = x""yes; then :
15808 cat >>confdefs.h <<_ACEOF 15785 cat >>confdefs.h <<_ACEOF
15809#define HAVE_NLIST_H 1 15786#define HAVE_NLIST_H 1
15810_ACEOF 15787_ACEOF
15811 ac_fn_c_check_member "$LINENO" "struct nlist" "n_un.n_name" "ac_cv_member_struct_nlist_n_un_n_name" "#include <nlist.h> 15788 ac_fn_c_check_member "$LINENO" "struct nlist" "n_un.n_name" "ac_cv_member_struct_nlist_n_un_n_name" "#include <nlist.h>
15812" 15789"
15813if test "x$ac_cv_member_struct_nlist_n_un_n_name" = xyes; then : 15790if test "x$ac_cv_member_struct_nlist_n_un_n_name" = x""yes; then :
15814 15791
15815cat >>confdefs.h <<_ACEOF 15792cat >>confdefs.h <<_ACEOF
15816#define HAVE_STRUCT_NLIST_N_UN_N_NAME 1 15793#define HAVE_STRUCT_NLIST_N_UN_N_NAME 1
@@ -15864,7 +15841,7 @@ LIBS=$gl_save_LIBS
15864for ac_header in sys/loadavg.h 15841for ac_header in sys/loadavg.h
15865do : 15842do :
15866 ac_fn_c_check_header_mongrel "$LINENO" "sys/loadavg.h" "ac_cv_header_sys_loadavg_h" "$ac_includes_default" 15843 ac_fn_c_check_header_mongrel "$LINENO" "sys/loadavg.h" "ac_cv_header_sys_loadavg_h" "$ac_includes_default"
15867if test "x$ac_cv_header_sys_loadavg_h" = xyes; then : 15844if test "x$ac_cv_header_sys_loadavg_h" = x""yes; then :
15868 cat >>confdefs.h <<_ACEOF 15845 cat >>confdefs.h <<_ACEOF
15869#define HAVE_SYS_LOADAVG_H 1 15846#define HAVE_SYS_LOADAVG_H 1
15870_ACEOF 15847_ACEOF
@@ -15883,7 +15860,7 @@ ac_fn_c_check_decl "$LINENO" "getloadavg" "ac_cv_have_decl_getloadavg" "#if HAVE
15883 #endif 15860 #endif
15884 #include <stdlib.h> 15861 #include <stdlib.h>
15885" 15862"
15886if test "x$ac_cv_have_decl_getloadavg" = xyes; then : 15863if test "x$ac_cv_have_decl_getloadavg" = x""yes; then :
15887 15864
15888else 15865else
15889 HAVE_DECL_GETLOADAVG=0 15866 HAVE_DECL_GETLOADAVG=0
@@ -15992,7 +15969,7 @@ if test $APPLE_UNIVERSAL_BUILD = 1; then
15992fi 15969fi
15993{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mktime" >&5 15970{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mktime" >&5
15994$as_echo_n "checking for working mktime... " >&6; } 15971$as_echo_n "checking for working mktime... " >&6; }
15995if ${ac_cv_func_working_mktime+:} false; then : 15972if test "${ac_cv_func_working_mktime+set}" = set; then :
15996 $as_echo_n "(cached) " >&6 15973 $as_echo_n "(cached) " >&6
15997else 15974else
15998 if test "$cross_compiling" = yes; then : 15975 if test "$cross_compiling" = yes; then :
@@ -16257,7 +16234,7 @@ fi
16257 else 16234 else
16258 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink signature is correct" >&5 16235 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink signature is correct" >&5
16259$as_echo_n "checking whether readlink signature is correct... " >&6; } 16236$as_echo_n "checking whether readlink signature is correct... " >&6; }
16260if ${gl_cv_decl_readlink_works+:} false; then : 16237if test "${gl_cv_decl_readlink_works+set}" = set; then :
16261 $as_echo_n "(cached) " >&6 16238 $as_echo_n "(cached) " >&6
16262else 16239else
16263 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 16240 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -16284,7 +16261,7 @@ fi
16284$as_echo "$gl_cv_decl_readlink_works" >&6; } 16261$as_echo "$gl_cv_decl_readlink_works" >&6; }
16285 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink handles trailing slash correctly" >&5 16262 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether readlink handles trailing slash correctly" >&5
16286$as_echo_n "checking whether readlink handles trailing slash correctly... " >&6; } 16263$as_echo_n "checking whether readlink handles trailing slash correctly... " >&6; }
16287if ${gl_cv_func_readlink_works+:} false; then : 16264if test "${gl_cv_func_readlink_works+set}" = set; then :
16288 $as_echo_n "(cached) " >&6 16265 $as_echo_n "(cached) " >&6
16289else 16266else
16290 # We have readlink, so assume ln -s works. 16267 # We have readlink, so assume ln -s works.
@@ -16362,7 +16339,7 @@ $as_echo "#define READLINK_TRAILING_SLASH_BUG 1" >>confdefs.h
16362 16339
16363 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on directories" >&5 16340 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on directories" >&5
16364$as_echo_n "checking whether stat handles trailing slashes on directories... " >&6; } 16341$as_echo_n "checking whether stat handles trailing slashes on directories... " >&6; }
16365if ${gl_cv_func_stat_dir_slash+:} false; then : 16342if test "${gl_cv_func_stat_dir_slash+set}" = set; then :
16366 $as_echo_n "(cached) " >&6 16343 $as_echo_n "(cached) " >&6
16367else 16344else
16368 if test "$cross_compiling" = yes; then : 16345 if test "$cross_compiling" = yes; then :
@@ -16397,7 +16374,7 @@ fi
16397$as_echo "$gl_cv_func_stat_dir_slash" >&6; } 16374$as_echo "$gl_cv_func_stat_dir_slash" >&6; }
16398 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on files" >&5 16375 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stat handles trailing slashes on files" >&5
16399$as_echo_n "checking whether stat handles trailing slashes on files... " >&6; } 16376$as_echo_n "checking whether stat handles trailing slashes on files... " >&6; }
16400if ${gl_cv_func_stat_file_slash+:} false; then : 16377if test "${gl_cv_func_stat_file_slash+set}" = set; then :
16401 $as_echo_n "(cached) " >&6 16378 $as_echo_n "(cached) " >&6
16402else 16379else
16403 touch conftest.tmp 16380 touch conftest.tmp
@@ -16505,7 +16482,7 @@ $as_echo "#define REPLACE_FUNC_STAT_FILE 1" >>confdefs.h
16505 fi 16482 fi
16506 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5 16483 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5
16507$as_echo_n "checking whether NULL can be used in arbitrary expressions... " >&6; } 16484$as_echo_n "checking whether NULL can be used in arbitrary expressions... " >&6; }
16508if ${gl_cv_decl_null_works+:} false; then : 16485if test "${gl_cv_decl_null_works+set}" = set; then :
16509 $as_echo_n "(cached) " >&6 16486 $as_echo_n "(cached) " >&6
16510else 16487else
16511 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 16488 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -16548,7 +16525,7 @@ $as_echo "$gl_cv_decl_null_works" >&6; }
16548 else 16525 else
16549 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stddef.h>" >&5 16526 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stddef.h>" >&5
16550$as_echo_n "checking absolute name of <stddef.h>... " >&6; } 16527$as_echo_n "checking absolute name of <stddef.h>... " >&6; }
16551if ${gl_cv_next_stddef_h+:} false; then : 16528if test "${gl_cv_next_stddef_h+set}" = set; then :
16552 $as_echo_n "(cached) " >&6 16529 $as_echo_n "(cached) " >&6
16553else 16530else
16554 16531
@@ -16644,7 +16621,7 @@ $as_echo "$gl_cv_next_stddef_h" >&6; }
16644 else 16621 else
16645 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdint.h>" >&5 16622 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdint.h>" >&5
16646$as_echo_n "checking absolute name of <stdint.h>... " >&6; } 16623$as_echo_n "checking absolute name of <stdint.h>... " >&6; }
16647if ${gl_cv_next_stdint_h+:} false; then : 16624if test "${gl_cv_next_stdint_h+set}" = set; then :
16648 $as_echo_n "(cached) " >&6 16625 $as_echo_n "(cached) " >&6
16649else 16626else
16650 16627
@@ -16700,7 +16677,7 @@ $as_echo "$gl_cv_next_stdint_h" >&6; }
16700 if test $ac_cv_header_stdint_h = yes; then 16677 if test $ac_cv_header_stdint_h = yes; then
16701 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99" >&5 16678 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99" >&5
16702$as_echo_n "checking whether stdint.h conforms to C99... " >&6; } 16679$as_echo_n "checking whether stdint.h conforms to C99... " >&6; }
16703if ${gl_cv_header_working_stdint_h+:} false; then : 16680if test "${gl_cv_header_working_stdint_h+set}" = set; then :
16704 $as_echo_n "(cached) " >&6 16681 $as_echo_n "(cached) " >&6
16705else 16682else
16706 gl_cv_header_working_stdint_h=no 16683 gl_cv_header_working_stdint_h=no
@@ -16973,7 +16950,8 @@ $as_echo "$gl_cv_header_working_stdint_h" >&6; }
16973do : 16950do :
16974 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 16951 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
16975ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 16952ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
16976if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : 16953eval as_val=\$$as_ac_Header
16954 if test "x$as_val" = x""yes; then :
16977 cat >>confdefs.h <<_ACEOF 16955 cat >>confdefs.h <<_ACEOF
16978#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 16956#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
16979_ACEOF 16957_ACEOF
@@ -17003,7 +16981,7 @@ done
17003 for gltype in ptrdiff_t size_t ; do 16981 for gltype in ptrdiff_t size_t ; do
17004 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5 16982 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5
17005$as_echo_n "checking for bit size of $gltype... " >&6; } 16983$as_echo_n "checking for bit size of $gltype... " >&6; }
17006if eval \${gl_cv_bitsizeof_${gltype}+:} false; then : 16984if { as_var=gl_cv_bitsizeof_${gltype}; eval "test \"\${$as_var+set}\" = set"; }; then :
17007 $as_echo_n "(cached) " >&6 16985 $as_echo_n "(cached) " >&6
17008else 16986else
17009 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" " 16987 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" "
@@ -17048,7 +17026,7 @@ _ACEOF
17048 for gltype in sig_atomic_t wchar_t wint_t ; do 17026 for gltype in sig_atomic_t wchar_t wint_t ; do
17049 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5 17027 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5
17050$as_echo_n "checking for bit size of $gltype... " >&6; } 17028$as_echo_n "checking for bit size of $gltype... " >&6; }
17051if eval \${gl_cv_bitsizeof_${gltype}+:} false; then : 17029if { as_var=gl_cv_bitsizeof_${gltype}; eval "test \"\${$as_var+set}\" = set"; }; then :
17052 $as_echo_n "(cached) " >&6 17030 $as_echo_n "(cached) " >&6
17053else 17031else
17054 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" " 17032 if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" "
@@ -17092,7 +17070,7 @@ _ACEOF
17092 for gltype in sig_atomic_t wchar_t wint_t ; do 17070 for gltype in sig_atomic_t wchar_t wint_t ; do
17093 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed" >&5 17071 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed" >&5
17094$as_echo_n "checking whether $gltype is signed... " >&6; } 17072$as_echo_n "checking whether $gltype is signed... " >&6; }
17095if eval \${gl_cv_type_${gltype}_signed+:} false; then : 17073if { as_var=gl_cv_type_${gltype}_signed; eval "test \"\${$as_var+set}\" = set"; }; then :
17096 $as_echo_n "(cached) " >&6 17074 $as_echo_n "(cached) " >&6
17097else 17075else
17098 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 17076 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -17151,7 +17129,7 @@ _ACEOF
17151 for gltype in ptrdiff_t size_t ; do 17129 for gltype in ptrdiff_t size_t ; do
17152 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5 17130 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5
17153$as_echo_n "checking for $gltype integer literal suffix... " >&6; } 17131$as_echo_n "checking for $gltype integer literal suffix... " >&6; }
17154if eval \${gl_cv_type_${gltype}_suffix+:} false; then : 17132if { as_var=gl_cv_type_${gltype}_suffix; eval "test \"\${$as_var+set}\" = set"; }; then :
17155 $as_echo_n "(cached) " >&6 17133 $as_echo_n "(cached) " >&6
17156else 17134else
17157 eval gl_cv_type_${gltype}_suffix=no 17135 eval gl_cv_type_${gltype}_suffix=no
@@ -17223,7 +17201,7 @@ _ACEOF
17223 for gltype in sig_atomic_t wchar_t wint_t ; do 17201 for gltype in sig_atomic_t wchar_t wint_t ; do
17224 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5 17202 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5
17225$as_echo_n "checking for $gltype integer literal suffix... " >&6; } 17203$as_echo_n "checking for $gltype integer literal suffix... " >&6; }
17226if eval \${gl_cv_type_${gltype}_suffix+:} false; then : 17204if { as_var=gl_cv_type_${gltype}_suffix; eval "test \"\${$as_var+set}\" = set"; }; then :
17227 $as_echo_n "(cached) " >&6 17205 $as_echo_n "(cached) " >&6
17228else 17206else
17229 eval gl_cv_type_${gltype}_suffix=no 17207 eval gl_cv_type_${gltype}_suffix=no
@@ -17310,7 +17288,7 @@ _ACEOF
17310 else 17288 else
17311 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdlib.h>" >&5 17289 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <stdlib.h>" >&5
17312$as_echo_n "checking absolute name of <stdlib.h>... " >&6; } 17290$as_echo_n "checking absolute name of <stdlib.h>... " >&6; }
17313if ${gl_cv_next_stdlib_h+:} false; then : 17291if test "${gl_cv_next_stdlib_h+set}" = set; then :
17314 $as_echo_n "(cached) " >&6 17292 $as_echo_n "(cached) " >&6
17315else 17293else
17316 17294
@@ -17398,7 +17376,7 @@ $as_echo "#define my_strftime nstrftime" >>confdefs.h
17398 else 17376 else
17399 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether symlink handles trailing slash correctly" >&5 17377 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether symlink handles trailing slash correctly" >&5
17400$as_echo_n "checking whether symlink handles trailing slash correctly... " >&6; } 17378$as_echo_n "checking whether symlink handles trailing slash correctly... " >&6; }
17401if ${gl_cv_func_symlink_works+:} false; then : 17379if test "${gl_cv_func_symlink_works+set}" = set; then :
17402 $as_echo_n "(cached) " >&6 17380 $as_echo_n "(cached) " >&6
17403else 17381else
17404 if test "$cross_compiling" = yes; then : 17382 if test "$cross_compiling" = yes; then :
@@ -17481,7 +17459,7 @@ $as_echo "$gl_cv_func_symlink_works" >&6; }
17481 else 17459 else
17482 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/stat.h>" >&5 17460 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <sys/stat.h>" >&5
17483$as_echo_n "checking absolute name of <sys/stat.h>... " >&6; } 17461$as_echo_n "checking absolute name of <sys/stat.h>... " >&6; }
17484if ${gl_cv_next_sys_stat_h+:} false; then : 17462if test "${gl_cv_next_sys_stat_h+set}" = set; then :
17485 $as_echo_n "(cached) " >&6 17463 $as_echo_n "(cached) " >&6
17486else 17464else
17487 17465
@@ -17531,7 +17509,7 @@ $as_echo "$gl_cv_next_sys_stat_h" >&6; }
17531 ac_fn_c_check_type "$LINENO" "nlink_t" "ac_cv_type_nlink_t" "#include <sys/types.h> 17509 ac_fn_c_check_type "$LINENO" "nlink_t" "ac_cv_type_nlink_t" "#include <sys/types.h>
17532 #include <sys/stat.h> 17510 #include <sys/stat.h>
17533" 17511"
17534if test "x$ac_cv_type_nlink_t" = xyes; then : 17512if test "x$ac_cv_type_nlink_t" = x""yes; then :
17535 17513
17536else 17514else
17537 17515
@@ -17564,7 +17542,7 @@ fi
17564 HAVE_LOCALTIME_R=1 17542 HAVE_LOCALTIME_R=1
17565 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime_r is compatible with its POSIX signature" >&5 17543 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime_r is compatible with its POSIX signature" >&5
17566$as_echo_n "checking whether localtime_r is compatible with its POSIX signature... " >&6; } 17544$as_echo_n "checking whether localtime_r is compatible with its POSIX signature... " >&6; }
17567if ${gl_cv_time_r_posix+:} false; then : 17545if test "${gl_cv_time_r_posix+set}" = set; then :
17568 $as_echo_n "(cached) " >&6 17546 $as_echo_n "(cached) " >&6
17569else 17547else
17570 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 17548 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -17646,7 +17624,7 @@ $as_echo "$gl_cv_time_r_posix" >&6; }
17646 else 17624 else
17647 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <unistd.h>" >&5 17625 { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of <unistd.h>" >&5
17648$as_echo_n "checking absolute name of <unistd.h>... " >&6; } 17626$as_echo_n "checking absolute name of <unistd.h>... " >&6; }
17649if ${gl_cv_next_unistd_h+:} false; then : 17627if test "${gl_cv_next_unistd_h+set}" = set; then :
17650 $as_echo_n "(cached) " >&6 17628 $as_echo_n "(cached) " >&6
17651else 17629else
17652 17630
@@ -17746,7 +17724,7 @@ $as_echo "$gl_cv_next_unistd_h" >&6; }
17746for ac_func in grantpt 17724for ac_func in grantpt
17747do : 17725do :
17748 ac_fn_c_check_func "$LINENO" "grantpt" "ac_cv_func_grantpt" 17726 ac_fn_c_check_func "$LINENO" "grantpt" "ac_cv_func_grantpt"
17749if test "x$ac_cv_func_grantpt" = xyes; then : 17727if test "x$ac_cv_func_grantpt" = x""yes; then :
17750 cat >>confdefs.h <<_ACEOF 17728 cat >>confdefs.h <<_ACEOF
17751#define HAVE_GRANTPT 1 17729#define HAVE_GRANTPT 1
17752_ACEOF 17730_ACEOF
@@ -17759,7 +17737,7 @@ done
17759for ac_func in getpt 17737for ac_func in getpt
17760do : 17738do :
17761 ac_fn_c_check_func "$LINENO" "getpt" "ac_cv_func_getpt" 17739 ac_fn_c_check_func "$LINENO" "getpt" "ac_cv_func_getpt"
17762if test "x$ac_cv_func_getpt" = xyes; then : 17740if test "x$ac_cv_func_getpt" = x""yes; then :
17763 cat >>confdefs.h <<_ACEOF 17741 cat >>confdefs.h <<_ACEOF
17764#define HAVE_GETPT 1 17742#define HAVE_GETPT 1
17765_ACEOF 17743_ACEOF
@@ -17776,7 +17754,7 @@ done
17776have_tputs_et_al=true 17754have_tputs_et_al=true
17777{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing tputs" >&5 17755{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing tputs" >&5
17778$as_echo_n "checking for library containing tputs... " >&6; } 17756$as_echo_n "checking for library containing tputs... " >&6; }
17779if ${ac_cv_search_tputs+:} false; then : 17757if test "${ac_cv_search_tputs+set}" = set; then :
17780 $as_echo_n "(cached) " >&6 17758 $as_echo_n "(cached) " >&6
17781else 17759else
17782 ac_func_search_save_LIBS=$LIBS 17760 ac_func_search_save_LIBS=$LIBS
@@ -17810,11 +17788,11 @@ for ac_lib in '' ncurses terminfo termcap; do
17810fi 17788fi
17811rm -f core conftest.err conftest.$ac_objext \ 17789rm -f core conftest.err conftest.$ac_objext \
17812 conftest$ac_exeext 17790 conftest$ac_exeext
17813 if ${ac_cv_search_tputs+:} false; then : 17791 if test "${ac_cv_search_tputs+set}" = set; then :
17814 break 17792 break
17815fi 17793fi
17816done 17794done
17817if ${ac_cv_search_tputs+:} false; then : 17795if test "${ac_cv_search_tputs+set}" = set; then :
17818 17796
17819else 17797else
17820 ac_cv_search_tputs=no 17798 ac_cv_search_tputs=no
@@ -17833,7 +17811,7 @@ else
17833fi 17811fi
17834 17812
17835if test "$have_tputs_et_al" != true; then 17813if test "$have_tputs_et_al" != true; then
17836 as_fn_error $? "I couldn't find termcap functions (tputs and friends). 17814 as_fn_error "I couldn't find termcap functions (tputs and friends).
17837Maybe some development libraries/packages are missing? Try installing 17815Maybe some development libraries/packages are missing? Try installing
17838libncurses-dev(el), libterminfo-dev(el) or similar." "$LINENO" 5 17816libncurses-dev(el), libterminfo-dev(el) or similar." "$LINENO" 5
17839fi 17817fi
@@ -17873,7 +17851,7 @@ case "$opsys" in
17873 freebsd) 17851 freebsd)
17874 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeBSD is new enough to use terminfo" >&5 17852 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeBSD is new enough to use terminfo" >&5
17875$as_echo_n "checking whether FreeBSD is new enough to use terminfo... " >&6; } 17853$as_echo_n "checking whether FreeBSD is new enough to use terminfo... " >&6; }
17876 if ${emacs_cv_freebsd_terminfo+:} false; then : 17854 if test "${emacs_cv_freebsd_terminfo+set}" = set; then :
17877 $as_echo_n "(cached) " >&6 17855 $as_echo_n "(cached) " >&6
17878else 17856else
17879 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 17857 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -18015,16 +17993,16 @@ LIBHESIOD=
18015if test "$with_hesiod" != no ; then 17993if test "$with_hesiod" != no ; then
18016 # Don't set $LIBS here -- see comments above. FIXME which comments? 17994 # Don't set $LIBS here -- see comments above. FIXME which comments?
18017 ac_fn_c_check_func "$LINENO" "res_send" "ac_cv_func_res_send" 17995 ac_fn_c_check_func "$LINENO" "res_send" "ac_cv_func_res_send"
18018if test "x$ac_cv_func_res_send" = xyes; then : 17996if test "x$ac_cv_func_res_send" = x""yes; then :
18019 17997
18020else 17998else
18021 ac_fn_c_check_func "$LINENO" "__res_send" "ac_cv_func___res_send" 17999 ac_fn_c_check_func "$LINENO" "__res_send" "ac_cv_func___res_send"
18022if test "x$ac_cv_func___res_send" = xyes; then : 18000if test "x$ac_cv_func___res_send" = x""yes; then :
18023 18001
18024else 18002else
18025 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_send in -lresolv" >&5 18003 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_send in -lresolv" >&5
18026$as_echo_n "checking for res_send in -lresolv... " >&6; } 18004$as_echo_n "checking for res_send in -lresolv... " >&6; }
18027if ${ac_cv_lib_resolv_res_send+:} false; then : 18005if test "${ac_cv_lib_resolv_res_send+set}" = set; then :
18028 $as_echo_n "(cached) " >&6 18006 $as_echo_n "(cached) " >&6
18029else 18007else
18030 ac_check_lib_save_LIBS=$LIBS 18008 ac_check_lib_save_LIBS=$LIBS
@@ -18058,12 +18036,12 @@ LIBS=$ac_check_lib_save_LIBS
18058fi 18036fi
18059{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_send" >&5 18037{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_send" >&5
18060$as_echo "$ac_cv_lib_resolv_res_send" >&6; } 18038$as_echo "$ac_cv_lib_resolv_res_send" >&6; }
18061if test "x$ac_cv_lib_resolv_res_send" = xyes; then : 18039if test "x$ac_cv_lib_resolv_res_send" = x""yes; then :
18062 resolv=yes 18040 resolv=yes
18063else 18041else
18064 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_send in -lresolv" >&5 18042 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_send in -lresolv" >&5
18065$as_echo_n "checking for __res_send in -lresolv... " >&6; } 18043$as_echo_n "checking for __res_send in -lresolv... " >&6; }
18066if ${ac_cv_lib_resolv___res_send+:} false; then : 18044if test "${ac_cv_lib_resolv___res_send+set}" = set; then :
18067 $as_echo_n "(cached) " >&6 18045 $as_echo_n "(cached) " >&6
18068else 18046else
18069 ac_check_lib_save_LIBS=$LIBS 18047 ac_check_lib_save_LIBS=$LIBS
@@ -18097,7 +18075,7 @@ LIBS=$ac_check_lib_save_LIBS
18097fi 18075fi
18098{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_send" >&5 18076{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_send" >&5
18099$as_echo "$ac_cv_lib_resolv___res_send" >&6; } 18077$as_echo "$ac_cv_lib_resolv___res_send" >&6; }
18100if test "x$ac_cv_lib_resolv___res_send" = xyes; then : 18078if test "x$ac_cv_lib_resolv___res_send" = x""yes; then :
18101 resolv=yes 18079 resolv=yes
18102fi 18080fi
18103 18081
@@ -18113,12 +18091,12 @@ fi
18113 RESOLVLIB= 18091 RESOLVLIB=
18114 fi 18092 fi
18115 ac_fn_c_check_func "$LINENO" "hes_getmailhost" "ac_cv_func_hes_getmailhost" 18093 ac_fn_c_check_func "$LINENO" "hes_getmailhost" "ac_cv_func_hes_getmailhost"
18116if test "x$ac_cv_func_hes_getmailhost" = xyes; then : 18094if test "x$ac_cv_func_hes_getmailhost" = x""yes; then :
18117 18095
18118else 18096else
18119 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hes_getmailhost in -lhesiod" >&5 18097 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hes_getmailhost in -lhesiod" >&5
18120$as_echo_n "checking for hes_getmailhost in -lhesiod... " >&6; } 18098$as_echo_n "checking for hes_getmailhost in -lhesiod... " >&6; }
18121if ${ac_cv_lib_hesiod_hes_getmailhost+:} false; then : 18099if test "${ac_cv_lib_hesiod_hes_getmailhost+set}" = set; then :
18122 $as_echo_n "(cached) " >&6 18100 $as_echo_n "(cached) " >&6
18123else 18101else
18124 ac_check_lib_save_LIBS=$LIBS 18102 ac_check_lib_save_LIBS=$LIBS
@@ -18152,7 +18130,7 @@ LIBS=$ac_check_lib_save_LIBS
18152fi 18130fi
18153{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_hesiod_hes_getmailhost" >&5 18131{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_hesiod_hes_getmailhost" >&5
18154$as_echo "$ac_cv_lib_hesiod_hes_getmailhost" >&6; } 18132$as_echo "$ac_cv_lib_hesiod_hes_getmailhost" >&6; }
18155if test "x$ac_cv_lib_hesiod_hes_getmailhost" = xyes; then : 18133if test "x$ac_cv_lib_hesiod_hes_getmailhost" = x""yes; then :
18156 hesiod=yes 18134 hesiod=yes
18157else 18135else
18158 : 18136 :
@@ -18191,7 +18169,7 @@ KRB4LIB=
18191if test "${with_kerberos}" != no; then 18169if test "${with_kerberos}" != no; then
18192 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for com_err in -lcom_err" >&5 18170 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for com_err in -lcom_err" >&5
18193$as_echo_n "checking for com_err in -lcom_err... " >&6; } 18171$as_echo_n "checking for com_err in -lcom_err... " >&6; }
18194if ${ac_cv_lib_com_err_com_err+:} false; then : 18172if test "${ac_cv_lib_com_err_com_err+set}" = set; then :
18195 $as_echo_n "(cached) " >&6 18173 $as_echo_n "(cached) " >&6
18196else 18174else
18197 ac_check_lib_save_LIBS=$LIBS 18175 ac_check_lib_save_LIBS=$LIBS
@@ -18225,7 +18203,7 @@ LIBS=$ac_check_lib_save_LIBS
18225fi 18203fi
18226{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_com_err_com_err" >&5 18204{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_com_err_com_err" >&5
18227$as_echo "$ac_cv_lib_com_err_com_err" >&6; } 18205$as_echo "$ac_cv_lib_com_err_com_err" >&6; }
18228if test "x$ac_cv_lib_com_err_com_err" = xyes; then : 18206if test "x$ac_cv_lib_com_err_com_err" = x""yes; then :
18229 have_com_err=yes 18207 have_com_err=yes
18230else 18208else
18231 have_com_err=no 18209 have_com_err=no
@@ -18240,7 +18218,7 @@ $as_echo "#define HAVE_LIBCOM_ERR 1" >>confdefs.h
18240 fi 18218 fi
18241 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lcrypto" >&5 18219 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lcrypto" >&5
18242$as_echo_n "checking for mit_des_cbc_encrypt in -lcrypto... " >&6; } 18220$as_echo_n "checking for mit_des_cbc_encrypt in -lcrypto... " >&6; }
18243if ${ac_cv_lib_crypto_mit_des_cbc_encrypt+:} false; then : 18221if test "${ac_cv_lib_crypto_mit_des_cbc_encrypt+set}" = set; then :
18244 $as_echo_n "(cached) " >&6 18222 $as_echo_n "(cached) " >&6
18245else 18223else
18246 ac_check_lib_save_LIBS=$LIBS 18224 ac_check_lib_save_LIBS=$LIBS
@@ -18274,7 +18252,7 @@ LIBS=$ac_check_lib_save_LIBS
18274fi 18252fi
18275{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5 18253{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5
18276$as_echo "$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6; } 18254$as_echo "$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6; }
18277if test "x$ac_cv_lib_crypto_mit_des_cbc_encrypt" = xyes; then : 18255if test "x$ac_cv_lib_crypto_mit_des_cbc_encrypt" = x""yes; then :
18278 have_crypto=yes 18256 have_crypto=yes
18279else 18257else
18280 have_crypto=no 18258 have_crypto=no
@@ -18289,7 +18267,7 @@ $as_echo "#define HAVE_LIBCRYPTO 1" >>confdefs.h
18289 fi 18267 fi
18290 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lk5crypto" >&5 18268 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lk5crypto" >&5
18291$as_echo_n "checking for mit_des_cbc_encrypt in -lk5crypto... " >&6; } 18269$as_echo_n "checking for mit_des_cbc_encrypt in -lk5crypto... " >&6; }
18292if ${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+:} false; then : 18270if test "${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+set}" = set; then :
18293 $as_echo_n "(cached) " >&6 18271 $as_echo_n "(cached) " >&6
18294else 18272else
18295 ac_check_lib_save_LIBS=$LIBS 18273 ac_check_lib_save_LIBS=$LIBS
@@ -18323,7 +18301,7 @@ LIBS=$ac_check_lib_save_LIBS
18323fi 18301fi
18324{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5 18302{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5
18325$as_echo "$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6; } 18303$as_echo "$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6; }
18326if test "x$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" = xyes; then : 18304if test "x$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" = x""yes; then :
18327 have_k5crypto=yes 18305 have_k5crypto=yes
18328else 18306else
18329 have_k5crypto=no 18307 have_k5crypto=no
@@ -18338,7 +18316,7 @@ $as_echo "#define HAVE_LIBK5CRYPTO 1" >>confdefs.h
18338 fi 18316 fi
18339 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb5_init_context in -lkrb5" >&5 18317 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb5_init_context in -lkrb5" >&5
18340$as_echo_n "checking for krb5_init_context in -lkrb5... " >&6; } 18318$as_echo_n "checking for krb5_init_context in -lkrb5... " >&6; }
18341if ${ac_cv_lib_krb5_krb5_init_context+:} false; then : 18319if test "${ac_cv_lib_krb5_krb5_init_context+set}" = set; then :
18342 $as_echo_n "(cached) " >&6 18320 $as_echo_n "(cached) " >&6
18343else 18321else
18344 ac_check_lib_save_LIBS=$LIBS 18322 ac_check_lib_save_LIBS=$LIBS
@@ -18372,7 +18350,7 @@ LIBS=$ac_check_lib_save_LIBS
18372fi 18350fi
18373{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb5_krb5_init_context" >&5 18351{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb5_krb5_init_context" >&5
18374$as_echo "$ac_cv_lib_krb5_krb5_init_context" >&6; } 18352$as_echo "$ac_cv_lib_krb5_krb5_init_context" >&6; }
18375if test "x$ac_cv_lib_krb5_krb5_init_context" = xyes; then : 18353if test "x$ac_cv_lib_krb5_krb5_init_context" = x""yes; then :
18376 have_krb5=yes 18354 have_krb5=yes
18377else 18355else
18378 have_krb5=no 18356 have_krb5=no
@@ -18388,7 +18366,7 @@ $as_echo "#define HAVE_LIBKRB5 1" >>confdefs.h
18388 if test "${with_kerberos5}" = no; then 18366 if test "${with_kerberos5}" = no; then
18389 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes425" >&5 18367 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes425" >&5
18390$as_echo_n "checking for des_cbc_encrypt in -ldes425... " >&6; } 18368$as_echo_n "checking for des_cbc_encrypt in -ldes425... " >&6; }
18391if ${ac_cv_lib_des425_des_cbc_encrypt+:} false; then : 18369if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then :
18392 $as_echo_n "(cached) " >&6 18370 $as_echo_n "(cached) " >&6
18393else 18371else
18394 ac_check_lib_save_LIBS=$LIBS 18372 ac_check_lib_save_LIBS=$LIBS
@@ -18422,7 +18400,7 @@ LIBS=$ac_check_lib_save_LIBS
18422fi 18400fi
18423{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 18401{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
18424$as_echo "$ac_cv_lib_des425_des_cbc_encrypt" >&6; } 18402$as_echo "$ac_cv_lib_des425_des_cbc_encrypt" >&6; }
18425if test "x$ac_cv_lib_des425_des_cbc_encrypt" = xyes; then : 18403if test "x$ac_cv_lib_des425_des_cbc_encrypt" = x""yes; then :
18426 have_des425=yes 18404 have_des425=yes
18427else 18405else
18428 have_des425=no 18406 have_des425=no
@@ -18437,7 +18415,7 @@ $as_echo "#define HAVE_LIBDES425 1" >>confdefs.h
18437 else 18415 else
18438 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes" >&5 18416 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes" >&5
18439$as_echo_n "checking for des_cbc_encrypt in -ldes... " >&6; } 18417$as_echo_n "checking for des_cbc_encrypt in -ldes... " >&6; }
18440if ${ac_cv_lib_des_des_cbc_encrypt+:} false; then : 18418if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then :
18441 $as_echo_n "(cached) " >&6 18419 $as_echo_n "(cached) " >&6
18442else 18420else
18443 ac_check_lib_save_LIBS=$LIBS 18421 ac_check_lib_save_LIBS=$LIBS
@@ -18471,7 +18449,7 @@ LIBS=$ac_check_lib_save_LIBS
18471fi 18449fi
18472{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des_des_cbc_encrypt" >&5 18450{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des_des_cbc_encrypt" >&5
18473$as_echo "$ac_cv_lib_des_des_cbc_encrypt" >&6; } 18451$as_echo "$ac_cv_lib_des_des_cbc_encrypt" >&6; }
18474if test "x$ac_cv_lib_des_des_cbc_encrypt" = xyes; then : 18452if test "x$ac_cv_lib_des_des_cbc_encrypt" = x""yes; then :
18475 have_des=yes 18453 have_des=yes
18476else 18454else
18477 have_des=no 18455 have_des=no
@@ -18487,7 +18465,7 @@ $as_echo "#define HAVE_LIBDES 1" >>confdefs.h
18487 fi 18465 fi
18488 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb4" >&5 18466 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb4" >&5
18489$as_echo_n "checking for krb_get_cred in -lkrb4... " >&6; } 18467$as_echo_n "checking for krb_get_cred in -lkrb4... " >&6; }
18490if ${ac_cv_lib_krb4_krb_get_cred+:} false; then : 18468if test "${ac_cv_lib_krb4_krb_get_cred+set}" = set; then :
18491 $as_echo_n "(cached) " >&6 18469 $as_echo_n "(cached) " >&6
18492else 18470else
18493 ac_check_lib_save_LIBS=$LIBS 18471 ac_check_lib_save_LIBS=$LIBS
@@ -18521,7 +18499,7 @@ LIBS=$ac_check_lib_save_LIBS
18521fi 18499fi
18522{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb4_krb_get_cred" >&5 18500{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb4_krb_get_cred" >&5
18523$as_echo "$ac_cv_lib_krb4_krb_get_cred" >&6; } 18501$as_echo "$ac_cv_lib_krb4_krb_get_cred" >&6; }
18524if test "x$ac_cv_lib_krb4_krb_get_cred" = xyes; then : 18502if test "x$ac_cv_lib_krb4_krb_get_cred" = x""yes; then :
18525 have_krb4=yes 18503 have_krb4=yes
18526else 18504else
18527 have_krb4=no 18505 have_krb4=no
@@ -18536,7 +18514,7 @@ $as_echo "#define HAVE_LIBKRB4 1" >>confdefs.h
18536 else 18514 else
18537 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb" >&5 18515 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb" >&5
18538$as_echo_n "checking for krb_get_cred in -lkrb... " >&6; } 18516$as_echo_n "checking for krb_get_cred in -lkrb... " >&6; }
18539if ${ac_cv_lib_krb_krb_get_cred+:} false; then : 18517if test "${ac_cv_lib_krb_krb_get_cred+set}" = set; then :
18540 $as_echo_n "(cached) " >&6 18518 $as_echo_n "(cached) " >&6
18541else 18519else
18542 ac_check_lib_save_LIBS=$LIBS 18520 ac_check_lib_save_LIBS=$LIBS
@@ -18570,7 +18548,7 @@ LIBS=$ac_check_lib_save_LIBS
18570fi 18548fi
18571{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb_krb_get_cred" >&5 18549{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb_krb_get_cred" >&5
18572$as_echo "$ac_cv_lib_krb_krb_get_cred" >&6; } 18550$as_echo "$ac_cv_lib_krb_krb_get_cred" >&6; }
18573if test "x$ac_cv_lib_krb_krb_get_cred" = xyes; then : 18551if test "x$ac_cv_lib_krb_krb_get_cred" = x""yes; then :
18574 have_krb=yes 18552 have_krb=yes
18575else 18553else
18576 have_krb=no 18554 have_krb=no
@@ -18590,13 +18568,13 @@ $as_echo "#define HAVE_LIBKRB 1" >>confdefs.h
18590 for ac_header in krb5.h 18568 for ac_header in krb5.h
18591do : 18569do :
18592 ac_fn_c_check_header_mongrel "$LINENO" "krb5.h" "ac_cv_header_krb5_h" "$ac_includes_default" 18570 ac_fn_c_check_header_mongrel "$LINENO" "krb5.h" "ac_cv_header_krb5_h" "$ac_includes_default"
18593if test "x$ac_cv_header_krb5_h" = xyes; then : 18571if test "x$ac_cv_header_krb5_h" = x""yes; then :
18594 cat >>confdefs.h <<_ACEOF 18572 cat >>confdefs.h <<_ACEOF
18595#define HAVE_KRB5_H 1 18573#define HAVE_KRB5_H 1
18596_ACEOF 18574_ACEOF
18597 ac_fn_c_check_member "$LINENO" "krb5_error" "text" "ac_cv_member_krb5_error_text" "#include <krb5.h> 18575 ac_fn_c_check_member "$LINENO" "krb5_error" "text" "ac_cv_member_krb5_error_text" "#include <krb5.h>
18598" 18576"
18599if test "x$ac_cv_member_krb5_error_text" = xyes; then : 18577if test "x$ac_cv_member_krb5_error_text" = x""yes; then :
18600 18578
18601cat >>confdefs.h <<_ACEOF 18579cat >>confdefs.h <<_ACEOF
18602#define HAVE_KRB5_ERROR_TEXT 1 18580#define HAVE_KRB5_ERROR_TEXT 1
@@ -18606,7 +18584,7 @@ _ACEOF
18606fi 18584fi
18607ac_fn_c_check_member "$LINENO" "krb5_error" "e_text" "ac_cv_member_krb5_error_e_text" "#include <krb5.h> 18585ac_fn_c_check_member "$LINENO" "krb5_error" "e_text" "ac_cv_member_krb5_error_e_text" "#include <krb5.h>
18608" 18586"
18609if test "x$ac_cv_member_krb5_error_e_text" = xyes; then : 18587if test "x$ac_cv_member_krb5_error_e_text" = x""yes; then :
18610 18588
18611cat >>confdefs.h <<_ACEOF 18589cat >>confdefs.h <<_ACEOF
18612#define HAVE_KRB5_ERROR_E_TEXT 1 18590#define HAVE_KRB5_ERROR_E_TEXT 1
@@ -18623,7 +18601,7 @@ done
18623 for ac_header in des.h 18601 for ac_header in des.h
18624do : 18602do :
18625 ac_fn_c_check_header_mongrel "$LINENO" "des.h" "ac_cv_header_des_h" "$ac_includes_default" 18603 ac_fn_c_check_header_mongrel "$LINENO" "des.h" "ac_cv_header_des_h" "$ac_includes_default"
18626if test "x$ac_cv_header_des_h" = xyes; then : 18604if test "x$ac_cv_header_des_h" = x""yes; then :
18627 cat >>confdefs.h <<_ACEOF 18605 cat >>confdefs.h <<_ACEOF
18628#define HAVE_DES_H 1 18606#define HAVE_DES_H 1
18629_ACEOF 18607_ACEOF
@@ -18632,7 +18610,7 @@ else
18632 for ac_header in kerberosIV/des.h 18610 for ac_header in kerberosIV/des.h
18633do : 18611do :
18634 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/des.h" "ac_cv_header_kerberosIV_des_h" "$ac_includes_default" 18612 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/des.h" "ac_cv_header_kerberosIV_des_h" "$ac_includes_default"
18635if test "x$ac_cv_header_kerberosIV_des_h" = xyes; then : 18613if test "x$ac_cv_header_kerberosIV_des_h" = x""yes; then :
18636 cat >>confdefs.h <<_ACEOF 18614 cat >>confdefs.h <<_ACEOF
18637#define HAVE_KERBEROSIV_DES_H 1 18615#define HAVE_KERBEROSIV_DES_H 1
18638_ACEOF 18616_ACEOF
@@ -18641,7 +18619,7 @@ else
18641 for ac_header in kerberos/des.h 18619 for ac_header in kerberos/des.h
18642do : 18620do :
18643 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/des.h" "ac_cv_header_kerberos_des_h" "$ac_includes_default" 18621 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/des.h" "ac_cv_header_kerberos_des_h" "$ac_includes_default"
18644if test "x$ac_cv_header_kerberos_des_h" = xyes; then : 18622if test "x$ac_cv_header_kerberos_des_h" = x""yes; then :
18645 cat >>confdefs.h <<_ACEOF 18623 cat >>confdefs.h <<_ACEOF
18646#define HAVE_KERBEROS_DES_H 1 18624#define HAVE_KERBEROS_DES_H 1
18647_ACEOF 18625_ACEOF
@@ -18661,7 +18639,7 @@ done
18661 for ac_header in krb.h 18639 for ac_header in krb.h
18662do : 18640do :
18663 ac_fn_c_check_header_mongrel "$LINENO" "krb.h" "ac_cv_header_krb_h" "$ac_includes_default" 18641 ac_fn_c_check_header_mongrel "$LINENO" "krb.h" "ac_cv_header_krb_h" "$ac_includes_default"
18664if test "x$ac_cv_header_krb_h" = xyes; then : 18642if test "x$ac_cv_header_krb_h" = x""yes; then :
18665 cat >>confdefs.h <<_ACEOF 18643 cat >>confdefs.h <<_ACEOF
18666#define HAVE_KRB_H 1 18644#define HAVE_KRB_H 1
18667_ACEOF 18645_ACEOF
@@ -18670,7 +18648,7 @@ else
18670 for ac_header in kerberosIV/krb.h 18648 for ac_header in kerberosIV/krb.h
18671do : 18649do :
18672 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/krb.h" "ac_cv_header_kerberosIV_krb_h" "$ac_includes_default" 18650 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/krb.h" "ac_cv_header_kerberosIV_krb_h" "$ac_includes_default"
18673if test "x$ac_cv_header_kerberosIV_krb_h" = xyes; then : 18651if test "x$ac_cv_header_kerberosIV_krb_h" = x""yes; then :
18674 cat >>confdefs.h <<_ACEOF 18652 cat >>confdefs.h <<_ACEOF
18675#define HAVE_KERBEROSIV_KRB_H 1 18653#define HAVE_KERBEROSIV_KRB_H 1
18676_ACEOF 18654_ACEOF
@@ -18679,7 +18657,7 @@ else
18679 for ac_header in kerberos/krb.h 18657 for ac_header in kerberos/krb.h
18680do : 18658do :
18681 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/krb.h" "ac_cv_header_kerberos_krb_h" "$ac_includes_default" 18659 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/krb.h" "ac_cv_header_kerberos_krb_h" "$ac_includes_default"
18682if test "x$ac_cv_header_kerberos_krb_h" = xyes; then : 18660if test "x$ac_cv_header_kerberos_krb_h" = x""yes; then :
18683 cat >>confdefs.h <<_ACEOF 18661 cat >>confdefs.h <<_ACEOF
18684#define HAVE_KERBEROS_KRB_H 1 18662#define HAVE_KERBEROS_KRB_H 1
18685_ACEOF 18663_ACEOF
@@ -18700,7 +18678,7 @@ done
18700 for ac_header in com_err.h 18678 for ac_header in com_err.h
18701do : 18679do :
18702 ac_fn_c_check_header_mongrel "$LINENO" "com_err.h" "ac_cv_header_com_err_h" "$ac_includes_default" 18680 ac_fn_c_check_header_mongrel "$LINENO" "com_err.h" "ac_cv_header_com_err_h" "$ac_includes_default"
18703if test "x$ac_cv_header_com_err_h" = xyes; then : 18681if test "x$ac_cv_header_com_err_h" = x""yes; then :
18704 cat >>confdefs.h <<_ACEOF 18682 cat >>confdefs.h <<_ACEOF
18705#define HAVE_COM_ERR_H 1 18683#define HAVE_COM_ERR_H 1
18706_ACEOF 18684_ACEOF
@@ -18721,7 +18699,7 @@ fi
18721# to return localized messages. 18699# to return localized messages.
18722{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 18700{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5
18723$as_echo_n "checking for dgettext in -lintl... " >&6; } 18701$as_echo_n "checking for dgettext in -lintl... " >&6; }
18724if ${ac_cv_lib_intl_dgettext+:} false; then : 18702if test "${ac_cv_lib_intl_dgettext+set}" = set; then :
18725 $as_echo_n "(cached) " >&6 18703 $as_echo_n "(cached) " >&6
18726else 18704else
18727 ac_check_lib_save_LIBS=$LIBS 18705 ac_check_lib_save_LIBS=$LIBS
@@ -18755,7 +18733,7 @@ LIBS=$ac_check_lib_save_LIBS
18755fi 18733fi
18756{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 18734{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5
18757$as_echo "$ac_cv_lib_intl_dgettext" >&6; } 18735$as_echo "$ac_cv_lib_intl_dgettext" >&6; }
18758if test "x$ac_cv_lib_intl_dgettext" = xyes; then : 18736if test "x$ac_cv_lib_intl_dgettext" = x""yes; then :
18759 cat >>confdefs.h <<_ACEOF 18737 cat >>confdefs.h <<_ACEOF
18760#define HAVE_LIBINTL 1 18738#define HAVE_LIBINTL 1
18761_ACEOF 18739_ACEOF
@@ -18767,7 +18745,7 @@ fi
18767 18745
18768{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime caches TZ" >&5 18746{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime caches TZ" >&5
18769$as_echo_n "checking whether localtime caches TZ... " >&6; } 18747$as_echo_n "checking whether localtime caches TZ... " >&6; }
18770if ${emacs_cv_localtime_cache+:} false; then : 18748if test "${emacs_cv_localtime_cache+set}" = set; then :
18771 $as_echo_n "(cached) " >&6 18749 $as_echo_n "(cached) " >&6
18772else 18750else
18773 if test x$ac_cv_func_tzset = xyes; then 18751 if test x$ac_cv_func_tzset = xyes; then
@@ -18826,7 +18804,7 @@ if test "x$HAVE_TIMEVAL" = xyes; then
18826 for ac_func in gettimeofday 18804 for ac_func in gettimeofday
18827do : 18805do :
18828 ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday" 18806 ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday"
18829if test "x$ac_cv_func_gettimeofday" = xyes; then : 18807if test "x$ac_cv_func_gettimeofday" = x""yes; then :
18830 cat >>confdefs.h <<_ACEOF 18808 cat >>confdefs.h <<_ACEOF
18831#define HAVE_GETTIMEOFDAY 1 18809#define HAVE_GETTIMEOFDAY 1
18832_ACEOF 18810_ACEOF
@@ -18837,7 +18815,7 @@ done
18837 if test $ac_cv_func_gettimeofday = yes; then 18815 if test $ac_cv_func_gettimeofday = yes; then
18838 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday can accept two arguments" >&5 18816 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday can accept two arguments" >&5
18839$as_echo_n "checking whether gettimeofday can accept two arguments... " >&6; } 18817$as_echo_n "checking whether gettimeofday can accept two arguments... " >&6; }
18840if ${emacs_cv_gettimeofday_two_arguments+:} false; then : 18818if test "${emacs_cv_gettimeofday_two_arguments+set}" = set; then :
18841 $as_echo_n "(cached) " >&6 18819 $as_echo_n "(cached) " >&6
18842else 18820else
18843 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 18821 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -18881,7 +18859,7 @@ fi
18881 18859
18882ok_so_far=yes 18860ok_so_far=yes
18883ac_fn_c_check_func "$LINENO" "socket" "ac_cv_func_socket" 18861ac_fn_c_check_func "$LINENO" "socket" "ac_cv_func_socket"
18884if test "x$ac_cv_func_socket" = xyes; then : 18862if test "x$ac_cv_func_socket" = x""yes; then :
18885 18863
18886else 18864else
18887 ok_so_far=no 18865 ok_so_far=no
@@ -18889,7 +18867,7 @@ fi
18889 18867
18890if test $ok_so_far = yes; then 18868if test $ok_so_far = yes; then
18891 ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default" 18869 ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
18892if test "x$ac_cv_header_netinet_in_h" = xyes; then : 18870if test "x$ac_cv_header_netinet_in_h" = x""yes; then :
18893 18871
18894else 18872else
18895 ok_so_far=no 18873 ok_so_far=no
@@ -18899,7 +18877,7 @@ fi
18899fi 18877fi
18900if test $ok_so_far = yes; then 18878if test $ok_so_far = yes; then
18901 ac_fn_c_check_header_mongrel "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default" 18879 ac_fn_c_check_header_mongrel "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default"
18902if test "x$ac_cv_header_arpa_inet_h" = xyes; then : 18880if test "x$ac_cv_header_arpa_inet_h" = x""yes; then :
18903 18881
18904else 18882else
18905 ok_so_far=no 18883 ok_so_far=no
@@ -18933,7 +18911,7 @@ $as_echo "no" >&6; }
18933fi 18911fi
18934 18912
18935ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" 18913ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default"
18936if test "x$ac_cv_type_pid_t" = xyes; then : 18914if test "x$ac_cv_type_pid_t" = x""yes; then :
18937 18915
18938else 18916else
18939 18917
@@ -18946,7 +18924,7 @@ fi
18946for ac_header in vfork.h 18924for ac_header in vfork.h
18947do : 18925do :
18948 ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" 18926 ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default"
18949if test "x$ac_cv_header_vfork_h" = xyes; then : 18927if test "x$ac_cv_header_vfork_h" = x""yes; then :
18950 cat >>confdefs.h <<_ACEOF 18928 cat >>confdefs.h <<_ACEOF
18951#define HAVE_VFORK_H 1 18929#define HAVE_VFORK_H 1
18952_ACEOF 18930_ACEOF
@@ -18959,7 +18937,8 @@ for ac_func in fork vfork
18959do : 18937do :
18960 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 18938 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
18961ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 18939ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
18962if eval test \"x\$"$as_ac_var"\" = x"yes"; then : 18940eval as_val=\$$as_ac_var
18941 if test "x$as_val" = x""yes; then :
18963 cat >>confdefs.h <<_ACEOF 18942 cat >>confdefs.h <<_ACEOF
18964#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 18943#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
18965_ACEOF 18944_ACEOF
@@ -18970,7 +18949,7 @@ done
18970if test "x$ac_cv_func_fork" = xyes; then 18949if test "x$ac_cv_func_fork" = xyes; then
18971 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 18950 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5
18972$as_echo_n "checking for working fork... " >&6; } 18951$as_echo_n "checking for working fork... " >&6; }
18973if ${ac_cv_func_fork_works+:} false; then : 18952if test "${ac_cv_func_fork_works+set}" = set; then :
18974 $as_echo_n "(cached) " >&6 18953 $as_echo_n "(cached) " >&6
18975else 18954else
18976 if test "$cross_compiling" = yes; then : 18955 if test "$cross_compiling" = yes; then :
@@ -19023,7 +19002,7 @@ ac_cv_func_vfork_works=$ac_cv_func_vfork
19023if test "x$ac_cv_func_vfork" = xyes; then 19002if test "x$ac_cv_func_vfork" = xyes; then
19024 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 19003 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5
19025$as_echo_n "checking for working vfork... " >&6; } 19004$as_echo_n "checking for working vfork... " >&6; }
19026if ${ac_cv_func_vfork_works+:} false; then : 19005if test "${ac_cv_func_vfork_works+set}" = set; then :
19027 $as_echo_n "(cached) " >&6 19006 $as_echo_n "(cached) " >&6
19028else 19007else
19029 if test "$cross_compiling" = yes; then : 19008 if test "$cross_compiling" = yes; then :
@@ -19159,7 +19138,7 @@ fi
19159 19138
19160{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 19139{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
19161$as_echo_n "checking for nl_langinfo and CODESET... " >&6; } 19140$as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
19162if ${emacs_cv_langinfo_codeset+:} false; then : 19141if test "${emacs_cv_langinfo_codeset+set}" = set; then :
19163 $as_echo_n "(cached) " >&6 19142 $as_echo_n "(cached) " >&6
19164else 19143else
19165 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 19144 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -19191,7 +19170,7 @@ $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h
19191fi 19170fi
19192 19171
19193ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" 19172ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
19194if test "x$ac_cv_type_size_t" = xyes; then : 19173if test "x$ac_cv_type_size_t" = x""yes; then :
19195 19174
19196cat >>confdefs.h <<_ACEOF 19175cat >>confdefs.h <<_ACEOF
19197#define HAVE_SIZE_T 1 19176#define HAVE_SIZE_T 1
@@ -19203,7 +19182,7 @@ fi
19203 19182
19204{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5 19183{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5
19205$as_echo_n "checking for mbstate_t... " >&6; } 19184$as_echo_n "checking for mbstate_t... " >&6; }
19206if ${ac_cv_type_mbstate_t+:} false; then : 19185if test "${ac_cv_type_mbstate_t+set}" = set; then :
19207 $as_echo_n "(cached) " >&6 19186 $as_echo_n "(cached) " >&6
19208else 19187else
19209 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 19188 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -19239,7 +19218,7 @@ $as_echo "#define mbstate_t int" >>confdefs.h
19239 19218
19240{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restricted array declarations" >&5 19219{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restricted array declarations" >&5
19241$as_echo_n "checking for C restricted array declarations... " >&6; } 19220$as_echo_n "checking for C restricted array declarations... " >&6; }
19242if ${emacs_cv_c_restrict_arr+:} false; then : 19221if test "${emacs_cv_c_restrict_arr+set}" = set; then :
19243 $as_echo_n "(cached) " >&6 19222 $as_echo_n "(cached) " >&6
19244else 19223else
19245 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 19224 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -19279,7 +19258,7 @@ if test "x$GCC" = xyes \
19279 && test x"`$CC --version 2> /dev/null | grep 'gcc.* 4.5.0'`" != x \ 19258 && test x"`$CC --version 2> /dev/null | grep 'gcc.* 4.5.0'`" != x \
19280 && test x"`echo $CFLAGS | grep '\-O[23]'`" != x \ 19259 && test x"`echo $CFLAGS | grep '\-O[23]'`" != x \
19281 && test x"`echo $CFLAGS | grep '\-fno-optimize-sibling-calls'`" = x; then 19260 && test x"`echo $CFLAGS | grep '\-fno-optimize-sibling-calls'`" = x; then
19282 as_fn_error $? "GCC 4.5.0 has problems compiling Emacs; see etc/PROBLEMS'." "$LINENO" 5 19261 as_fn_error "GCC 4.5.0 has problems compiling Emacs; see etc/PROBLEMS'." "$LINENO" 5
19283fi 19262fi
19284 19263
19285version=$PACKAGE_VERSION 19264version=$PACKAGE_VERSION
@@ -19836,21 +19815,10 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
19836 :end' >>confcache 19815 :end' >>confcache
19837if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 19816if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
19838 if test -w "$cache_file"; then 19817 if test -w "$cache_file"; then
19839 if test "x$cache_file" != "x/dev/null"; then 19818 test "x$cache_file" != "x/dev/null" &&
19840 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 19819 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
19841$as_echo "$as_me: updating cache $cache_file" >&6;} 19820$as_echo "$as_me: updating cache $cache_file" >&6;}
19842 if test ! -f "$cache_file" || test -h "$cache_file"; then 19821 cat confcache >$cache_file
19843 cat confcache >"$cache_file"
19844 else
19845 case $cache_file in #(
19846 */* | ?:*)
19847 mv -f confcache "$cache_file"$$ &&
19848 mv -f "$cache_file"$$ "$cache_file" ;; #(
19849 *)
19850 mv -f confcache "$cache_file" ;;
19851 esac
19852 fi
19853 fi
19854 else 19822 else
19855 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 19823 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
19856$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 19824$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -19866,7 +19834,6 @@ DEFS=-DHAVE_CONFIG_H
19866 19834
19867ac_libobjs= 19835ac_libobjs=
19868ac_ltlibobjs= 19836ac_ltlibobjs=
19869U=
19870for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 19837for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
19871 # 1. Remove the extension, and $U if already installed. 19838 # 1. Remove the extension, and $U if already installed.
19872 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 19839 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -19890,16 +19857,16 @@ else
19890fi 19857fi
19891 19858
19892if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 19859if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
19893 as_fn_error $? "conditional \"AMDEP\" was never defined. 19860 as_fn_error "conditional \"AMDEP\" was never defined.
19894Usually this means the macro was only invoked conditionally." "$LINENO" 5 19861Usually this means the macro was only invoked conditionally." "$LINENO" 5
19895fi 19862fi
19896if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then 19863if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
19897 as_fn_error $? "conditional \"am__fastdepCC\" was never defined. 19864 as_fn_error "conditional \"am__fastdepCC\" was never defined.
19898Usually this means the macro was only invoked conditionally." "$LINENO" 5 19865Usually this means the macro was only invoked conditionally." "$LINENO" 5
19899fi 19866fi
19900 19867
19901if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then 19868if test -z "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then
19902 as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. 19869 as_fn_error "conditional \"GL_COND_LIBTOOL\" was never defined.
19903Usually this means the macro was only invoked conditionally." "$LINENO" 5 19870Usually this means the macro was only invoked conditionally." "$LINENO" 5
19904fi 19871fi
19905 19872
@@ -19936,7 +19903,7 @@ fi
19936 19903
19937 19904
19938 19905
19939: "${CONFIG_STATUS=./config.status}" 19906: ${CONFIG_STATUS=./config.status}
19940ac_write_fail=0 19907ac_write_fail=0
19941ac_clean_files_save=$ac_clean_files 19908ac_clean_files_save=$ac_clean_files
19942ac_clean_files="$ac_clean_files $CONFIG_STATUS" 19909ac_clean_files="$ac_clean_files $CONFIG_STATUS"
@@ -20037,7 +20004,6 @@ fi
20037IFS=" "" $as_nl" 20004IFS=" "" $as_nl"
20038 20005
20039# Find who we are. Look in the path if we contain no directory separator. 20006# Find who we are. Look in the path if we contain no directory separator.
20040as_myself=
20041case $0 in #(( 20007case $0 in #((
20042 *[\\/]* ) as_myself=$0 ;; 20008 *[\\/]* ) as_myself=$0 ;;
20043 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 20009 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -20083,19 +20049,19 @@ export LANGUAGE
20083(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 20049(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
20084 20050
20085 20051
20086# as_fn_error STATUS ERROR [LINENO LOG_FD] 20052# as_fn_error ERROR [LINENO LOG_FD]
20087# ---------------------------------------- 20053# ---------------------------------
20088# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 20054# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
20089# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 20055# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
20090# script with STATUS, using 1 if that was 0. 20056# script with status $?, using 1 if that was 0.
20091as_fn_error () 20057as_fn_error ()
20092{ 20058{
20093 as_status=$1; test $as_status -eq 0 && as_status=1 20059 as_status=$?; test $as_status -eq 0 && as_status=1
20094 if test "$4"; then 20060 if test "$3"; then
20095 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 20061 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
20096 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 20062 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3
20097 fi 20063 fi
20098 $as_echo "$as_me: error: $2" >&2 20064 $as_echo "$as_me: error: $1" >&2
20099 as_fn_exit $as_status 20065 as_fn_exit $as_status
20100} # as_fn_error 20066} # as_fn_error
20101 20067
@@ -20291,7 +20257,7 @@ $as_echo X"$as_dir" |
20291 test -d "$as_dir" && break 20257 test -d "$as_dir" && break
20292 done 20258 done
20293 test -z "$as_dirs" || eval "mkdir $as_dirs" 20259 test -z "$as_dirs" || eval "mkdir $as_dirs"
20294 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" 20260 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir"
20295 20261
20296 20262
20297} # as_fn_mkdir_p 20263} # as_fn_mkdir_p
@@ -20345,7 +20311,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
20345# values after options handling. 20311# values after options handling.
20346ac_log=" 20312ac_log="
20347This file was extended by emacs $as_me 24.0.50, which was 20313This file was extended by emacs $as_me 24.0.50, which was
20348generated by GNU Autoconf 2.68. Invocation command line was 20314generated by GNU Autoconf 2.65. Invocation command line was
20349 20315
20350 CONFIG_FILES = $CONFIG_FILES 20316 CONFIG_FILES = $CONFIG_FILES
20351 CONFIG_HEADERS = $CONFIG_HEADERS 20317 CONFIG_HEADERS = $CONFIG_HEADERS
@@ -20411,10 +20377,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
20411ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 20377ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
20412ac_cs_version="\\ 20378ac_cs_version="\\
20413emacs config.status 24.0.50 20379emacs config.status 24.0.50
20414configured by $0, generated by GNU Autoconf 2.68, 20380configured by $0, generated by GNU Autoconf 2.65,
20415 with options \\"\$ac_cs_config\\" 20381 with options \\"\$ac_cs_config\\"
20416 20382
20417Copyright (C) 2010 Free Software Foundation, Inc. 20383Copyright (C) 2009 Free Software Foundation, Inc.
20418This config.status script is free software; the Free Software Foundation 20384This config.status script is free software; the Free Software Foundation
20419gives unlimited permission to copy, distribute and modify it." 20385gives unlimited permission to copy, distribute and modify it."
20420 20386
@@ -20432,16 +20398,11 @@ ac_need_defaults=:
20432while test $# != 0 20398while test $# != 0
20433do 20399do
20434 case $1 in 20400 case $1 in
20435 --*=?*) 20401 --*=*)
20436 ac_option=`expr "X$1" : 'X\([^=]*\)='` 20402 ac_option=`expr "X$1" : 'X\([^=]*\)='`
20437 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` 20403 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
20438 ac_shift=: 20404 ac_shift=:
20439 ;; 20405 ;;
20440 --*=)
20441 ac_option=`expr "X$1" : 'X\([^=]*\)='`
20442 ac_optarg=
20443 ac_shift=:
20444 ;;
20445 *) 20406 *)
20446 ac_option=$1 20407 ac_option=$1
20447 ac_optarg=$2 20408 ac_optarg=$2
@@ -20463,7 +20424,6 @@ do
20463 $ac_shift 20424 $ac_shift
20464 case $ac_optarg in 20425 case $ac_optarg in
20465 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 20426 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
20466 '') as_fn_error $? "missing file argument" ;;
20467 esac 20427 esac
20468 as_fn_append CONFIG_FILES " '$ac_optarg'" 20428 as_fn_append CONFIG_FILES " '$ac_optarg'"
20469 ac_need_defaults=false;; 20429 ac_need_defaults=false;;
@@ -20476,7 +20436,7 @@ do
20476 ac_need_defaults=false;; 20436 ac_need_defaults=false;;
20477 --he | --h) 20437 --he | --h)
20478 # Conflict between --help and --header 20438 # Conflict between --help and --header
20479 as_fn_error $? "ambiguous option: \`$1' 20439 as_fn_error "ambiguous option: \`$1'
20480Try \`$0 --help' for more information.";; 20440Try \`$0 --help' for more information.";;
20481 --help | --hel | -h ) 20441 --help | --hel | -h )
20482 $as_echo "$ac_cs_usage"; exit ;; 20442 $as_echo "$ac_cs_usage"; exit ;;
@@ -20485,7 +20445,7 @@ Try \`$0 --help' for more information.";;
20485 ac_cs_silent=: ;; 20445 ac_cs_silent=: ;;
20486 20446
20487 # This is an error. 20447 # This is an error.
20488 -*) as_fn_error $? "unrecognized option: \`$1' 20448 -*) as_fn_error "unrecognized option: \`$1'
20489Try \`$0 --help' for more information." ;; 20449Try \`$0 --help' for more information." ;;
20490 20450
20491 *) as_fn_append ac_config_targets " $1" 20451 *) as_fn_append ac_config_targets " $1"
@@ -20559,7 +20519,7 @@ do
20559 "epaths") CONFIG_COMMANDS="$CONFIG_COMMANDS epaths" ;; 20519 "epaths") CONFIG_COMMANDS="$CONFIG_COMMANDS epaths" ;;
20560 "gdbinit") CONFIG_COMMANDS="$CONFIG_COMMANDS gdbinit" ;; 20520 "gdbinit") CONFIG_COMMANDS="$CONFIG_COMMANDS gdbinit" ;;
20561 20521
20562 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; 20522 *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
20563 esac 20523 esac
20564done 20524done
20565 20525
@@ -20582,10 +20542,9 @@ fi
20582# after its creation but before its name has been assigned to `$tmp'. 20542# after its creation but before its name has been assigned to `$tmp'.
20583$debug || 20543$debug ||
20584{ 20544{
20585 tmp= ac_tmp= 20545 tmp=
20586 trap 'exit_status=$? 20546 trap 'exit_status=$?
20587 : "${ac_tmp:=$tmp}" 20547 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status
20588 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
20589' 0 20548' 0
20590 trap 'as_fn_exit 1' 1 2 13 15 20549 trap 'as_fn_exit 1' 1 2 13 15
20591} 20550}
@@ -20593,13 +20552,12 @@ $debug ||
20593 20552
20594{ 20553{
20595 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 20554 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
20596 test -d "$tmp" 20555 test -n "$tmp" && test -d "$tmp"
20597} || 20556} ||
20598{ 20557{
20599 tmp=./conf$$-$RANDOM 20558 tmp=./conf$$-$RANDOM
20600 (umask 077 && mkdir "$tmp") 20559 (umask 077 && mkdir "$tmp")
20601} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 20560} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5
20602ac_tmp=$tmp
20603 20561
20604# Set up the scripts for CONFIG_FILES section. 20562# Set up the scripts for CONFIG_FILES section.
20605# No need to generate them if there are no CONFIG_FILES. 20563# No need to generate them if there are no CONFIG_FILES.
@@ -20633,24 +20591,24 @@ if test "x$ac_cr" = x; then
20633fi 20591fi
20634ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 20592ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
20635if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 20593if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
20636 ac_cs_awk_cr='\\r' 20594 ac_cs_awk_cr='\r'
20637else 20595else
20638 ac_cs_awk_cr=$ac_cr 20596 ac_cs_awk_cr=$ac_cr
20639fi 20597fi
20640 20598
20641echo 'BEGIN {' >"$ac_tmp/subs1.awk" && 20599echo 'BEGIN {' >"$tmp/subs1.awk" &&
20642_ACEOF 20600_ACEOF
20643 20601
20644# Create commands to substitute file output variables. 20602# Create commands to substitute file output variables.
20645{ 20603{
20646 echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" && 20604 echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" &&
20647 echo 'cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&' && 20605 echo 'cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&' &&
20648 echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' && 20606 echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' &&
20649 echo "_ACAWK" && 20607 echo "_ACAWK" &&
20650 echo "_ACEOF" 20608 echo "_ACEOF"
20651} >conf$$files.sh && 20609} >conf$$files.sh &&
20652. ./conf$$files.sh || 20610. ./conf$$files.sh ||
20653 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 20611 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
20654rm -f conf$$files.sh 20612rm -f conf$$files.sh
20655 20613
20656{ 20614{
@@ -20658,18 +20616,18 @@ rm -f conf$$files.sh
20658 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 20616 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
20659 echo "_ACEOF" 20617 echo "_ACEOF"
20660} >conf$$subs.sh || 20618} >conf$$subs.sh ||
20661 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 20619 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
20662ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` 20620ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
20663ac_delim='%!_!# ' 20621ac_delim='%!_!# '
20664for ac_last_try in false false false false false :; do 20622for ac_last_try in false false false false false :; do
20665 . ./conf$$subs.sh || 20623 . ./conf$$subs.sh ||
20666 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 20624 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
20667 20625
20668 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 20626 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
20669 if test $ac_delim_n = $ac_delim_num; then 20627 if test $ac_delim_n = $ac_delim_num; then
20670 break 20628 break
20671 elif $ac_last_try; then 20629 elif $ac_last_try; then
20672 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 20630 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5
20673 else 20631 else
20674 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 20632 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
20675 fi 20633 fi
@@ -20677,7 +20635,7 @@ done
20677rm -f conf$$subs.sh 20635rm -f conf$$subs.sh
20678 20636
20679cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 20637cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
20680cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && 20638cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
20681_ACEOF 20639_ACEOF
20682sed -n ' 20640sed -n '
20683h 20641h
@@ -20725,7 +20683,7 @@ t delim
20725rm -f conf$$subs.awk 20683rm -f conf$$subs.awk
20726cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 20684cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
20727_ACAWK 20685_ACAWK
20728cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && 20686cat >>"\$tmp/subs1.awk" <<_ACAWK &&
20729 for (key in S) S_is_set[key] = 1 20687 for (key in S) S_is_set[key] = 1
20730 FS = "" 20688 FS = ""
20731 \$ac_cs_awk_pipe_init 20689 \$ac_cs_awk_pipe_init
@@ -20763,29 +20721,21 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
20763 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 20721 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
20764else 20722else
20765 cat 20723 cat
20766fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ 20724fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
20767 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 20725 || as_fn_error "could not setup config files machinery" "$LINENO" 5
20768_ACEOF 20726_ACEOF
20769 20727
20770# VPATH may cause trouble with some makes, so we remove sole $(srcdir), 20728# VPATH may cause trouble with some makes, so we remove $(srcdir),
20771# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and 20729# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
20772# trailing colons and then remove the whole line if VPATH becomes empty 20730# trailing colons and then remove the whole line if VPATH becomes empty
20773# (actually we leave an empty line to preserve line numbers). 20731# (actually we leave an empty line to preserve line numbers).
20774if test "x$srcdir" = x.; then 20732if test "x$srcdir" = x.; then
20775 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ 20733 ac_vpsub='/^[ ]*VPATH[ ]*=/{
20776h 20734s/:*\$(srcdir):*/:/
20777s/// 20735s/:*\${srcdir}:*/:/
20778s/^/:/ 20736s/:*@srcdir@:*/:/
20779s/[ ]*$/:/ 20737s/^\([^=]*=[ ]*\):*/\1/
20780s/:\$(srcdir):/:/g
20781s/:\${srcdir}:/:/g
20782s/:@srcdir@:/:/g
20783s/^:*//
20784s/:*$// 20738s/:*$//
20785x
20786s/\(=[ ]*\).*/\1/
20787G
20788s/\n//
20789s/^[^=]*=[ ]*$// 20739s/^[^=]*=[ ]*$//
20790}' 20740}'
20791fi 20741fi
@@ -20797,7 +20747,7 @@ fi # test -n "$CONFIG_FILES"
20797# No need to generate them if there are no CONFIG_HEADERS. 20747# No need to generate them if there are no CONFIG_HEADERS.
20798# This happens for instance with `./config.status Makefile'. 20748# This happens for instance with `./config.status Makefile'.
20799if test -n "$CONFIG_HEADERS"; then 20749if test -n "$CONFIG_HEADERS"; then
20800cat >"$ac_tmp/defines.awk" <<\_ACAWK || 20750cat >"$tmp/defines.awk" <<\_ACAWK ||
20801BEGIN { 20751BEGIN {
20802_ACEOF 20752_ACEOF
20803 20753
@@ -20809,11 +20759,11 @@ _ACEOF
20809# handling of long lines. 20759# handling of long lines.
20810ac_delim='%!_!# ' 20760ac_delim='%!_!# '
20811for ac_last_try in false false :; do 20761for ac_last_try in false false :; do
20812 ac_tt=`sed -n "/$ac_delim/p" confdefs.h` 20762 ac_t=`sed -n "/$ac_delim/p" confdefs.h`
20813 if test -z "$ac_tt"; then 20763 if test -z "$ac_t"; then
20814 break 20764 break
20815 elif $ac_last_try; then 20765 elif $ac_last_try; then
20816 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 20766 as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5
20817 else 20767 else
20818 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 20768 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
20819 fi 20769 fi
@@ -20898,7 +20848,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
20898_ACAWK 20848_ACAWK
20899_ACEOF 20849_ACEOF
20900cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 20850cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
20901 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 20851 as_fn_error "could not setup config headers machinery" "$LINENO" 5
20902fi # test -n "$CONFIG_HEADERS" 20852fi # test -n "$CONFIG_HEADERS"
20903 20853
20904 20854
@@ -20911,7 +20861,7 @@ do
20911 esac 20861 esac
20912 case $ac_mode$ac_tag in 20862 case $ac_mode$ac_tag in
20913 :[FHL]*:*);; 20863 :[FHL]*:*);;
20914 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; 20864 :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;;
20915 :[FH]-) ac_tag=-:-;; 20865 :[FH]-) ac_tag=-:-;;
20916 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 20866 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
20917 esac 20867 esac
@@ -20930,7 +20880,7 @@ do
20930 for ac_f 20880 for ac_f
20931 do 20881 do
20932 case $ac_f in 20882 case $ac_f in
20933 -) ac_f="$ac_tmp/stdin";; 20883 -) ac_f="$tmp/stdin";;
20934 *) # Look for the file first in the build tree, then in the source tree 20884 *) # Look for the file first in the build tree, then in the source tree
20935 # (if the path is not absolute). The absolute path cannot be DOS-style, 20885 # (if the path is not absolute). The absolute path cannot be DOS-style,
20936 # because $ac_f cannot contain `:'. 20886 # because $ac_f cannot contain `:'.
@@ -20939,7 +20889,7 @@ do
20939 [\\/$]*) false;; 20889 [\\/$]*) false;;
20940 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 20890 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
20941 esac || 20891 esac ||
20942 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; 20892 as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;;
20943 esac 20893 esac
20944 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 20894 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
20945 as_fn_append ac_file_inputs " '$ac_f'" 20895 as_fn_append ac_file_inputs " '$ac_f'"
@@ -20965,8 +20915,8 @@ $as_echo "$as_me: creating $ac_file" >&6;}
20965 esac 20915 esac
20966 20916
20967 case $ac_tag in 20917 case $ac_tag in
20968 *:-:* | *:-) cat >"$ac_tmp/stdin" \ 20918 *:-:* | *:-) cat >"$tmp/stdin" \
20969 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; 20919 || as_fn_error "could not create $ac_file" "$LINENO" 5 ;;
20970 esac 20920 esac
20971 ;; 20921 ;;
20972 esac 20922 esac
@@ -21104,27 +21054,26 @@ $ac_datarootdir_hack
21104" 21054"
21105eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | 21055eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
21106if $ac_cs_awk_getline; then 21056if $ac_cs_awk_getline; then
21107 $AWK -f "$ac_tmp/subs.awk" 21057 $AWK -f "$tmp/subs.awk"
21108else 21058else
21109 $AWK -f "$ac_tmp/subs.awk" | $SHELL 21059 $AWK -f "$tmp/subs.awk" | $SHELL
21110fi \ 21060fi >$tmp/out \
21111 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 21061 || as_fn_error "could not create $ac_file" "$LINENO" 5
21112 21062
21113test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 21063test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
21114 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && 21064 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
21115 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ 21065 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
21116 "$ac_tmp/out"`; test -z "$ac_out"; } &&
21117 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' 21066 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
21118which seems to be undefined. Please make sure it is defined" >&5 21067which seems to be undefined. Please make sure it is defined." >&5
21119$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 21068$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
21120which seems to be undefined. Please make sure it is defined" >&2;} 21069which seems to be undefined. Please make sure it is defined." >&2;}
21121 21070
21122 rm -f "$ac_tmp/stdin" 21071 rm -f "$tmp/stdin"
21123 case $ac_file in 21072 case $ac_file in
21124 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; 21073 -) cat "$tmp/out" && rm -f "$tmp/out";;
21125 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; 21074 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
21126 esac \ 21075 esac \
21127 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 21076 || as_fn_error "could not create $ac_file" "$LINENO" 5
21128 ;; 21077 ;;
21129 :H) 21078 :H)
21130 # 21079 #
@@ -21133,21 +21082,21 @@ which seems to be undefined. Please make sure it is defined" >&2;}
21133 if test x"$ac_file" != x-; then 21082 if test x"$ac_file" != x-; then
21134 { 21083 {
21135 $as_echo "/* $configure_input */" \ 21084 $as_echo "/* $configure_input */" \
21136 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" 21085 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs"
21137 } >"$ac_tmp/config.h" \ 21086 } >"$tmp/config.h" \
21138 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 21087 || as_fn_error "could not create $ac_file" "$LINENO" 5
21139 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then 21088 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then
21140 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 21089 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
21141$as_echo "$as_me: $ac_file is unchanged" >&6;} 21090$as_echo "$as_me: $ac_file is unchanged" >&6;}
21142 else 21091 else
21143 rm -f "$ac_file" 21092 rm -f "$ac_file"
21144 mv "$ac_tmp/config.h" "$ac_file" \ 21093 mv "$tmp/config.h" "$ac_file" \
21145 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 21094 || as_fn_error "could not create $ac_file" "$LINENO" 5
21146 fi 21095 fi
21147 else 21096 else
21148 $as_echo "/* $configure_input */" \ 21097 $as_echo "/* $configure_input */" \
21149 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ 21098 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \
21150 || as_fn_error $? "could not create -" "$LINENO" 5 21099 || as_fn_error "could not create -" "$LINENO" 5
21151 fi 21100 fi
21152# Compute "$ac_file"'s index in $config_headers. 21101# Compute "$ac_file"'s index in $config_headers.
21153_am_arg="$ac_file" 21102_am_arg="$ac_file"
@@ -21312,7 +21261,7 @@ _ACEOF
21312ac_clean_files=$ac_clean_files_save 21261ac_clean_files=$ac_clean_files_save
21313 21262
21314test $ac_write_fail = 0 || 21263test $ac_write_fail = 0 ||
21315 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 21264 as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5
21316 21265
21317 21266
21318# configure is writing to config.log, and then calls config.status. 21267# configure is writing to config.log, and then calls config.status.
@@ -21333,7 +21282,7 @@ if test "$no_create" != yes; then
21333 exec 5>>config.log 21282 exec 5>>config.log
21334 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 21283 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
21335 # would make configure fail if this is the last instruction. 21284 # would make configure fail if this is the last instruction.
21336 $ac_cs_success || as_fn_exit 1 21285 $ac_cs_success || as_fn_exit $?
21337fi 21286fi
21338if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 21287if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
21339 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 21288 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
diff --git a/autogen/copy_autogen b/autogen/copy_autogen
new file mode 100755
index 00000000000..4abdbd87c0f
--- /dev/null
+++ b/autogen/copy_autogen
@@ -0,0 +1,20 @@
1#!/bin/sh
2
3## Helper script for those building Emacs from bzr without autoconf etc.
4## This installs some pre-generated versions of the automatically
5## generated files. It is highly recommended to install the necessary
6## tools instead of using this. Note that if eg configure.in
7## is updated, the next time you run make it will attempt to
8## regenerate configure and will fail if you do not have the required
9## tools. You will have to run this script again.
10
11if test ! -e config.in; then
12 echo "You must run this script from the autogen/ directory."
13 exit 1
14fi
15
16cp configure aclocal.m4 ../
17cp config.in ../src/
18cp Makefile.in ../lib/
19
20echo "You can now run configure"
diff --git a/autogen/update_autogen b/autogen/update_autogen
new file mode 100755
index 00000000000..e73bf16a610
--- /dev/null
+++ b/autogen/update_autogen
@@ -0,0 +1,180 @@
1#!/bin/bash
2### update_autogen - update the generated files in Emacs autogen/ directory
3
4## Copyright (C) 2011 Free Software Foundation, Inc.
5
6## Author: Glenn Morris <rgm@gnu.org>
7
8## This file is part of GNU Emacs.
9
10## GNU Emacs is free software: you can redistribute it and/or modify
11## it under the terms of the GNU General Public License as published by
12## the Free Software Foundation, either version 3 of the License, or
13## (at your option) any later version.
14
15## GNU Emacs is distributed in the hope that it will be useful,
16## but WITHOUT ANY WARRANTY; without even the implied warranty of
17## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18## GNU General Public License for more details.
19
20## You should have received a copy of the GNU General Public License
21## along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
22
23### Commentary:
24
25## This is a helper script to update the pre-built generated files in
26## the autogen/ directory. This is suitable for running from cron.
27## Only Emacs maintainers need use this, so it uses bash features.
28
29### Code:
30
31function die () # write error to stderr and exit
32{
33 [ $# -gt 0 ] && echo "$PN: $@" >&2
34 exit 1
35}
36
37PN=${0##*/} # basename of script
38PD=${0%/*}
39
40[ "$PD" = "$0" ] && PD=. # if PATH includes PWD
41
42## This should be the autogen directory.
43cd $PD
44cd ../
45[ -d autogen ] || die "Could not locate autogen directory"
46
47
48function usage ()
49{
50 cat 1>&2 <<EOF
51Usage: ${PN} [-f] [-c] [-q]
52Update the generated files in the Emacs autogen/ directory.
53Options:
54-f: force an update even if the source files are locally modified.
55-c: if the update succeeds and the generated files are modified,
56 commit them (caution).
57-q: be quiet; only give error messages, not status messages.
58EOF
59 exit 1
60}
61
62
63## Defaults.
64
65force=
66commit=
67quiet=
68
69## Parameters.
70sources="configure.in lib/Makefile.am"
71genfiles="configure aclocal.m4 src/config.in lib/Makefile.in"
72
73for g in $genfiles; do
74 basegen="$basegen ${g##*/}"
75done
76
77[ "$basegen" ] || die "internal error"
78
79tempfile=/tmp/$PN.$$
80
81trap "rm -f $tempfile 2> /dev/null" EXIT
82
83
84while getopts ":hcfq" option ; do
85 case $option in
86 (h) usage ;;
87
88 (c) commit=1 ;;
89
90 (f) force=1 ;;
91
92 (q) quiet=1 ;;
93
94 (\?) die "Bad option -$OPTARG" ;;
95
96 (:) die "Option -$OPTARG requires an argument" ;;
97
98 (*) die "getopts error" ;;
99 esac
100done
101shift $(( --OPTIND ))
102OPTIND=1
103
104[ $# -eq 0 ] || die "Wrong number of arguments"
105
106
107function msg ()
108{
109 [ "$quiet" ] && return 0
110 echo "$@"
111} # function msg
112
113
114msg "Running bzr status..."
115
116bzr status -S $sources >| $tempfile || die "bzr status error for sources"
117
118while read stat file; do
119
120 case $stat in
121 M)
122 msg "Locally modified: $file"
123 [ "$force" ] || die "There are local modifications"
124 ;;
125
126 *) die "Unexpected status ($stat) for $file" ;;
127 esac
128done < $tempfile
129
130
131msg "Running autoreconf..."
132
133autoreconf -I m4 || die "autoreconf error"
134
135
136cp $genfiles autogen/
137
138
139cd autogen
140
141
142bzr status -S $basegen >| $tempfile || \
143 die "bzr status error for generated files"
144
145
146modified=
147
148while read stat file; do
149
150 [ "$stat" != "M" ] && die "Unexpected status ($stat) for generated $file"
151
152 modified="$modified $file"
153
154done < $tempfile
155
156
157[ "$modified" ] || {
158 msg "No files were modified"
159 exit 0
160}
161
162msg "Modified file(s): $modified"
163
164[ "$commit" ] || exit 0
165
166
167msg "Committing..."
168
169## bzr status output is annoyingly always relative to top-level, not PWD.
170cd ../
171
172bzr commit -m "Auto-commit of generated files." $modified || \
173 die "bzr commit error"
174
175
176msg "Committed files: $modified"
177
178exit
179
180### update_autogen ends here
diff --git a/configure.in b/configure.in
index 47bdaf9bbb1..b38aa976259 100644
--- a/configure.in
+++ b/configure.in
@@ -229,7 +229,7 @@ AC_ARG_ENABLE(maintainer-mode,
229 [enable make rules and dependencies not useful (and sometimes 229 [enable make rules and dependencies not useful (and sometimes
230 confusing) to the casual installer])], 230 confusing) to the casual installer])],
231 USE_MAINTAINER_MODE=$enableval, 231 USE_MAINTAINER_MODE=$enableval,
232 USE_MAINTAINER_MODE=no) 232 USE_MAINTAINER_MODE=yes)
233if test $USE_MAINTAINER_MODE = yes; then 233if test $USE_MAINTAINER_MODE = yes; then
234 MAINT= 234 MAINT=
235else 235else
diff --git a/src/ChangeLog b/src/ChangeLog
index 95bafd023b4..6fa2d821565 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12011-03-20 Glenn Morris <rgm@gnu.org>
2
3 * config.in: Remove file.
4
12011-03-20 Juanma Barranquero <lekktu@gmail.com> 52011-03-20 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * minibuf.c (Vcompleting_read_function): Don't declare, global variables 7 * minibuf.c (Vcompleting_read_function): Don't declare, global variables