aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorAndreas Schwab2010-10-25 19:23:45 +0200
committerAndreas Schwab2010-10-25 19:23:45 +0200
commitd47f34de4bbd4972f95a0109e0c561b26fcebf65 (patch)
treebab9f18ed1b5b6358643fe1dc05ece2720a773b2 /configure
parent365dc66cec4e0c4362a60ac13b587c82f23415a5 (diff)
downloademacs-d47f34de4bbd4972f95a0109e0c561b26fcebf65.tar.gz
emacs-d47f34de4bbd4972f95a0109e0c561b26fcebf65.zip
* configure.in (checking for -znocombreloc): Use AC_LANG_PROGRAM
to avoid warning.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure1097
1 files changed, 577 insertions, 520 deletions
diff --git a/configure b/configure
index 4fe49eb034e..c12401e2d16 100755
--- a/configure
+++ b/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.65 for emacs 24.0.50. 3# Generated by GNU Autoconf 2.68 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 Free Software Foundation, 7# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
8# Inc. 8# Foundation, 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,6 +89,7 @@ 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=
92case $0 in #(( 93case $0 in #((
93 *[\\/]* ) as_myself=$0 ;; 94 *[\\/]* ) as_myself=$0 ;;
94 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 95 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -214,11 +215,18 @@ IFS=$as_save_IFS
214 # We cannot yet assume a decent shell, so we have to provide a 215 # We cannot yet assume a decent shell, so we have to provide a
215 # neutralization value for shells without unset; and this also 216 # neutralization value for shells without unset; and this also
216 # works around shells that cannot unset nonexistent variables. 217 # works around shells that cannot unset nonexistent variables.
218 # Preserve -v and -x to the replacement shell.
217 BASH_ENV=/dev/null 219 BASH_ENV=/dev/null
218 ENV=/dev/null 220 ENV=/dev/null
219 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV 221 (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
220 export CONFIG_SHELL 222 export CONFIG_SHELL
221 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 223 case $- in # ((((
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+"$@"}
222fi 230fi
223 231
224 if test x$as_have_required = xno; then : 232 if test x$as_have_required = xno; then :
@@ -316,7 +324,7 @@ $as_echo X"$as_dir" |
316 test -d "$as_dir" && break 324 test -d "$as_dir" && break
317 done 325 done
318 test -z "$as_dirs" || eval "mkdir $as_dirs" 326 test -z "$as_dirs" || eval "mkdir $as_dirs"
319 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" 327 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
320 328
321 329
322} # as_fn_mkdir_p 330} # as_fn_mkdir_p
@@ -356,19 +364,19 @@ else
356fi # as_fn_arith 364fi # as_fn_arith
357 365
358 366
359# as_fn_error ERROR [LINENO LOG_FD] 367# as_fn_error STATUS ERROR [LINENO LOG_FD]
360# --------------------------------- 368# ----------------------------------------
361# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 369# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
362# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 370# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
363# script with status $?, using 1 if that was 0. 371# script with STATUS, using 1 if that was 0.
364as_fn_error () 372as_fn_error ()
365{ 373{
366 as_status=$?; test $as_status -eq 0 && as_status=1 374 as_status=$1; test $as_status -eq 0 && as_status=1
367 if test "$3"; then 375 if test "$4"; then
368 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 376 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
369 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 377 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
370 fi 378 fi
371 $as_echo "$as_me: error: $1" >&2 379 $as_echo "$as_me: error: $2" >&2
372 as_fn_exit $as_status 380 as_fn_exit $as_status
373} # as_fn_error 381} # as_fn_error
374 382
@@ -530,7 +538,7 @@ test -n "$DJDIR" || exec 7<&0 </dev/null
530exec 6>&1 538exec 6>&1
531 539
532# Name of the host. 540# Name of the host.
533# hostname on some systems (SVR3.2, Linux) returns a bogus exit status, 541# hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status,
534# so uname gets run too. 542# so uname gets run too.
535ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` 543ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q`
536 544
@@ -912,8 +920,9 @@ do
912 fi 920 fi
913 921
914 case $ac_option in 922 case $ac_option in
915 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 923 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
916 *) ac_optarg=yes ;; 924 *=) ac_optarg= ;;
925 *) ac_optarg=yes ;;
917 esac 926 esac
918 927
919 # Accept the important Cygnus configure options, so we can diagnose typos. 928 # Accept the important Cygnus configure options, so we can diagnose typos.
@@ -958,7 +967,7 @@ do
958 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 967 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
959 # Reject names that are not valid shell variable names. 968 # Reject names that are not valid shell variable names.
960 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 969 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
961 as_fn_error "invalid feature name: $ac_useropt" 970 as_fn_error $? "invalid feature name: $ac_useropt"
962 ac_useropt_orig=$ac_useropt 971 ac_useropt_orig=$ac_useropt
963 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 972 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
964 case $ac_user_opts in 973 case $ac_user_opts in
@@ -984,7 +993,7 @@ do
984 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 993 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
985 # Reject names that are not valid shell variable names. 994 # Reject names that are not valid shell variable names.
986 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 995 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
987 as_fn_error "invalid feature name: $ac_useropt" 996 as_fn_error $? "invalid feature name: $ac_useropt"
988 ac_useropt_orig=$ac_useropt 997 ac_useropt_orig=$ac_useropt
989 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 998 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
990 case $ac_user_opts in 999 case $ac_user_opts in
@@ -1188,7 +1197,7 @@ do
1188 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1197 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1189 # Reject names that are not valid shell variable names. 1198 # Reject names that are not valid shell variable names.
1190 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1199 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1191 as_fn_error "invalid package name: $ac_useropt" 1200 as_fn_error $? "invalid package name: $ac_useropt"
1192 ac_useropt_orig=$ac_useropt 1201 ac_useropt_orig=$ac_useropt
1193 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1202 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1194 case $ac_user_opts in 1203 case $ac_user_opts in
@@ -1204,7 +1213,7 @@ do
1204 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1213 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1205 # Reject names that are not valid shell variable names. 1214 # Reject names that are not valid shell variable names.
1206 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1215 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1207 as_fn_error "invalid package name: $ac_useropt" 1216 as_fn_error $? "invalid package name: $ac_useropt"
1208 ac_useropt_orig=$ac_useropt 1217 ac_useropt_orig=$ac_useropt
1209 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1218 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1210 case $ac_user_opts in 1219 case $ac_user_opts in
@@ -1234,8 +1243,8 @@ do
1234 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1243 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1235 x_libraries=$ac_optarg ;; 1244 x_libraries=$ac_optarg ;;
1236 1245
1237 -*) as_fn_error "unrecognized option: \`$ac_option' 1246 -*) as_fn_error $? "unrecognized option: \`$ac_option'
1238Try \`$0 --help' for more information." 1247Try \`$0 --help' for more information"
1239 ;; 1248 ;;
1240 1249
1241 *=*) 1250 *=*)
@@ -1243,7 +1252,7 @@ Try \`$0 --help' for more information."
1243 # Reject names that are not valid shell variable names. 1252 # Reject names that are not valid shell variable names.
1244 case $ac_envvar in #( 1253 case $ac_envvar in #(
1245 '' | [0-9]* | *[!_$as_cr_alnum]* ) 1254 '' | [0-9]* | *[!_$as_cr_alnum]* )
1246 as_fn_error "invalid variable name: \`$ac_envvar'" ;; 1255 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1247 esac 1256 esac
1248 eval $ac_envvar=\$ac_optarg 1257 eval $ac_envvar=\$ac_optarg
1249 export $ac_envvar ;; 1258 export $ac_envvar ;;
@@ -1253,7 +1262,7 @@ Try \`$0 --help' for more information."
1253 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1262 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1254 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1263 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1255 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1264 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1256 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1265 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1257 ;; 1266 ;;
1258 1267
1259 esac 1268 esac
@@ -1261,13 +1270,13 @@ done
1261 1270
1262if test -n "$ac_prev"; then 1271if test -n "$ac_prev"; then
1263 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1272 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1264 as_fn_error "missing argument to $ac_option" 1273 as_fn_error $? "missing argument to $ac_option"
1265fi 1274fi
1266 1275
1267if test -n "$ac_unrecognized_opts"; then 1276if test -n "$ac_unrecognized_opts"; then
1268 case $enable_option_checking in 1277 case $enable_option_checking in
1269 no) ;; 1278 no) ;;
1270 fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; 1279 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1271 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1280 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1272 esac 1281 esac
1273fi 1282fi
@@ -1290,7 +1299,7 @@ do
1290 [\\/$]* | ?:[\\/]* ) continue;; 1299 [\\/$]* | ?:[\\/]* ) continue;;
1291 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1300 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1292 esac 1301 esac
1293 as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" 1302 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1294done 1303done
1295 1304
1296# There might be people who depend on the old broken behavior: `$host' 1305# There might be people who depend on the old broken behavior: `$host'
@@ -1304,8 +1313,8 @@ target=$target_alias
1304if test "x$host_alias" != x; then 1313if test "x$host_alias" != x; then
1305 if test "x$build_alias" = x; then 1314 if test "x$build_alias" = x; then
1306 cross_compiling=maybe 1315 cross_compiling=maybe
1307 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1316 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
1308 If a cross compiler is detected then cross compile mode will be used." >&2 1317 If a cross compiler is detected then cross compile mode will be used" >&2
1309 elif test "x$build_alias" != "x$host_alias"; then 1318 elif test "x$build_alias" != "x$host_alias"; then
1310 cross_compiling=yes 1319 cross_compiling=yes
1311 fi 1320 fi
@@ -1320,9 +1329,9 @@ test "$silent" = yes && exec 6>/dev/null
1320ac_pwd=`pwd` && test -n "$ac_pwd" && 1329ac_pwd=`pwd` && test -n "$ac_pwd" &&
1321ac_ls_di=`ls -di .` && 1330ac_ls_di=`ls -di .` &&
1322ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1331ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1323 as_fn_error "working directory cannot be determined" 1332 as_fn_error $? "working directory cannot be determined"
1324test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1333test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1325 as_fn_error "pwd does not report name of working directory" 1334 as_fn_error $? "pwd does not report name of working directory"
1326 1335
1327 1336
1328# Find the source files, if location was not specified. 1337# Find the source files, if location was not specified.
@@ -1361,11 +1370,11 @@ else
1361fi 1370fi
1362if test ! -r "$srcdir/$ac_unique_file"; then 1371if test ! -r "$srcdir/$ac_unique_file"; then
1363 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1372 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1364 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" 1373 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1365fi 1374fi
1366ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1375ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1367ac_abs_confdir=`( 1376ac_abs_confdir=`(
1368 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" 1377 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1369 pwd)` 1378 pwd)`
1370# When building in place, set srcdir=. 1379# When building in place, set srcdir=.
1371if test "$ac_abs_confdir" = "$ac_pwd"; then 1380if test "$ac_abs_confdir" = "$ac_pwd"; then
@@ -1405,7 +1414,7 @@ Configuration:
1405 --help=short display options specific to this package 1414 --help=short display options specific to this package
1406 --help=recursive display the short help of all the included packages 1415 --help=recursive display the short help of all the included packages
1407 -V, --version display version information and exit 1416 -V, --version display version information and exit
1408 -q, --quiet, --silent do not print \`checking...' messages 1417 -q, --quiet, --silent do not print \`checking ...' messages
1409 --cache-file=FILE cache test results in FILE [disabled] 1418 --cache-file=FILE cache test results in FILE [disabled]
1410 -C, --config-cache alias for \`--cache-file=config.cache' 1419 -C, --config-cache alias for \`--cache-file=config.cache'
1411 -n, --no-create do not create output files 1420 -n, --no-create do not create output files
@@ -1624,9 +1633,9 @@ test -n "$ac_init_help" && exit $ac_status
1624if $ac_init_version; then 1633if $ac_init_version; then
1625 cat <<\_ACEOF 1634 cat <<\_ACEOF
1626emacs configure 24.0.50 1635emacs configure 24.0.50
1627generated by GNU Autoconf 2.65 1636generated by GNU Autoconf 2.68
1628 1637
1629Copyright (C) 2009 Free Software Foundation, Inc. 1638Copyright (C) 2010 Free Software Foundation, Inc.
1630This configure script is free software; the Free Software Foundation 1639This configure script is free software; the Free Software Foundation
1631gives unlimited permission to copy, distribute and modify it. 1640gives unlimited permission to copy, distribute and modify it.
1632_ACEOF 1641_ACEOF
@@ -1670,7 +1679,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
1670 1679
1671 ac_retval=1 1680 ac_retval=1
1672fi 1681fi
1673 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1682 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1674 as_fn_set_status $ac_retval 1683 as_fn_set_status $ac_retval
1675 1684
1676} # ac_fn_c_try_compile 1685} # ac_fn_c_try_compile
@@ -1716,7 +1725,7 @@ fi
1716 # interfere with the next link command; also delete a directory that is 1725 # interfere with the next link command; also delete a directory that is
1717 # left behind by Apple's compiler. We do this before executing the actions. 1726 # left behind by Apple's compiler. We do this before executing the actions.
1718 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1727 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1719 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1728 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1720 as_fn_set_status $ac_retval 1729 as_fn_set_status $ac_retval
1721 1730
1722} # ac_fn_c_try_link 1731} # ac_fn_c_try_link
@@ -1742,7 +1751,7 @@ $as_echo "$ac_try_echo"; } >&5
1742 mv -f conftest.er1 conftest.err 1751 mv -f conftest.er1 conftest.err
1743 fi 1752 fi
1744 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1753 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1745 test $ac_status = 0; } >/dev/null && { 1754 test $ac_status = 0; } > conftest.i && {
1746 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 1755 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1747 test ! -s conftest.err 1756 test ! -s conftest.err
1748 }; then : 1757 }; then :
@@ -1753,7 +1762,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
1753 1762
1754 ac_retval=1 1763 ac_retval=1
1755fi 1764fi
1756 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1765 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1757 as_fn_set_status $ac_retval 1766 as_fn_set_status $ac_retval
1758 1767
1759} # ac_fn_c_try_cpp 1768} # ac_fn_c_try_cpp
@@ -1766,10 +1775,10 @@ fi
1766ac_fn_c_check_header_mongrel () 1775ac_fn_c_check_header_mongrel ()
1767{ 1776{
1768 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1777 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1769 if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1778 if eval \${$3+:} false; then :
1770 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1779 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1771$as_echo_n "checking for $2... " >&6; } 1780$as_echo_n "checking for $2... " >&6; }
1772if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1781if eval \${$3+:} false; then :
1773 $as_echo_n "(cached) " >&6 1782 $as_echo_n "(cached) " >&6
1774fi 1783fi
1775eval ac_res=\$$3 1784eval ac_res=\$$3
@@ -1805,7 +1814,7 @@ if ac_fn_c_try_cpp "$LINENO"; then :
1805else 1814else
1806 ac_header_preproc=no 1815 ac_header_preproc=no
1807fi 1816fi
1808rm -f conftest.err conftest.$ac_ext 1817rm -f conftest.err conftest.i conftest.$ac_ext
1809{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 1818{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
1810$as_echo "$ac_header_preproc" >&6; } 1819$as_echo "$ac_header_preproc" >&6; }
1811 1820
@@ -1832,7 +1841,7 @@ $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1832esac 1841esac
1833 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1842 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1834$as_echo_n "checking for $2... " >&6; } 1843$as_echo_n "checking for $2... " >&6; }
1835if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1844if eval \${$3+:} false; then :
1836 $as_echo_n "(cached) " >&6 1845 $as_echo_n "(cached) " >&6
1837else 1846else
1838 eval "$3=\$ac_header_compiler" 1847 eval "$3=\$ac_header_compiler"
@@ -1841,7 +1850,7 @@ eval ac_res=\$$3
1841 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1850 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1842$as_echo "$ac_res" >&6; } 1851$as_echo "$ac_res" >&6; }
1843fi 1852fi
1844 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1853 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1845 1854
1846} # ac_fn_c_check_header_mongrel 1855} # ac_fn_c_check_header_mongrel
1847 1856
@@ -1882,7 +1891,7 @@ sed 's/^/| /' conftest.$ac_ext >&5
1882 ac_retval=$ac_status 1891 ac_retval=$ac_status
1883fi 1892fi
1884 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1893 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1885 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1894 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1886 as_fn_set_status $ac_retval 1895 as_fn_set_status $ac_retval
1887 1896
1888} # ac_fn_c_try_run 1897} # ac_fn_c_try_run
@@ -1896,7 +1905,7 @@ ac_fn_c_check_header_compile ()
1896 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1905 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1897 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1906 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1898$as_echo_n "checking for $2... " >&6; } 1907$as_echo_n "checking for $2... " >&6; }
1899if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1908if eval \${$3+:} false; then :
1900 $as_echo_n "(cached) " >&6 1909 $as_echo_n "(cached) " >&6
1901else 1910else
1902 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1911 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1914,19 +1923,22 @@ fi
1914eval ac_res=\$$3 1923eval ac_res=\$$3
1915 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1924 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1916$as_echo "$ac_res" >&6; } 1925$as_echo "$ac_res" >&6; }
1917 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1926 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1918 1927
1919} # ac_fn_c_check_header_compile 1928} # ac_fn_c_check_header_compile
1920 1929
1921# ac_fn_c_check_decl LINENO SYMBOL VAR 1930# ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES
1922# ------------------------------------ 1931# ---------------------------------------------
1923# Tests whether SYMBOL is declared, setting cache variable VAR accordingly. 1932# Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR
1933# accordingly.
1924ac_fn_c_check_decl () 1934ac_fn_c_check_decl ()
1925{ 1935{
1926 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1936 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1927 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $2 is declared" >&5 1937 as_decl_name=`echo $2|sed 's/ *(.*//'`
1928$as_echo_n "checking whether $2 is declared... " >&6; } 1938 as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
1929if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1939 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
1940$as_echo_n "checking whether $as_decl_name is declared... " >&6; }
1941if eval \${$3+:} false; then :
1930 $as_echo_n "(cached) " >&6 1942 $as_echo_n "(cached) " >&6
1931else 1943else
1932 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1944 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1935,8 +1947,12 @@ $4
1935int 1947int
1936main () 1948main ()
1937{ 1949{
1938#ifndef $2 1950#ifndef $as_decl_name
1939 (void) $2; 1951#ifdef __cplusplus
1952 (void) $as_decl_use;
1953#else
1954 (void) $as_decl_name;
1955#endif
1940#endif 1956#endif
1941 1957
1942 ; 1958 ;
@@ -1953,7 +1969,7 @@ fi
1953eval ac_res=\$$3 1969eval ac_res=\$$3
1954 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1970 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1955$as_echo "$ac_res" >&6; } 1971$as_echo "$ac_res" >&6; }
1956 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1972 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1957 1973
1958} # ac_fn_c_check_decl 1974} # ac_fn_c_check_decl
1959 1975
@@ -1965,7 +1981,7 @@ ac_fn_c_check_header_preproc ()
1965 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1981 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1966 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1982 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1967$as_echo_n "checking for $2... " >&6; } 1983$as_echo_n "checking for $2... " >&6; }
1968if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1984if eval \${$3+:} false; then :
1969 $as_echo_n "(cached) " >&6 1985 $as_echo_n "(cached) " >&6
1970else 1986else
1971 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1987 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -1977,12 +1993,12 @@ if ac_fn_c_try_cpp "$LINENO"; then :
1977else 1993else
1978 eval "$3=no" 1994 eval "$3=no"
1979fi 1995fi
1980rm -f conftest.err conftest.$ac_ext 1996rm -f conftest.err conftest.i conftest.$ac_ext
1981fi 1997fi
1982eval ac_res=\$$3 1998eval ac_res=\$$3
1983 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1999 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1984$as_echo "$ac_res" >&6; } 2000$as_echo "$ac_res" >&6; }
1985 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2001 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1986 2002
1987} # ac_fn_c_check_header_preproc 2003} # ac_fn_c_check_header_preproc
1988 2004
@@ -1995,7 +2011,7 @@ ac_fn_c_check_member ()
1995 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2011 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1996 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5 2012 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
1997$as_echo_n "checking for $2.$3... " >&6; } 2013$as_echo_n "checking for $2.$3... " >&6; }
1998if { as_var=$4; eval "test \"\${$as_var+set}\" = set"; }; then : 2014if eval \${$4+:} false; then :
1999 $as_echo_n "(cached) " >&6 2015 $as_echo_n "(cached) " >&6
2000else 2016else
2001 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2017 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2039,7 +2055,7 @@ fi
2039eval ac_res=\$$4 2055eval ac_res=\$$4
2040 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2056 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2041$as_echo "$ac_res" >&6; } 2057$as_echo "$ac_res" >&6; }
2042 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2058 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2043 2059
2044} # ac_fn_c_check_member 2060} # ac_fn_c_check_member
2045 2061
@@ -2051,7 +2067,7 @@ ac_fn_c_check_func ()
2051 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2067 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2052 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2068 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2053$as_echo_n "checking for $2... " >&6; } 2069$as_echo_n "checking for $2... " >&6; }
2054if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2070if eval \${$3+:} false; then :
2055 $as_echo_n "(cached) " >&6 2071 $as_echo_n "(cached) " >&6
2056else 2072else
2057 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2073 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -2106,7 +2122,7 @@ fi
2106eval ac_res=\$$3 2122eval ac_res=\$$3
2107 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2123 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2108$as_echo "$ac_res" >&6; } 2124$as_echo "$ac_res" >&6; }
2109 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2125 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2110 2126
2111} # ac_fn_c_check_func 2127} # ac_fn_c_check_func
2112 2128
@@ -2119,7 +2135,7 @@ ac_fn_c_check_type ()
2119 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2135 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2120 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2136 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2121$as_echo_n "checking for $2... " >&6; } 2137$as_echo_n "checking for $2... " >&6; }
2122if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2138if eval \${$3+:} false; then :
2123 $as_echo_n "(cached) " >&6 2139 $as_echo_n "(cached) " >&6
2124else 2140else
2125 eval "$3=no" 2141 eval "$3=no"
@@ -2160,7 +2176,7 @@ fi
2160eval ac_res=\$$3 2176eval ac_res=\$$3
2161 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2177 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2162$as_echo "$ac_res" >&6; } 2178$as_echo "$ac_res" >&6; }
2163 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2179 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2164 2180
2165} # ac_fn_c_check_type 2181} # ac_fn_c_check_type
2166cat >config.log <<_ACEOF 2182cat >config.log <<_ACEOF
@@ -2168,7 +2184,7 @@ This file contains any messages produced by compilers while
2168running configure, to aid debugging if configure makes a mistake. 2184running configure, to aid debugging if configure makes a mistake.
2169 2185
2170It was created by emacs $as_me 24.0.50, which was 2186It was created by emacs $as_me 24.0.50, which was
2171generated by GNU Autoconf 2.65. Invocation command line was 2187generated by GNU Autoconf 2.68. Invocation command line was
2172 2188
2173 $ $0 $@ 2189 $ $0 $@
2174 2190
@@ -2278,11 +2294,9 @@ trap 'exit_status=$?
2278 { 2294 {
2279 echo 2295 echo
2280 2296
2281 cat <<\_ASBOX 2297 $as_echo "## ---------------- ##
2282## ---------------- ##
2283## Cache variables. ## 2298## Cache variables. ##
2284## ---------------- ## 2299## ---------------- ##"
2285_ASBOX
2286 echo 2300 echo
2287 # The following way of writing the cache mishandles newlines in values, 2301 # The following way of writing the cache mishandles newlines in values,
2288( 2302(
@@ -2316,11 +2330,9 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
2316) 2330)
2317 echo 2331 echo
2318 2332
2319 cat <<\_ASBOX 2333 $as_echo "## ----------------- ##
2320## ----------------- ##
2321## Output variables. ## 2334## Output variables. ##
2322## ----------------- ## 2335## ----------------- ##"
2323_ASBOX
2324 echo 2336 echo
2325 for ac_var in $ac_subst_vars 2337 for ac_var in $ac_subst_vars
2326 do 2338 do
@@ -2333,11 +2345,9 @@ _ASBOX
2333 echo 2345 echo
2334 2346
2335 if test -n "$ac_subst_files"; then 2347 if test -n "$ac_subst_files"; then
2336 cat <<\_ASBOX 2348 $as_echo "## ------------------- ##
2337## ------------------- ##
2338## File substitutions. ## 2349## File substitutions. ##
2339## ------------------- ## 2350## ------------------- ##"
2340_ASBOX
2341 echo 2351 echo
2342 for ac_var in $ac_subst_files 2352 for ac_var in $ac_subst_files
2343 do 2353 do
@@ -2351,11 +2361,9 @@ _ASBOX
2351 fi 2361 fi
2352 2362
2353 if test -s confdefs.h; then 2363 if test -s confdefs.h; then
2354 cat <<\_ASBOX 2364 $as_echo "## ----------- ##
2355## ----------- ##
2356## confdefs.h. ## 2365## confdefs.h. ##
2357## ----------- ## 2366## ----------- ##"
2358_ASBOX
2359 echo 2367 echo
2360 cat confdefs.h 2368 cat confdefs.h
2361 echo 2369 echo
@@ -2410,7 +2418,12 @@ _ACEOF
2410ac_site_file1=NONE 2418ac_site_file1=NONE
2411ac_site_file2=NONE 2419ac_site_file2=NONE
2412if test -n "$CONFIG_SITE"; then 2420if test -n "$CONFIG_SITE"; then
2413 ac_site_file1=$CONFIG_SITE 2421 # We do not want a PATH search for config.site.
2422 case $CONFIG_SITE in #((
2423 -*) ac_site_file1=./$CONFIG_SITE;;
2424 */*) ac_site_file1=$CONFIG_SITE;;
2425 *) ac_site_file1=./$CONFIG_SITE;;
2426 esac
2414elif test "x$prefix" != xNONE; then 2427elif test "x$prefix" != xNONE; then
2415 ac_site_file1=$prefix/share/config.site 2428 ac_site_file1=$prefix/share/config.site
2416 ac_site_file2=$prefix/etc/config.site 2429 ac_site_file2=$prefix/etc/config.site
@@ -2425,7 +2438,11 @@ do
2425 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 2438 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2426$as_echo "$as_me: loading site script $ac_site_file" >&6;} 2439$as_echo "$as_me: loading site script $ac_site_file" >&6;}
2427 sed 's/^/| /' "$ac_site_file" >&5 2440 sed 's/^/| /' "$ac_site_file" >&5
2428 . "$ac_site_file" 2441 . "$ac_site_file" \
2442 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2443$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2444as_fn_error $? "failed to load site script $ac_site_file
2445See \`config.log' for more details" "$LINENO" 5; }
2429 fi 2446 fi
2430done 2447done
2431 2448
@@ -2506,7 +2523,7 @@ if $ac_cache_corrupted; then
2506$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2523$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2507 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 2524 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2508$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 2525$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2509 as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 2526 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
2510fi 2527fi
2511## -------------------- ## 2528## -------------------- ##
2512## Main body of script. ## 2529## Main body of script. ##
@@ -2680,7 +2697,7 @@ if test "${with_x_toolkit+set}" = set; then :
2680 g | gt | gtk ) val=gtk ;; 2697 g | gt | gtk ) val=gtk ;;
2681 gtk3 ) val=gtk3 ;; 2698 gtk3 ) val=gtk3 ;;
2682 * ) 2699 * )
2683as_fn_error "\`--with-x-toolkit=$withval' is invalid; 2700as_fn_error $? "\`--with-x-toolkit=$withval' is invalid;
2684this option's value should be \`yes', \`no', \`lucid', \`athena', \`motif', \`gtk' or 2701this option's value should be \`yes', \`no', \`lucid', \`athena', \`motif', \`gtk' or
2685\`gtk3'. \`yes' and \`gtk' are synonyms. \`athena' and \`lucid' are synonyms." "$LINENO" 5 2702\`gtk3'. \`yes' and \`gtk' are synonyms. \`athena' and \`lucid' are synonyms." "$LINENO" 5
2686 ;; 2703 ;;
@@ -2983,7 +3000,7 @@ do
2983 stringfreelist) ac_gc_check_string_free_list=1 ;; 3000 stringfreelist) ac_gc_check_string_free_list=1 ;;
2984 xmallocoverrun) ac_xmalloc_overrun=1 ;; 3001 xmallocoverrun) ac_xmalloc_overrun=1 ;;
2985 conslist) ac_gc_check_cons_list=1 ;; 3002 conslist) ac_gc_check_cons_list=1 ;;
2986 *) as_fn_error "unknown check category $check" "$LINENO" 5 ;; 3003 *) as_fn_error $? "unknown check category $check" "$LINENO" 5 ;;
2987 esac 3004 esac
2988done 3005done
2989IFS="$ac_save_IFS" 3006IFS="$ac_save_IFS"
@@ -3098,16 +3115,22 @@ fi
3098 3115
3099ac_aux_dir= 3116ac_aux_dir=
3100for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do 3117for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
3101 for ac_t in install-sh install.sh shtool; do 3118 if test -f "$ac_dir/install-sh"; then
3102 if test -f "$ac_dir/$ac_t"; then 3119 ac_aux_dir=$ac_dir
3103 ac_aux_dir=$ac_dir 3120 ac_install_sh="$ac_aux_dir/install-sh -c"
3104 ac_install_sh="$ac_aux_dir/$ac_t -c" 3121 break
3105 break 2 3122 elif test -f "$ac_dir/install.sh"; then
3106 fi 3123 ac_aux_dir=$ac_dir
3107 done 3124 ac_install_sh="$ac_aux_dir/install.sh -c"
3125 break
3126 elif test -f "$ac_dir/shtool"; then
3127 ac_aux_dir=$ac_dir
3128 ac_install_sh="$ac_aux_dir/shtool install -c"
3129 break
3130 fi
3108done 3131done
3109if test -z "$ac_aux_dir"; then 3132if test -z "$ac_aux_dir"; then
3110 as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 3133 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
3111fi 3134fi
3112 3135
3113# These three variables are undocumented and unsupported, 3136# These three variables are undocumented and unsupported,
@@ -3121,27 +3144,27 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
3121 3144
3122# Make sure we can run config.sub. 3145# Make sure we can run config.sub.
3123$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 3146$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
3124 as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 3147 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
3125 3148
3126{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 3149{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
3127$as_echo_n "checking build system type... " >&6; } 3150$as_echo_n "checking build system type... " >&6; }
3128if test "${ac_cv_build+set}" = set; then : 3151if ${ac_cv_build+:} false; then :
3129 $as_echo_n "(cached) " >&6 3152 $as_echo_n "(cached) " >&6
3130else 3153else
3131 ac_build_alias=$build_alias 3154 ac_build_alias=$build_alias
3132test "x$ac_build_alias" = x && 3155test "x$ac_build_alias" = x &&
3133 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 3156 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
3134test "x$ac_build_alias" = x && 3157test "x$ac_build_alias" = x &&
3135 as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 3158 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
3136ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 3159ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
3137 as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 3160 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
3138 3161
3139fi 3162fi
3140{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 3163{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
3141$as_echo "$ac_cv_build" >&6; } 3164$as_echo "$ac_cv_build" >&6; }
3142case $ac_cv_build in 3165case $ac_cv_build in
3143*-*-*) ;; 3166*-*-*) ;;
3144*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; 3167*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
3145esac 3168esac
3146build=$ac_cv_build 3169build=$ac_cv_build
3147ac_save_IFS=$IFS; IFS='-' 3170ac_save_IFS=$IFS; IFS='-'
@@ -3159,14 +3182,14 @@ case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
3159 3182
3160{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 3183{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
3161$as_echo_n "checking host system type... " >&6; } 3184$as_echo_n "checking host system type... " >&6; }
3162if test "${ac_cv_host+set}" = set; then : 3185if ${ac_cv_host+:} false; then :
3163 $as_echo_n "(cached) " >&6 3186 $as_echo_n "(cached) " >&6
3164else 3187else
3165 if test "x$host_alias" = x; then 3188 if test "x$host_alias" = x; then
3166 ac_cv_host=$ac_cv_build 3189 ac_cv_host=$ac_cv_build
3167else 3190else
3168 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 3191 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
3169 as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 3192 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
3170fi 3193fi
3171 3194
3172fi 3195fi
@@ -3174,7 +3197,7 @@ fi
3174$as_echo "$ac_cv_host" >&6; } 3197$as_echo "$ac_cv_host" >&6; }
3175case $ac_cv_host in 3198case $ac_cv_host in
3176*-*-*) ;; 3199*-*-*) ;;
3177*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; 3200*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
3178esac 3201esac
3179host=$ac_cv_host 3202host=$ac_cv_host
3180ac_save_IFS=$IFS; IFS='-' 3203ac_save_IFS=$IFS; IFS='-'
@@ -3468,7 +3491,7 @@ fi
3468 3491
3469 3492
3470if test $unported = yes; then 3493if test $unported = yes; then
3471 as_fn_error "Emacs hasn't been ported to \`${canonical}' systems. 3494 as_fn_error $? "Emacs hasn't been ported to \`${canonical}' systems.
3472Check \`etc/MACHINES' for recognized configuration names." "$LINENO" 5 3495Check \`etc/MACHINES' for recognized configuration names." "$LINENO" 5
3473fi 3496fi
3474 3497
@@ -3492,7 +3515,7 @@ if test -n "$ac_tool_prefix"; then
3492set dummy ${ac_tool_prefix}gcc; ac_word=$2 3515set dummy ${ac_tool_prefix}gcc; ac_word=$2
3493{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3516{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3494$as_echo_n "checking for $ac_word... " >&6; } 3517$as_echo_n "checking for $ac_word... " >&6; }
3495if test "${ac_cv_prog_CC+set}" = set; then : 3518if ${ac_cv_prog_CC+:} false; then :
3496 $as_echo_n "(cached) " >&6 3519 $as_echo_n "(cached) " >&6
3497else 3520else
3498 if test -n "$CC"; then 3521 if test -n "$CC"; then
@@ -3532,7 +3555,7 @@ if test -z "$ac_cv_prog_CC"; then
3532set dummy gcc; ac_word=$2 3555set dummy gcc; ac_word=$2
3533{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3556{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3534$as_echo_n "checking for $ac_word... " >&6; } 3557$as_echo_n "checking for $ac_word... " >&6; }
3535if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : 3558if ${ac_cv_prog_ac_ct_CC+:} false; then :
3536 $as_echo_n "(cached) " >&6 3559 $as_echo_n "(cached) " >&6
3537else 3560else
3538 if test -n "$ac_ct_CC"; then 3561 if test -n "$ac_ct_CC"; then
@@ -3585,7 +3608,7 @@ if test -z "$CC"; then
3585set dummy ${ac_tool_prefix}cc; ac_word=$2 3608set dummy ${ac_tool_prefix}cc; ac_word=$2
3586{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3609{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3587$as_echo_n "checking for $ac_word... " >&6; } 3610$as_echo_n "checking for $ac_word... " >&6; }
3588if test "${ac_cv_prog_CC+set}" = set; then : 3611if ${ac_cv_prog_CC+:} false; then :
3589 $as_echo_n "(cached) " >&6 3612 $as_echo_n "(cached) " >&6
3590else 3613else
3591 if test -n "$CC"; then 3614 if test -n "$CC"; then
@@ -3625,7 +3648,7 @@ if test -z "$CC"; then
3625set dummy cc; ac_word=$2 3648set dummy cc; ac_word=$2
3626{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3649{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3627$as_echo_n "checking for $ac_word... " >&6; } 3650$as_echo_n "checking for $ac_word... " >&6; }
3628if test "${ac_cv_prog_CC+set}" = set; then : 3651if ${ac_cv_prog_CC+:} false; then :
3629 $as_echo_n "(cached) " >&6 3652 $as_echo_n "(cached) " >&6
3630else 3653else
3631 if test -n "$CC"; then 3654 if test -n "$CC"; then
@@ -3684,7 +3707,7 @@ if test -z "$CC"; then
3684set dummy $ac_tool_prefix$ac_prog; ac_word=$2 3707set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3685{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3708{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3686$as_echo_n "checking for $ac_word... " >&6; } 3709$as_echo_n "checking for $ac_word... " >&6; }
3687if test "${ac_cv_prog_CC+set}" = set; then : 3710if ${ac_cv_prog_CC+:} false; then :
3688 $as_echo_n "(cached) " >&6 3711 $as_echo_n "(cached) " >&6
3689else 3712else
3690 if test -n "$CC"; then 3713 if test -n "$CC"; then
@@ -3728,7 +3751,7 @@ do
3728set dummy $ac_prog; ac_word=$2 3751set dummy $ac_prog; ac_word=$2
3729{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3752{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3730$as_echo_n "checking for $ac_word... " >&6; } 3753$as_echo_n "checking for $ac_word... " >&6; }
3731if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : 3754if ${ac_cv_prog_ac_ct_CC+:} false; then :
3732 $as_echo_n "(cached) " >&6 3755 $as_echo_n "(cached) " >&6
3733else 3756else
3734 if test -n "$ac_ct_CC"; then 3757 if test -n "$ac_ct_CC"; then
@@ -3782,8 +3805,8 @@ fi
3782 3805
3783test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3806test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3784$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3807$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3785as_fn_error "no acceptable C compiler found in \$PATH 3808as_fn_error $? "no acceptable C compiler found in \$PATH
3786See \`config.log' for more details." "$LINENO" 5; } 3809See \`config.log' for more details" "$LINENO" 5; }
3787 3810
3788# Provide some information about the compiler. 3811# Provide some information about the compiler.
3789$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 3812$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
@@ -3897,9 +3920,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
3897 3920
3898{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3921{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3899$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3922$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3900{ as_fn_set_status 77 3923as_fn_error 77 "C compiler cannot create executables
3901as_fn_error "C compiler cannot create executables 3924See \`config.log' for more details" "$LINENO" 5; }
3902See \`config.log' for more details." "$LINENO" 5; }; }
3903else 3925else
3904 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 3926 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3905$as_echo "yes" >&6; } 3927$as_echo "yes" >&6; }
@@ -3941,8 +3963,8 @@ done
3941else 3963else
3942 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3964 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3943$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3965$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3944as_fn_error "cannot compute suffix of executables: cannot compile and link 3966as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3945See \`config.log' for more details." "$LINENO" 5; } 3967See \`config.log' for more details" "$LINENO" 5; }
3946fi 3968fi
3947rm -f conftest conftest$ac_cv_exeext 3969rm -f conftest conftest$ac_cv_exeext
3948{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 3970{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
@@ -3999,9 +4021,9 @@ $as_echo "$ac_try_echo"; } >&5
3999 else 4021 else
4000 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4022 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4001$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4023$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4002as_fn_error "cannot run C compiled programs. 4024as_fn_error $? "cannot run C compiled programs.
4003If you meant to cross compile, use \`--host'. 4025If you meant to cross compile, use \`--host'.
4004See \`config.log' for more details." "$LINENO" 5; } 4026See \`config.log' for more details" "$LINENO" 5; }
4005 fi 4027 fi
4006 fi 4028 fi
4007fi 4029fi
@@ -4012,7 +4034,7 @@ rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
4012ac_clean_files=$ac_clean_files_save 4034ac_clean_files=$ac_clean_files_save
4013{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 4035{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
4014$as_echo_n "checking for suffix of object files... " >&6; } 4036$as_echo_n "checking for suffix of object files... " >&6; }
4015if test "${ac_cv_objext+set}" = set; then : 4037if ${ac_cv_objext+:} false; then :
4016 $as_echo_n "(cached) " >&6 4038 $as_echo_n "(cached) " >&6
4017else 4039else
4018 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4040 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4052,8 +4074,8 @@ sed 's/^/| /' conftest.$ac_ext >&5
4052 4074
4053{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4075{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4054$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4076$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4055as_fn_error "cannot compute suffix of object files: cannot compile 4077as_fn_error $? "cannot compute suffix of object files: cannot compile
4056See \`config.log' for more details." "$LINENO" 5; } 4078See \`config.log' for more details" "$LINENO" 5; }
4057fi 4079fi
4058rm -f conftest.$ac_cv_objext conftest.$ac_ext 4080rm -f conftest.$ac_cv_objext conftest.$ac_ext
4059fi 4081fi
@@ -4063,7 +4085,7 @@ OBJEXT=$ac_cv_objext
4063ac_objext=$OBJEXT 4085ac_objext=$OBJEXT
4064{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 4086{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
4065$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 4087$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
4066if test "${ac_cv_c_compiler_gnu+set}" = set; then : 4088if ${ac_cv_c_compiler_gnu+:} false; then :
4067 $as_echo_n "(cached) " >&6 4089 $as_echo_n "(cached) " >&6
4068else 4090else
4069 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4091 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4100,7 +4122,7 @@ ac_test_CFLAGS=${CFLAGS+set}
4100ac_save_CFLAGS=$CFLAGS 4122ac_save_CFLAGS=$CFLAGS
4101{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 4123{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
4102$as_echo_n "checking whether $CC accepts -g... " >&6; } 4124$as_echo_n "checking whether $CC accepts -g... " >&6; }
4103if test "${ac_cv_prog_cc_g+set}" = set; then : 4125if ${ac_cv_prog_cc_g+:} false; then :
4104 $as_echo_n "(cached) " >&6 4126 $as_echo_n "(cached) " >&6
4105else 4127else
4106 ac_save_c_werror_flag=$ac_c_werror_flag 4128 ac_save_c_werror_flag=$ac_c_werror_flag
@@ -4178,7 +4200,7 @@ else
4178fi 4200fi
4179{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 4201{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
4180$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 4202$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
4181if test "${ac_cv_prog_cc_c89+set}" = set; then : 4203if ${ac_cv_prog_cc_c89+:} false; then :
4182 $as_echo_n "(cached) " >&6 4204 $as_echo_n "(cached) " >&6
4183else 4205else
4184 ac_cv_prog_cc_c89=no 4206 ac_cv_prog_cc_c89=no
@@ -4286,7 +4308,7 @@ if test x"$GCC" != xyes && test x"$emacs_check_sunpro_c" = xyes && \
4286 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using a Sun C compiler" >&5 4308 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using a Sun C compiler" >&5
4287$as_echo_n "checking whether we are using a Sun C compiler... " >&6; } 4309$as_echo_n "checking whether we are using a Sun C compiler... " >&6; }
4288 4310
4289if test "${emacs_cv_sunpro_c+set}" = set; then : 4311if ${emacs_cv_sunpro_c+:} false; then :
4290 $as_echo_n "(cached) " >&6 4312 $as_echo_n "(cached) " >&6
4291else 4313else
4292 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4314 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4355,7 +4377,7 @@ if test -n "$CPP" && test -d "$CPP"; then
4355 CPP= 4377 CPP=
4356fi 4378fi
4357if test -z "$CPP"; then 4379if test -z "$CPP"; then
4358 if test "${ac_cv_prog_CPP+set}" = set; then : 4380 if ${ac_cv_prog_CPP+:} false; then :
4359 $as_echo_n "(cached) " >&6 4381 $as_echo_n "(cached) " >&6
4360else 4382else
4361 # Double quotes because CPP needs to be expanded 4383 # Double quotes because CPP needs to be expanded
@@ -4385,7 +4407,7 @@ else
4385 # Broken: fails on valid input. 4407 # Broken: fails on valid input.
4386continue 4408continue
4387fi 4409fi
4388rm -f conftest.err conftest.$ac_ext 4410rm -f conftest.err conftest.i conftest.$ac_ext
4389 4411
4390 # OK, works on sane cases. Now check whether nonexistent headers 4412 # OK, works on sane cases. Now check whether nonexistent headers
4391 # can be detected and how. 4413 # can be detected and how.
@@ -4401,11 +4423,11 @@ else
4401ac_preproc_ok=: 4423ac_preproc_ok=:
4402break 4424break
4403fi 4425fi
4404rm -f conftest.err conftest.$ac_ext 4426rm -f conftest.err conftest.i conftest.$ac_ext
4405 4427
4406done 4428done
4407# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 4429# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
4408rm -f conftest.err conftest.$ac_ext 4430rm -f conftest.i conftest.err conftest.$ac_ext
4409if $ac_preproc_ok; then : 4431if $ac_preproc_ok; then :
4410 break 4432 break
4411fi 4433fi
@@ -4444,7 +4466,7 @@ else
4444 # Broken: fails on valid input. 4466 # Broken: fails on valid input.
4445continue 4467continue
4446fi 4468fi
4447rm -f conftest.err conftest.$ac_ext 4469rm -f conftest.err conftest.i conftest.$ac_ext
4448 4470
4449 # OK, works on sane cases. Now check whether nonexistent headers 4471 # OK, works on sane cases. Now check whether nonexistent headers
4450 # can be detected and how. 4472 # can be detected and how.
@@ -4460,18 +4482,18 @@ else
4460ac_preproc_ok=: 4482ac_preproc_ok=:
4461break 4483break
4462fi 4484fi
4463rm -f conftest.err conftest.$ac_ext 4485rm -f conftest.err conftest.i conftest.$ac_ext
4464 4486
4465done 4487done
4466# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 4488# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
4467rm -f conftest.err conftest.$ac_ext 4489rm -f conftest.i conftest.err conftest.$ac_ext
4468if $ac_preproc_ok; then : 4490if $ac_preproc_ok; then :
4469 4491
4470else 4492else
4471 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 4493 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
4472$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4494$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
4473as_fn_error "C preprocessor \"$CPP\" fails sanity check 4495as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
4474See \`config.log' for more details." "$LINENO" 5; } 4496See \`config.log' for more details" "$LINENO" 5; }
4475fi 4497fi
4476 4498
4477ac_ext=c 4499ac_ext=c
@@ -4483,7 +4505,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
4483 4505
4484{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 4506{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
4485$as_echo_n "checking for grep that handles long lines and -e... " >&6; } 4507$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
4486if test "${ac_cv_path_GREP+set}" = set; then : 4508if ${ac_cv_path_GREP+:} false; then :
4487 $as_echo_n "(cached) " >&6 4509 $as_echo_n "(cached) " >&6
4488else 4510else
4489 if test -z "$GREP"; then 4511 if test -z "$GREP"; then
@@ -4532,7 +4554,7 @@ esac
4532 done 4554 done
4533IFS=$as_save_IFS 4555IFS=$as_save_IFS
4534 if test -z "$ac_cv_path_GREP"; then 4556 if test -z "$ac_cv_path_GREP"; then
4535 as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4557 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4536 fi 4558 fi
4537else 4559else
4538 ac_cv_path_GREP=$GREP 4560 ac_cv_path_GREP=$GREP
@@ -4546,7 +4568,7 @@ $as_echo "$ac_cv_path_GREP" >&6; }
4546 4568
4547{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 4569{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
4548$as_echo_n "checking for egrep... " >&6; } 4570$as_echo_n "checking for egrep... " >&6; }
4549if test "${ac_cv_path_EGREP+set}" = set; then : 4571if ${ac_cv_path_EGREP+:} false; then :
4550 $as_echo_n "(cached) " >&6 4572 $as_echo_n "(cached) " >&6
4551else 4573else
4552 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 4574 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
@@ -4598,7 +4620,7 @@ esac
4598 done 4620 done
4599IFS=$as_save_IFS 4621IFS=$as_save_IFS
4600 if test -z "$ac_cv_path_EGREP"; then 4622 if test -z "$ac_cv_path_EGREP"; then
4601 as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4623 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4602 fi 4624 fi
4603else 4625else
4604 ac_cv_path_EGREP=$EGREP 4626 ac_cv_path_EGREP=$EGREP
@@ -4613,7 +4635,7 @@ $as_echo "$ac_cv_path_EGREP" >&6; }
4613 4635
4614{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 4636{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
4615$as_echo_n "checking for ANSI C header files... " >&6; } 4637$as_echo_n "checking for ANSI C header files... " >&6; }
4616if test "${ac_cv_header_stdc+set}" = set; then : 4638if ${ac_cv_header_stdc+:} false; then :
4617 $as_echo_n "(cached) " >&6 4639 $as_echo_n "(cached) " >&6
4618else 4640else
4619 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4641 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4730,8 +4752,7 @@ do :
4730 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4752 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4731ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 4753ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
4732" 4754"
4733eval as_val=\$$as_ac_Header 4755if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4734 if test "x$as_val" = x""yes; then :
4735 cat >>confdefs.h <<_ACEOF 4756 cat >>confdefs.h <<_ACEOF
4736#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4757#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4737_ACEOF 4758_ACEOF
@@ -4743,7 +4764,7 @@ done
4743 4764
4744 4765
4745 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" 4766 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
4746if test "x$ac_cv_header_minix_config_h" = x""yes; then : 4767if test "x$ac_cv_header_minix_config_h" = xyes; then :
4747 MINIX=yes 4768 MINIX=yes
4748else 4769else
4749 MINIX= 4770 MINIX=
@@ -4765,7 +4786,7 @@ $as_echo "#define _MINIX 1" >>confdefs.h
4765 4786
4766 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 4787 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
4767$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } 4788$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
4768if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : 4789if ${ac_cv_safe_to_define___extensions__+:} false; then :
4769 $as_echo_n "(cached) " >&6 4790 $as_echo_n "(cached) " >&6
4770else 4791else
4771 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4792 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -4945,7 +4966,7 @@ if test -n "$CPP" && test -d "$CPP"; then
4945 CPP= 4966 CPP=
4946fi 4967fi
4947if test -z "$CPP"; then 4968if test -z "$CPP"; then
4948 if test "${ac_cv_prog_CPP+set}" = set; then : 4969 if ${ac_cv_prog_CPP+:} false; then :
4949 $as_echo_n "(cached) " >&6 4970 $as_echo_n "(cached) " >&6
4950else 4971else
4951 # Double quotes because CPP needs to be expanded 4972 # Double quotes because CPP needs to be expanded
@@ -4975,7 +4996,7 @@ else
4975 # Broken: fails on valid input. 4996 # Broken: fails on valid input.
4976continue 4997continue
4977fi 4998fi
4978rm -f conftest.err conftest.$ac_ext 4999rm -f conftest.err conftest.i conftest.$ac_ext
4979 5000
4980 # OK, works on sane cases. Now check whether nonexistent headers 5001 # OK, works on sane cases. Now check whether nonexistent headers
4981 # can be detected and how. 5002 # can be detected and how.
@@ -4991,11 +5012,11 @@ else
4991ac_preproc_ok=: 5012ac_preproc_ok=:
4992break 5013break
4993fi 5014fi
4994rm -f conftest.err conftest.$ac_ext 5015rm -f conftest.err conftest.i conftest.$ac_ext
4995 5016
4996done 5017done
4997# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5018# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
4998rm -f conftest.err conftest.$ac_ext 5019rm -f conftest.i conftest.err conftest.$ac_ext
4999if $ac_preproc_ok; then : 5020if $ac_preproc_ok; then :
5000 break 5021 break
5001fi 5022fi
@@ -5034,7 +5055,7 @@ else
5034 # Broken: fails on valid input. 5055 # Broken: fails on valid input.
5035continue 5056continue
5036fi 5057fi
5037rm -f conftest.err conftest.$ac_ext 5058rm -f conftest.err conftest.i conftest.$ac_ext
5038 5059
5039 # OK, works on sane cases. Now check whether nonexistent headers 5060 # OK, works on sane cases. Now check whether nonexistent headers
5040 # can be detected and how. 5061 # can be detected and how.
@@ -5050,18 +5071,18 @@ else
5050ac_preproc_ok=: 5071ac_preproc_ok=:
5051break 5072break
5052fi 5073fi
5053rm -f conftest.err conftest.$ac_ext 5074rm -f conftest.err conftest.i conftest.$ac_ext
5054 5075
5055done 5076done
5056# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5077# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5057rm -f conftest.err conftest.$ac_ext 5078rm -f conftest.i conftest.err conftest.$ac_ext
5058if $ac_preproc_ok; then : 5079if $ac_preproc_ok; then :
5059 5080
5060else 5081else
5061 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 5082 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
5062$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 5083$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
5063as_fn_error "C preprocessor \"$CPP\" fails sanity check 5084as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
5064See \`config.log' for more details." "$LINENO" 5; } 5085See \`config.log' for more details" "$LINENO" 5; }
5065fi 5086fi
5066 5087
5067ac_ext=c 5088ac_ext=c
@@ -5087,7 +5108,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
5087{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 5108{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
5088$as_echo_n "checking for a BSD-compatible install... " >&6; } 5109$as_echo_n "checking for a BSD-compatible install... " >&6; }
5089if test -z "$INSTALL"; then 5110if test -z "$INSTALL"; then
5090if test "${ac_cv_path_install+set}" = set; then : 5111if ${ac_cv_path_install+:} false; then :
5091 $as_echo_n "(cached) " >&6 5112 $as_echo_n "(cached) " >&6
5092else 5113else
5093 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 5114 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -5169,7 +5190,7 @@ if test "x$RANLIB" = x; then
5169set dummy ${ac_tool_prefix}ranlib; ac_word=$2 5190set dummy ${ac_tool_prefix}ranlib; ac_word=$2
5170{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5191{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5171$as_echo_n "checking for $ac_word... " >&6; } 5192$as_echo_n "checking for $ac_word... " >&6; }
5172if test "${ac_cv_prog_RANLIB+set}" = set; then : 5193if ${ac_cv_prog_RANLIB+:} false; then :
5173 $as_echo_n "(cached) " >&6 5194 $as_echo_n "(cached) " >&6
5174else 5195else
5175 if test -n "$RANLIB"; then 5196 if test -n "$RANLIB"; then
@@ -5209,7 +5230,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
5209set dummy ranlib; ac_word=$2 5230set dummy ranlib; ac_word=$2
5210{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5231{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5211$as_echo_n "checking for $ac_word... " >&6; } 5232$as_echo_n "checking for $ac_word... " >&6; }
5212if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : 5233if ${ac_cv_prog_ac_ct_RANLIB+:} false; then :
5213 $as_echo_n "(cached) " >&6 5234 $as_echo_n "(cached) " >&6
5214else 5235else
5215 if test -n "$ac_ct_RANLIB"; then 5236 if test -n "$ac_ct_RANLIB"; then
@@ -5264,7 +5285,7 @@ fi
5264## is running in i386 mode, we can help them out. 5285## is running in i386 mode, we can help them out.
5265if test "$machine" = "amdx86-64"; then 5286if test "$machine" = "amdx86-64"; then
5266 ac_fn_c_check_decl "$LINENO" "i386" "ac_cv_have_decl_i386" "$ac_includes_default" 5287 ac_fn_c_check_decl "$LINENO" "i386" "ac_cv_have_decl_i386" "$ac_includes_default"
5267if test "x$ac_cv_have_decl_i386" = x""yes; then : 5288if test "x$ac_cv_have_decl_i386" = xyes; then :
5268 5289
5269fi 5290fi
5270 5291
@@ -5279,7 +5300,7 @@ fi
5279set dummy install-info; ac_word=$2 5300set dummy install-info; ac_word=$2
5280{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5301{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5281$as_echo_n "checking for $ac_word... " >&6; } 5302$as_echo_n "checking for $ac_word... " >&6; }
5282if test "${ac_cv_path_INSTALL_INFO+set}" = set; then : 5303if ${ac_cv_path_INSTALL_INFO+:} false; then :
5283 $as_echo_n "(cached) " >&6 5304 $as_echo_n "(cached) " >&6
5284else 5305else
5285 case $INSTALL_INFO in 5306 case $INSTALL_INFO in
@@ -5319,7 +5340,7 @@ fi
5319set dummy install-info; ac_word=$2 5340set dummy install-info; ac_word=$2
5320{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5341{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5321$as_echo_n "checking for $ac_word... " >&6; } 5342$as_echo_n "checking for $ac_word... " >&6; }
5322if test "${ac_cv_path_INSTALL_INFO+set}" = set; then : 5343if ${ac_cv_path_INSTALL_INFO+:} false; then :
5323 $as_echo_n "(cached) " >&6 5344 $as_echo_n "(cached) " >&6
5324else 5345else
5325 case $INSTALL_INFO in 5346 case $INSTALL_INFO in
@@ -5359,7 +5380,7 @@ fi
5359set dummy install-info; ac_word=$2 5380set dummy install-info; ac_word=$2
5360{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5381{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5361$as_echo_n "checking for $ac_word... " >&6; } 5382$as_echo_n "checking for $ac_word... " >&6; }
5362if test "${ac_cv_path_INSTALL_INFO+set}" = set; then : 5383if ${ac_cv_path_INSTALL_INFO+:} false; then :
5363 $as_echo_n "(cached) " >&6 5384 $as_echo_n "(cached) " >&6
5364else 5385else
5365 case $INSTALL_INFO in 5386 case $INSTALL_INFO in
@@ -5400,7 +5421,7 @@ fi
5400set dummy gzip; ac_word=$2 5421set dummy gzip; ac_word=$2
5401{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5422{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5402$as_echo_n "checking for $ac_word... " >&6; } 5423$as_echo_n "checking for $ac_word... " >&6; }
5403if test "${ac_cv_path_GZIP_PROG+set}" = set; then : 5424if ${ac_cv_path_GZIP_PROG+:} false; then :
5404 $as_echo_n "(cached) " >&6 5425 $as_echo_n "(cached) " >&6
5405else 5426else
5406 case $GZIP_PROG in 5427 case $GZIP_PROG in
@@ -5443,7 +5464,7 @@ fi
5443set dummy makeinfo; ac_word=$2 5464set dummy makeinfo; ac_word=$2
5444{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5465{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5445$as_echo_n "checking for $ac_word... " >&6; } 5466$as_echo_n "checking for $ac_word... " >&6; }
5446if test "${ac_cv_path_MAKEINFO+set}" = set; then : 5467if ${ac_cv_path_MAKEINFO+:} false; then :
5447 $as_echo_n "(cached) " >&6 5468 $as_echo_n "(cached) " >&6
5448else 5469else
5449 case $MAKEINFO in 5470 case $MAKEINFO in
@@ -5498,7 +5519,7 @@ if test "$MAKEINFO" = "no"; then
5498 if test "x${with_makeinfo}" = "xno"; then 5519 if test "x${with_makeinfo}" = "xno"; then
5499 MAKEINFO=off 5520 MAKEINFO=off
5500 elif test ! -e $srcdir/info/emacs; then 5521 elif test ! -e $srcdir/info/emacs; then
5501 as_fn_error "You do not seem to have makeinfo >= 4.6, and your 5522 as_fn_error $? "You do not seem to have makeinfo >= 4.6, and your
5502source tree does not seem to have pre-built manuals in the \`info' directory. 5523source tree does not seem to have pre-built manuals in the \`info' directory.
5503Either install a suitable version of makeinfo, or re-run configure 5524Either install a suitable version of makeinfo, or re-run configure
5504with the \`--without-makeinfo' option to build without the manuals. " "$LINENO" 5 5525with the \`--without-makeinfo' option to build without the manuals. " "$LINENO" 5
@@ -5526,7 +5547,14 @@ fi
5526$as_echo_n "checking for -znocombreloc... " >&6; } 5547$as_echo_n "checking for -znocombreloc... " >&6; }
5527cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5548cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5528/* end confdefs.h. */ 5549/* end confdefs.h. */
5529main(){return 0;} 5550
5551int
5552main ()
5553{
5554
5555 ;
5556 return 0;
5557}
5530_ACEOF 5558_ACEOF
5531if ac_fn_c_try_link "$LINENO"; then : 5559if ac_fn_c_try_link "$LINENO"; then :
5532 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 5560 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
@@ -5637,7 +5665,7 @@ esac
5637C_SWITCH_MACHINE= 5665C_SWITCH_MACHINE=
5638if test "$machine" = "alpha"; then 5666if test "$machine" = "alpha"; then
5639 ac_fn_c_check_decl "$LINENO" "__ELF__" "ac_cv_have_decl___ELF__" "$ac_includes_default" 5667 ac_fn_c_check_decl "$LINENO" "__ELF__" "ac_cv_have_decl___ELF__" "$ac_includes_default"
5640if test "x$ac_cv_have_decl___ELF__" = x""yes; then : 5668if test "x$ac_cv_have_decl___ELF__" = xyes; then :
5641 5669
5642fi 5670fi
5643 5671
@@ -5650,7 +5678,7 @@ fi
5650 if test "x$GCC" = "xyes"; then 5678 if test "x$GCC" = "xyes"; then
5651 C_SWITCH_MACHINE="-fno-common" 5679 C_SWITCH_MACHINE="-fno-common"
5652 else 5680 else
5653 as_fn_error "What gives? Fix me if DEC Unix supports ELF now." "$LINENO" 5 5681 as_fn_error $? "What gives? Fix me if DEC Unix supports ELF now." "$LINENO" 5
5654 fi 5682 fi
5655 else 5683 else
5656 UNEXEC_OBJ=unexalpha.o 5684 UNEXEC_OBJ=unexalpha.o
@@ -5707,7 +5735,7 @@ if test "$enable_largefile" != no; then
5707 5735
5708 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5 5736 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for special C compiler options needed for large files" >&5
5709$as_echo_n "checking for special C compiler options needed for large files... " >&6; } 5737$as_echo_n "checking for special C compiler options needed for large files... " >&6; }
5710if test "${ac_cv_sys_largefile_CC+set}" = set; then : 5738if ${ac_cv_sys_largefile_CC+:} false; then :
5711 $as_echo_n "(cached) " >&6 5739 $as_echo_n "(cached) " >&6
5712else 5740else
5713 ac_cv_sys_largefile_CC=no 5741 ac_cv_sys_largefile_CC=no
@@ -5758,7 +5786,7 @@ $as_echo "$ac_cv_sys_largefile_CC" >&6; }
5758 5786
5759 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5 5787 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _FILE_OFFSET_BITS value needed for large files" >&5
5760$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; } 5788$as_echo_n "checking for _FILE_OFFSET_BITS value needed for large files... " >&6; }
5761if test "${ac_cv_sys_file_offset_bits+set}" = set; then : 5789if ${ac_cv_sys_file_offset_bits+:} false; then :
5762 $as_echo_n "(cached) " >&6 5790 $as_echo_n "(cached) " >&6
5763else 5791else
5764 while :; do 5792 while :; do
@@ -5827,7 +5855,7 @@ rm -rf conftest*
5827 if test $ac_cv_sys_file_offset_bits = unknown; then 5855 if test $ac_cv_sys_file_offset_bits = unknown; then
5828 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5 5856 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGE_FILES value needed for large files" >&5
5829$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; } 5857$as_echo_n "checking for _LARGE_FILES value needed for large files... " >&6; }
5830if test "${ac_cv_sys_large_files+set}" = set; then : 5858if ${ac_cv_sys_large_files+:} false; then :
5831 $as_echo_n "(cached) " >&6 5859 $as_echo_n "(cached) " >&6
5832else 5860else
5833 while :; do 5861 while :; do
@@ -5928,7 +5956,7 @@ else
5928 ## Some platforms don't use any of these files, so it is not 5956 ## Some platforms don't use any of these files, so it is not
5929 ## appropriate to put this test outside the if block. 5957 ## appropriate to put this test outside the if block.
5930 test -e $CRT_DIR/crtn.o || test -e $CRT_DIR/crt0.o || \ 5958 test -e $CRT_DIR/crtn.o || test -e $CRT_DIR/crt0.o || \
5931 as_fn_error "crt*.o not found in specified location." "$LINENO" 5 5959 as_fn_error $? "crt*.o not found in specified location." "$LINENO" 5
5932 5960
5933fi 5961fi
5934 5962
@@ -5983,8 +6011,7 @@ if test "${with_sound}" != "no"; then
5983do : 6011do :
5984 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 6012 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
5985ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 6013ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
5986eval as_val=\$$as_ac_Header 6014if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
5987 if test "x$as_val" = x""yes; then :
5988 cat >>confdefs.h <<_ACEOF 6015 cat >>confdefs.h <<_ACEOF
5989#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 6016#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
5990_ACEOF 6017_ACEOF
@@ -5996,7 +6023,7 @@ done
5996 # Emulation library used on NetBSD. 6023 # Emulation library used on NetBSD.
5997 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5 6024 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for _oss_ioctl in -lossaudio" >&5
5998$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; } 6025$as_echo_n "checking for _oss_ioctl in -lossaudio... " >&6; }
5999if test "${ac_cv_lib_ossaudio__oss_ioctl+set}" = set; then : 6026if ${ac_cv_lib_ossaudio__oss_ioctl+:} false; then :
6000 $as_echo_n "(cached) " >&6 6027 $as_echo_n "(cached) " >&6
6001else 6028else
6002 ac_check_lib_save_LIBS=$LIBS 6029 ac_check_lib_save_LIBS=$LIBS
@@ -6030,7 +6057,7 @@ LIBS=$ac_check_lib_save_LIBS
6030fi 6057fi
6031{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5 6058{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ossaudio__oss_ioctl" >&5
6032$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; } 6059$as_echo "$ac_cv_lib_ossaudio__oss_ioctl" >&6; }
6033if test "x$ac_cv_lib_ossaudio__oss_ioctl" = x""yes; then : 6060if test "x$ac_cv_lib_ossaudio__oss_ioctl" = xyes; then :
6034 LIBSOUND=-lossaudio 6061 LIBSOUND=-lossaudio
6035else 6062else
6036 LIBSOUND= 6063 LIBSOUND=
@@ -6047,7 +6074,7 @@ fi
6047set dummy pkg-config; ac_word=$2 6074set dummy pkg-config; ac_word=$2
6048{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6075{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6049$as_echo_n "checking for $ac_word... " >&6; } 6076$as_echo_n "checking for $ac_word... " >&6; }
6050if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 6077if ${ac_cv_path_PKG_CONFIG+:} false; then :
6051 $as_echo_n "(cached) " >&6 6078 $as_echo_n "(cached) " >&6
6052else 6079else
6053 case $PKG_CONFIG in 6080 case $PKG_CONFIG in
@@ -6175,7 +6202,7 @@ else
6175fi 6202fi
6176rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6203rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6177 if test "$emacs_alsa_subdir" != yes; then 6204 if test "$emacs_alsa_subdir" != yes; then
6178 as_fn_error "pkg-config found alsa, but it does not compile. See config.log for error messages." "$LINENO" 5 6205 as_fn_error $? "pkg-config found alsa, but it does not compile. See config.log for error messages." "$LINENO" 5
6179 fi 6206 fi
6180 ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE" 6207 ALSA_CFLAGS="$ALSA_CFLAGS -DALSA_SUBDIR_INCLUDE"
6181 fi 6208 fi
@@ -6210,8 +6237,7 @@ for ac_header in sys/select.h sys/timeb.h sys/time.h unistd.h utime.h \
6210do : 6237do :
6211 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 6238 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
6212ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 6239ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
6213eval as_val=\$$as_ac_Header 6240if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
6214 if test "x$as_val" = x""yes; then :
6215 cat >>confdefs.h <<_ACEOF 6241 cat >>confdefs.h <<_ACEOF
6216#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 6242#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
6217_ACEOF 6243_ACEOF
@@ -6252,7 +6278,7 @@ fi
6252for ac_header in term.h 6278for ac_header in term.h
6253do : 6279do :
6254 ac_fn_c_check_header_preproc "$LINENO" "term.h" "ac_cv_header_term_h" 6280 ac_fn_c_check_header_preproc "$LINENO" "term.h" "ac_cv_header_term_h"
6255if test "x$ac_cv_header_term_h" = x""yes; then : 6281if test "x$ac_cv_header_term_h" = xyes; then :
6256 cat >>confdefs.h <<_ACEOF 6282 cat >>confdefs.h <<_ACEOF
6257#define HAVE_TERM_H 1 6283#define HAVE_TERM_H 1
6258_ACEOF 6284_ACEOF
@@ -6263,7 +6289,7 @@ done
6263 6289
6264{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 6290{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
6265$as_echo_n "checking for ANSI C header files... " >&6; } 6291$as_echo_n "checking for ANSI C header files... " >&6; }
6266if test "${ac_cv_header_stdc+set}" = set; then : 6292if ${ac_cv_header_stdc+:} false; then :
6267 $as_echo_n "(cached) " >&6 6293 $as_echo_n "(cached) " >&6
6268else 6294else
6269 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6295 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6375,7 +6401,7 @@ fi
6375 6401
6376{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5 6402{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether time.h and sys/time.h may both be included" >&5
6377$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; } 6403$as_echo_n "checking whether time.h and sys/time.h may both be included... " >&6; }
6378if test "${ac_cv_header_time+set}" = set; then : 6404if ${ac_cv_header_time+:} false; then :
6379 $as_echo_n "(cached) " >&6 6405 $as_echo_n "(cached) " >&6
6380else 6406else
6381 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6407 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6409,7 +6435,7 @@ $as_echo "#define TIME_WITH_SYS_TIME 1" >>confdefs.h
6409fi 6435fi
6410 6436
6411ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "$ac_includes_default" 6437ac_fn_c_check_decl "$LINENO" "sys_siglist" "ac_cv_have_decl_sys_siglist" "$ac_includes_default"
6412if test "x$ac_cv_have_decl_sys_siglist" = x""yes; then : 6438if test "x$ac_cv_have_decl_sys_siglist" = xyes; then :
6413 ac_have_decl=1 6439 ac_have_decl=1
6414else 6440else
6415 ac_have_decl=0 6441 ac_have_decl=0
@@ -6422,7 +6448,7 @@ _ACEOF
6422if test $ac_cv_have_decl_sys_siglist != yes; then 6448if test $ac_cv_have_decl_sys_siglist != yes; then
6423 # For Tru64, at least: 6449 # For Tru64, at least:
6424 ac_fn_c_check_decl "$LINENO" "__sys_siglist" "ac_cv_have_decl___sys_siglist" "$ac_includes_default" 6450 ac_fn_c_check_decl "$LINENO" "__sys_siglist" "ac_cv_have_decl___sys_siglist" "$ac_includes_default"
6425if test "x$ac_cv_have_decl___sys_siglist" = x""yes; then : 6451if test "x$ac_cv_have_decl___sys_siglist" = xyes; then :
6426 ac_have_decl=1 6452 ac_have_decl=1
6427else 6453else
6428 ac_have_decl=0 6454 ac_have_decl=0
@@ -6440,7 +6466,7 @@ $as_echo "#define sys_siglist __sys_siglist" >>confdefs.h
6440fi 6466fi
6441{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 6467{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5
6442$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } 6468$as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; }
6443if test "${ac_cv_header_sys_wait_h+set}" = set; then : 6469if ${ac_cv_header_sys_wait_h+:} false; then :
6444 $as_echo_n "(cached) " >&6 6470 $as_echo_n "(cached) " >&6
6445else 6471else
6446 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6472 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6482,7 +6508,7 @@ fi
6482 6508
6483{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utimbuf" >&5 6509{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utimbuf" >&5
6484$as_echo_n "checking for struct utimbuf... " >&6; } 6510$as_echo_n "checking for struct utimbuf... " >&6; }
6485if test "${emacs_cv_struct_utimbuf+set}" = set; then : 6511if ${emacs_cv_struct_utimbuf+:} false; then :
6486 $as_echo_n "(cached) " >&6 6512 $as_echo_n "(cached) " >&6
6487else 6513else
6488 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6514 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6525,7 +6551,7 @@ fi
6525 6551
6526{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 6552{ $as_echo "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5
6527$as_echo_n "checking return type of signal handlers... " >&6; } 6553$as_echo_n "checking return type of signal handlers... " >&6; }
6528if test "${ac_cv_type_signal+set}" = set; then : 6554if ${ac_cv_type_signal+:} false; then :
6529 $as_echo_n "(cached) " >&6 6555 $as_echo_n "(cached) " >&6
6530else 6556else
6531 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6557 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6559,7 +6585,7 @@ _ACEOF
6559 6585
6560{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for speed_t" >&5 6586{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for speed_t" >&5
6561$as_echo_n "checking for speed_t... " >&6; } 6587$as_echo_n "checking for speed_t... " >&6; }
6562if test "${emacs_cv_speed_t+set}" = set; then : 6588if ${emacs_cv_speed_t+:} false; then :
6563 $as_echo_n "(cached) " >&6 6589 $as_echo_n "(cached) " >&6
6564else 6590else
6565 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6591 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6590,7 +6616,7 @@ fi
6590 6616
6591{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timeval" >&5 6617{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct timeval" >&5
6592$as_echo_n "checking for struct timeval... " >&6; } 6618$as_echo_n "checking for struct timeval... " >&6; }
6593if test "${emacs_cv_struct_timeval+set}" = set; then : 6619if ${emacs_cv_struct_timeval+:} false; then :
6594 $as_echo_n "(cached) " >&6 6620 $as_echo_n "(cached) " >&6
6595else 6621else
6596 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6622 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6631,7 +6657,7 @@ fi
6631 6657
6632{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct exception" >&5 6658{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct exception" >&5
6633$as_echo_n "checking for struct exception... " >&6; } 6659$as_echo_n "checking for struct exception... " >&6; }
6634if test "${emacs_cv_struct_exception+set}" = set; then : 6660if ${emacs_cv_struct_exception+:} false; then :
6635 $as_echo_n "(cached) " >&6 6661 $as_echo_n "(cached) " >&6
6636else 6662else
6637 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6663 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6664,7 +6690,7 @@ fi
6664for ac_header in sys/socket.h 6690for ac_header in sys/socket.h
6665do : 6691do :
6666 ac_fn_c_check_header_mongrel "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default" 6692 ac_fn_c_check_header_mongrel "$LINENO" "sys/socket.h" "ac_cv_header_sys_socket_h" "$ac_includes_default"
6667if test "x$ac_cv_header_sys_socket_h" = x""yes; then : 6693if test "x$ac_cv_header_sys_socket_h" = xyes; then :
6668 cat >>confdefs.h <<_ACEOF 6694 cat >>confdefs.h <<_ACEOF
6669#define HAVE_SYS_SOCKET_H 1 6695#define HAVE_SYS_SOCKET_H 1
6670_ACEOF 6696_ACEOF
@@ -6680,7 +6706,7 @@ do :
6680#include <sys/socket.h> 6706#include <sys/socket.h>
6681#endif 6707#endif
6682" 6708"
6683if test "x$ac_cv_header_net_if_h" = x""yes; then : 6709if test "x$ac_cv_header_net_if_h" = xyes; then :
6684 cat >>confdefs.h <<_ACEOF 6710 cat >>confdefs.h <<_ACEOF
6685#define HAVE_NET_IF_H 1 6711#define HAVE_NET_IF_H 1
6686_ACEOF 6712_ACEOF
@@ -6692,7 +6718,7 @@ done
6692 6718
6693{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 6719{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5
6694$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; } 6720$as_echo_n "checking whether struct tm is in sys/time.h or time.h... " >&6; }
6695if test "${ac_cv_struct_tm+set}" = set; then : 6721if ${ac_cv_struct_tm+:} false; then :
6696 $as_echo_n "(cached) " >&6 6722 $as_echo_n "(cached) " >&6
6697else 6723else
6698 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6724 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6729,7 +6755,7 @@ ac_fn_c_check_member "$LINENO" "struct tm" "tm_zone" "ac_cv_member_struct_tm_tm_
6729#include <$ac_cv_struct_tm> 6755#include <$ac_cv_struct_tm>
6730 6756
6731" 6757"
6732if test "x$ac_cv_member_struct_tm_tm_zone" = x""yes; then : 6758if test "x$ac_cv_member_struct_tm_tm_zone" = xyes; then :
6733 6759
6734cat >>confdefs.h <<_ACEOF 6760cat >>confdefs.h <<_ACEOF
6735#define HAVE_STRUCT_TM_TM_ZONE 1 6761#define HAVE_STRUCT_TM_TM_ZONE 1
@@ -6745,7 +6771,7 @@ $as_echo "#define HAVE_TM_ZONE 1" >>confdefs.h
6745else 6771else
6746 ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include <time.h> 6772 ac_fn_c_check_decl "$LINENO" "tzname" "ac_cv_have_decl_tzname" "#include <time.h>
6747" 6773"
6748if test "x$ac_cv_have_decl_tzname" = x""yes; then : 6774if test "x$ac_cv_have_decl_tzname" = xyes; then :
6749 ac_have_decl=1 6775 ac_have_decl=1
6750else 6776else
6751 ac_have_decl=0 6777 ac_have_decl=0
@@ -6757,7 +6783,7 @@ _ACEOF
6757 6783
6758 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5 6784 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for tzname" >&5
6759$as_echo_n "checking for tzname... " >&6; } 6785$as_echo_n "checking for tzname... " >&6; }
6760if test "${ac_cv_var_tzname+set}" = set; then : 6786if ${ac_cv_var_tzname+:} false; then :
6761 $as_echo_n "(cached) " >&6 6787 $as_echo_n "(cached) " >&6
6762else 6788else
6763 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6789 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6794,7 +6820,7 @@ fi
6794 6820
6795ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h> 6821ac_fn_c_check_member "$LINENO" "struct tm" "tm_gmtoff" "ac_cv_member_struct_tm_tm_gmtoff" "#include <time.h>
6796" 6822"
6797if test "x$ac_cv_member_struct_tm_tm_gmtoff" = x""yes; then : 6823if test "x$ac_cv_member_struct_tm_tm_gmtoff" = xyes; then :
6798 6824
6799$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h 6825$as_echo "#define HAVE_TM_GMTOFF 1" >>confdefs.h
6800 6826
@@ -6808,7 +6834,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_flags" "ac_cv_member_struct_i
6808#include <net/if.h> 6834#include <net/if.h>
6809#endif 6835#endif
6810" 6836"
6811if test "x$ac_cv_member_struct_ifreq_ifr_flags" = x""yes; then : 6837if test "x$ac_cv_member_struct_ifreq_ifr_flags" = xyes; then :
6812 6838
6813cat >>confdefs.h <<_ACEOF 6839cat >>confdefs.h <<_ACEOF
6814#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1 6840#define HAVE_STRUCT_IFREQ_IFR_FLAGS 1
@@ -6824,7 +6850,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_hwaddr" "ac_cv_member_struct_
6824#include <net/if.h> 6850#include <net/if.h>
6825#endif 6851#endif
6826" 6852"
6827if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = x""yes; then : 6853if test "x$ac_cv_member_struct_ifreq_ifr_hwaddr" = xyes; then :
6828 6854
6829cat >>confdefs.h <<_ACEOF 6855cat >>confdefs.h <<_ACEOF
6830#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1 6856#define HAVE_STRUCT_IFREQ_IFR_HWADDR 1
@@ -6840,7 +6866,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_netmask" "ac_cv_member_struct
6840#include <net/if.h> 6866#include <net/if.h>
6841#endif 6867#endif
6842" 6868"
6843if test "x$ac_cv_member_struct_ifreq_ifr_netmask" = x""yes; then : 6869if test "x$ac_cv_member_struct_ifreq_ifr_netmask" = xyes; then :
6844 6870
6845cat >>confdefs.h <<_ACEOF 6871cat >>confdefs.h <<_ACEOF
6846#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1 6872#define HAVE_STRUCT_IFREQ_IFR_NETMASK 1
@@ -6856,7 +6882,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_broadaddr" "ac_cv_member_stru
6856#include <net/if.h> 6882#include <net/if.h>
6857#endif 6883#endif
6858" 6884"
6859if test "x$ac_cv_member_struct_ifreq_ifr_broadaddr" = x""yes; then : 6885if test "x$ac_cv_member_struct_ifreq_ifr_broadaddr" = xyes; then :
6860 6886
6861cat >>confdefs.h <<_ACEOF 6887cat >>confdefs.h <<_ACEOF
6862#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1 6888#define HAVE_STRUCT_IFREQ_IFR_BROADADDR 1
@@ -6872,7 +6898,7 @@ ac_fn_c_check_member "$LINENO" "struct ifreq" "ifr_addr" "ac_cv_member_struct_if
6872#include <net/if.h> 6898#include <net/if.h>
6873#endif 6899#endif
6874" 6900"
6875if test "x$ac_cv_member_struct_ifreq_ifr_addr" = x""yes; then : 6901if test "x$ac_cv_member_struct_ifreq_ifr_addr" = xyes; then :
6876 6902
6877cat >>confdefs.h <<_ACEOF 6903cat >>confdefs.h <<_ACEOF
6878#define HAVE_STRUCT_IFREQ_IFR_ADDR 1 6904#define HAVE_STRUCT_IFREQ_IFR_ADDR 1
@@ -6901,7 +6927,7 @@ fi
6901 6927
6902{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5 6928{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5
6903$as_echo_n "checking for working volatile... " >&6; } 6929$as_echo_n "checking for working volatile... " >&6; }
6904if test "${ac_cv_c_volatile+set}" = set; then : 6930if ${ac_cv_c_volatile+:} false; then :
6905 $as_echo_n "(cached) " >&6 6931 $as_echo_n "(cached) " >&6
6906else 6932else
6907 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6933 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -6935,7 +6961,7 @@ fi
6935 6961
6936{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 6962{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5
6937$as_echo_n "checking for an ANSI C-conforming const... " >&6; } 6963$as_echo_n "checking for an ANSI C-conforming const... " >&6; }
6938if test "${ac_cv_c_const+set}" = set; then : 6964if ${ac_cv_c_const+:} false; then :
6939 $as_echo_n "(cached) " >&6 6965 $as_echo_n "(cached) " >&6
6940else 6966else
6941 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6967 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7015,7 +7041,7 @@ fi
7015 7041
7016{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for void * support" >&5 7042{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for void * support" >&5
7017$as_echo_n "checking for void * support... " >&6; } 7043$as_echo_n "checking for void * support... " >&6; }
7018if test "${emacs_cv_void_star+set}" = set; then : 7044if ${emacs_cv_void_star+:} false; then :
7019 $as_echo_n "(cached) " >&6 7045 $as_echo_n "(cached) " >&6
7020else 7046else
7021 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7047 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7048,7 +7074,7 @@ fi
7048 7074
7049 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 7075 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5
7050$as_echo_n "checking whether byte ordering is bigendian... " >&6; } 7076$as_echo_n "checking whether byte ordering is bigendian... " >&6; }
7051if test "${ac_cv_c_bigendian+set}" = set; then : 7077if ${ac_cv_c_bigendian+:} false; then :
7052 $as_echo_n "(cached) " >&6 7078 $as_echo_n "(cached) " >&6
7053else 7079else
7054 ac_cv_c_bigendian=unknown 7080 ac_cv_c_bigendian=unknown
@@ -7266,7 +7292,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
7266 7292
7267 ;; #( 7293 ;; #(
7268 *) 7294 *)
7269 as_fn_error "unknown endianness 7295 as_fn_error $? "unknown endianness
7270 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;; 7296 presetting ac_cv_c_bigendian=no (or yes) will help" "$LINENO" 5 ;;
7271 esac 7297 esac
7272 7298
@@ -7275,7 +7301,7 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
7275$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 7301$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
7276set x ${MAKE-make} 7302set x ${MAKE-make}
7277ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 7303ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
7278if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then : 7304if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
7279 $as_echo_n "(cached) " >&6 7305 $as_echo_n "(cached) " >&6
7280else 7306else
7281 cat >conftest.make <<\_ACEOF 7307 cat >conftest.make <<\_ACEOF
@@ -7283,7 +7309,7 @@ SHELL = /bin/sh
7283all: 7309all:
7284 @echo '@@@%%%=$(MAKE)=@@@%%%' 7310 @echo '@@@%%%=$(MAKE)=@@@%%%'
7285_ACEOF 7311_ACEOF
7286# GNU make sometimes prints "make[1]: Entering...", which would confuse us. 7312# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
7287case `${MAKE-make} -f conftest.make 2>/dev/null` in 7313case `${MAKE-make} -f conftest.make 2>/dev/null` in
7288 *@@@%%%=?*=@@@%%%*) 7314 *@@@%%%=?*=@@@%%%*)
7289 eval ac_cv_prog_make_${ac_make}_set=yes;; 7315 eval ac_cv_prog_make_${ac_make}_set=yes;;
@@ -7363,7 +7389,7 @@ deps_frag=$srcdir/src/$deps_frag
7363 7389
7364{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long file names" >&5 7390{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long file names" >&5
7365$as_echo_n "checking for long file names... " >&6; } 7391$as_echo_n "checking for long file names... " >&6; }
7366if test "${ac_cv_sys_long_file_names+set}" = set; then : 7392if ${ac_cv_sys_long_file_names+:} false; then :
7367 $as_echo_n "(cached) " >&6 7393 $as_echo_n "(cached) " >&6
7368else 7394else
7369 ac_cv_sys_long_file_names=yes 7395 ac_cv_sys_long_file_names=yes
@@ -7419,8 +7445,8 @@ if test "x$with_x" = xno; then
7419 have_x=disabled 7445 have_x=disabled
7420else 7446else
7421 case $x_includes,$x_libraries in #( 7447 case $x_includes,$x_libraries in #(
7422 *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #( 7448 *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
7423 *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then : 7449 *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
7424 $as_echo_n "(cached) " >&6 7450 $as_echo_n "(cached) " >&6
7425else 7451else
7426 # One or both of the vars are not set, and there is no cached value. 7452 # One or both of the vars are not set, and there is no cached value.
@@ -7437,7 +7463,7 @@ libdir:
7437 @echo libdir='${LIBDIR}' 7463 @echo libdir='${LIBDIR}'
7438_ACEOF 7464_ACEOF
7439 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then 7465 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
7440 # GNU make sometimes prints "make[1]: Entering...", which would confuse us. 7466 # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
7441 for ac_var in incroot usrlibdir libdir; do 7467 for ac_var in incroot usrlibdir libdir; do
7442 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" 7468 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
7443 done 7469 done
@@ -7523,7 +7549,7 @@ else
7523 fi 7549 fi
7524done 7550done
7525fi 7551fi
7526rm -f conftest.err conftest.$ac_ext 7552rm -f conftest.err conftest.i conftest.$ac_ext
7527fi # $ac_x_includes = no 7553fi # $ac_x_includes = no
7528 7554
7529if test "$ac_x_libraries" = no; then 7555if test "$ac_x_libraries" = no; then
@@ -7703,10 +7729,10 @@ if test "${with_ns}" != no; then
7703 TEMACS_LDFLAGS2= 7729 TEMACS_LDFLAGS2=
7704 fi 7730 fi
7705 ac_fn_c_check_header_mongrel "$LINENO" "AppKit/AppKit.h" "ac_cv_header_AppKit_AppKit_h" "$ac_includes_default" 7731 ac_fn_c_check_header_mongrel "$LINENO" "AppKit/AppKit.h" "ac_cv_header_AppKit_AppKit_h" "$ac_includes_default"
7706if test "x$ac_cv_header_AppKit_AppKit_h" = x""yes; then : 7732if test "x$ac_cv_header_AppKit_AppKit_h" = xyes; then :
7707 HAVE_NS=yes 7733 HAVE_NS=yes
7708else 7734else
7709 as_fn_error "\`--with-ns' was specified, but the include 7735 as_fn_error $? "\`--with-ns' was specified, but the include
7710 files are missing or cannot be compiled." "$LINENO" 5 7736 files are missing or cannot be compiled." "$LINENO" 5
7711fi 7737fi
7712 7738
@@ -7785,7 +7811,7 @@ if test "$window_system" = none && test "X$with_x" != "Xno"; then
7785set dummy X; ac_word=$2 7811set dummy X; ac_word=$2
7786{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 7812{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7787$as_echo_n "checking for $ac_word... " >&6; } 7813$as_echo_n "checking for $ac_word... " >&6; }
7788if test "${ac_cv_prog_HAVE_XSERVER+set}" = set; then : 7814if ${ac_cv_prog_HAVE_XSERVER+:} false; then :
7789 $as_echo_n "(cached) " >&6 7815 $as_echo_n "(cached) " >&6
7790else 7816else
7791 if test -n "$HAVE_XSERVER"; then 7817 if test -n "$HAVE_XSERVER"; then
@@ -7822,7 +7848,7 @@ fi
7822 if test "$HAVE_XSERVER" = true || 7848 if test "$HAVE_XSERVER" = true ||
7823 test -n "$DISPLAY" || 7849 test -n "$DISPLAY" ||
7824 test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then 7850 test "`echo /usr/lib/libX11.*`" != "/usr/lib/libX11.*"; then
7825 as_fn_error "You seem to be running X, but no X development libraries 7851 as_fn_error $? "You seem to be running X, but no X development libraries
7826were found. You should install the relevant development files for X 7852were found. You should install the relevant development files for X
7827and for the toolkit you want, such as Gtk+, Lesstif or Motif. Also make 7853and for the toolkit you want, such as Gtk+, Lesstif or Motif. Also make
7828sure you have development files for image handling, i.e. 7854sure you have development files for image handling, i.e.
@@ -7844,14 +7870,14 @@ esac
7844GNU_MALLOC=yes 7870GNU_MALLOC=yes
7845doug_lea_malloc=yes 7871doug_lea_malloc=yes
7846ac_fn_c_check_func "$LINENO" "malloc_get_state" "ac_cv_func_malloc_get_state" 7872ac_fn_c_check_func "$LINENO" "malloc_get_state" "ac_cv_func_malloc_get_state"
7847if test "x$ac_cv_func_malloc_get_state" = x""yes; then : 7873if test "x$ac_cv_func_malloc_get_state" = xyes; then :
7848 7874
7849else 7875else
7850 doug_lea_malloc=no 7876 doug_lea_malloc=no
7851fi 7877fi
7852 7878
7853ac_fn_c_check_func "$LINENO" "malloc_set_state" "ac_cv_func_malloc_set_state" 7879ac_fn_c_check_func "$LINENO" "malloc_set_state" "ac_cv_func_malloc_set_state"
7854if test "x$ac_cv_func_malloc_set_state" = x""yes; then : 7880if test "x$ac_cv_func_malloc_set_state" = xyes; then :
7855 7881
7856else 7882else
7857 doug_lea_malloc=no 7883 doug_lea_malloc=no
@@ -7859,7 +7885,7 @@ fi
7859 7885
7860{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __after_morecore_hook exists" >&5 7886{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __after_morecore_hook exists" >&5
7861$as_echo_n "checking whether __after_morecore_hook exists... " >&6; } 7887$as_echo_n "checking whether __after_morecore_hook exists... " >&6; }
7862if test "${emacs_cv_var___after_morecore_hook+set}" = set; then : 7888if ${emacs_cv_var___after_morecore_hook+:} false; then :
7863 $as_echo_n "(cached) " >&6 7889 $as_echo_n "(cached) " >&6
7864else 7890else
7865 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7891 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -7945,8 +7971,7 @@ do :
7945 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 7971 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7946ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 7972ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
7947" 7973"
7948eval as_val=\$$as_ac_Header 7974if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
7949 if test "x$as_val" = x""yes; then :
7950 cat >>confdefs.h <<_ACEOF 7975 cat >>confdefs.h <<_ACEOF
7951#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 7976#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7952_ACEOF 7977_ACEOF
@@ -7965,7 +7990,7 @@ done
7965for ac_func in getpagesize 7990for ac_func in getpagesize
7966do : 7991do :
7967 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" 7992 ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize"
7968if test "x$ac_cv_func_getpagesize" = x""yes; then : 7993if test "x$ac_cv_func_getpagesize" = xyes; then :
7969 cat >>confdefs.h <<_ACEOF 7994 cat >>confdefs.h <<_ACEOF
7970#define HAVE_GETPAGESIZE 1 7995#define HAVE_GETPAGESIZE 1
7971_ACEOF 7996_ACEOF
@@ -7975,7 +8000,7 @@ done
7975 8000
7976{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 8001{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5
7977$as_echo_n "checking for working mmap... " >&6; } 8002$as_echo_n "checking for working mmap... " >&6; }
7978if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then : 8003if ${ac_cv_func_mmap_fixed_mapped+:} false; then :
7979 $as_echo_n "(cached) " >&6 8004 $as_echo_n "(cached) " >&6
7980else 8005else
7981 if test "$cross_compiling" = yes; then : 8006 if test "$cross_compiling" = yes; then :
@@ -8150,7 +8175,7 @@ LIBS="$LIBS_SYSTEM $LIBS"
8150 8175
8151{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 8176{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
8152$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } 8177$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
8153if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then : 8178if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
8154 $as_echo_n "(cached) " >&6 8179 $as_echo_n "(cached) " >&6
8155else 8180else
8156 ac_check_lib_save_LIBS=$LIBS 8181 ac_check_lib_save_LIBS=$LIBS
@@ -8184,7 +8209,7 @@ LIBS=$ac_check_lib_save_LIBS
8184fi 8209fi
8185{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 8210{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
8186$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } 8211$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
8187if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then : 8212if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
8188 cat >>confdefs.h <<_ACEOF 8213 cat >>confdefs.h <<_ACEOF
8189#define HAVE_LIBDNET 1 8214#define HAVE_LIBDNET 1
8190_ACEOF 8215_ACEOF
@@ -8196,7 +8221,7 @@ fi
8196 8221
8197{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXbsd" >&5 8222{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for main in -lXbsd" >&5
8198$as_echo_n "checking for main in -lXbsd... " >&6; } 8223$as_echo_n "checking for main in -lXbsd... " >&6; }
8199if test "${ac_cv_lib_Xbsd_main+set}" = set; then : 8224if ${ac_cv_lib_Xbsd_main+:} false; then :
8200 $as_echo_n "(cached) " >&6 8225 $as_echo_n "(cached) " >&6
8201else 8226else
8202 ac_check_lib_save_LIBS=$LIBS 8227 ac_check_lib_save_LIBS=$LIBS
@@ -8224,14 +8249,14 @@ LIBS=$ac_check_lib_save_LIBS
8224fi 8249fi
8225{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xbsd_main" >&5 8250{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xbsd_main" >&5
8226$as_echo "$ac_cv_lib_Xbsd_main" >&6; } 8251$as_echo "$ac_cv_lib_Xbsd_main" >&6; }
8227if test "x$ac_cv_lib_Xbsd_main" = x""yes; then : 8252if test "x$ac_cv_lib_Xbsd_main" = xyes; then :
8228 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd" 8253 LD_SWITCH_X_SITE="$LD_SWITCH_X_SITE -lXbsd"
8229fi 8254fi
8230 8255
8231 8256
8232{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cma_open in -lpthreads" >&5 8257{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for cma_open in -lpthreads" >&5
8233$as_echo_n "checking for cma_open in -lpthreads... " >&6; } 8258$as_echo_n "checking for cma_open in -lpthreads... " >&6; }
8234if test "${ac_cv_lib_pthreads_cma_open+set}" = set; then : 8259if ${ac_cv_lib_pthreads_cma_open+:} false; then :
8235 $as_echo_n "(cached) " >&6 8260 $as_echo_n "(cached) " >&6
8236else 8261else
8237 ac_check_lib_save_LIBS=$LIBS 8262 ac_check_lib_save_LIBS=$LIBS
@@ -8265,7 +8290,7 @@ LIBS=$ac_check_lib_save_LIBS
8265fi 8290fi
8266{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_cma_open" >&5 8291{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthreads_cma_open" >&5
8267$as_echo "$ac_cv_lib_pthreads_cma_open" >&6; } 8292$as_echo "$ac_cv_lib_pthreads_cma_open" >&6; }
8268if test "x$ac_cv_lib_pthreads_cma_open" = x""yes; then : 8293if test "x$ac_cv_lib_pthreads_cma_open" = xyes; then :
8269 cat >>confdefs.h <<_ACEOF 8294 cat >>confdefs.h <<_ACEOF
8270#define HAVE_LIBPTHREADS 1 8295#define HAVE_LIBPTHREADS 1
8271_ACEOF 8296_ACEOF
@@ -8292,7 +8317,7 @@ case ${host_os} in
8292aix*) 8317aix*)
8293 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -bbigtoc option" >&5 8318 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -bbigtoc option" >&5
8294$as_echo_n "checking for -bbigtoc option... " >&6; } 8319$as_echo_n "checking for -bbigtoc option... " >&6; }
8295if test "${gdb_cv_bigtoc+set}" = set; then : 8320if ${gdb_cv_bigtoc+:} false; then :
8296 $as_echo_n "(cached) " >&6 8321 $as_echo_n "(cached) " >&6
8297else 8322else
8298 8323
@@ -8453,8 +8478,7 @@ XScreenNumberOfScreen XSetWMProtocols
8453do : 8478do :
8454 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 8479 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
8455ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 8480ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
8456eval as_val=\$$as_ac_var 8481if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
8457 if test "x$as_val" = x""yes; then :
8458 cat >>confdefs.h <<_ACEOF 8482 cat >>confdefs.h <<_ACEOF
8459#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 8483#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
8460_ACEOF 8484_ACEOF
@@ -8467,7 +8491,7 @@ fi
8467if test "${window_system}" = "x11"; then 8491if test "${window_system}" = "x11"; then
8468 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 version 6" >&5 8492 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 version 6" >&5
8469$as_echo_n "checking X11 version 6... " >&6; } 8493$as_echo_n "checking X11 version 6... " >&6; }
8470 if test "${emacs_cv_x11_version_6+set}" = set; then : 8494 if ${emacs_cv_x11_version_6+:} false; then :
8471 $as_echo_n "(cached) " >&6 8495 $as_echo_n "(cached) " >&6
8472else 8496else
8473 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 8497 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -8532,7 +8556,7 @@ if test "${HAVE_X11}" = "yes" || test "${NS_IMPL_GNUSTEP}" = "yes"; then
8532set dummy pkg-config; ac_word=$2 8556set dummy pkg-config; ac_word=$2
8533{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8557{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8534$as_echo_n "checking for $ac_word... " >&6; } 8558$as_echo_n "checking for $ac_word... " >&6; }
8535if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 8559if ${ac_cv_path_PKG_CONFIG+:} false; then :
8536 $as_echo_n "(cached) " >&6 8560 $as_echo_n "(cached) " >&6
8537else 8561else
8538 case $PKG_CONFIG in 8562 case $PKG_CONFIG in
@@ -8643,7 +8667,7 @@ if test "${HAVE_X11}" = "yes"; then
8643set dummy pkg-config; ac_word=$2 8667set dummy pkg-config; ac_word=$2
8644{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8668{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8645$as_echo_n "checking for $ac_word... " >&6; } 8669$as_echo_n "checking for $ac_word... " >&6; }
8646if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 8670if ${ac_cv_path_PKG_CONFIG+:} false; then :
8647 $as_echo_n "(cached) " >&6 8671 $as_echo_n "(cached) " >&6
8648else 8672else
8649 case $PKG_CONFIG in 8673 case $PKG_CONFIG in
@@ -8742,7 +8766,7 @@ $as_echo "#define HAVE_IMAGEMAGICK 1" >>confdefs.h
8742 for ac_func in MagickExportImagePixels 8766 for ac_func in MagickExportImagePixels
8743do : 8767do :
8744 ac_fn_c_check_func "$LINENO" "MagickExportImagePixels" "ac_cv_func_MagickExportImagePixels" 8768 ac_fn_c_check_func "$LINENO" "MagickExportImagePixels" "ac_cv_func_MagickExportImagePixels"
8745if test "x$ac_cv_func_MagickExportImagePixels" = x""yes; then : 8769if test "x$ac_cv_func_MagickExportImagePixels" = xyes; then :
8746 cat >>confdefs.h <<_ACEOF 8770 cat >>confdefs.h <<_ACEOF
8747#define HAVE_MAGICKEXPORTIMAGEPIXELS 1 8771#define HAVE_MAGICKEXPORTIMAGEPIXELS 1
8748_ACEOF 8772_ACEOF
@@ -8768,7 +8792,7 @@ if test "${with_gtk3}" = "yes"; then
8768set dummy pkg-config; ac_word=$2 8792set dummy pkg-config; ac_word=$2
8769{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8793{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8770$as_echo_n "checking for $ac_word... " >&6; } 8794$as_echo_n "checking for $ac_word... " >&6; }
8771if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 8795if ${ac_cv_path_PKG_CONFIG+:} false; then :
8772 $as_echo_n "(cached) " >&6 8796 $as_echo_n "(cached) " >&6
8773else 8797else
8774 case $PKG_CONFIG in 8798 case $PKG_CONFIG in
@@ -8856,7 +8880,7 @@ $as_echo "no" >&6; }
8856 fi 8880 fi
8857 8881
8858 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then 8882 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then
8859 as_fn_error "$GTK_PKG_ERRORS" "$LINENO" 5 8883 as_fn_error $? "$GTK_PKG_ERRORS" "$LINENO" 5
8860 fi 8884 fi
8861fi 8885fi
8862 8886
@@ -8874,7 +8898,7 @@ if test "${with_gtk}" = "yes" || test "$USE_X_TOOLKIT" = "maybe"; then
8874set dummy pkg-config; ac_word=$2 8898set dummy pkg-config; ac_word=$2
8875{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8899{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8876$as_echo_n "checking for $ac_word... " >&6; } 8900$as_echo_n "checking for $ac_word... " >&6; }
8877if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 8901if ${ac_cv_path_PKG_CONFIG+:} false; then :
8878 $as_echo_n "(cached) " >&6 8902 $as_echo_n "(cached) " >&6
8879else 8903else
8880 case $PKG_CONFIG in 8904 case $PKG_CONFIG in
@@ -8962,7 +8986,7 @@ $as_echo "no" >&6; }
8962 fi 8986 fi
8963 8987
8964 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then 8988 if test "$pkg_check_gtk" = "no" && test "$USE_X_TOOLKIT" != "maybe"; then
8965 as_fn_error "$GTK_PKG_ERRORS" "$LINENO" 5 8989 as_fn_error $? "$GTK_PKG_ERRORS" "$LINENO" 5
8966 fi 8990 fi
8967fi 8991fi
8968fi 8992fi
@@ -8979,7 +9003,7 @@ if test x"$pkg_check_gtk" = xyes; then
8979 for ac_func in gtk_main 9003 for ac_func in gtk_main
8980do : 9004do :
8981 ac_fn_c_check_func "$LINENO" "gtk_main" "ac_cv_func_gtk_main" 9005 ac_fn_c_check_func "$LINENO" "gtk_main" "ac_cv_func_gtk_main"
8982if test "x$ac_cv_func_gtk_main" = x""yes; then : 9006if test "x$ac_cv_func_gtk_main" = xyes; then :
8983 cat >>confdefs.h <<_ACEOF 9007 cat >>confdefs.h <<_ACEOF
8984#define HAVE_GTK_MAIN 1 9008#define HAVE_GTK_MAIN 1
8985_ACEOF 9009_ACEOF
@@ -8989,7 +9013,7 @@ done
8989 9013
8990 if test "${GTK_COMPILES}" != "yes"; then 9014 if test "${GTK_COMPILES}" != "yes"; then
8991 if test "$USE_X_TOOLKIT" != "maybe"; then 9015 if test "$USE_X_TOOLKIT" != "maybe"; then
8992 as_fn_error "Gtk+ wanted, but it does not compile, see config.log. Maybe some x11-devel files missing?" "$LINENO" 5; 9016 as_fn_error $? "Gtk+ wanted, but it does not compile, see config.log. Maybe some x11-devel files missing?" "$LINENO" 5;
8993 fi 9017 fi
8994 else 9018 else
8995 HAVE_GTK=yes 9019 HAVE_GTK=yes
@@ -9027,7 +9051,7 @@ if test "${HAVE_GTK}" = "yes"; then
9027 ac_fn_c_check_decl "$LINENO" "GTK_TYPE_FILE_SELECTION" "ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" "$ac_includes_default 9051 ac_fn_c_check_decl "$LINENO" "GTK_TYPE_FILE_SELECTION" "ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" "$ac_includes_default
9028#include <gtk/gtk.h> 9052#include <gtk/gtk.h>
9029" 9053"
9030if test "x$ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" = x""yes; then : 9054if test "x$ac_cv_have_decl_GTK_TYPE_FILE_SELECTION" = xyes; then :
9031 HAVE_GTK_FILE_SELECTION=yes 9055 HAVE_GTK_FILE_SELECTION=yes
9032else 9056else
9033 HAVE_GTK_FILE_SELECTION=no 9057 HAVE_GTK_FILE_SELECTION=no
@@ -9037,7 +9061,7 @@ fi
9037 for ac_func in gtk_file_selection_new 9061 for ac_func in gtk_file_selection_new
9038do : 9062do :
9039 ac_fn_c_check_func "$LINENO" "gtk_file_selection_new" "ac_cv_func_gtk_file_selection_new" 9063 ac_fn_c_check_func "$LINENO" "gtk_file_selection_new" "ac_cv_func_gtk_file_selection_new"
9040if test "x$ac_cv_func_gtk_file_selection_new" = x""yes; then : 9064if test "x$ac_cv_func_gtk_file_selection_new" = xyes; then :
9041 cat >>confdefs.h <<_ACEOF 9065 cat >>confdefs.h <<_ACEOF
9042#define HAVE_GTK_FILE_SELECTION_NEW 1 9066#define HAVE_GTK_FILE_SELECTION_NEW 1
9043_ACEOF 9067_ACEOF
@@ -9051,7 +9075,7 @@ done
9051 for ac_header in pthread.h 9075 for ac_header in pthread.h
9052do : 9076do :
9053 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" 9077 ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default"
9054if test "x$ac_cv_header_pthread_h" = x""yes; then : 9078if test "x$ac_cv_header_pthread_h" = xyes; then :
9055 cat >>confdefs.h <<_ACEOF 9079 cat >>confdefs.h <<_ACEOF
9056#define HAVE_PTHREAD_H 1 9080#define HAVE_PTHREAD_H 1
9057_ACEOF 9081_ACEOF
@@ -9063,7 +9087,7 @@ done
9063 if test "$ac_cv_header_pthread_h"; then 9087 if test "$ac_cv_header_pthread_h"; then
9064 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_self in -lpthread" >&5 9088 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_self in -lpthread" >&5
9065$as_echo_n "checking for pthread_self in -lpthread... " >&6; } 9089$as_echo_n "checking for pthread_self in -lpthread... " >&6; }
9066if test "${ac_cv_lib_pthread_pthread_self+set}" = set; then : 9090if ${ac_cv_lib_pthread_pthread_self+:} false; then :
9067 $as_echo_n "(cached) " >&6 9091 $as_echo_n "(cached) " >&6
9068else 9092else
9069 ac_check_lib_save_LIBS=$LIBS 9093 ac_check_lib_save_LIBS=$LIBS
@@ -9097,7 +9121,7 @@ LIBS=$ac_check_lib_save_LIBS
9097fi 9121fi
9098{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_self" >&5 9122{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_self" >&5
9099$as_echo "$ac_cv_lib_pthread_pthread_self" >&6; } 9123$as_echo "$ac_cv_lib_pthread_pthread_self" >&6; }
9100if test "x$ac_cv_lib_pthread_pthread_self" = x""yes; then : 9124if test "x$ac_cv_lib_pthread_pthread_self" = xyes; then :
9101 HAVE_GTK_AND_PTHREAD=yes 9125 HAVE_GTK_AND_PTHREAD=yes
9102fi 9126fi
9103 9127
@@ -9119,8 +9143,7 @@ $as_echo "#define HAVE_GTK_AND_PTHREAD 1" >>confdefs.h
9119do : 9143do :
9120 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 9144 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
9121ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 9145ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
9122eval as_val=\$$as_ac_var 9146if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
9123 if test "x$as_val" = x""yes; then :
9124 cat >>confdefs.h <<_ACEOF 9147 cat >>confdefs.h <<_ACEOF
9125#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 9148#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
9126_ACEOF 9149_ACEOF
@@ -9141,7 +9164,7 @@ if test "${with_dbus}" = "yes"; then
9141set dummy pkg-config; ac_word=$2 9164set dummy pkg-config; ac_word=$2
9142{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9165{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9143$as_echo_n "checking for $ac_word... " >&6; } 9166$as_echo_n "checking for $ac_word... " >&6; }
9144if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 9167if ${ac_cv_path_PKG_CONFIG+:} false; then :
9145 $as_echo_n "(cached) " >&6 9168 $as_echo_n "(cached) " >&6
9146else 9169else
9147 case $PKG_CONFIG in 9170 case $PKG_CONFIG in
@@ -9236,7 +9259,7 @@ $as_echo "#define HAVE_DBUS 1" >>confdefs.h
9236 for ac_func in dbus_watch_get_unix_fd 9259 for ac_func in dbus_watch_get_unix_fd
9237do : 9260do :
9238 ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd" 9261 ac_fn_c_check_func "$LINENO" "dbus_watch_get_unix_fd" "ac_cv_func_dbus_watch_get_unix_fd"
9239if test "x$ac_cv_func_dbus_watch_get_unix_fd" = x""yes; then : 9262if test "x$ac_cv_func_dbus_watch_get_unix_fd" = xyes; then :
9240 cat >>confdefs.h <<_ACEOF 9263 cat >>confdefs.h <<_ACEOF
9241#define HAVE_DBUS_WATCH_GET_UNIX_FD 1 9264#define HAVE_DBUS_WATCH_GET_UNIX_FD 1
9242_ACEOF 9265_ACEOF
@@ -9258,7 +9281,7 @@ if test "${HAVE_X11}" = "yes" && test "${with_gconf}" = "yes"; then
9258set dummy pkg-config; ac_word=$2 9281set dummy pkg-config; ac_word=$2
9259{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9282{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9260$as_echo_n "checking for $ac_word... " >&6; } 9283$as_echo_n "checking for $ac_word... " >&6; }
9261if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 9284if ${ac_cv_path_PKG_CONFIG+:} false; then :
9262 $as_echo_n "(cached) " >&6 9285 $as_echo_n "(cached) " >&6
9263else 9286else
9264 case $PKG_CONFIG in 9287 case $PKG_CONFIG in
@@ -9357,7 +9380,7 @@ LIBSELINUX_LIBS=
9357if test "${with_selinux}" = "yes"; then 9380if test "${with_selinux}" = "yes"; then
9358 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lgetfilecon in -lselinux" >&5 9381 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for lgetfilecon in -lselinux" >&5
9359$as_echo_n "checking for lgetfilecon in -lselinux... " >&6; } 9382$as_echo_n "checking for lgetfilecon in -lselinux... " >&6; }
9360if test "${ac_cv_lib_selinux_lgetfilecon+set}" = set; then : 9383if ${ac_cv_lib_selinux_lgetfilecon+:} false; then :
9361 $as_echo_n "(cached) " >&6 9384 $as_echo_n "(cached) " >&6
9362else 9385else
9363 ac_check_lib_save_LIBS=$LIBS 9386 ac_check_lib_save_LIBS=$LIBS
@@ -9391,7 +9414,7 @@ LIBS=$ac_check_lib_save_LIBS
9391fi 9414fi
9392{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_lgetfilecon" >&5 9415{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_selinux_lgetfilecon" >&5
9393$as_echo "$ac_cv_lib_selinux_lgetfilecon" >&6; } 9416$as_echo "$ac_cv_lib_selinux_lgetfilecon" >&6; }
9394if test "x$ac_cv_lib_selinux_lgetfilecon" = x""yes; then : 9417if test "x$ac_cv_lib_selinux_lgetfilecon" = xyes; then :
9395 HAVE_LIBSELINUX=yes 9418 HAVE_LIBSELINUX=yes
9396else 9419else
9397 HAVE_LIBSELINUX=no 9420 HAVE_LIBSELINUX=no
@@ -9415,7 +9438,7 @@ if test "${with_gnutls}" = "yes" ; then
9415set dummy pkg-config; ac_word=$2 9438set dummy pkg-config; ac_word=$2
9416{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 9439{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9417$as_echo_n "checking for $ac_word... " >&6; } 9440$as_echo_n "checking for $ac_word... " >&6; }
9418if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 9441if ${ac_cv_path_PKG_CONFIG+:} false; then :
9419 $as_echo_n "(cached) " >&6 9442 $as_echo_n "(cached) " >&6
9420else 9443else
9421 case $PKG_CONFIG in 9444 case $PKG_CONFIG in
@@ -9517,7 +9540,7 @@ if test x"${USE_X_TOOLKIT}" = xmaybe || test x"${USE_X_TOOLKIT}" = xLUCID; then
9517 if test "$with_xaw3d" != no; then 9540 if test "$with_xaw3d" != no; then
9518 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xaw3d" >&5 9541 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for xaw3d" >&5
9519$as_echo_n "checking for xaw3d... " >&6; } 9542$as_echo_n "checking for xaw3d... " >&6; }
9520 if test "${emacs_cv_xaw3d+set}" = set; then : 9543 if ${emacs_cv_xaw3d+:} false; then :
9521 $as_echo_n "(cached) " >&6 9544 $as_echo_n "(cached) " >&6
9522else 9545else
9523 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9546 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9559,7 +9582,7 @@ $as_echo "#define HAVE_XAW3D 1" >>confdefs.h
9559$as_echo "no" >&6; } 9582$as_echo "no" >&6; }
9560 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libXaw" >&5 9583 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libXaw" >&5
9561$as_echo_n "checking for libXaw... " >&6; } 9584$as_echo_n "checking for libXaw... " >&6; }
9562 if test "${emacs_cv_xaw+set}" = set; then : 9585 if ${emacs_cv_xaw+:} false; then :
9563 $as_echo_n "(cached) " >&6 9586 $as_echo_n "(cached) " >&6
9564else 9587else
9565 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9588 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9590,7 +9613,7 @@ $as_echo "yes; using Lucid toolkit" >&6; }
9590 USE_X_TOOLKIT=LUCID 9613 USE_X_TOOLKIT=LUCID
9591 LUCID_LIBW=-lXaw 9614 LUCID_LIBW=-lXaw
9592 elif test x"${USE_X_TOOLKIT}" = xLUCID; then 9615 elif test x"${USE_X_TOOLKIT}" = xLUCID; then
9593 as_fn_error "Lucid toolkit requires X11/Xaw include files" "$LINENO" 5 9616 as_fn_error $? "Lucid toolkit requires X11/Xaw include files" "$LINENO" 5
9594 else 9617 else
9595 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no; do not use toolkit by default" >&5 9618 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no; do not use toolkit by default" >&5
9596$as_echo "no; do not use toolkit by default" >&6; } 9619$as_echo "no; do not use toolkit by default" >&6; }
@@ -9605,7 +9628,7 @@ LIBXTR6=
9605if test "${USE_X_TOOLKIT}" != "none"; then 9628if test "${USE_X_TOOLKIT}" != "none"; then
9606 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 toolkit version" >&5 9629 { $as_echo "$as_me:${as_lineno-$LINENO}: checking X11 toolkit version" >&5
9607$as_echo_n "checking X11 toolkit version... " >&6; } 9630$as_echo_n "checking X11 toolkit version... " >&6; }
9608 if test "${emacs_cv_x11_toolkit_version_6+set}" = set; then : 9631 if ${emacs_cv_x11_toolkit_version_6+:} false; then :
9609 $as_echo_n "(cached) " >&6 9632 $as_echo_n "(cached) " >&6
9610else 9633else
9611 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9634 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9656,7 +9679,7 @@ $as_echo "before 6" >&6; }
9656 fi 9679 fi
9657 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuConvertStandardSelection in -lXmu" >&5 9680 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XmuConvertStandardSelection in -lXmu" >&5
9658$as_echo_n "checking for XmuConvertStandardSelection in -lXmu... " >&6; } 9681$as_echo_n "checking for XmuConvertStandardSelection in -lXmu... " >&6; }
9659if test "${ac_cv_lib_Xmu_XmuConvertStandardSelection+set}" = set; then : 9682if ${ac_cv_lib_Xmu_XmuConvertStandardSelection+:} false; then :
9660 $as_echo_n "(cached) " >&6 9683 $as_echo_n "(cached) " >&6
9661else 9684else
9662 ac_check_lib_save_LIBS=$LIBS 9685 ac_check_lib_save_LIBS=$LIBS
@@ -9690,7 +9713,7 @@ LIBS=$ac_check_lib_save_LIBS
9690fi 9713fi
9691{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuConvertStandardSelection" >&5 9714{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xmu_XmuConvertStandardSelection" >&5
9692$as_echo "$ac_cv_lib_Xmu_XmuConvertStandardSelection" >&6; } 9715$as_echo "$ac_cv_lib_Xmu_XmuConvertStandardSelection" >&6; }
9693if test "x$ac_cv_lib_Xmu_XmuConvertStandardSelection" = x""yes; then : 9716if test "x$ac_cv_lib_Xmu_XmuConvertStandardSelection" = xyes; then :
9694 cat >>confdefs.h <<_ACEOF 9717 cat >>confdefs.h <<_ACEOF
9695#define HAVE_LIBXMU 1 9718#define HAVE_LIBXMU 1
9696_ACEOF 9719_ACEOF
@@ -9717,7 +9740,7 @@ if test "${HAVE_X11}" = "yes"; then
9717 if test "${USE_X_TOOLKIT}" != "none"; then 9740 if test "${USE_X_TOOLKIT}" != "none"; then
9718 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5 9741 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XShapeQueryExtension in -lXext" >&5
9719$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; } 9742$as_echo_n "checking for XShapeQueryExtension in -lXext... " >&6; }
9720if test "${ac_cv_lib_Xext_XShapeQueryExtension+set}" = set; then : 9743if ${ac_cv_lib_Xext_XShapeQueryExtension+:} false; then :
9721 $as_echo_n "(cached) " >&6 9744 $as_echo_n "(cached) " >&6
9722else 9745else
9723 ac_check_lib_save_LIBS=$LIBS 9746 ac_check_lib_save_LIBS=$LIBS
@@ -9751,7 +9774,7 @@ LIBS=$ac_check_lib_save_LIBS
9751fi 9774fi
9752{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5 9775{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xext_XShapeQueryExtension" >&5
9753$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; } 9776$as_echo "$ac_cv_lib_Xext_XShapeQueryExtension" >&6; }
9754if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = x""yes; then : 9777if test "x$ac_cv_lib_Xext_XShapeQueryExtension" = xyes; then :
9755 cat >>confdefs.h <<_ACEOF 9778 cat >>confdefs.h <<_ACEOF
9756#define HAVE_LIBXEXT 1 9779#define HAVE_LIBXEXT 1
9757_ACEOF 9780_ACEOF
@@ -9767,7 +9790,7 @@ LIBXP=
9767if test "${USE_X_TOOLKIT}" = "MOTIF"; then 9790if test "${USE_X_TOOLKIT}" = "MOTIF"; then
9768 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Motif version 2.1" >&5 9791 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Motif version 2.1" >&5
9769$as_echo_n "checking for Motif version 2.1... " >&6; } 9792$as_echo_n "checking for Motif version 2.1... " >&6; }
9770if test "${emacs_cv_motif_version_2_1+set}" = set; then : 9793if ${emacs_cv_motif_version_2_1+:} false; then :
9771 $as_echo_n "(cached) " >&6 9794 $as_echo_n "(cached) " >&6
9772else 9795else
9773 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 9796 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -9797,7 +9820,7 @@ $as_echo "$emacs_cv_motif_version_2_1" >&6; }
9797 if test $emacs_cv_motif_version_2_1 = yes; then 9820 if test $emacs_cv_motif_version_2_1 = yes; then
9798 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpCreateContext in -lXp" >&5 9821 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpCreateContext in -lXp" >&5
9799$as_echo_n "checking for XpCreateContext in -lXp... " >&6; } 9822$as_echo_n "checking for XpCreateContext in -lXp... " >&6; }
9800if test "${ac_cv_lib_Xp_XpCreateContext+set}" = set; then : 9823if ${ac_cv_lib_Xp_XpCreateContext+:} false; then :
9801 $as_echo_n "(cached) " >&6 9824 $as_echo_n "(cached) " >&6
9802else 9825else
9803 ac_check_lib_save_LIBS=$LIBS 9826 ac_check_lib_save_LIBS=$LIBS
@@ -9831,14 +9854,14 @@ LIBS=$ac_check_lib_save_LIBS
9831fi 9854fi
9832{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpCreateContext" >&5 9855{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xp_XpCreateContext" >&5
9833$as_echo "$ac_cv_lib_Xp_XpCreateContext" >&6; } 9856$as_echo "$ac_cv_lib_Xp_XpCreateContext" >&6; }
9834if test "x$ac_cv_lib_Xp_XpCreateContext" = x""yes; then : 9857if test "x$ac_cv_lib_Xp_XpCreateContext" = xyes; then :
9835 LIBXP=-lXp 9858 LIBXP=-lXp
9836fi 9859fi
9837 9860
9838 else 9861 else
9839 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LessTif where some systems put it" >&5 9862 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LessTif where some systems put it" >&5
9840$as_echo_n "checking for LessTif where some systems put it... " >&6; } 9863$as_echo_n "checking for LessTif where some systems put it... " >&6; }
9841if test "${emacs_cv_lesstif+set}" = set; then : 9864if ${emacs_cv_lesstif+:} false; then :
9842 $as_echo_n "(cached) " >&6 9865 $as_echo_n "(cached) " >&6
9843else 9866else
9844 # We put this in CFLAGS temporarily to precede other -I options 9867 # We put this in CFLAGS temporarily to precede other -I options
@@ -9997,7 +10020,7 @@ if test "${HAVE_X11}" = "yes"; then
9997set dummy pkg-config; ac_word=$2 10020set dummy pkg-config; ac_word=$2
9998{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10021{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9999$as_echo_n "checking for $ac_word... " >&6; } 10022$as_echo_n "checking for $ac_word... " >&6; }
10000if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 10023if ${ac_cv_path_PKG_CONFIG+:} false; then :
10001 $as_echo_n "(cached) " >&6 10024 $as_echo_n "(cached) " >&6
10002else 10025else
10003 case $PKG_CONFIG in 10026 case $PKG_CONFIG in
@@ -10099,7 +10122,7 @@ $as_echo "no" >&6; }
10099set dummy pkg-config; ac_word=$2 10122set dummy pkg-config; ac_word=$2
10100{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10123{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10101$as_echo_n "checking for $ac_word... " >&6; } 10124$as_echo_n "checking for $ac_word... " >&6; }
10102if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 10125if ${ac_cv_path_PKG_CONFIG+:} false; then :
10103 $as_echo_n "(cached) " >&6 10126 $as_echo_n "(cached) " >&6
10104else 10127else
10105 case $PKG_CONFIG in 10128 case $PKG_CONFIG in
@@ -10191,7 +10214,7 @@ $as_echo "no" >&6; }
10191 HAVE_XRENDER=no 10214 HAVE_XRENDER=no
10192 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderQueryExtension in -lXrender" >&5 10215 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XRenderQueryExtension in -lXrender" >&5
10193$as_echo_n "checking for XRenderQueryExtension in -lXrender... " >&6; } 10216$as_echo_n "checking for XRenderQueryExtension in -lXrender... " >&6; }
10194if test "${ac_cv_lib_Xrender_XRenderQueryExtension+set}" = set; then : 10217if ${ac_cv_lib_Xrender_XRenderQueryExtension+:} false; then :
10195 $as_echo_n "(cached) " >&6 10218 $as_echo_n "(cached) " >&6
10196else 10219else
10197 ac_check_lib_save_LIBS=$LIBS 10220 ac_check_lib_save_LIBS=$LIBS
@@ -10225,7 +10248,7 @@ LIBS=$ac_check_lib_save_LIBS
10225fi 10248fi
10226{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderQueryExtension" >&5 10249{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xrender_XRenderQueryExtension" >&5
10227$as_echo "$ac_cv_lib_Xrender_XRenderQueryExtension" >&6; } 10250$as_echo "$ac_cv_lib_Xrender_XRenderQueryExtension" >&6; }
10228if test "x$ac_cv_lib_Xrender_XRenderQueryExtension" = x""yes; then : 10251if test "x$ac_cv_lib_Xrender_XRenderQueryExtension" = xyes; then :
10229 HAVE_XRENDER=yes 10252 HAVE_XRENDER=yes
10230fi 10253fi
10231 10254
@@ -10238,10 +10261,10 @@ fi
10238 XFT_LIBS="-lXrender $XFT_LIBS" 10261 XFT_LIBS="-lXrender $XFT_LIBS"
10239 LIBS="$XFT_LIBS $LIBS" 10262 LIBS="$XFT_LIBS $LIBS"
10240 ac_fn_c_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default" 10263 ac_fn_c_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default"
10241if test "x$ac_cv_header_X11_Xft_Xft_h" = x""yes; then : 10264if test "x$ac_cv_header_X11_Xft_Xft_h" = xyes; then :
10242 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftFontOpen in -lXft" >&5 10265 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftFontOpen in -lXft" >&5
10243$as_echo_n "checking for XftFontOpen in -lXft... " >&6; } 10266$as_echo_n "checking for XftFontOpen in -lXft... " >&6; }
10244if test "${ac_cv_lib_Xft_XftFontOpen+set}" = set; then : 10267if ${ac_cv_lib_Xft_XftFontOpen+:} false; then :
10245 $as_echo_n "(cached) " >&6 10268 $as_echo_n "(cached) " >&6
10246else 10269else
10247 ac_check_lib_save_LIBS=$LIBS 10270 ac_check_lib_save_LIBS=$LIBS
@@ -10275,7 +10298,7 @@ LIBS=$ac_check_lib_save_LIBS
10275fi 10298fi
10276{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftFontOpen" >&5 10299{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftFontOpen" >&5
10277$as_echo "$ac_cv_lib_Xft_XftFontOpen" >&6; } 10300$as_echo "$ac_cv_lib_Xft_XftFontOpen" >&6; }
10278if test "x$ac_cv_lib_Xft_XftFontOpen" = x""yes; then : 10301if test "x$ac_cv_lib_Xft_XftFontOpen" = xyes; then :
10279 HAVE_XFT=yes 10302 HAVE_XFT=yes
10280fi 10303fi
10281 10304
@@ -10324,7 +10347,7 @@ $as_echo "#define HAVE_FREETYPE 1" >>confdefs.h
10324set dummy pkg-config; ac_word=$2 10347set dummy pkg-config; ac_word=$2
10325{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10348{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10326$as_echo_n "checking for $ac_word... " >&6; } 10349$as_echo_n "checking for $ac_word... " >&6; }
10327if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 10350if ${ac_cv_path_PKG_CONFIG+:} false; then :
10328 $as_echo_n "(cached) " >&6 10351 $as_echo_n "(cached) " >&6
10329else 10352else
10330 case $PKG_CONFIG in 10353 case $PKG_CONFIG in
@@ -10417,7 +10440,7 @@ $as_echo "#define HAVE_LIBOTF 1" >>confdefs.h
10417 10440
10418 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OTF_get_variation_glyphs in -lotf" >&5 10441 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OTF_get_variation_glyphs in -lotf" >&5
10419$as_echo_n "checking for OTF_get_variation_glyphs in -lotf... " >&6; } 10442$as_echo_n "checking for OTF_get_variation_glyphs in -lotf... " >&6; }
10420if test "${ac_cv_lib_otf_OTF_get_variation_glyphs+set}" = set; then : 10443if ${ac_cv_lib_otf_OTF_get_variation_glyphs+:} false; then :
10421 $as_echo_n "(cached) " >&6 10444 $as_echo_n "(cached) " >&6
10422else 10445else
10423 ac_check_lib_save_LIBS=$LIBS 10446 ac_check_lib_save_LIBS=$LIBS
@@ -10451,7 +10474,7 @@ LIBS=$ac_check_lib_save_LIBS
10451fi 10474fi
10452{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_otf_OTF_get_variation_glyphs" >&5 10475{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_otf_OTF_get_variation_glyphs" >&5
10453$as_echo "$ac_cv_lib_otf_OTF_get_variation_glyphs" >&6; } 10476$as_echo "$ac_cv_lib_otf_OTF_get_variation_glyphs" >&6; }
10454if test "x$ac_cv_lib_otf_OTF_get_variation_glyphs" = x""yes; then : 10477if test "x$ac_cv_lib_otf_OTF_get_variation_glyphs" = xyes; then :
10455 HAVE_OTF_GET_VARIATION_GLYPHS=yes 10478 HAVE_OTF_GET_VARIATION_GLYPHS=yes
10456else 10479else
10457 HAVE_OTF_GET_VARIATION_GLYPHS=no 10480 HAVE_OTF_GET_VARIATION_GLYPHS=no
@@ -10476,7 +10499,7 @@ $as_echo "#define HAVE_OTF_GET_VARIATION_GLYPHS 1" >>confdefs.h
10476set dummy pkg-config; ac_word=$2 10499set dummy pkg-config; ac_word=$2
10477{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 10500{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
10478$as_echo_n "checking for $ac_word... " >&6; } 10501$as_echo_n "checking for $ac_word... " >&6; }
10479if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 10502if ${ac_cv_path_PKG_CONFIG+:} false; then :
10480 $as_echo_n "(cached) " >&6 10503 $as_echo_n "(cached) " >&6
10481else 10504else
10482 case $PKG_CONFIG in 10505 case $PKG_CONFIG in
@@ -10594,10 +10617,10 @@ LIBXPM=
10594if test "${HAVE_X11}" = "yes"; then 10617if test "${HAVE_X11}" = "yes"; then
10595 if test "${with_xpm}" != "no"; then 10618 if test "${with_xpm}" != "no"; then
10596 ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default" 10619 ac_fn_c_check_header_mongrel "$LINENO" "X11/xpm.h" "ac_cv_header_X11_xpm_h" "$ac_includes_default"
10597if test "x$ac_cv_header_X11_xpm_h" = x""yes; then : 10620if test "x$ac_cv_header_X11_xpm_h" = xyes; then :
10598 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReadFileToPixmap in -lXpm" >&5 10621 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XpmReadFileToPixmap in -lXpm" >&5
10599$as_echo_n "checking for XpmReadFileToPixmap in -lXpm... " >&6; } 10622$as_echo_n "checking for XpmReadFileToPixmap in -lXpm... " >&6; }
10600if test "${ac_cv_lib_Xpm_XpmReadFileToPixmap+set}" = set; then : 10623if ${ac_cv_lib_Xpm_XpmReadFileToPixmap+:} false; then :
10601 $as_echo_n "(cached) " >&6 10624 $as_echo_n "(cached) " >&6
10602else 10625else
10603 ac_check_lib_save_LIBS=$LIBS 10626 ac_check_lib_save_LIBS=$LIBS
@@ -10631,7 +10654,7 @@ LIBS=$ac_check_lib_save_LIBS
10631fi 10654fi
10632{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5 10655{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xpm_XpmReadFileToPixmap" >&5
10633$as_echo "$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6; } 10656$as_echo "$ac_cv_lib_Xpm_XpmReadFileToPixmap" >&6; }
10634if test "x$ac_cv_lib_Xpm_XpmReadFileToPixmap" = x""yes; then : 10657if test "x$ac_cv_lib_Xpm_XpmReadFileToPixmap" = xyes; then :
10635 HAVE_XPM=yes 10658 HAVE_XPM=yes
10636fi 10659fi
10637 10660
@@ -10683,10 +10706,10 @@ LIBJPEG=
10683if test "${HAVE_X11}" = "yes"; then 10706if test "${HAVE_X11}" = "yes"; then
10684 if test "${with_jpeg}" != "no"; then 10707 if test "${with_jpeg}" != "no"; then
10685 ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default" 10708 ac_fn_c_check_header_mongrel "$LINENO" "jerror.h" "ac_cv_header_jerror_h" "$ac_includes_default"
10686if test "x$ac_cv_header_jerror_h" = x""yes; then : 10709if test "x$ac_cv_header_jerror_h" = xyes; then :
10687 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_destroy_compress in -ljpeg" >&5 10710 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_destroy_compress in -ljpeg" >&5
10688$as_echo_n "checking for jpeg_destroy_compress in -ljpeg... " >&6; } 10711$as_echo_n "checking for jpeg_destroy_compress in -ljpeg... " >&6; }
10689if test "${ac_cv_lib_jpeg_jpeg_destroy_compress+set}" = set; then : 10712if ${ac_cv_lib_jpeg_jpeg_destroy_compress+:} false; then :
10690 $as_echo_n "(cached) " >&6 10713 $as_echo_n "(cached) " >&6
10691else 10714else
10692 ac_check_lib_save_LIBS=$LIBS 10715 ac_check_lib_save_LIBS=$LIBS
@@ -10720,7 +10743,7 @@ LIBS=$ac_check_lib_save_LIBS
10720fi 10743fi
10721{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_destroy_compress" >&5 10744{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_destroy_compress" >&5
10722$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_compress" >&6; } 10745$as_echo "$ac_cv_lib_jpeg_jpeg_destroy_compress" >&6; }
10723if test "x$ac_cv_lib_jpeg_jpeg_destroy_compress" = x""yes; then : 10746if test "x$ac_cv_lib_jpeg_jpeg_destroy_compress" = xyes; then :
10724 HAVE_JPEG=yes 10747 HAVE_JPEG=yes
10725fi 10748fi
10726 10749
@@ -10767,8 +10790,7 @@ if test "${HAVE_X11}" = "yes"; then
10767do : 10790do :
10768 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 10791 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
10769ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 10792ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
10770eval as_val=\$$as_ac_Header 10793if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
10771 if test "x$as_val" = x""yes; then :
10772 cat >>confdefs.h <<_ACEOF 10794 cat >>confdefs.h <<_ACEOF
10773#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 10795#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
10774_ACEOF 10796_ACEOF
@@ -10780,7 +10802,7 @@ done
10780 if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then 10802 if test "$ac_cv_header_png_h" = yes || test "$ac_cv_header_libpng_png_h" = yes ; then
10781 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_get_channels in -lpng" >&5 10803 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_get_channels in -lpng" >&5
10782$as_echo_n "checking for png_get_channels in -lpng... " >&6; } 10804$as_echo_n "checking for png_get_channels in -lpng... " >&6; }
10783if test "${ac_cv_lib_png_png_get_channels+set}" = set; then : 10805if ${ac_cv_lib_png_png_get_channels+:} false; then :
10784 $as_echo_n "(cached) " >&6 10806 $as_echo_n "(cached) " >&6
10785else 10807else
10786 ac_check_lib_save_LIBS=$LIBS 10808 ac_check_lib_save_LIBS=$LIBS
@@ -10814,7 +10836,7 @@ LIBS=$ac_check_lib_save_LIBS
10814fi 10836fi
10815{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_get_channels" >&5 10837{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_get_channels" >&5
10816$as_echo "$ac_cv_lib_png_png_get_channels" >&6; } 10838$as_echo "$ac_cv_lib_png_png_get_channels" >&6; }
10817if test "x$ac_cv_lib_png_png_get_channels" = x""yes; then : 10839if test "x$ac_cv_lib_png_png_get_channels" = xyes; then :
10818 HAVE_PNG=yes 10840 HAVE_PNG=yes
10819fi 10841fi
10820 10842
@@ -10836,13 +10858,13 @@ LIBTIFF=
10836if test "${HAVE_X11}" = "yes"; then 10858if test "${HAVE_X11}" = "yes"; then
10837 if test "${with_tiff}" != "no"; then 10859 if test "${with_tiff}" != "no"; then
10838 ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default" 10860 ac_fn_c_check_header_mongrel "$LINENO" "tiffio.h" "ac_cv_header_tiffio_h" "$ac_includes_default"
10839if test "x$ac_cv_header_tiffio_h" = x""yes; then : 10861if test "x$ac_cv_header_tiffio_h" = xyes; then :
10840 tifflibs="-lz -lm" 10862 tifflibs="-lz -lm"
10841 # At least one tiff package requires the jpeg library. 10863 # At least one tiff package requires the jpeg library.
10842 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi 10864 if test "${HAVE_JPEG}" = yes; then tifflibs="-ljpeg $tifflibs"; fi
10843 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFGetVersion in -ltiff" >&5 10865 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for TIFFGetVersion in -ltiff" >&5
10844$as_echo_n "checking for TIFFGetVersion in -ltiff... " >&6; } 10866$as_echo_n "checking for TIFFGetVersion in -ltiff... " >&6; }
10845if test "${ac_cv_lib_tiff_TIFFGetVersion+set}" = set; then : 10867if ${ac_cv_lib_tiff_TIFFGetVersion+:} false; then :
10846 $as_echo_n "(cached) " >&6 10868 $as_echo_n "(cached) " >&6
10847else 10869else
10848 ac_check_lib_save_LIBS=$LIBS 10870 ac_check_lib_save_LIBS=$LIBS
@@ -10876,7 +10898,7 @@ LIBS=$ac_check_lib_save_LIBS
10876fi 10898fi
10877{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFGetVersion" >&5 10899{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_tiff_TIFFGetVersion" >&5
10878$as_echo "$ac_cv_lib_tiff_TIFFGetVersion" >&6; } 10900$as_echo "$ac_cv_lib_tiff_TIFFGetVersion" >&6; }
10879if test "x$ac_cv_lib_tiff_TIFFGetVersion" = x""yes; then : 10901if test "x$ac_cv_lib_tiff_TIFFGetVersion" = xyes; then :
10880 HAVE_TIFF=yes 10902 HAVE_TIFF=yes
10881fi 10903fi
10882 10904
@@ -10899,12 +10921,12 @@ HAVE_GIF=no
10899LIBGIF= 10921LIBGIF=
10900if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then 10922if test "${HAVE_X11}" = "yes" && test "${with_gif}" != "no"; then
10901 ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default" 10923 ac_fn_c_check_header_mongrel "$LINENO" "gif_lib.h" "ac_cv_header_gif_lib_h" "$ac_includes_default"
10902if test "x$ac_cv_header_gif_lib_h" = x""yes; then : 10924if test "x$ac_cv_header_gif_lib_h" = xyes; then :
10903 # EGifPutExtensionLast only exists from version libungif-4.1.0b1. 10925 # EGifPutExtensionLast only exists from version libungif-4.1.0b1.
10904# Earlier versions can crash Emacs. 10926# Earlier versions can crash Emacs.
10905 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lgif" >&5 10927 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lgif" >&5
10906$as_echo_n "checking for EGifPutExtensionLast in -lgif... " >&6; } 10928$as_echo_n "checking for EGifPutExtensionLast in -lgif... " >&6; }
10907if test "${ac_cv_lib_gif_EGifPutExtensionLast+set}" = set; then : 10929if ${ac_cv_lib_gif_EGifPutExtensionLast+:} false; then :
10908 $as_echo_n "(cached) " >&6 10930 $as_echo_n "(cached) " >&6
10909else 10931else
10910 ac_check_lib_save_LIBS=$LIBS 10932 ac_check_lib_save_LIBS=$LIBS
@@ -10938,7 +10960,7 @@ LIBS=$ac_check_lib_save_LIBS
10938fi 10960fi
10939{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gif_EGifPutExtensionLast" >&5 10961{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gif_EGifPutExtensionLast" >&5
10940$as_echo "$ac_cv_lib_gif_EGifPutExtensionLast" >&6; } 10962$as_echo "$ac_cv_lib_gif_EGifPutExtensionLast" >&6; }
10941if test "x$ac_cv_lib_gif_EGifPutExtensionLast" = x""yes; then : 10963if test "x$ac_cv_lib_gif_EGifPutExtensionLast" = xyes; then :
10942 HAVE_GIF=yes 10964 HAVE_GIF=yes
10943else 10965else
10944 HAVE_GIF=maybe 10966 HAVE_GIF=maybe
@@ -10954,7 +10976,7 @@ fi
10954# If gif_lib.h but no libgif, try libungif. 10976# If gif_lib.h but no libgif, try libungif.
10955 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lungif" >&5 10977 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EGifPutExtensionLast in -lungif" >&5
10956$as_echo_n "checking for EGifPutExtensionLast in -lungif... " >&6; } 10978$as_echo_n "checking for EGifPutExtensionLast in -lungif... " >&6; }
10957if test "${ac_cv_lib_ungif_EGifPutExtensionLast+set}" = set; then : 10979if ${ac_cv_lib_ungif_EGifPutExtensionLast+:} false; then :
10958 $as_echo_n "(cached) " >&6 10980 $as_echo_n "(cached) " >&6
10959else 10981else
10960 ac_check_lib_save_LIBS=$LIBS 10982 ac_check_lib_save_LIBS=$LIBS
@@ -10988,7 +11010,7 @@ LIBS=$ac_check_lib_save_LIBS
10988fi 11010fi
10989{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ungif_EGifPutExtensionLast" >&5 11011{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ungif_EGifPutExtensionLast" >&5
10990$as_echo "$ac_cv_lib_ungif_EGifPutExtensionLast" >&6; } 11012$as_echo "$ac_cv_lib_ungif_EGifPutExtensionLast" >&6; }
10991if test "x$ac_cv_lib_ungif_EGifPutExtensionLast" = x""yes; then : 11013if test "x$ac_cv_lib_ungif_EGifPutExtensionLast" = xyes; then :
10992 HAVE_GIF=yes 11014 HAVE_GIF=yes
10993else 11015else
10994 HAVE_GIF=no 11016 HAVE_GIF=no
@@ -11020,7 +11042,7 @@ if test "${HAVE_X11}" = "yes"; then
11020 MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no" 11042 MISSING="$MISSING libtiff" && WITH_NO="$WITH_NO --with-tiff=no"
11021 11043
11022 if test "X${MISSING}" != X; then 11044 if test "X${MISSING}" != X; then
11023 as_fn_error "The following required libraries were not found: 11045 as_fn_error $? "The following required libraries were not found:
11024 $MISSING 11046 $MISSING
11025Maybe some development libraries/packages are missing? 11047Maybe some development libraries/packages are missing?
11026If you don't want to link with them give 11048If you don't want to link with them give
@@ -11035,10 +11057,10 @@ LIBGPM=
11035MOUSE_SUPPORT= 11057MOUSE_SUPPORT=
11036if test "${with_gpm}" != "no"; then 11058if test "${with_gpm}" != "no"; then
11037 ac_fn_c_check_header_mongrel "$LINENO" "gpm.h" "ac_cv_header_gpm_h" "$ac_includes_default" 11059 ac_fn_c_check_header_mongrel "$LINENO" "gpm.h" "ac_cv_header_gpm_h" "$ac_includes_default"
11038if test "x$ac_cv_header_gpm_h" = x""yes; then : 11060if test "x$ac_cv_header_gpm_h" = xyes; then :
11039 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Gpm_Open in -lgpm" >&5 11061 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Gpm_Open in -lgpm" >&5
11040$as_echo_n "checking for Gpm_Open in -lgpm... " >&6; } 11062$as_echo_n "checking for Gpm_Open in -lgpm... " >&6; }
11041if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then : 11063if ${ac_cv_lib_gpm_Gpm_Open+:} false; then :
11042 $as_echo_n "(cached) " >&6 11064 $as_echo_n "(cached) " >&6
11043else 11065else
11044 ac_check_lib_save_LIBS=$LIBS 11066 ac_check_lib_save_LIBS=$LIBS
@@ -11072,7 +11094,7 @@ LIBS=$ac_check_lib_save_LIBS
11072fi 11094fi
11073{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpm_Gpm_Open" >&5 11095{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_gpm_Gpm_Open" >&5
11074$as_echo "$ac_cv_lib_gpm_Gpm_Open" >&6; } 11096$as_echo "$ac_cv_lib_gpm_Gpm_Open" >&6; }
11075if test "x$ac_cv_lib_gpm_Gpm_Open" = x""yes; then : 11097if test "x$ac_cv_lib_gpm_Gpm_Open" = xyes; then :
11076 HAVE_GPM=yes 11098 HAVE_GPM=yes
11077fi 11099fi
11078 11100
@@ -11092,7 +11114,7 @@ fi
11092 11114
11093 11115
11094ac_fn_c_check_header_mongrel "$LINENO" "malloc/malloc.h" "ac_cv_header_malloc_malloc_h" "$ac_includes_default" 11116ac_fn_c_check_header_mongrel "$LINENO" "malloc/malloc.h" "ac_cv_header_malloc_malloc_h" "$ac_includes_default"
11095if test "x$ac_cv_header_malloc_malloc_h" = x""yes; then : 11117if test "x$ac_cv_header_malloc_malloc_h" = xyes; then :
11096 11118
11097$as_echo "#define HAVE_MALLOC_MALLOC_H 1" >>confdefs.h 11119$as_echo "#define HAVE_MALLOC_MALLOC_H 1" >>confdefs.h
11098 11120
@@ -11137,10 +11159,10 @@ HAVE_X_SM=no
11137LIBXSM= 11159LIBXSM=
11138if test "${HAVE_X11}" = "yes"; then 11160if test "${HAVE_X11}" = "yes"; then
11139 ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default" 11161 ac_fn_c_check_header_mongrel "$LINENO" "X11/SM/SMlib.h" "ac_cv_header_X11_SM_SMlib_h" "$ac_includes_default"
11140if test "x$ac_cv_header_X11_SM_SMlib_h" = x""yes; then : 11162if test "x$ac_cv_header_X11_SM_SMlib_h" = xyes; then :
11141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SmcOpenConnection in -lSM" >&5 11163 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SmcOpenConnection in -lSM" >&5
11142$as_echo_n "checking for SmcOpenConnection in -lSM... " >&6; } 11164$as_echo_n "checking for SmcOpenConnection in -lSM... " >&6; }
11143if test "${ac_cv_lib_SM_SmcOpenConnection+set}" = set; then : 11165if ${ac_cv_lib_SM_SmcOpenConnection+:} false; then :
11144 $as_echo_n "(cached) " >&6 11166 $as_echo_n "(cached) " >&6
11145else 11167else
11146 ac_check_lib_save_LIBS=$LIBS 11168 ac_check_lib_save_LIBS=$LIBS
@@ -11174,7 +11196,7 @@ LIBS=$ac_check_lib_save_LIBS
11174fi 11196fi
11175{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SM_SmcOpenConnection" >&5 11197{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SM_SmcOpenConnection" >&5
11176$as_echo "$ac_cv_lib_SM_SmcOpenConnection" >&6; } 11198$as_echo "$ac_cv_lib_SM_SmcOpenConnection" >&6; }
11177if test "x$ac_cv_lib_SM_SmcOpenConnection" = x""yes; then : 11199if test "x$ac_cv_lib_SM_SmcOpenConnection" = xyes; then :
11178 HAVE_X_SM=yes 11200 HAVE_X_SM=yes
11179fi 11201fi
11180 11202
@@ -11205,7 +11227,7 @@ if test "${with_xml2}" != "no"; then
11205set dummy pkg-config; ac_word=$2 11227set dummy pkg-config; ac_word=$2
11206{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11228{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11207$as_echo_n "checking for $ac_word... " >&6; } 11229$as_echo_n "checking for $ac_word... " >&6; }
11208if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 11230if ${ac_cv_path_PKG_CONFIG+:} false; then :
11209 $as_echo_n "(cached) " >&6 11231 $as_echo_n "(cached) " >&6
11210else 11232else
11211 case $PKG_CONFIG in 11233 case $PKG_CONFIG in
@@ -11296,7 +11318,7 @@ $as_echo "no" >&6; }
11296 LIBS="$LIBXML2_LIBS $LIBS" 11318 LIBS="$LIBXML2_LIBS $LIBS"
11297 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htmlReadMemory in -lxml2" >&5 11319 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for htmlReadMemory in -lxml2" >&5
11298$as_echo_n "checking for htmlReadMemory in -lxml2... " >&6; } 11320$as_echo_n "checking for htmlReadMemory in -lxml2... " >&6; }
11299if test "${ac_cv_lib_xml2_htmlReadMemory+set}" = set; then : 11321if ${ac_cv_lib_xml2_htmlReadMemory+:} false; then :
11300 $as_echo_n "(cached) " >&6 11322 $as_echo_n "(cached) " >&6
11301else 11323else
11302 ac_check_lib_save_LIBS=$LIBS 11324 ac_check_lib_save_LIBS=$LIBS
@@ -11330,7 +11352,7 @@ LIBS=$ac_check_lib_save_LIBS
11330fi 11352fi
11331{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_htmlReadMemory" >&5 11353{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_xml2_htmlReadMemory" >&5
11332$as_echo "$ac_cv_lib_xml2_htmlReadMemory" >&6; } 11354$as_echo "$ac_cv_lib_xml2_htmlReadMemory" >&6; }
11333if test "x$ac_cv_lib_xml2_htmlReadMemory" = x""yes; then : 11355if test "x$ac_cv_lib_xml2_htmlReadMemory" = xyes; then :
11334 HAVE_LIBXML2=yes 11356 HAVE_LIBXML2=yes
11335else 11357else
11336 HAVE_LIBXML2=no 11358 HAVE_LIBXML2=no
@@ -11352,7 +11374,7 @@ fi
11352# If netdb.h doesn't declare h_errno, we must declare it by hand. 11374# If netdb.h doesn't declare h_errno, we must declare it by hand.
11353{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether netdb declares h_errno" >&5 11375{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether netdb declares h_errno" >&5
11354$as_echo_n "checking whether netdb declares h_errno... " >&6; } 11376$as_echo_n "checking whether netdb declares h_errno... " >&6; }
11355if test "${emacs_cv_netdb_declares_h_errno+set}" = set; then : 11377if ${emacs_cv_netdb_declares_h_errno+:} false; then :
11356 $as_echo_n "(cached) " >&6 11378 $as_echo_n "(cached) " >&6
11357else 11379else
11358 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 11380 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11382,11 +11404,22 @@ $as_echo "#define HAVE_H_ERRNO 1" >>confdefs.h
11382 11404
11383fi 11405fi
11384 11406
11407ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
11408if test "x$ac_cv_type_size_t" = xyes; then :
11409
11410else
11411
11412cat >>confdefs.h <<_ACEOF
11413#define size_t unsigned int
11414_ACEOF
11415
11416fi
11417
11385# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works 11418# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
11386# for constant arguments. Useless! 11419# for constant arguments. Useless!
11387{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5 11420{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working alloca.h" >&5
11388$as_echo_n "checking for working alloca.h... " >&6; } 11421$as_echo_n "checking for working alloca.h... " >&6; }
11389if test "${ac_cv_working_alloca_h+set}" = set; then : 11422if ${ac_cv_working_alloca_h+:} false; then :
11390 $as_echo_n "(cached) " >&6 11423 $as_echo_n "(cached) " >&6
11391else 11424else
11392 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 11425 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11419,7 +11452,7 @@ fi
11419 11452
11420{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5 11453{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for alloca" >&5
11421$as_echo_n "checking for alloca... " >&6; } 11454$as_echo_n "checking for alloca... " >&6; }
11422if test "${ac_cv_func_alloca_works+set}" = set; then : 11455if ${ac_cv_func_alloca_works+:} false; then :
11423 $as_echo_n "(cached) " >&6 11456 $as_echo_n "(cached) " >&6
11424else 11457else
11425 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 11458 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11438,7 +11471,7 @@ else
11438 #pragma alloca 11471 #pragma alloca
11439# else 11472# else
11440# ifndef alloca /* predefined by HP cc +Olibcalls */ 11473# ifndef alloca /* predefined by HP cc +Olibcalls */
11441char *alloca (); 11474void *alloca (size_t);
11442# endif 11475# endif
11443# endif 11476# endif
11444# endif 11477# endif
@@ -11482,7 +11515,7 @@ $as_echo "#define C_ALLOCA 1" >>confdefs.h
11482 11515
11483{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5 11516{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether \`alloca.c' needs Cray hooks" >&5
11484$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; } 11517$as_echo_n "checking whether \`alloca.c' needs Cray hooks... " >&6; }
11485if test "${ac_cv_os_cray+set}" = set; then : 11518if ${ac_cv_os_cray+:} false; then :
11486 $as_echo_n "(cached) " >&6 11519 $as_echo_n "(cached) " >&6
11487else 11520else
11488 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 11521 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -11509,8 +11542,7 @@ if test $ac_cv_os_cray = yes; then
11509 for ac_func in _getb67 GETB67 getb67; do 11542 for ac_func in _getb67 GETB67 getb67; do
11510 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 11543 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
11511ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 11544ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
11512eval as_val=\$$as_ac_var 11545if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
11513 if test "x$as_val" = x""yes; then :
11514 11546
11515cat >>confdefs.h <<_ACEOF 11547cat >>confdefs.h <<_ACEOF
11516#define CRAY_STACKSEG_END $ac_func 11548#define CRAY_STACKSEG_END $ac_func
@@ -11524,7 +11556,7 @@ fi
11524 11556
11525{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5 11557{ $as_echo "$as_me:${as_lineno-$LINENO}: checking stack direction for C alloca" >&5
11526$as_echo_n "checking stack direction for C alloca... " >&6; } 11558$as_echo_n "checking stack direction for C alloca... " >&6; }
11527if test "${ac_cv_c_stack_direction+set}" = set; then : 11559if ${ac_cv_c_stack_direction+:} false; then :
11528 $as_echo_n "(cached) " >&6 11560 $as_echo_n "(cached) " >&6
11529else 11561else
11530 if test "$cross_compiling" = yes; then : 11562 if test "$cross_compiling" = yes; then :
@@ -11574,14 +11606,14 @@ fi
11574 11606
11575 11607
11576if test x"$ac_cv_func_alloca_works" != xyes; then 11608if test x"$ac_cv_func_alloca_works" != xyes; then
11577 as_fn_error "a system implementation of alloca is required " "$LINENO" 5 11609 as_fn_error $? "a system implementation of alloca is required " "$LINENO" 5
11578fi 11610fi
11579 11611
11580# fmod, logb, and frexp are found in -lm on most systems. 11612# fmod, logb, and frexp are found in -lm on most systems.
11581# On HPUX 9.01, -lm does not contain logb, so check for sqrt. 11613# On HPUX 9.01, -lm does not contain logb, so check for sqrt.
11582{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5 11614{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqrt in -lm" >&5
11583$as_echo_n "checking for sqrt in -lm... " >&6; } 11615$as_echo_n "checking for sqrt in -lm... " >&6; }
11584if test "${ac_cv_lib_m_sqrt+set}" = set; then : 11616if ${ac_cv_lib_m_sqrt+:} false; then :
11585 $as_echo_n "(cached) " >&6 11617 $as_echo_n "(cached) " >&6
11586else 11618else
11587 ac_check_lib_save_LIBS=$LIBS 11619 ac_check_lib_save_LIBS=$LIBS
@@ -11615,7 +11647,7 @@ LIBS=$ac_check_lib_save_LIBS
11615fi 11647fi
11616{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5 11648{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_sqrt" >&5
11617$as_echo "$ac_cv_lib_m_sqrt" >&6; } 11649$as_echo "$ac_cv_lib_m_sqrt" >&6; }
11618if test "x$ac_cv_lib_m_sqrt" = x""yes; then : 11650if test "x$ac_cv_lib_m_sqrt" = xyes; then :
11619 cat >>confdefs.h <<_ACEOF 11651 cat >>confdefs.h <<_ACEOF
11620#define HAVE_LIBM 1 11652#define HAVE_LIBM 1
11621_ACEOF 11653_ACEOF
@@ -11629,7 +11661,7 @@ fi
11629# have the same check as for liblockfile below. 11661# have the same check as for liblockfile below.
11630{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -lmail" >&5 11662{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -lmail" >&5
11631$as_echo_n "checking for maillock in -lmail... " >&6; } 11663$as_echo_n "checking for maillock in -lmail... " >&6; }
11632if test "${ac_cv_lib_mail_maillock+set}" = set; then : 11664if ${ac_cv_lib_mail_maillock+:} false; then :
11633 $as_echo_n "(cached) " >&6 11665 $as_echo_n "(cached) " >&6
11634else 11666else
11635 ac_check_lib_save_LIBS=$LIBS 11667 ac_check_lib_save_LIBS=$LIBS
@@ -11663,7 +11695,7 @@ LIBS=$ac_check_lib_save_LIBS
11663fi 11695fi
11664{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mail_maillock" >&5 11696{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_mail_maillock" >&5
11665$as_echo "$ac_cv_lib_mail_maillock" >&6; } 11697$as_echo "$ac_cv_lib_mail_maillock" >&6; }
11666if test "x$ac_cv_lib_mail_maillock" = x""yes; then : 11698if test "x$ac_cv_lib_mail_maillock" = xyes; then :
11667 have_mail=yes 11699 have_mail=yes
11668else 11700else
11669 have_mail=no 11701 have_mail=no
@@ -11680,7 +11712,7 @@ else
11680fi 11712fi
11681{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -llockfile" >&5 11713{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for maillock in -llockfile" >&5
11682$as_echo_n "checking for maillock in -llockfile... " >&6; } 11714$as_echo_n "checking for maillock in -llockfile... " >&6; }
11683if test "${ac_cv_lib_lockfile_maillock+set}" = set; then : 11715if ${ac_cv_lib_lockfile_maillock+:} false; then :
11684 $as_echo_n "(cached) " >&6 11716 $as_echo_n "(cached) " >&6
11685else 11717else
11686 ac_check_lib_save_LIBS=$LIBS 11718 ac_check_lib_save_LIBS=$LIBS
@@ -11714,7 +11746,7 @@ LIBS=$ac_check_lib_save_LIBS
11714fi 11746fi
11715{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lockfile_maillock" >&5 11747{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_lockfile_maillock" >&5
11716$as_echo "$ac_cv_lib_lockfile_maillock" >&6; } 11748$as_echo "$ac_cv_lib_lockfile_maillock" >&6; }
11717if test "x$ac_cv_lib_lockfile_maillock" = x""yes; then : 11749if test "x$ac_cv_lib_lockfile_maillock" = xyes; then :
11718 have_lockfile=yes 11750 have_lockfile=yes
11719else 11751else
11720 have_lockfile=no 11752 have_lockfile=no
@@ -11734,7 +11766,7 @@ else
11734set dummy liblockfile.so; ac_word=$2 11766set dummy liblockfile.so; ac_word=$2
11735{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 11767{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
11736$as_echo_n "checking for $ac_word... " >&6; } 11768$as_echo_n "checking for $ac_word... " >&6; }
11737if test "${ac_cv_prog_liblockfile+set}" = set; then : 11769if ${ac_cv_prog_liblockfile+:} false; then :
11738 $as_echo_n "(cached) " >&6 11770 $as_echo_n "(cached) " >&6
11739else 11771else
11740 if test -n "$liblockfile"; then 11772 if test -n "$liblockfile"; then
@@ -11770,7 +11802,7 @@ fi
11770 11802
11771 11803
11772 if test $ac_cv_prog_liblockfile = yes; then 11804 if test $ac_cv_prog_liblockfile = yes; then
11773 as_fn_error "Shared liblockfile found but can't link against it. 11805 as_fn_error $? "Shared liblockfile found but can't link against it.
11774This probably means that movemail could lose mail. 11806This probably means that movemail could lose mail.
11775There may be a \`development' package to install containing liblockfile." "$LINENO" 5 11807There may be a \`development' package to install containing liblockfile." "$LINENO" 5
11776 fi 11808 fi
@@ -11778,7 +11810,7 @@ fi
11778for ac_func in touchlock 11810for ac_func in touchlock
11779do : 11811do :
11780 ac_fn_c_check_func "$LINENO" "touchlock" "ac_cv_func_touchlock" 11812 ac_fn_c_check_func "$LINENO" "touchlock" "ac_cv_func_touchlock"
11781if test "x$ac_cv_func_touchlock" = x""yes; then : 11813if test "x$ac_cv_func_touchlock" = xyes; then :
11782 cat >>confdefs.h <<_ACEOF 11814 cat >>confdefs.h <<_ACEOF
11783#define HAVE_TOUCHLOCK 1 11815#define HAVE_TOUCHLOCK 1
11784_ACEOF 11816_ACEOF
@@ -11789,7 +11821,7 @@ done
11789for ac_header in maillock.h 11821for ac_header in maillock.h
11790do : 11822do :
11791 ac_fn_c_check_header_mongrel "$LINENO" "maillock.h" "ac_cv_header_maillock_h" "$ac_includes_default" 11823 ac_fn_c_check_header_mongrel "$LINENO" "maillock.h" "ac_cv_header_maillock_h" "$ac_includes_default"
11792if test "x$ac_cv_header_maillock_h" = x""yes; then : 11824if test "x$ac_cv_header_maillock_h" = xyes; then :
11793 cat >>confdefs.h <<_ACEOF 11825 cat >>confdefs.h <<_ACEOF
11794#define HAVE_MAILLOCK_H 1 11826#define HAVE_MAILLOCK_H 1
11795_ACEOF 11827_ACEOF
@@ -11859,8 +11891,7 @@ cfmakeraw cfsetspeed isnan copysign __executable_start
11859do : 11891do :
11860 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 11892 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
11861ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 11893ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
11862eval as_val=\$$as_ac_var 11894if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
11863 if test "x$as_val" = x""yes; then :
11864 cat >>confdefs.h <<_ACEOF 11895 cat >>confdefs.h <<_ACEOF
11865#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 11896#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
11866_ACEOF 11897_ACEOF
@@ -11872,7 +11903,7 @@ done
11872for ac_header in sys/un.h 11903for ac_header in sys/un.h
11873do : 11904do :
11874 ac_fn_c_check_header_mongrel "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "$ac_includes_default" 11905 ac_fn_c_check_header_mongrel "$LINENO" "sys/un.h" "ac_cv_header_sys_un_h" "$ac_includes_default"
11875if test "x$ac_cv_header_sys_un_h" = x""yes; then : 11906if test "x$ac_cv_header_sys_un_h" = xyes; then :
11876 cat >>confdefs.h <<_ACEOF 11907 cat >>confdefs.h <<_ACEOF
11877#define HAVE_SYS_UN_H 1 11908#define HAVE_SYS_UN_H 1
11878_ACEOF 11909_ACEOF
@@ -11891,8 +11922,7 @@ done
11891do : 11922do :
11892 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 11923 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
11893ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 11924ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
11894eval as_val=\$$as_ac_var 11925if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
11895 if test "x$as_val" = x""yes; then :
11896 cat >>confdefs.h <<_ACEOF 11926 cat >>confdefs.h <<_ACEOF
11897#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 11927#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
11898_ACEOF 11928_ACEOF
@@ -11906,7 +11936,7 @@ done
11906 11936
11907{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mktime" >&5 11937{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working mktime" >&5
11908$as_echo_n "checking for working mktime... " >&6; } 11938$as_echo_n "checking for working mktime... " >&6; }
11909if test "${ac_cv_func_working_mktime+set}" = set; then : 11939if ${ac_cv_func_working_mktime+:} false; then :
11910 $as_echo_n "(cached) " >&6 11940 $as_echo_n "(cached) " >&6
11911else 11941else
11912 if test "$cross_compiling" = yes; then : 11942 if test "$cross_compiling" = yes; then :
@@ -11944,8 +11974,8 @@ static time_t time_t_max;
11944static time_t time_t_min; 11974static time_t time_t_min;
11945 11975
11946/* Values we'll use to set the TZ environment variable. */ 11976/* Values we'll use to set the TZ environment variable. */
11947static char *tz_strings[] = { 11977static const char *tz_strings[] = {
11948 (char *) 0, "TZ=GMT0", "TZ=JST-9", 11978 (const char *) 0, "TZ=GMT0", "TZ=JST-9",
11949 "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00" 11979 "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00"
11950}; 11980};
11951#define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0])) 11981#define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0]))
@@ -11962,7 +11992,7 @@ spring_forward_gap ()
11962 instead of "TZ=America/Vancouver" in order to detect the bug even 11992 instead of "TZ=America/Vancouver" in order to detect the bug even
11963 on systems that don't support the Olson extension, or don't have the 11993 on systems that don't support the Olson extension, or don't have the
11964 full zoneinfo tables installed. */ 11994 full zoneinfo tables installed. */
11965 putenv ("TZ=PST8PDT,M4.1.0,M10.5.0"); 11995 putenv ((char*) "TZ=PST8PDT,M4.1.0,M10.5.0");
11966 11996
11967 tm.tm_year = 98; 11997 tm.tm_year = 98;
11968 tm.tm_mon = 3; 11998 tm.tm_mon = 3;
@@ -11975,16 +12005,14 @@ spring_forward_gap ()
11975} 12005}
11976 12006
11977static int 12007static int
11978mktime_test1 (now) 12008mktime_test1 (time_t now)
11979 time_t now;
11980{ 12009{
11981 struct tm *lt; 12010 struct tm *lt;
11982 return ! (lt = localtime (&now)) || mktime (lt) == now; 12011 return ! (lt = localtime (&now)) || mktime (lt) == now;
11983} 12012}
11984 12013
11985static int 12014static int
11986mktime_test (now) 12015mktime_test (time_t now)
11987 time_t now;
11988{ 12016{
11989 return (mktime_test1 (now) 12017 return (mktime_test1 (now)
11990 && mktime_test1 ((time_t) (time_t_max - now)) 12018 && mktime_test1 ((time_t) (time_t_max - now))
@@ -12008,8 +12036,7 @@ irix_6_4_bug ()
12008} 12036}
12009 12037
12010static int 12038static int
12011bigtime_test (j) 12039bigtime_test (int j)
12012 int j;
12013{ 12040{
12014 struct tm tm; 12041 struct tm tm;
12015 time_t now; 12042 time_t now;
@@ -12053,7 +12080,7 @@ year_2050_test ()
12053 instead of "TZ=America/Vancouver" in order to detect the bug even 12080 instead of "TZ=America/Vancouver" in order to detect the bug even
12054 on systems that don't support the Olson extension, or don't have the 12081 on systems that don't support the Olson extension, or don't have the
12055 full zoneinfo tables installed. */ 12082 full zoneinfo tables installed. */
12056 putenv ("TZ=PST8PDT,M4.1.0,M10.5.0"); 12083 putenv ((char*) "TZ=PST8PDT,M4.1.0,M10.5.0");
12057 12084
12058 t = mktime (&tm); 12085 t = mktime (&tm);
12059 12086
@@ -12088,7 +12115,7 @@ main ()
12088 for (i = 0; i < N_STRINGS; i++) 12115 for (i = 0; i < N_STRINGS; i++)
12089 { 12116 {
12090 if (tz_strings[i]) 12117 if (tz_strings[i])
12091 putenv (tz_strings[i]); 12118 putenv ((char*) tz_strings[i]);
12092 12119
12093 for (t = 0; t <= time_t_max - delta; t += delta) 12120 for (t = 0; t <= time_t_max - delta; t += delta)
12094 if (! mktime_test (t)) 12121 if (! mktime_test (t))
@@ -12140,13 +12167,13 @@ ac_have_func=no # yes means we've found a way to get the load average.
12140 12167
12141# Make sure getloadavg.c is where it belongs, at configure-time. 12168# Make sure getloadavg.c is where it belongs, at configure-time.
12142test -f "$srcdir/$ac_config_libobj_dir/getloadavg.c" || 12169test -f "$srcdir/$ac_config_libobj_dir/getloadavg.c" ||
12143 as_fn_error "$srcdir/$ac_config_libobj_dir/getloadavg.c is missing" "$LINENO" 5 12170 as_fn_error $? "$srcdir/$ac_config_libobj_dir/getloadavg.c is missing" "$LINENO" 5
12144 12171
12145ac_save_LIBS=$LIBS 12172ac_save_LIBS=$LIBS
12146 12173
12147# Check for getloadavg, but be sure not to touch the cache variable. 12174# Check for getloadavg, but be sure not to touch the cache variable.
12148(ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg" 12175(ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg"
12149if test "x$ac_cv_func_getloadavg" = x""yes; then : 12176if test "x$ac_cv_func_getloadavg" = xyes; then :
12150 exit 0 12177 exit 0
12151else 12178else
12152 exit 1 12179 exit 1
@@ -12157,7 +12184,7 @@ fi
12157for ac_func in pstat_getdynamic 12184for ac_func in pstat_getdynamic
12158do : 12185do :
12159 ac_fn_c_check_func "$LINENO" "pstat_getdynamic" "ac_cv_func_pstat_getdynamic" 12186 ac_fn_c_check_func "$LINENO" "pstat_getdynamic" "ac_cv_func_pstat_getdynamic"
12160if test "x$ac_cv_func_pstat_getdynamic" = x""yes; then : 12187if test "x$ac_cv_func_pstat_getdynamic" = xyes; then :
12161 cat >>confdefs.h <<_ACEOF 12188 cat >>confdefs.h <<_ACEOF
12162#define HAVE_PSTAT_GETDYNAMIC 1 12189#define HAVE_PSTAT_GETDYNAMIC 1
12163_ACEOF 12190_ACEOF
@@ -12169,7 +12196,7 @@ done
12169# Solaris has libkstat which does not require root. 12196# Solaris has libkstat which does not require root.
12170{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kstat_open in -lkstat" >&5 12197{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for kstat_open in -lkstat" >&5
12171$as_echo_n "checking for kstat_open in -lkstat... " >&6; } 12198$as_echo_n "checking for kstat_open in -lkstat... " >&6; }
12172if test "${ac_cv_lib_kstat_kstat_open+set}" = set; then : 12199if ${ac_cv_lib_kstat_kstat_open+:} false; then :
12173 $as_echo_n "(cached) " >&6 12200 $as_echo_n "(cached) " >&6
12174else 12201else
12175 ac_check_lib_save_LIBS=$LIBS 12202 ac_check_lib_save_LIBS=$LIBS
@@ -12203,7 +12230,7 @@ LIBS=$ac_check_lib_save_LIBS
12203fi 12230fi
12204{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kstat_kstat_open" >&5 12231{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kstat_kstat_open" >&5
12205$as_echo "$ac_cv_lib_kstat_kstat_open" >&6; } 12232$as_echo "$ac_cv_lib_kstat_kstat_open" >&6; }
12206if test "x$ac_cv_lib_kstat_kstat_open" = x""yes; then : 12233if test "x$ac_cv_lib_kstat_kstat_open" = xyes; then :
12207 cat >>confdefs.h <<_ACEOF 12234 cat >>confdefs.h <<_ACEOF
12208#define HAVE_LIBKSTAT 1 12235#define HAVE_LIBKSTAT 1
12209_ACEOF 12236_ACEOF
@@ -12221,7 +12248,7 @@ test $ac_cv_lib_kstat_kstat_open = yes && ac_have_func=yes
12221if test $ac_have_func = no; then 12248if test $ac_have_func = no; then
12222 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5 12249 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for elf_begin in -lelf" >&5
12223$as_echo_n "checking for elf_begin in -lelf... " >&6; } 12250$as_echo_n "checking for elf_begin in -lelf... " >&6; }
12224if test "${ac_cv_lib_elf_elf_begin+set}" = set; then : 12251if ${ac_cv_lib_elf_elf_begin+:} false; then :
12225 $as_echo_n "(cached) " >&6 12252 $as_echo_n "(cached) " >&6
12226else 12253else
12227 ac_check_lib_save_LIBS=$LIBS 12254 ac_check_lib_save_LIBS=$LIBS
@@ -12255,7 +12282,7 @@ LIBS=$ac_check_lib_save_LIBS
12255fi 12282fi
12256{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_elf_begin" >&5 12283{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_elf_elf_begin" >&5
12257$as_echo "$ac_cv_lib_elf_elf_begin" >&6; } 12284$as_echo "$ac_cv_lib_elf_elf_begin" >&6; }
12258if test "x$ac_cv_lib_elf_elf_begin" = x""yes; then : 12285if test "x$ac_cv_lib_elf_elf_begin" = xyes; then :
12259 LIBS="-lelf $LIBS" 12286 LIBS="-lelf $LIBS"
12260fi 12287fi
12261 12288
@@ -12263,7 +12290,7 @@ fi
12263if test $ac_have_func = no; then 12290if test $ac_have_func = no; then
12264 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for kvm_open in -lkvm" >&5 12291 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for kvm_open in -lkvm" >&5
12265$as_echo_n "checking for kvm_open in -lkvm... " >&6; } 12292$as_echo_n "checking for kvm_open in -lkvm... " >&6; }
12266if test "${ac_cv_lib_kvm_kvm_open+set}" = set; then : 12293if ${ac_cv_lib_kvm_kvm_open+:} false; then :
12267 $as_echo_n "(cached) " >&6 12294 $as_echo_n "(cached) " >&6
12268else 12295else
12269 ac_check_lib_save_LIBS=$LIBS 12296 ac_check_lib_save_LIBS=$LIBS
@@ -12297,14 +12324,14 @@ LIBS=$ac_check_lib_save_LIBS
12297fi 12324fi
12298{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kvm_kvm_open" >&5 12325{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_kvm_kvm_open" >&5
12299$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; } 12326$as_echo "$ac_cv_lib_kvm_kvm_open" >&6; }
12300if test "x$ac_cv_lib_kvm_kvm_open" = x""yes; then : 12327if test "x$ac_cv_lib_kvm_kvm_open" = xyes; then :
12301 LIBS="-lkvm $LIBS" 12328 LIBS="-lkvm $LIBS"
12302fi 12329fi
12303 12330
12304 # Check for the 4.4BSD definition of getloadavg. 12331 # Check for the 4.4BSD definition of getloadavg.
12305 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lutil" >&5 12332 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lutil" >&5
12306$as_echo_n "checking for getloadavg in -lutil... " >&6; } 12333$as_echo_n "checking for getloadavg in -lutil... " >&6; }
12307if test "${ac_cv_lib_util_getloadavg+set}" = set; then : 12334if ${ac_cv_lib_util_getloadavg+:} false; then :
12308 $as_echo_n "(cached) " >&6 12335 $as_echo_n "(cached) " >&6
12309else 12336else
12310 ac_check_lib_save_LIBS=$LIBS 12337 ac_check_lib_save_LIBS=$LIBS
@@ -12338,7 +12365,7 @@ LIBS=$ac_check_lib_save_LIBS
12338fi 12365fi
12339{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_getloadavg" >&5 12366{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_util_getloadavg" >&5
12340$as_echo "$ac_cv_lib_util_getloadavg" >&6; } 12367$as_echo "$ac_cv_lib_util_getloadavg" >&6; }
12341if test "x$ac_cv_lib_util_getloadavg" = x""yes; then : 12368if test "x$ac_cv_lib_util_getloadavg" = xyes; then :
12342 LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes 12369 LIBS="-lutil $LIBS" ac_have_func=yes ac_cv_func_getloadavg_setgid=yes
12343fi 12370fi
12344 12371
@@ -12351,7 +12378,7 @@ if test $ac_have_func = no; then
12351 LIBS="-L/usr/local/lib $LIBS" 12378 LIBS="-L/usr/local/lib $LIBS"
12352 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lgetloadavg" >&5 12379 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for getloadavg in -lgetloadavg" >&5
12353$as_echo_n "checking for getloadavg in -lgetloadavg... " >&6; } 12380$as_echo_n "checking for getloadavg in -lgetloadavg... " >&6; }
12354if test "${ac_cv_lib_getloadavg_getloadavg+set}" = set; then : 12381if ${ac_cv_lib_getloadavg_getloadavg+:} false; then :
12355 $as_echo_n "(cached) " >&6 12382 $as_echo_n "(cached) " >&6
12356else 12383else
12357 ac_check_lib_save_LIBS=$LIBS 12384 ac_check_lib_save_LIBS=$LIBS
@@ -12385,7 +12412,7 @@ LIBS=$ac_check_lib_save_LIBS
12385fi 12412fi
12386{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_getloadavg_getloadavg" >&5 12413{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_getloadavg_getloadavg" >&5
12387$as_echo "$ac_cv_lib_getloadavg_getloadavg" >&6; } 12414$as_echo "$ac_cv_lib_getloadavg_getloadavg" >&6; }
12388if test "x$ac_cv_lib_getloadavg_getloadavg" = x""yes; then : 12415if test "x$ac_cv_lib_getloadavg_getloadavg" = xyes; then :
12389 LIBS="-lgetloadavg $LIBS" 12416 LIBS="-lgetloadavg $LIBS"
12390else 12417else
12391 LIBS=$ac_getloadavg_LIBS 12418 LIBS=$ac_getloadavg_LIBS
@@ -12398,7 +12425,7 @@ fi
12398for ac_func in getloadavg 12425for ac_func in getloadavg
12399do : 12426do :
12400 ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg" 12427 ac_fn_c_check_func "$LINENO" "getloadavg" "ac_cv_func_getloadavg"
12401if test "x$ac_cv_func_getloadavg" = x""yes; then : 12428if test "x$ac_cv_func_getloadavg" = xyes; then :
12402 cat >>confdefs.h <<_ACEOF 12429 cat >>confdefs.h <<_ACEOF
12403#define HAVE_GETLOADAVG 1 12430#define HAVE_GETLOADAVG 1
12404_ACEOF 12431_ACEOF
@@ -12416,14 +12443,14 @@ $as_echo "#define C_GETLOADAVG 1" >>confdefs.h
12416# Figure out what our getloadavg.c needs. 12443# Figure out what our getloadavg.c needs.
12417ac_have_func=no 12444ac_have_func=no
12418ac_fn_c_check_header_mongrel "$LINENO" "sys/dg_sys_info.h" "ac_cv_header_sys_dg_sys_info_h" "$ac_includes_default" 12445ac_fn_c_check_header_mongrel "$LINENO" "sys/dg_sys_info.h" "ac_cv_header_sys_dg_sys_info_h" "$ac_includes_default"
12419if test "x$ac_cv_header_sys_dg_sys_info_h" = x""yes; then : 12446if test "x$ac_cv_header_sys_dg_sys_info_h" = xyes; then :
12420 ac_have_func=yes 12447 ac_have_func=yes
12421 12448
12422$as_echo "#define DGUX 1" >>confdefs.h 12449$as_echo "#define DGUX 1" >>confdefs.h
12423 12450
12424 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dg_sys_info in -ldgc" >&5 12451 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dg_sys_info in -ldgc" >&5
12425$as_echo_n "checking for dg_sys_info in -ldgc... " >&6; } 12452$as_echo_n "checking for dg_sys_info in -ldgc... " >&6; }
12426if test "${ac_cv_lib_dgc_dg_sys_info+set}" = set; then : 12453if ${ac_cv_lib_dgc_dg_sys_info+:} false; then :
12427 $as_echo_n "(cached) " >&6 12454 $as_echo_n "(cached) " >&6
12428else 12455else
12429 ac_check_lib_save_LIBS=$LIBS 12456 ac_check_lib_save_LIBS=$LIBS
@@ -12457,7 +12484,7 @@ LIBS=$ac_check_lib_save_LIBS
12457fi 12484fi
12458{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dgc_dg_sys_info" >&5 12485{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dgc_dg_sys_info" >&5
12459$as_echo "$ac_cv_lib_dgc_dg_sys_info" >&6; } 12486$as_echo "$ac_cv_lib_dgc_dg_sys_info" >&6; }
12460if test "x$ac_cv_lib_dgc_dg_sys_info" = x""yes; then : 12487if test "x$ac_cv_lib_dgc_dg_sys_info" = xyes; then :
12461 cat >>confdefs.h <<_ACEOF 12488 cat >>confdefs.h <<_ACEOF
12462#define HAVE_LIBDGC 1 12489#define HAVE_LIBDGC 1
12463_ACEOF 12490_ACEOF
@@ -12471,7 +12498,7 @@ fi
12471 12498
12472 12499
12473ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default" 12500ac_fn_c_check_header_mongrel "$LINENO" "locale.h" "ac_cv_header_locale_h" "$ac_includes_default"
12474if test "x$ac_cv_header_locale_h" = x""yes; then : 12501if test "x$ac_cv_header_locale_h" = xyes; then :
12475 12502
12476fi 12503fi
12477 12504
@@ -12479,7 +12506,7 @@ fi
12479for ac_func in setlocale 12506for ac_func in setlocale
12480do : 12507do :
12481 ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale" 12508 ac_fn_c_check_func "$LINENO" "setlocale" "ac_cv_func_setlocale"
12482if test "x$ac_cv_func_setlocale" = x""yes; then : 12509if test "x$ac_cv_func_setlocale" = xyes; then :
12483 cat >>confdefs.h <<_ACEOF 12510 cat >>confdefs.h <<_ACEOF
12484#define HAVE_SETLOCALE 1 12511#define HAVE_SETLOCALE 1
12485_ACEOF 12512_ACEOF
@@ -12491,7 +12518,8 @@ done
12491# We cannot check for <dwarf.h>, because Solaris 2 does not use dwarf (it 12518# We cannot check for <dwarf.h>, because Solaris 2 does not use dwarf (it
12492# uses stabs), but it is still SVR4. We cannot check for <elf.h> because 12519# uses stabs), but it is still SVR4. We cannot check for <elf.h> because
12493# Irix 4.0.5F has the header but not the library. 12520# Irix 4.0.5F has the header but not the library.
12494if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes; then 12521if test $ac_have_func = no && test "$ac_cv_lib_elf_elf_begin" = yes \
12522 && test "$ac_cv_lib_kvm_kvm_open" = yes; then
12495 ac_have_func=yes 12523 ac_have_func=yes
12496 12524
12497$as_echo "#define SVR4 1" >>confdefs.h 12525$as_echo "#define SVR4 1" >>confdefs.h
@@ -12500,7 +12528,7 @@ fi
12500 12528
12501if test $ac_have_func = no; then 12529if test $ac_have_func = no; then
12502 ac_fn_c_check_header_mongrel "$LINENO" "inq_stats/cpustats.h" "ac_cv_header_inq_stats_cpustats_h" "$ac_includes_default" 12530 ac_fn_c_check_header_mongrel "$LINENO" "inq_stats/cpustats.h" "ac_cv_header_inq_stats_cpustats_h" "$ac_includes_default"
12503if test "x$ac_cv_header_inq_stats_cpustats_h" = x""yes; then : 12531if test "x$ac_cv_header_inq_stats_cpustats_h" = xyes; then :
12504 ac_have_func=yes 12532 ac_have_func=yes
12505 12533
12506$as_echo "#define UMAX 1" >>confdefs.h 12534$as_echo "#define UMAX 1" >>confdefs.h
@@ -12515,7 +12543,7 @@ fi
12515 12543
12516if test $ac_have_func = no; then 12544if test $ac_have_func = no; then
12517 ac_fn_c_check_header_mongrel "$LINENO" "sys/cpustats.h" "ac_cv_header_sys_cpustats_h" "$ac_includes_default" 12545 ac_fn_c_check_header_mongrel "$LINENO" "sys/cpustats.h" "ac_cv_header_sys_cpustats_h" "$ac_includes_default"
12518if test "x$ac_cv_header_sys_cpustats_h" = x""yes; then : 12546if test "x$ac_cv_header_sys_cpustats_h" = xyes; then :
12519 ac_have_func=yes; $as_echo "#define UMAX 1" >>confdefs.h 12547 ac_have_func=yes; $as_echo "#define UMAX 1" >>confdefs.h
12520 12548
12521fi 12549fi
@@ -12527,7 +12555,7 @@ if test $ac_have_func = no; then
12527 for ac_header in mach/mach.h 12555 for ac_header in mach/mach.h
12528do : 12556do :
12529 ac_fn_c_check_header_mongrel "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default" 12557 ac_fn_c_check_header_mongrel "$LINENO" "mach/mach.h" "ac_cv_header_mach_mach_h" "$ac_includes_default"
12530if test "x$ac_cv_header_mach_mach_h" = x""yes; then : 12558if test "x$ac_cv_header_mach_mach_h" = xyes; then :
12531 cat >>confdefs.h <<_ACEOF 12559 cat >>confdefs.h <<_ACEOF
12532#define HAVE_MACH_MACH_H 1 12560#define HAVE_MACH_MACH_H 1
12533_ACEOF 12561_ACEOF
@@ -12541,13 +12569,13 @@ fi
12541for ac_header in nlist.h 12569for ac_header in nlist.h
12542do : 12570do :
12543 ac_fn_c_check_header_mongrel "$LINENO" "nlist.h" "ac_cv_header_nlist_h" "$ac_includes_default" 12571 ac_fn_c_check_header_mongrel "$LINENO" "nlist.h" "ac_cv_header_nlist_h" "$ac_includes_default"
12544if test "x$ac_cv_header_nlist_h" = x""yes; then : 12572if test "x$ac_cv_header_nlist_h" = xyes; then :
12545 cat >>confdefs.h <<_ACEOF 12573 cat >>confdefs.h <<_ACEOF
12546#define HAVE_NLIST_H 1 12574#define HAVE_NLIST_H 1
12547_ACEOF 12575_ACEOF
12548 ac_fn_c_check_member "$LINENO" "struct nlist" "n_un.n_name" "ac_cv_member_struct_nlist_n_un_n_name" "#include <nlist.h> 12576 ac_fn_c_check_member "$LINENO" "struct nlist" "n_un.n_name" "ac_cv_member_struct_nlist_n_un_n_name" "#include <nlist.h>
12549" 12577"
12550if test "x$ac_cv_member_struct_nlist_n_un_n_name" = x""yes; then : 12578if test "x$ac_cv_member_struct_nlist_n_un_n_name" = xyes; then :
12551 12579
12552cat >>confdefs.h <<_ACEOF 12580cat >>confdefs.h <<_ACEOF
12553#define HAVE_STRUCT_NLIST_N_UN_N_NAME 1 12581#define HAVE_STRUCT_NLIST_N_UN_N_NAME 1
@@ -12570,7 +12598,7 @@ done
12570# Some definitions of getloadavg require that the program be installed setgid. 12598# Some definitions of getloadavg require that the program be installed setgid.
12571{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getloadavg requires setgid" >&5 12599{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getloadavg requires setgid" >&5
12572$as_echo_n "checking whether getloadavg requires setgid... " >&6; } 12600$as_echo_n "checking whether getloadavg requires setgid... " >&6; }
12573if test "${ac_cv_func_getloadavg_setgid+set}" = set; then : 12601if ${ac_cv_func_getloadavg_setgid+:} false; then :
12574 $as_echo_n "(cached) " >&6 12602 $as_echo_n "(cached) " >&6
12575else 12603else
12576 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 12604 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -12603,7 +12631,7 @@ fi
12603if test $ac_cv_func_getloadavg_setgid = yes; then 12631if test $ac_cv_func_getloadavg_setgid = yes; then
12604 { $as_echo "$as_me:${as_lineno-$LINENO}: checking group of /dev/kmem" >&5 12632 { $as_echo "$as_me:${as_lineno-$LINENO}: checking group of /dev/kmem" >&5
12605$as_echo_n "checking group of /dev/kmem... " >&6; } 12633$as_echo_n "checking group of /dev/kmem... " >&6; }
12606if test "${ac_cv_group_kmem+set}" = set; then : 12634if ${ac_cv_group_kmem+:} false; then :
12607 $as_echo_n "(cached) " >&6 12635 $as_echo_n "(cached) " >&6
12608else 12636else
12609 # On Solaris, /dev/kmem is a symlink. Get info on the real file. 12637 # On Solaris, /dev/kmem is a symlink. Get info on the real file.
@@ -12631,7 +12659,7 @@ LIBS=$ac_save_LIBS
12631 12659
12632{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5 12660{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for _LARGEFILE_SOURCE value needed for large files" >&5
12633$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; } 12661$as_echo_n "checking for _LARGEFILE_SOURCE value needed for large files... " >&6; }
12634if test "${ac_cv_sys_largefile_source+set}" = set; then : 12662if ${ac_cv_sys_largefile_source+:} false; then :
12635 $as_echo_n "(cached) " >&6 12663 $as_echo_n "(cached) " >&6
12636else 12664else
12637 while :; do 12665 while :; do
@@ -12724,7 +12752,7 @@ fi
12724 for ac_header in getopt.h 12752 for ac_header in getopt.h
12725do : 12753do :
12726 ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" 12754 ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default"
12727if test "x$ac_cv_header_getopt_h" = x""yes; then : 12755if test "x$ac_cv_header_getopt_h" = xyes; then :
12728 cat >>confdefs.h <<_ACEOF 12756 cat >>confdefs.h <<_ACEOF
12729#define HAVE_GETOPT_H 1 12757#define HAVE_GETOPT_H 1
12730_ACEOF 12758_ACEOF
@@ -12739,7 +12767,7 @@ done
12739 for ac_func in getopt_long_only 12767 for ac_func in getopt_long_only
12740do : 12768do :
12741 ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" 12769 ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only"
12742if test "x$ac_cv_func_getopt_long_only" = x""yes; then : 12770if test "x$ac_cv_func_getopt_long_only" = xyes; then :
12743 cat >>confdefs.h <<_ACEOF 12771 cat >>confdefs.h <<_ACEOF
12744#define HAVE_GETOPT_LONG_ONLY 1 12772#define HAVE_GETOPT_LONG_ONLY 1
12745_ACEOF 12773_ACEOF
@@ -12754,7 +12782,7 @@ done
12754 if test -z "$GETOPT_H"; then 12782 if test -z "$GETOPT_H"; then
12755 ac_fn_c_check_decl "$LINENO" "optreset" "ac_cv_have_decl_optreset" "#include <getopt.h> 12783 ac_fn_c_check_decl "$LINENO" "optreset" "ac_cv_have_decl_optreset" "#include <getopt.h>
12756" 12784"
12757if test "x$ac_cv_have_decl_optreset" = x""yes; then : 12785if test "x$ac_cv_have_decl_optreset" = xyes; then :
12758 GETOPT_H=getopt.h 12786 GETOPT_H=getopt.h
12759fi 12787fi
12760 12788
@@ -12763,13 +12791,13 @@ fi
12763 if test -z "$GETOPT_H"; then 12791 if test -z "$GETOPT_H"; then
12764 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5 12792 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5
12765$as_echo_n "checking for working GNU getopt function... " >&6; } 12793$as_echo_n "checking for working GNU getopt function... " >&6; }
12766if test "${gl_cv_func_gnu_getopt+set}" = set; then : 12794if ${gl_cv_func_gnu_getopt+:} false; then :
12767 $as_echo_n "(cached) " >&6 12795 $as_echo_n "(cached) " >&6
12768else 12796else
12769 if test "$cross_compiling" = yes; then : 12797 if test "$cross_compiling" = yes; then :
12770 ac_fn_c_check_decl "$LINENO" "getopt_clip" "ac_cv_have_decl_getopt_clip" "#include <getopt.h> 12798 ac_fn_c_check_decl "$LINENO" "getopt_clip" "ac_cv_have_decl_getopt_clip" "#include <getopt.h>
12771" 12799"
12772if test "x$ac_cv_have_decl_getopt_clip" = x""yes; then : 12800if test "x$ac_cv_have_decl_getopt_clip" = xyes; then :
12773 gl_cv_func_gnu_getopt=no 12801 gl_cv_func_gnu_getopt=no
12774else 12802else
12775 gl_cv_func_gnu_getopt=yes 12803 gl_cv_func_gnu_getopt=yes
@@ -12830,7 +12858,7 @@ fi
12830 12858
12831{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgrp requires zero arguments" >&5 12859{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getpgrp requires zero arguments" >&5
12832$as_echo_n "checking whether getpgrp requires zero arguments... " >&6; } 12860$as_echo_n "checking whether getpgrp requires zero arguments... " >&6; }
12833if test "${ac_cv_func_getpgrp_void+set}" = set; then : 12861if ${ac_cv_func_getpgrp_void+:} false; then :
12834 $as_echo_n "(cached) " >&6 12862 $as_echo_n "(cached) " >&6
12835else 12863else
12836 # Use it with a single arg. 12864 # Use it with a single arg.
@@ -12865,7 +12893,7 @@ fi
12865for ac_func in strftime 12893for ac_func in strftime
12866do : 12894do :
12867 ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime" 12895 ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime"
12868if test "x$ac_cv_func_strftime" = x""yes; then : 12896if test "x$ac_cv_func_strftime" = xyes; then :
12869 cat >>confdefs.h <<_ACEOF 12897 cat >>confdefs.h <<_ACEOF
12870#define HAVE_STRFTIME 1 12898#define HAVE_STRFTIME 1
12871_ACEOF 12899_ACEOF
@@ -12874,7 +12902,7 @@ else
12874 # strftime is in -lintl on SCO UNIX. 12902 # strftime is in -lintl on SCO UNIX.
12875{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5 12903{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5
12876$as_echo_n "checking for strftime in -lintl... " >&6; } 12904$as_echo_n "checking for strftime in -lintl... " >&6; }
12877if test "${ac_cv_lib_intl_strftime+set}" = set; then : 12905if ${ac_cv_lib_intl_strftime+:} false; then :
12878 $as_echo_n "(cached) " >&6 12906 $as_echo_n "(cached) " >&6
12879else 12907else
12880 ac_check_lib_save_LIBS=$LIBS 12908 ac_check_lib_save_LIBS=$LIBS
@@ -12908,7 +12936,7 @@ LIBS=$ac_check_lib_save_LIBS
12908fi 12936fi
12909{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_strftime" >&5 12937{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_strftime" >&5
12910$as_echo "$ac_cv_lib_intl_strftime" >&6; } 12938$as_echo "$ac_cv_lib_intl_strftime" >&6; }
12911if test "x$ac_cv_lib_intl_strftime" = x""yes; then : 12939if test "x$ac_cv_lib_intl_strftime" = xyes; then :
12912 $as_echo "#define HAVE_STRFTIME 1" >>confdefs.h 12940 $as_echo "#define HAVE_STRFTIME 1" >>confdefs.h
12913 12941
12914LIBS="-lintl $LIBS" 12942LIBS="-lintl $LIBS"
@@ -12922,7 +12950,7 @@ done
12922for ac_func in grantpt 12950for ac_func in grantpt
12923do : 12951do :
12924 ac_fn_c_check_func "$LINENO" "grantpt" "ac_cv_func_grantpt" 12952 ac_fn_c_check_func "$LINENO" "grantpt" "ac_cv_func_grantpt"
12925if test "x$ac_cv_func_grantpt" = x""yes; then : 12953if test "x$ac_cv_func_grantpt" = xyes; then :
12926 cat >>confdefs.h <<_ACEOF 12954 cat >>confdefs.h <<_ACEOF
12927#define HAVE_GRANTPT 1 12955#define HAVE_GRANTPT 1
12928_ACEOF 12956_ACEOF
@@ -12935,7 +12963,7 @@ done
12935for ac_func in getpt 12963for ac_func in getpt
12936do : 12964do :
12937 ac_fn_c_check_func "$LINENO" "getpt" "ac_cv_func_getpt" 12965 ac_fn_c_check_func "$LINENO" "getpt" "ac_cv_func_getpt"
12938if test "x$ac_cv_func_getpt" = x""yes; then : 12966if test "x$ac_cv_func_getpt" = xyes; then :
12939 cat >>confdefs.h <<_ACEOF 12967 cat >>confdefs.h <<_ACEOF
12940#define HAVE_GETPT 1 12968#define HAVE_GETPT 1
12941_ACEOF 12969_ACEOF
@@ -12952,7 +12980,7 @@ done
12952have_tputs_et_al=true 12980have_tputs_et_al=true
12953{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing tputs" >&5 12981{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing tputs" >&5
12954$as_echo_n "checking for library containing tputs... " >&6; } 12982$as_echo_n "checking for library containing tputs... " >&6; }
12955if test "${ac_cv_search_tputs+set}" = set; then : 12983if ${ac_cv_search_tputs+:} false; then :
12956 $as_echo_n "(cached) " >&6 12984 $as_echo_n "(cached) " >&6
12957else 12985else
12958 ac_func_search_save_LIBS=$LIBS 12986 ac_func_search_save_LIBS=$LIBS
@@ -12986,11 +13014,11 @@ for ac_lib in '' ncurses terminfo termcap; do
12986fi 13014fi
12987rm -f core conftest.err conftest.$ac_objext \ 13015rm -f core conftest.err conftest.$ac_objext \
12988 conftest$ac_exeext 13016 conftest$ac_exeext
12989 if test "${ac_cv_search_tputs+set}" = set; then : 13017 if ${ac_cv_search_tputs+:} false; then :
12990 break 13018 break
12991fi 13019fi
12992done 13020done
12993if test "${ac_cv_search_tputs+set}" = set; then : 13021if ${ac_cv_search_tputs+:} false; then :
12994 13022
12995else 13023else
12996 ac_cv_search_tputs=no 13024 ac_cv_search_tputs=no
@@ -13009,7 +13037,7 @@ else
13009fi 13037fi
13010 13038
13011if test "$have_tputs_et_al" != true; then 13039if test "$have_tputs_et_al" != true; then
13012 as_fn_error "I couldn't find termcap functions (tputs and friends). 13040 as_fn_error $? "I couldn't find termcap functions (tputs and friends).
13013Maybe some development libraries/packages are missing? Try installing 13041Maybe some development libraries/packages are missing? Try installing
13014libncurses-dev(el), libterminfo-dev(el) or similar." "$LINENO" 5 13042libncurses-dev(el), libterminfo-dev(el) or similar." "$LINENO" 5
13015fi 13043fi
@@ -13049,7 +13077,7 @@ case "$opsys" in
13049 freebsd) 13077 freebsd)
13050 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeBSD is new enough to use terminfo" >&5 13078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeBSD is new enough to use terminfo" >&5
13051$as_echo_n "checking whether FreeBSD is new enough to use terminfo... " >&6; } 13079$as_echo_n "checking whether FreeBSD is new enough to use terminfo... " >&6; }
13052 if test "${emacs_cv_freebsd_terminfo+set}" = set; then : 13080 if ${emacs_cv_freebsd_terminfo+:} false; then :
13053 $as_echo_n "(cached) " >&6 13081 $as_echo_n "(cached) " >&6
13054else 13082else
13055 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 13083 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -13191,16 +13219,16 @@ LIBHESIOD=
13191if test "$with_hesiod" != no ; then 13219if test "$with_hesiod" != no ; then
13192 # Don't set $LIBS here -- see comments above. FIXME which comments? 13220 # Don't set $LIBS here -- see comments above. FIXME which comments?
13193 ac_fn_c_check_func "$LINENO" "res_send" "ac_cv_func_res_send" 13221 ac_fn_c_check_func "$LINENO" "res_send" "ac_cv_func_res_send"
13194if test "x$ac_cv_func_res_send" = x""yes; then : 13222if test "x$ac_cv_func_res_send" = xyes; then :
13195 13223
13196else 13224else
13197 ac_fn_c_check_func "$LINENO" "__res_send" "ac_cv_func___res_send" 13225 ac_fn_c_check_func "$LINENO" "__res_send" "ac_cv_func___res_send"
13198if test "x$ac_cv_func___res_send" = x""yes; then : 13226if test "x$ac_cv_func___res_send" = xyes; then :
13199 13227
13200else 13228else
13201 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_send in -lresolv" >&5 13229 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for res_send in -lresolv" >&5
13202$as_echo_n "checking for res_send in -lresolv... " >&6; } 13230$as_echo_n "checking for res_send in -lresolv... " >&6; }
13203if test "${ac_cv_lib_resolv_res_send+set}" = set; then : 13231if ${ac_cv_lib_resolv_res_send+:} false; then :
13204 $as_echo_n "(cached) " >&6 13232 $as_echo_n "(cached) " >&6
13205else 13233else
13206 ac_check_lib_save_LIBS=$LIBS 13234 ac_check_lib_save_LIBS=$LIBS
@@ -13234,12 +13262,12 @@ LIBS=$ac_check_lib_save_LIBS
13234fi 13262fi
13235{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_send" >&5 13263{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv_res_send" >&5
13236$as_echo "$ac_cv_lib_resolv_res_send" >&6; } 13264$as_echo "$ac_cv_lib_resolv_res_send" >&6; }
13237if test "x$ac_cv_lib_resolv_res_send" = x""yes; then : 13265if test "x$ac_cv_lib_resolv_res_send" = xyes; then :
13238 resolv=yes 13266 resolv=yes
13239else 13267else
13240 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_send in -lresolv" >&5 13268 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for __res_send in -lresolv" >&5
13241$as_echo_n "checking for __res_send in -lresolv... " >&6; } 13269$as_echo_n "checking for __res_send in -lresolv... " >&6; }
13242if test "${ac_cv_lib_resolv___res_send+set}" = set; then : 13270if ${ac_cv_lib_resolv___res_send+:} false; then :
13243 $as_echo_n "(cached) " >&6 13271 $as_echo_n "(cached) " >&6
13244else 13272else
13245 ac_check_lib_save_LIBS=$LIBS 13273 ac_check_lib_save_LIBS=$LIBS
@@ -13273,7 +13301,7 @@ LIBS=$ac_check_lib_save_LIBS
13273fi 13301fi
13274{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_send" >&5 13302{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_resolv___res_send" >&5
13275$as_echo "$ac_cv_lib_resolv___res_send" >&6; } 13303$as_echo "$ac_cv_lib_resolv___res_send" >&6; }
13276if test "x$ac_cv_lib_resolv___res_send" = x""yes; then : 13304if test "x$ac_cv_lib_resolv___res_send" = xyes; then :
13277 resolv=yes 13305 resolv=yes
13278fi 13306fi
13279 13307
@@ -13289,12 +13317,12 @@ fi
13289 RESOLVLIB= 13317 RESOLVLIB=
13290 fi 13318 fi
13291 ac_fn_c_check_func "$LINENO" "hes_getmailhost" "ac_cv_func_hes_getmailhost" 13319 ac_fn_c_check_func "$LINENO" "hes_getmailhost" "ac_cv_func_hes_getmailhost"
13292if test "x$ac_cv_func_hes_getmailhost" = x""yes; then : 13320if test "x$ac_cv_func_hes_getmailhost" = xyes; then :
13293 13321
13294else 13322else
13295 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hes_getmailhost in -lhesiod" >&5 13323 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for hes_getmailhost in -lhesiod" >&5
13296$as_echo_n "checking for hes_getmailhost in -lhesiod... " >&6; } 13324$as_echo_n "checking for hes_getmailhost in -lhesiod... " >&6; }
13297if test "${ac_cv_lib_hesiod_hes_getmailhost+set}" = set; then : 13325if ${ac_cv_lib_hesiod_hes_getmailhost+:} false; then :
13298 $as_echo_n "(cached) " >&6 13326 $as_echo_n "(cached) " >&6
13299else 13327else
13300 ac_check_lib_save_LIBS=$LIBS 13328 ac_check_lib_save_LIBS=$LIBS
@@ -13328,7 +13356,7 @@ LIBS=$ac_check_lib_save_LIBS
13328fi 13356fi
13329{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_hesiod_hes_getmailhost" >&5 13357{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_hesiod_hes_getmailhost" >&5
13330$as_echo "$ac_cv_lib_hesiod_hes_getmailhost" >&6; } 13358$as_echo "$ac_cv_lib_hesiod_hes_getmailhost" >&6; }
13331if test "x$ac_cv_lib_hesiod_hes_getmailhost" = x""yes; then : 13359if test "x$ac_cv_lib_hesiod_hes_getmailhost" = xyes; then :
13332 hesiod=yes 13360 hesiod=yes
13333else 13361else
13334 : 13362 :
@@ -13367,7 +13395,7 @@ KRB4LIB=
13367if test "${with_kerberos}" != no; then 13395if test "${with_kerberos}" != no; then
13368 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for com_err in -lcom_err" >&5 13396 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for com_err in -lcom_err" >&5
13369$as_echo_n "checking for com_err in -lcom_err... " >&6; } 13397$as_echo_n "checking for com_err in -lcom_err... " >&6; }
13370if test "${ac_cv_lib_com_err_com_err+set}" = set; then : 13398if ${ac_cv_lib_com_err_com_err+:} false; then :
13371 $as_echo_n "(cached) " >&6 13399 $as_echo_n "(cached) " >&6
13372else 13400else
13373 ac_check_lib_save_LIBS=$LIBS 13401 ac_check_lib_save_LIBS=$LIBS
@@ -13401,7 +13429,7 @@ LIBS=$ac_check_lib_save_LIBS
13401fi 13429fi
13402{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_com_err_com_err" >&5 13430{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_com_err_com_err" >&5
13403$as_echo "$ac_cv_lib_com_err_com_err" >&6; } 13431$as_echo "$ac_cv_lib_com_err_com_err" >&6; }
13404if test "x$ac_cv_lib_com_err_com_err" = x""yes; then : 13432if test "x$ac_cv_lib_com_err_com_err" = xyes; then :
13405 have_com_err=yes 13433 have_com_err=yes
13406else 13434else
13407 have_com_err=no 13435 have_com_err=no
@@ -13416,7 +13444,7 @@ $as_echo "#define HAVE_LIBCOM_ERR 1" >>confdefs.h
13416 fi 13444 fi
13417 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lcrypto" >&5 13445 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lcrypto" >&5
13418$as_echo_n "checking for mit_des_cbc_encrypt in -lcrypto... " >&6; } 13446$as_echo_n "checking for mit_des_cbc_encrypt in -lcrypto... " >&6; }
13419if test "${ac_cv_lib_crypto_mit_des_cbc_encrypt+set}" = set; then : 13447if ${ac_cv_lib_crypto_mit_des_cbc_encrypt+:} false; then :
13420 $as_echo_n "(cached) " >&6 13448 $as_echo_n "(cached) " >&6
13421else 13449else
13422 ac_check_lib_save_LIBS=$LIBS 13450 ac_check_lib_save_LIBS=$LIBS
@@ -13450,7 +13478,7 @@ LIBS=$ac_check_lib_save_LIBS
13450fi 13478fi
13451{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5 13479{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_crypto_mit_des_cbc_encrypt" >&5
13452$as_echo "$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6; } 13480$as_echo "$ac_cv_lib_crypto_mit_des_cbc_encrypt" >&6; }
13453if test "x$ac_cv_lib_crypto_mit_des_cbc_encrypt" = x""yes; then : 13481if test "x$ac_cv_lib_crypto_mit_des_cbc_encrypt" = xyes; then :
13454 have_crypto=yes 13482 have_crypto=yes
13455else 13483else
13456 have_crypto=no 13484 have_crypto=no
@@ -13465,7 +13493,7 @@ $as_echo "#define HAVE_LIBCRYPTO 1" >>confdefs.h
13465 fi 13493 fi
13466 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lk5crypto" >&5 13494 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for mit_des_cbc_encrypt in -lk5crypto" >&5
13467$as_echo_n "checking for mit_des_cbc_encrypt in -lk5crypto... " >&6; } 13495$as_echo_n "checking for mit_des_cbc_encrypt in -lk5crypto... " >&6; }
13468if test "${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+set}" = set; then : 13496if ${ac_cv_lib_k5crypto_mit_des_cbc_encrypt+:} false; then :
13469 $as_echo_n "(cached) " >&6 13497 $as_echo_n "(cached) " >&6
13470else 13498else
13471 ac_check_lib_save_LIBS=$LIBS 13499 ac_check_lib_save_LIBS=$LIBS
@@ -13499,7 +13527,7 @@ LIBS=$ac_check_lib_save_LIBS
13499fi 13527fi
13500{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5 13528{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&5
13501$as_echo "$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6; } 13529$as_echo "$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" >&6; }
13502if test "x$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" = x""yes; then : 13530if test "x$ac_cv_lib_k5crypto_mit_des_cbc_encrypt" = xyes; then :
13503 have_k5crypto=yes 13531 have_k5crypto=yes
13504else 13532else
13505 have_k5crypto=no 13533 have_k5crypto=no
@@ -13514,7 +13542,7 @@ $as_echo "#define HAVE_LIBK5CRYPTO 1" >>confdefs.h
13514 fi 13542 fi
13515 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb5_init_context in -lkrb5" >&5 13543 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb5_init_context in -lkrb5" >&5
13516$as_echo_n "checking for krb5_init_context in -lkrb5... " >&6; } 13544$as_echo_n "checking for krb5_init_context in -lkrb5... " >&6; }
13517if test "${ac_cv_lib_krb5_krb5_init_context+set}" = set; then : 13545if ${ac_cv_lib_krb5_krb5_init_context+:} false; then :
13518 $as_echo_n "(cached) " >&6 13546 $as_echo_n "(cached) " >&6
13519else 13547else
13520 ac_check_lib_save_LIBS=$LIBS 13548 ac_check_lib_save_LIBS=$LIBS
@@ -13548,7 +13576,7 @@ LIBS=$ac_check_lib_save_LIBS
13548fi 13576fi
13549{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb5_krb5_init_context" >&5 13577{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb5_krb5_init_context" >&5
13550$as_echo "$ac_cv_lib_krb5_krb5_init_context" >&6; } 13578$as_echo "$ac_cv_lib_krb5_krb5_init_context" >&6; }
13551if test "x$ac_cv_lib_krb5_krb5_init_context" = x""yes; then : 13579if test "x$ac_cv_lib_krb5_krb5_init_context" = xyes; then :
13552 have_krb5=yes 13580 have_krb5=yes
13553else 13581else
13554 have_krb5=no 13582 have_krb5=no
@@ -13564,7 +13592,7 @@ $as_echo "#define HAVE_LIBKRB5 1" >>confdefs.h
13564 if test "${with_kerberos5}" = no; then 13592 if test "${with_kerberos5}" = no; then
13565 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes425" >&5 13593 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes425" >&5
13566$as_echo_n "checking for des_cbc_encrypt in -ldes425... " >&6; } 13594$as_echo_n "checking for des_cbc_encrypt in -ldes425... " >&6; }
13567if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then : 13595if ${ac_cv_lib_des425_des_cbc_encrypt+:} false; then :
13568 $as_echo_n "(cached) " >&6 13596 $as_echo_n "(cached) " >&6
13569else 13597else
13570 ac_check_lib_save_LIBS=$LIBS 13598 ac_check_lib_save_LIBS=$LIBS
@@ -13598,7 +13626,7 @@ LIBS=$ac_check_lib_save_LIBS
13598fi 13626fi
13599{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 13627{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5
13600$as_echo "$ac_cv_lib_des425_des_cbc_encrypt" >&6; } 13628$as_echo "$ac_cv_lib_des425_des_cbc_encrypt" >&6; }
13601if test "x$ac_cv_lib_des425_des_cbc_encrypt" = x""yes; then : 13629if test "x$ac_cv_lib_des425_des_cbc_encrypt" = xyes; then :
13602 have_des425=yes 13630 have_des425=yes
13603else 13631else
13604 have_des425=no 13632 have_des425=no
@@ -13613,7 +13641,7 @@ $as_echo "#define HAVE_LIBDES425 1" >>confdefs.h
13613 else 13641 else
13614 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes" >&5 13642 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for des_cbc_encrypt in -ldes" >&5
13615$as_echo_n "checking for des_cbc_encrypt in -ldes... " >&6; } 13643$as_echo_n "checking for des_cbc_encrypt in -ldes... " >&6; }
13616if test "${ac_cv_lib_des_des_cbc_encrypt+set}" = set; then : 13644if ${ac_cv_lib_des_des_cbc_encrypt+:} false; then :
13617 $as_echo_n "(cached) " >&6 13645 $as_echo_n "(cached) " >&6
13618else 13646else
13619 ac_check_lib_save_LIBS=$LIBS 13647 ac_check_lib_save_LIBS=$LIBS
@@ -13647,7 +13675,7 @@ LIBS=$ac_check_lib_save_LIBS
13647fi 13675fi
13648{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des_des_cbc_encrypt" >&5 13676{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_des_des_cbc_encrypt" >&5
13649$as_echo "$ac_cv_lib_des_des_cbc_encrypt" >&6; } 13677$as_echo "$ac_cv_lib_des_des_cbc_encrypt" >&6; }
13650if test "x$ac_cv_lib_des_des_cbc_encrypt" = x""yes; then : 13678if test "x$ac_cv_lib_des_des_cbc_encrypt" = xyes; then :
13651 have_des=yes 13679 have_des=yes
13652else 13680else
13653 have_des=no 13681 have_des=no
@@ -13663,7 +13691,7 @@ $as_echo "#define HAVE_LIBDES 1" >>confdefs.h
13663 fi 13691 fi
13664 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb4" >&5 13692 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb4" >&5
13665$as_echo_n "checking for krb_get_cred in -lkrb4... " >&6; } 13693$as_echo_n "checking for krb_get_cred in -lkrb4... " >&6; }
13666if test "${ac_cv_lib_krb4_krb_get_cred+set}" = set; then : 13694if ${ac_cv_lib_krb4_krb_get_cred+:} false; then :
13667 $as_echo_n "(cached) " >&6 13695 $as_echo_n "(cached) " >&6
13668else 13696else
13669 ac_check_lib_save_LIBS=$LIBS 13697 ac_check_lib_save_LIBS=$LIBS
@@ -13697,7 +13725,7 @@ LIBS=$ac_check_lib_save_LIBS
13697fi 13725fi
13698{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb4_krb_get_cred" >&5 13726{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb4_krb_get_cred" >&5
13699$as_echo "$ac_cv_lib_krb4_krb_get_cred" >&6; } 13727$as_echo "$ac_cv_lib_krb4_krb_get_cred" >&6; }
13700if test "x$ac_cv_lib_krb4_krb_get_cred" = x""yes; then : 13728if test "x$ac_cv_lib_krb4_krb_get_cred" = xyes; then :
13701 have_krb4=yes 13729 have_krb4=yes
13702else 13730else
13703 have_krb4=no 13731 have_krb4=no
@@ -13712,7 +13740,7 @@ $as_echo "#define HAVE_LIBKRB4 1" >>confdefs.h
13712 else 13740 else
13713 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb" >&5 13741 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for krb_get_cred in -lkrb" >&5
13714$as_echo_n "checking for krb_get_cred in -lkrb... " >&6; } 13742$as_echo_n "checking for krb_get_cred in -lkrb... " >&6; }
13715if test "${ac_cv_lib_krb_krb_get_cred+set}" = set; then : 13743if ${ac_cv_lib_krb_krb_get_cred+:} false; then :
13716 $as_echo_n "(cached) " >&6 13744 $as_echo_n "(cached) " >&6
13717else 13745else
13718 ac_check_lib_save_LIBS=$LIBS 13746 ac_check_lib_save_LIBS=$LIBS
@@ -13746,7 +13774,7 @@ LIBS=$ac_check_lib_save_LIBS
13746fi 13774fi
13747{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb_krb_get_cred" >&5 13775{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_krb_krb_get_cred" >&5
13748$as_echo "$ac_cv_lib_krb_krb_get_cred" >&6; } 13776$as_echo "$ac_cv_lib_krb_krb_get_cred" >&6; }
13749if test "x$ac_cv_lib_krb_krb_get_cred" = x""yes; then : 13777if test "x$ac_cv_lib_krb_krb_get_cred" = xyes; then :
13750 have_krb=yes 13778 have_krb=yes
13751else 13779else
13752 have_krb=no 13780 have_krb=no
@@ -13766,13 +13794,13 @@ $as_echo "#define HAVE_LIBKRB 1" >>confdefs.h
13766 for ac_header in krb5.h 13794 for ac_header in krb5.h
13767do : 13795do :
13768 ac_fn_c_check_header_mongrel "$LINENO" "krb5.h" "ac_cv_header_krb5_h" "$ac_includes_default" 13796 ac_fn_c_check_header_mongrel "$LINENO" "krb5.h" "ac_cv_header_krb5_h" "$ac_includes_default"
13769if test "x$ac_cv_header_krb5_h" = x""yes; then : 13797if test "x$ac_cv_header_krb5_h" = xyes; then :
13770 cat >>confdefs.h <<_ACEOF 13798 cat >>confdefs.h <<_ACEOF
13771#define HAVE_KRB5_H 1 13799#define HAVE_KRB5_H 1
13772_ACEOF 13800_ACEOF
13773 ac_fn_c_check_member "$LINENO" "krb5_error" "text" "ac_cv_member_krb5_error_text" "#include <krb5.h> 13801 ac_fn_c_check_member "$LINENO" "krb5_error" "text" "ac_cv_member_krb5_error_text" "#include <krb5.h>
13774" 13802"
13775if test "x$ac_cv_member_krb5_error_text" = x""yes; then : 13803if test "x$ac_cv_member_krb5_error_text" = xyes; then :
13776 13804
13777cat >>confdefs.h <<_ACEOF 13805cat >>confdefs.h <<_ACEOF
13778#define HAVE_KRB5_ERROR_TEXT 1 13806#define HAVE_KRB5_ERROR_TEXT 1
@@ -13782,7 +13810,7 @@ _ACEOF
13782fi 13810fi
13783ac_fn_c_check_member "$LINENO" "krb5_error" "e_text" "ac_cv_member_krb5_error_e_text" "#include <krb5.h> 13811ac_fn_c_check_member "$LINENO" "krb5_error" "e_text" "ac_cv_member_krb5_error_e_text" "#include <krb5.h>
13784" 13812"
13785if test "x$ac_cv_member_krb5_error_e_text" = x""yes; then : 13813if test "x$ac_cv_member_krb5_error_e_text" = xyes; then :
13786 13814
13787cat >>confdefs.h <<_ACEOF 13815cat >>confdefs.h <<_ACEOF
13788#define HAVE_KRB5_ERROR_E_TEXT 1 13816#define HAVE_KRB5_ERROR_E_TEXT 1
@@ -13799,7 +13827,7 @@ done
13799 for ac_header in des.h 13827 for ac_header in des.h
13800do : 13828do :
13801 ac_fn_c_check_header_mongrel "$LINENO" "des.h" "ac_cv_header_des_h" "$ac_includes_default" 13829 ac_fn_c_check_header_mongrel "$LINENO" "des.h" "ac_cv_header_des_h" "$ac_includes_default"
13802if test "x$ac_cv_header_des_h" = x""yes; then : 13830if test "x$ac_cv_header_des_h" = xyes; then :
13803 cat >>confdefs.h <<_ACEOF 13831 cat >>confdefs.h <<_ACEOF
13804#define HAVE_DES_H 1 13832#define HAVE_DES_H 1
13805_ACEOF 13833_ACEOF
@@ -13808,7 +13836,7 @@ else
13808 for ac_header in kerberosIV/des.h 13836 for ac_header in kerberosIV/des.h
13809do : 13837do :
13810 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/des.h" "ac_cv_header_kerberosIV_des_h" "$ac_includes_default" 13838 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/des.h" "ac_cv_header_kerberosIV_des_h" "$ac_includes_default"
13811if test "x$ac_cv_header_kerberosIV_des_h" = x""yes; then : 13839if test "x$ac_cv_header_kerberosIV_des_h" = xyes; then :
13812 cat >>confdefs.h <<_ACEOF 13840 cat >>confdefs.h <<_ACEOF
13813#define HAVE_KERBEROSIV_DES_H 1 13841#define HAVE_KERBEROSIV_DES_H 1
13814_ACEOF 13842_ACEOF
@@ -13817,7 +13845,7 @@ else
13817 for ac_header in kerberos/des.h 13845 for ac_header in kerberos/des.h
13818do : 13846do :
13819 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/des.h" "ac_cv_header_kerberos_des_h" "$ac_includes_default" 13847 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/des.h" "ac_cv_header_kerberos_des_h" "$ac_includes_default"
13820if test "x$ac_cv_header_kerberos_des_h" = x""yes; then : 13848if test "x$ac_cv_header_kerberos_des_h" = xyes; then :
13821 cat >>confdefs.h <<_ACEOF 13849 cat >>confdefs.h <<_ACEOF
13822#define HAVE_KERBEROS_DES_H 1 13850#define HAVE_KERBEROS_DES_H 1
13823_ACEOF 13851_ACEOF
@@ -13837,7 +13865,7 @@ done
13837 for ac_header in krb.h 13865 for ac_header in krb.h
13838do : 13866do :
13839 ac_fn_c_check_header_mongrel "$LINENO" "krb.h" "ac_cv_header_krb_h" "$ac_includes_default" 13867 ac_fn_c_check_header_mongrel "$LINENO" "krb.h" "ac_cv_header_krb_h" "$ac_includes_default"
13840if test "x$ac_cv_header_krb_h" = x""yes; then : 13868if test "x$ac_cv_header_krb_h" = xyes; then :
13841 cat >>confdefs.h <<_ACEOF 13869 cat >>confdefs.h <<_ACEOF
13842#define HAVE_KRB_H 1 13870#define HAVE_KRB_H 1
13843_ACEOF 13871_ACEOF
@@ -13846,7 +13874,7 @@ else
13846 for ac_header in kerberosIV/krb.h 13874 for ac_header in kerberosIV/krb.h
13847do : 13875do :
13848 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/krb.h" "ac_cv_header_kerberosIV_krb_h" "$ac_includes_default" 13876 ac_fn_c_check_header_mongrel "$LINENO" "kerberosIV/krb.h" "ac_cv_header_kerberosIV_krb_h" "$ac_includes_default"
13849if test "x$ac_cv_header_kerberosIV_krb_h" = x""yes; then : 13877if test "x$ac_cv_header_kerberosIV_krb_h" = xyes; then :
13850 cat >>confdefs.h <<_ACEOF 13878 cat >>confdefs.h <<_ACEOF
13851#define HAVE_KERBEROSIV_KRB_H 1 13879#define HAVE_KERBEROSIV_KRB_H 1
13852_ACEOF 13880_ACEOF
@@ -13855,7 +13883,7 @@ else
13855 for ac_header in kerberos/krb.h 13883 for ac_header in kerberos/krb.h
13856do : 13884do :
13857 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/krb.h" "ac_cv_header_kerberos_krb_h" "$ac_includes_default" 13885 ac_fn_c_check_header_mongrel "$LINENO" "kerberos/krb.h" "ac_cv_header_kerberos_krb_h" "$ac_includes_default"
13858if test "x$ac_cv_header_kerberos_krb_h" = x""yes; then : 13886if test "x$ac_cv_header_kerberos_krb_h" = xyes; then :
13859 cat >>confdefs.h <<_ACEOF 13887 cat >>confdefs.h <<_ACEOF
13860#define HAVE_KERBEROS_KRB_H 1 13888#define HAVE_KERBEROS_KRB_H 1
13861_ACEOF 13889_ACEOF
@@ -13876,7 +13904,7 @@ done
13876 for ac_header in com_err.h 13904 for ac_header in com_err.h
13877do : 13905do :
13878 ac_fn_c_check_header_mongrel "$LINENO" "com_err.h" "ac_cv_header_com_err_h" "$ac_includes_default" 13906 ac_fn_c_check_header_mongrel "$LINENO" "com_err.h" "ac_cv_header_com_err_h" "$ac_includes_default"
13879if test "x$ac_cv_header_com_err_h" = x""yes; then : 13907if test "x$ac_cv_header_com_err_h" = xyes; then :
13880 cat >>confdefs.h <<_ACEOF 13908 cat >>confdefs.h <<_ACEOF
13881#define HAVE_COM_ERR_H 1 13909#define HAVE_COM_ERR_H 1
13882_ACEOF 13910_ACEOF
@@ -13897,7 +13925,7 @@ fi
13897# to return localized messages. 13925# to return localized messages.
13898{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5 13926{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for dgettext in -lintl" >&5
13899$as_echo_n "checking for dgettext in -lintl... " >&6; } 13927$as_echo_n "checking for dgettext in -lintl... " >&6; }
13900if test "${ac_cv_lib_intl_dgettext+set}" = set; then : 13928if ${ac_cv_lib_intl_dgettext+:} false; then :
13901 $as_echo_n "(cached) " >&6 13929 $as_echo_n "(cached) " >&6
13902else 13930else
13903 ac_check_lib_save_LIBS=$LIBS 13931 ac_check_lib_save_LIBS=$LIBS
@@ -13931,7 +13959,7 @@ LIBS=$ac_check_lib_save_LIBS
13931fi 13959fi
13932{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5 13960{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_dgettext" >&5
13933$as_echo "$ac_cv_lib_intl_dgettext" >&6; } 13961$as_echo "$ac_cv_lib_intl_dgettext" >&6; }
13934if test "x$ac_cv_lib_intl_dgettext" = x""yes; then : 13962if test "x$ac_cv_lib_intl_dgettext" = xyes; then :
13935 cat >>confdefs.h <<_ACEOF 13963 cat >>confdefs.h <<_ACEOF
13936#define HAVE_LIBINTL 1 13964#define HAVE_LIBINTL 1
13937_ACEOF 13965_ACEOF
@@ -13943,7 +13971,7 @@ fi
13943 13971
13944{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime caches TZ" >&5 13972{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether localtime caches TZ" >&5
13945$as_echo_n "checking whether localtime caches TZ... " >&6; } 13973$as_echo_n "checking whether localtime caches TZ... " >&6; }
13946if test "${emacs_cv_localtime_cache+set}" = set; then : 13974if ${emacs_cv_localtime_cache+:} false; then :
13947 $as_echo_n "(cached) " >&6 13975 $as_echo_n "(cached) " >&6
13948else 13976else
13949 if test x$ac_cv_func_tzset = xyes; then 13977 if test x$ac_cv_func_tzset = xyes; then
@@ -14010,7 +14038,7 @@ if test "x$HAVE_TIMEVAL" = xyes; then
14010 for ac_func in gettimeofday 14038 for ac_func in gettimeofday
14011do : 14039do :
14012 ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday" 14040 ac_fn_c_check_func "$LINENO" "gettimeofday" "ac_cv_func_gettimeofday"
14013if test "x$ac_cv_func_gettimeofday" = x""yes; then : 14041if test "x$ac_cv_func_gettimeofday" = xyes; then :
14014 cat >>confdefs.h <<_ACEOF 14042 cat >>confdefs.h <<_ACEOF
14015#define HAVE_GETTIMEOFDAY 1 14043#define HAVE_GETTIMEOFDAY 1
14016_ACEOF 14044_ACEOF
@@ -14021,7 +14049,7 @@ done
14021 if test $ac_cv_func_gettimeofday = yes; then 14049 if test $ac_cv_func_gettimeofday = yes; then
14022 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday can accept two arguments" >&5 14050 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether gettimeofday can accept two arguments" >&5
14023$as_echo_n "checking whether gettimeofday can accept two arguments... " >&6; } 14051$as_echo_n "checking whether gettimeofday can accept two arguments... " >&6; }
14024if test "${emacs_cv_gettimeofday_two_arguments+set}" = set; then : 14052if ${emacs_cv_gettimeofday_two_arguments+:} false; then :
14025 $as_echo_n "(cached) " >&6 14053 $as_echo_n "(cached) " >&6
14026else 14054else
14027 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14055 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14065,7 +14093,7 @@ fi
14065 14093
14066ok_so_far=yes 14094ok_so_far=yes
14067ac_fn_c_check_func "$LINENO" "socket" "ac_cv_func_socket" 14095ac_fn_c_check_func "$LINENO" "socket" "ac_cv_func_socket"
14068if test "x$ac_cv_func_socket" = x""yes; then : 14096if test "x$ac_cv_func_socket" = xyes; then :
14069 14097
14070else 14098else
14071 ok_so_far=no 14099 ok_so_far=no
@@ -14073,7 +14101,7 @@ fi
14073 14101
14074if test $ok_so_far = yes; then 14102if test $ok_so_far = yes; then
14075 ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default" 14103 ac_fn_c_check_header_mongrel "$LINENO" "netinet/in.h" "ac_cv_header_netinet_in_h" "$ac_includes_default"
14076if test "x$ac_cv_header_netinet_in_h" = x""yes; then : 14104if test "x$ac_cv_header_netinet_in_h" = xyes; then :
14077 14105
14078else 14106else
14079 ok_so_far=no 14107 ok_so_far=no
@@ -14083,7 +14111,7 @@ fi
14083fi 14111fi
14084if test $ok_so_far = yes; then 14112if test $ok_so_far = yes; then
14085 ac_fn_c_check_header_mongrel "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default" 14113 ac_fn_c_check_header_mongrel "$LINENO" "arpa/inet.h" "ac_cv_header_arpa_inet_h" "$ac_includes_default"
14086if test "x$ac_cv_header_arpa_inet_h" = x""yes; then : 14114if test "x$ac_cv_header_arpa_inet_h" = xyes; then :
14087 14115
14088else 14116else
14089 ok_so_far=no 14117 ok_so_far=no
@@ -14100,7 +14128,7 @@ fi
14100for ac_header in sys/ioctl.h 14128for ac_header in sys/ioctl.h
14101do : 14129do :
14102 ac_fn_c_check_header_mongrel "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default" 14130 ac_fn_c_check_header_mongrel "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default"
14103if test "x$ac_cv_header_sys_ioctl_h" = x""yes; then : 14131if test "x$ac_cv_header_sys_ioctl_h" = xyes; then :
14104 cat >>confdefs.h <<_ACEOF 14132 cat >>confdefs.h <<_ACEOF
14105#define HAVE_SYS_IOCTL_H 1 14133#define HAVE_SYS_IOCTL_H 1
14106_ACEOF 14134_ACEOF
@@ -14130,7 +14158,7 @@ $as_echo "no" >&6; }
14130fi 14158fi
14131 14159
14132ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" 14160ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default"
14133if test "x$ac_cv_type_pid_t" = x""yes; then : 14161if test "x$ac_cv_type_pid_t" = xyes; then :
14134 14162
14135else 14163else
14136 14164
@@ -14143,7 +14171,7 @@ fi
14143for ac_header in vfork.h 14171for ac_header in vfork.h
14144do : 14172do :
14145 ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default" 14173 ac_fn_c_check_header_mongrel "$LINENO" "vfork.h" "ac_cv_header_vfork_h" "$ac_includes_default"
14146if test "x$ac_cv_header_vfork_h" = x""yes; then : 14174if test "x$ac_cv_header_vfork_h" = xyes; then :
14147 cat >>confdefs.h <<_ACEOF 14175 cat >>confdefs.h <<_ACEOF
14148#define HAVE_VFORK_H 1 14176#define HAVE_VFORK_H 1
14149_ACEOF 14177_ACEOF
@@ -14156,8 +14184,7 @@ for ac_func in fork vfork
14156do : 14184do :
14157 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 14185 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
14158ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" 14186ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
14159eval as_val=\$$as_ac_var 14187if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
14160 if test "x$as_val" = x""yes; then :
14161 cat >>confdefs.h <<_ACEOF 14188 cat >>confdefs.h <<_ACEOF
14162#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 14189#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
14163_ACEOF 14190_ACEOF
@@ -14168,7 +14195,7 @@ done
14168if test "x$ac_cv_func_fork" = xyes; then 14195if test "x$ac_cv_func_fork" = xyes; then
14169 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 14196 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5
14170$as_echo_n "checking for working fork... " >&6; } 14197$as_echo_n "checking for working fork... " >&6; }
14171if test "${ac_cv_func_fork_works+set}" = set; then : 14198if ${ac_cv_func_fork_works+:} false; then :
14172 $as_echo_n "(cached) " >&6 14199 $as_echo_n "(cached) " >&6
14173else 14200else
14174 if test "$cross_compiling" = yes; then : 14201 if test "$cross_compiling" = yes; then :
@@ -14221,7 +14248,7 @@ ac_cv_func_vfork_works=$ac_cv_func_vfork
14221if test "x$ac_cv_func_vfork" = xyes; then 14248if test "x$ac_cv_func_vfork" = xyes; then
14222 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 14249 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5
14223$as_echo_n "checking for working vfork... " >&6; } 14250$as_echo_n "checking for working vfork... " >&6; }
14224if test "${ac_cv_func_vfork_works+set}" = set; then : 14251if ${ac_cv_func_vfork_works+:} false; then :
14225 $as_echo_n "(cached) " >&6 14252 $as_echo_n "(cached) " >&6
14226else 14253else
14227 if test "$cross_compiling" = yes; then : 14254 if test "$cross_compiling" = yes; then :
@@ -14357,7 +14384,7 @@ fi
14357 14384
14358{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5 14385{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for nl_langinfo and CODESET" >&5
14359$as_echo_n "checking for nl_langinfo and CODESET... " >&6; } 14386$as_echo_n "checking for nl_langinfo and CODESET... " >&6; }
14360if test "${emacs_cv_langinfo_codeset+set}" = set; then : 14387if ${emacs_cv_langinfo_codeset+:} false; then :
14361 $as_echo_n "(cached) " >&6 14388 $as_echo_n "(cached) " >&6
14362else 14389else
14363 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14390 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14389,7 +14416,7 @@ $as_echo "#define HAVE_LANGINFO_CODESET 1" >>confdefs.h
14389fi 14416fi
14390 14417
14391ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" 14418ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default"
14392if test "x$ac_cv_type_size_t" = x""yes; then : 14419if test "x$ac_cv_type_size_t" = xyes; then :
14393 14420
14394cat >>confdefs.h <<_ACEOF 14421cat >>confdefs.h <<_ACEOF
14395#define HAVE_SIZE_T 1 14422#define HAVE_SIZE_T 1
@@ -14401,7 +14428,7 @@ fi
14401 14428
14402{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5 14429{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for mbstate_t" >&5
14403$as_echo_n "checking for mbstate_t... " >&6; } 14430$as_echo_n "checking for mbstate_t... " >&6; }
14404if test "${ac_cv_type_mbstate_t+set}" = set; then : 14431if ${ac_cv_type_mbstate_t+:} false; then :
14405 $as_echo_n "(cached) " >&6 14432 $as_echo_n "(cached) " >&6
14406else 14433else
14407 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14434 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14437,7 +14464,7 @@ $as_echo "#define mbstate_t int" >>confdefs.h
14437 14464
14438{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restrict keyword" >&5 14465{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restrict keyword" >&5
14439$as_echo_n "checking for C restrict keyword... " >&6; } 14466$as_echo_n "checking for C restrict keyword... " >&6; }
14440if test "${emacs_cv_c_restrict+set}" = set; then : 14467if ${emacs_cv_c_restrict+:} false; then :
14441 $as_echo_n "(cached) " >&6 14468 $as_echo_n "(cached) " >&6
14442else 14469else
14443 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14470 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14491,7 +14518,7 @@ fi
14491 14518
14492{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restricted array declarations" >&5 14519{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C restricted array declarations" >&5
14493$as_echo_n "checking for C restricted array declarations... " >&6; } 14520$as_echo_n "checking for C restricted array declarations... " >&6; }
14494if test "${emacs_cv_c_restrict_arr+set}" = set; then : 14521if ${emacs_cv_c_restrict_arr+:} false; then :
14495 $as_echo_n "(cached) " >&6 14522 $as_echo_n "(cached) " >&6
14496else 14523else
14497 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 14524 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
@@ -14538,7 +14565,7 @@ fi
14538version=`grep 'const char emacs_version' ${srcdir}/src/emacs.c \ 14565version=`grep 'const char emacs_version' ${srcdir}/src/emacs.c \
14539 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'` 14566 | sed -e 's/^[^"]*"\([^"]*\)".*$/\1/'`
14540if test x"${version}" = x; then 14567if test x"${version}" = x; then
14541 as_fn_error "can't find current emacs version in \`${srcdir}/src/emacs.c'." "$LINENO" 5 14568 as_fn_error $? "can't find current emacs version in \`${srcdir}/src/emacs.c'." "$LINENO" 5
14542fi 14569fi
14543if test x"${version}" != x"$PACKAGE_VERSION"; then 14570if test x"${version}" != x"$PACKAGE_VERSION"; then
14544 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: version mismatch between \`${srcdir}/configure.in' and \`${srcdir}/src/emacs.c'." >&5 14571 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: version mismatch between \`${srcdir}/configure.in' and \`${srcdir}/src/emacs.c'." >&5
@@ -14967,7 +14994,7 @@ echo " Does Emacs use -lgpm? ${HAVE_GPM}"
14967echo " Does Emacs use -ldbus? ${HAVE_DBUS}" 14994echo " Does Emacs use -ldbus? ${HAVE_DBUS}"
14968echo " Does Emacs use -lgconf? ${HAVE_GCONF}" 14995echo " Does Emacs use -lgconf? ${HAVE_GCONF}"
14969echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}" 14996echo " Does Emacs use -lselinux? ${HAVE_LIBSELINUX}"
14970echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}" 14997echo " Does Emacs use -lgnutls? ${HAVE_GNUTLS}"
14971echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}" 14998echo " Does Emacs use -lxml2? ${HAVE_LIBXML2}"
14972 14999
14973echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}" 15000echo " Does Emacs use -lfreetype? ${HAVE_FREETYPE}"
@@ -15080,10 +15107,21 @@ $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
15080 :end' >>confcache 15107 :end' >>confcache
15081if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 15108if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
15082 if test -w "$cache_file"; then 15109 if test -w "$cache_file"; then
15083 test "x$cache_file" != "x/dev/null" && 15110 if test "x$cache_file" != "x/dev/null"; then
15084 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 15111 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
15085$as_echo "$as_me: updating cache $cache_file" >&6;} 15112$as_echo "$as_me: updating cache $cache_file" >&6;}
15086 cat confcache >$cache_file 15113 if test ! -f "$cache_file" || test -h "$cache_file"; then
15114 cat confcache >"$cache_file"
15115 else
15116 case $cache_file in #(
15117 */* | ?:*)
15118 mv -f confcache "$cache_file"$$ &&
15119 mv -f "$cache_file"$$ "$cache_file" ;; #(
15120 *)
15121 mv -f confcache "$cache_file" ;;
15122 esac
15123 fi
15124 fi
15087 else 15125 else
15088 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 15126 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
15089$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 15127$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
@@ -15099,6 +15137,7 @@ DEFS=-DHAVE_CONFIG_H
15099 15137
15100ac_libobjs= 15138ac_libobjs=
15101ac_ltlibobjs= 15139ac_ltlibobjs=
15140U=
15102for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 15141for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
15103 # 1. Remove the extension, and $U if already installed. 15142 # 1. Remove the extension, and $U if already installed.
15104 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 15143 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
@@ -15115,7 +15154,7 @@ LTLIBOBJS=$ac_ltlibobjs
15115 15154
15116 15155
15117 15156
15118: ${CONFIG_STATUS=./config.status} 15157: "${CONFIG_STATUS=./config.status}"
15119ac_write_fail=0 15158ac_write_fail=0
15120ac_clean_files_save=$ac_clean_files 15159ac_clean_files_save=$ac_clean_files
15121ac_clean_files="$ac_clean_files $CONFIG_STATUS" 15160ac_clean_files="$ac_clean_files $CONFIG_STATUS"
@@ -15216,6 +15255,7 @@ fi
15216IFS=" "" $as_nl" 15255IFS=" "" $as_nl"
15217 15256
15218# Find who we are. Look in the path if we contain no directory separator. 15257# Find who we are. Look in the path if we contain no directory separator.
15258as_myself=
15219case $0 in #(( 15259case $0 in #((
15220 *[\\/]* ) as_myself=$0 ;; 15260 *[\\/]* ) as_myself=$0 ;;
15221 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 15261 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
@@ -15261,19 +15301,19 @@ export LANGUAGE
15261(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 15301(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
15262 15302
15263 15303
15264# as_fn_error ERROR [LINENO LOG_FD] 15304# as_fn_error STATUS ERROR [LINENO LOG_FD]
15265# --------------------------------- 15305# ----------------------------------------
15266# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 15306# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
15267# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 15307# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
15268# script with status $?, using 1 if that was 0. 15308# script with STATUS, using 1 if that was 0.
15269as_fn_error () 15309as_fn_error ()
15270{ 15310{
15271 as_status=$?; test $as_status -eq 0 && as_status=1 15311 as_status=$1; test $as_status -eq 0 && as_status=1
15272 if test "$3"; then 15312 if test "$4"; then
15273 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 15313 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
15274 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 15314 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
15275 fi 15315 fi
15276 $as_echo "$as_me: error: $1" >&2 15316 $as_echo "$as_me: error: $2" >&2
15277 as_fn_exit $as_status 15317 as_fn_exit $as_status
15278} # as_fn_error 15318} # as_fn_error
15279 15319
@@ -15469,7 +15509,7 @@ $as_echo X"$as_dir" |
15469 test -d "$as_dir" && break 15509 test -d "$as_dir" && break
15470 done 15510 done
15471 test -z "$as_dirs" || eval "mkdir $as_dirs" 15511 test -z "$as_dirs" || eval "mkdir $as_dirs"
15472 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" 15512 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
15473 15513
15474 15514
15475} # as_fn_mkdir_p 15515} # as_fn_mkdir_p
@@ -15523,7 +15563,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
15523# values after options handling. 15563# values after options handling.
15524ac_log=" 15564ac_log="
15525This file was extended by emacs $as_me 24.0.50, which was 15565This file was extended by emacs $as_me 24.0.50, which was
15526generated by GNU Autoconf 2.65. Invocation command line was 15566generated by GNU Autoconf 2.68. Invocation command line was
15527 15567
15528 CONFIG_FILES = $CONFIG_FILES 15568 CONFIG_FILES = $CONFIG_FILES
15529 CONFIG_HEADERS = $CONFIG_HEADERS 15569 CONFIG_HEADERS = $CONFIG_HEADERS
@@ -15589,10 +15629,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15589ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 15629ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
15590ac_cs_version="\\ 15630ac_cs_version="\\
15591emacs config.status 24.0.50 15631emacs config.status 24.0.50
15592configured by $0, generated by GNU Autoconf 2.65, 15632configured by $0, generated by GNU Autoconf 2.68,
15593 with options \\"\$ac_cs_config\\" 15633 with options \\"\$ac_cs_config\\"
15594 15634
15595Copyright (C) 2009 Free Software Foundation, Inc. 15635Copyright (C) 2010 Free Software Foundation, Inc.
15596This config.status script is free software; the Free Software Foundation 15636This config.status script is free software; the Free Software Foundation
15597gives unlimited permission to copy, distribute and modify it." 15637gives unlimited permission to copy, distribute and modify it."
15598 15638
@@ -15608,11 +15648,16 @@ ac_need_defaults=:
15608while test $# != 0 15648while test $# != 0
15609do 15649do
15610 case $1 in 15650 case $1 in
15611 --*=*) 15651 --*=?*)
15612 ac_option=`expr "X$1" : 'X\([^=]*\)='` 15652 ac_option=`expr "X$1" : 'X\([^=]*\)='`
15613 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` 15653 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
15614 ac_shift=: 15654 ac_shift=:
15615 ;; 15655 ;;
15656 --*=)
15657 ac_option=`expr "X$1" : 'X\([^=]*\)='`
15658 ac_optarg=
15659 ac_shift=:
15660 ;;
15616 *) 15661 *)
15617 ac_option=$1 15662 ac_option=$1
15618 ac_optarg=$2 15663 ac_optarg=$2
@@ -15634,6 +15679,7 @@ do
15634 $ac_shift 15679 $ac_shift
15635 case $ac_optarg in 15680 case $ac_optarg in
15636 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 15681 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
15682 '') as_fn_error $? "missing file argument" ;;
15637 esac 15683 esac
15638 as_fn_append CONFIG_FILES " '$ac_optarg'" 15684 as_fn_append CONFIG_FILES " '$ac_optarg'"
15639 ac_need_defaults=false;; 15685 ac_need_defaults=false;;
@@ -15646,7 +15692,7 @@ do
15646 ac_need_defaults=false;; 15692 ac_need_defaults=false;;
15647 --he | --h) 15693 --he | --h)
15648 # Conflict between --help and --header 15694 # Conflict between --help and --header
15649 as_fn_error "ambiguous option: \`$1' 15695 as_fn_error $? "ambiguous option: \`$1'
15650Try \`$0 --help' for more information.";; 15696Try \`$0 --help' for more information.";;
15651 --help | --hel | -h ) 15697 --help | --hel | -h )
15652 $as_echo "$ac_cs_usage"; exit ;; 15698 $as_echo "$ac_cs_usage"; exit ;;
@@ -15655,7 +15701,7 @@ Try \`$0 --help' for more information.";;
15655 ac_cs_silent=: ;; 15701 ac_cs_silent=: ;;
15656 15702
15657 # This is an error. 15703 # This is an error.
15658 -*) as_fn_error "unrecognized option: \`$1' 15704 -*) as_fn_error $? "unrecognized option: \`$1'
15659Try \`$0 --help' for more information." ;; 15705Try \`$0 --help' for more information." ;;
15660 15706
15661 *) as_fn_append ac_config_targets " $1" 15707 *) as_fn_append ac_config_targets " $1"
@@ -15723,7 +15769,7 @@ do
15723 "leim/Makefile") CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;; 15769 "leim/Makefile") CONFIG_FILES="$CONFIG_FILES leim/Makefile" ;;
15724 "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; 15770 "default") CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
15725 15771
15726 *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; 15772 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
15727 esac 15773 esac
15728done 15774done
15729 15775
@@ -15746,9 +15792,10 @@ fi
15746# after its creation but before its name has been assigned to `$tmp'. 15792# after its creation but before its name has been assigned to `$tmp'.
15747$debug || 15793$debug ||
15748{ 15794{
15749 tmp= 15795 tmp= ac_tmp=
15750 trap 'exit_status=$? 15796 trap 'exit_status=$?
15751 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status 15797 : "${ac_tmp:=$tmp}"
15798 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
15752' 0 15799' 0
15753 trap 'as_fn_exit 1' 1 2 13 15 15800 trap 'as_fn_exit 1' 1 2 13 15
15754} 15801}
@@ -15756,12 +15803,13 @@ $debug ||
15756 15803
15757{ 15804{
15758 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 15805 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
15759 test -n "$tmp" && test -d "$tmp" 15806 test -d "$tmp"
15760} || 15807} ||
15761{ 15808{
15762 tmp=./conf$$-$RANDOM 15809 tmp=./conf$$-$RANDOM
15763 (umask 077 && mkdir "$tmp") 15810 (umask 077 && mkdir "$tmp")
15764} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 15811} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
15812ac_tmp=$tmp
15765 15813
15766# Set up the scripts for CONFIG_FILES section. 15814# Set up the scripts for CONFIG_FILES section.
15767# No need to generate them if there are no CONFIG_FILES. 15815# No need to generate them if there are no CONFIG_FILES.
@@ -15795,24 +15843,24 @@ if test "x$ac_cr" = x; then
15795fi 15843fi
15796ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 15844ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
15797if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 15845if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
15798 ac_cs_awk_cr='\r' 15846 ac_cs_awk_cr='\\r'
15799else 15847else
15800 ac_cs_awk_cr=$ac_cr 15848 ac_cs_awk_cr=$ac_cr
15801fi 15849fi
15802 15850
15803echo 'BEGIN {' >"$tmp/subs1.awk" && 15851echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
15804_ACEOF 15852_ACEOF
15805 15853
15806# Create commands to substitute file output variables. 15854# Create commands to substitute file output variables.
15807{ 15855{
15808 echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" && 15856 echo "cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1" &&
15809 echo 'cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&' && 15857 echo 'cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&' &&
15810 echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' && 15858 echo "$ac_subst_files" | sed 's/.*/F["&"]="$&"/' &&
15811 echo "_ACAWK" && 15859 echo "_ACAWK" &&
15812 echo "_ACEOF" 15860 echo "_ACEOF"
15813} >conf$$files.sh && 15861} >conf$$files.sh &&
15814. ./conf$$files.sh || 15862. ./conf$$files.sh ||
15815 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 15863 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
15816rm -f conf$$files.sh 15864rm -f conf$$files.sh
15817 15865
15818{ 15866{
@@ -15820,18 +15868,18 @@ rm -f conf$$files.sh
15820 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 15868 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
15821 echo "_ACEOF" 15869 echo "_ACEOF"
15822} >conf$$subs.sh || 15870} >conf$$subs.sh ||
15823 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 15871 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
15824ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` 15872ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
15825ac_delim='%!_!# ' 15873ac_delim='%!_!# '
15826for ac_last_try in false false false false false :; do 15874for ac_last_try in false false false false false :; do
15827 . ./conf$$subs.sh || 15875 . ./conf$$subs.sh ||
15828 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 15876 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
15829 15877
15830 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 15878 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
15831 if test $ac_delim_n = $ac_delim_num; then 15879 if test $ac_delim_n = $ac_delim_num; then
15832 break 15880 break
15833 elif $ac_last_try; then 15881 elif $ac_last_try; then
15834 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 15882 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
15835 else 15883 else
15836 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 15884 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
15837 fi 15885 fi
@@ -15839,7 +15887,7 @@ done
15839rm -f conf$$subs.sh 15887rm -f conf$$subs.sh
15840 15888
15841cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 15889cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15842cat >>"\$tmp/subs1.awk" <<\\_ACAWK && 15890cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
15843_ACEOF 15891_ACEOF
15844sed -n ' 15892sed -n '
15845h 15893h
@@ -15887,7 +15935,7 @@ t delim
15887rm -f conf$$subs.awk 15935rm -f conf$$subs.awk
15888cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 15936cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15889_ACAWK 15937_ACAWK
15890cat >>"\$tmp/subs1.awk" <<_ACAWK && 15938cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
15891 for (key in S) S_is_set[key] = 1 15939 for (key in S) S_is_set[key] = 1
15892 FS = "" 15940 FS = ""
15893 \$ac_cs_awk_pipe_init 15941 \$ac_cs_awk_pipe_init
@@ -15925,21 +15973,29 @@ if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
15925 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 15973 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
15926else 15974else
15927 cat 15975 cat
15928fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ 15976fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
15929 || as_fn_error "could not setup config files machinery" "$LINENO" 5 15977 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
15930_ACEOF 15978_ACEOF
15931 15979
15932# VPATH may cause trouble with some makes, so we remove $(srcdir), 15980# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
15933# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and 15981# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
15934# trailing colons and then remove the whole line if VPATH becomes empty 15982# trailing colons and then remove the whole line if VPATH becomes empty
15935# (actually we leave an empty line to preserve line numbers). 15983# (actually we leave an empty line to preserve line numbers).
15936if test "x$srcdir" = x.; then 15984if test "x$srcdir" = x.; then
15937 ac_vpsub='/^[ ]*VPATH[ ]*=/{ 15985 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
15938s/:*\$(srcdir):*/:/ 15986h
15939s/:*\${srcdir}:*/:/ 15987s///
15940s/:*@srcdir@:*/:/ 15988s/^/:/
15941s/^\([^=]*=[ ]*\):*/\1/ 15989s/[ ]*$/:/
15990s/:\$(srcdir):/:/g
15991s/:\${srcdir}:/:/g
15992s/:@srcdir@:/:/g
15993s/^:*//
15942s/:*$// 15994s/:*$//
15995x
15996s/\(=[ ]*\).*/\1/
15997G
15998s/\n//
15943s/^[^=]*=[ ]*$// 15999s/^[^=]*=[ ]*$//
15944}' 16000}'
15945fi 16001fi
@@ -15951,7 +16007,7 @@ fi # test -n "$CONFIG_FILES"
15951# No need to generate them if there are no CONFIG_HEADERS. 16007# No need to generate them if there are no CONFIG_HEADERS.
15952# This happens for instance with `./config.status Makefile'. 16008# This happens for instance with `./config.status Makefile'.
15953if test -n "$CONFIG_HEADERS"; then 16009if test -n "$CONFIG_HEADERS"; then
15954cat >"$tmp/defines.awk" <<\_ACAWK || 16010cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
15955BEGIN { 16011BEGIN {
15956_ACEOF 16012_ACEOF
15957 16013
@@ -15963,11 +16019,11 @@ _ACEOF
15963# handling of long lines. 16019# handling of long lines.
15964ac_delim='%!_!# ' 16020ac_delim='%!_!# '
15965for ac_last_try in false false :; do 16021for ac_last_try in false false :; do
15966 ac_t=`sed -n "/$ac_delim/p" confdefs.h` 16022 ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
15967 if test -z "$ac_t"; then 16023 if test -z "$ac_tt"; then
15968 break 16024 break
15969 elif $ac_last_try; then 16025 elif $ac_last_try; then
15970 as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 16026 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
15971 else 16027 else
15972 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 16028 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
15973 fi 16029 fi
@@ -16052,7 +16108,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
16052_ACAWK 16108_ACAWK
16053_ACEOF 16109_ACEOF
16054cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 16110cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
16055 as_fn_error "could not setup config headers machinery" "$LINENO" 5 16111 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
16056fi # test -n "$CONFIG_HEADERS" 16112fi # test -n "$CONFIG_HEADERS"
16057 16113
16058 16114
@@ -16065,7 +16121,7 @@ do
16065 esac 16121 esac
16066 case $ac_mode$ac_tag in 16122 case $ac_mode$ac_tag in
16067 :[FHL]*:*);; 16123 :[FHL]*:*);;
16068 :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; 16124 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
16069 :[FH]-) ac_tag=-:-;; 16125 :[FH]-) ac_tag=-:-;;
16070 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 16126 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
16071 esac 16127 esac
@@ -16084,7 +16140,7 @@ do
16084 for ac_f 16140 for ac_f
16085 do 16141 do
16086 case $ac_f in 16142 case $ac_f in
16087 -) ac_f="$tmp/stdin";; 16143 -) ac_f="$ac_tmp/stdin";;
16088 *) # Look for the file first in the build tree, then in the source tree 16144 *) # Look for the file first in the build tree, then in the source tree
16089 # (if the path is not absolute). The absolute path cannot be DOS-style, 16145 # (if the path is not absolute). The absolute path cannot be DOS-style,
16090 # because $ac_f cannot contain `:'. 16146 # because $ac_f cannot contain `:'.
@@ -16093,7 +16149,7 @@ do
16093 [\\/$]*) false;; 16149 [\\/$]*) false;;
16094 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 16150 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
16095 esac || 16151 esac ||
16096 as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; 16152 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
16097 esac 16153 esac
16098 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 16154 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
16099 as_fn_append ac_file_inputs " '$ac_f'" 16155 as_fn_append ac_file_inputs " '$ac_f'"
@@ -16119,8 +16175,8 @@ $as_echo "$as_me: creating $ac_file" >&6;}
16119 esac 16175 esac
16120 16176
16121 case $ac_tag in 16177 case $ac_tag in
16122 *:-:* | *:-) cat >"$tmp/stdin" \ 16178 *:-:* | *:-) cat >"$ac_tmp/stdin" \
16123 || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; 16179 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
16124 esac 16180 esac
16125 ;; 16181 ;;
16126 esac 16182 esac
@@ -16252,26 +16308,27 @@ $ac_datarootdir_hack
16252" 16308"
16253eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | 16309eval sed \"\$ac_sed_extra\" "$ac_file_inputs" |
16254if $ac_cs_awk_getline; then 16310if $ac_cs_awk_getline; then
16255 $AWK -f "$tmp/subs.awk" 16311 $AWK -f "$ac_tmp/subs.awk"
16256else 16312else
16257 $AWK -f "$tmp/subs.awk" | $SHELL 16313 $AWK -f "$ac_tmp/subs.awk" | $SHELL
16258fi >$tmp/out \ 16314fi \
16259 || as_fn_error "could not create $ac_file" "$LINENO" 5 16315 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
16260 16316
16261test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 16317test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
16262 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 16318 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
16263 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 16319 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
16320 "$ac_tmp/out"`; test -z "$ac_out"; } &&
16264 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' 16321 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
16265which seems to be undefined. Please make sure it is defined." >&5 16322which seems to be undefined. Please make sure it is defined" >&5
16266$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 16323$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
16267which seems to be undefined. Please make sure it is defined." >&2;} 16324which seems to be undefined. Please make sure it is defined" >&2;}
16268 16325
16269 rm -f "$tmp/stdin" 16326 rm -f "$ac_tmp/stdin"
16270 case $ac_file in 16327 case $ac_file in
16271 -) cat "$tmp/out" && rm -f "$tmp/out";; 16328 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
16272 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; 16329 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
16273 esac \ 16330 esac \
16274 || as_fn_error "could not create $ac_file" "$LINENO" 5 16331 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
16275 ;; 16332 ;;
16276 :H) 16333 :H)
16277 # 16334 #
@@ -16280,21 +16337,21 @@ which seems to be undefined. Please make sure it is defined." >&2;}
16280 if test x"$ac_file" != x-; then 16337 if test x"$ac_file" != x-; then
16281 { 16338 {
16282 $as_echo "/* $configure_input */" \ 16339 $as_echo "/* $configure_input */" \
16283 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" 16340 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
16284 } >"$tmp/config.h" \ 16341 } >"$ac_tmp/config.h" \
16285 || as_fn_error "could not create $ac_file" "$LINENO" 5 16342 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
16286 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then 16343 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
16287 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 16344 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
16288$as_echo "$as_me: $ac_file is unchanged" >&6;} 16345$as_echo "$as_me: $ac_file is unchanged" >&6;}
16289 else 16346 else
16290 rm -f "$ac_file" 16347 rm -f "$ac_file"
16291 mv "$tmp/config.h" "$ac_file" \ 16348 mv "$ac_tmp/config.h" "$ac_file" \
16292 || as_fn_error "could not create $ac_file" "$LINENO" 5 16349 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
16293 fi 16350 fi
16294 else 16351 else
16295 $as_echo "/* $configure_input */" \ 16352 $as_echo "/* $configure_input */" \
16296 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ 16353 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
16297 || as_fn_error "could not create -" "$LINENO" 5 16354 || as_fn_error $? "could not create -" "$LINENO" 5
16298 fi 16355 fi
16299 ;; 16356 ;;
16300 16357
@@ -16331,7 +16388,7 @@ _ACEOF
16331ac_clean_files=$ac_clean_files_save 16388ac_clean_files=$ac_clean_files_save
16332 16389
16333test $ac_write_fail = 0 || 16390test $ac_write_fail = 0 ||
16334 as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 16391 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
16335 16392
16336 16393
16337# configure is writing to config.log, and then calls config.status. 16394# configure is writing to config.log, and then calls config.status.
@@ -16352,7 +16409,7 @@ if test "$no_create" != yes; then
16352 exec 5>>config.log 16409 exec 5>>config.log
16353 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 16410 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
16354 # would make configure fail if this is the last instruction. 16411 # would make configure fail if this is the last instruction.
16355 $ac_cs_success || as_fn_exit $? 16412 $ac_cs_success || as_fn_exit 1
16356fi 16413fi
16357if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 16414if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
16358 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 16415 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5