ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/configure
(Generate patch)

Comparing rxvt-unicode/configure (file contents):
Revision 1.134 by sf-exg, Thu Sep 2 15:51:55 2010 UTC vs.
Revision 1.147 by mikachu, Tue Nov 15 01:13:49 2011 UTC

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. 3# Generated by GNU Autoconf 2.68.
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
12# gives unlimited permission to copy, distribute and modify it. 12# gives unlimited permission to copy, distribute and modify it.
13## -------------------- ## 13## -------------------- ##
87# (If _AS_PATH_WALK were called with IFS unset, it would disable word 87# (If _AS_PATH_WALK were called with IFS unset, it would disable word
88# splitting by setting IFS to empty value.) 88# splitting by setting IFS to empty value.)
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
95for as_dir in $PATH 96for as_dir in $PATH
96do 97do
212 213
213 if test "x$CONFIG_SHELL" != x; then : 214 if test "x$CONFIG_SHELL" != x; then :
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
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
221 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 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 :
225 $as_echo "$0: This script requires a shell more modern than all" 233 $as_echo "$0: This script requires a shell more modern than all"
226 $as_echo "$0: the shells that I found on your system." 234 $as_echo "$0: the shells that I found on your system."
314 } 322 }
315 s/.*/./; q'` 323 s/.*/./; q'`
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
323# as_fn_append VAR VALUE 331# as_fn_append VAR VALUE
324# ---------------------- 332# ----------------------
354 as_val=`expr "$@" || test $? -eq 1` 362 as_val=`expr "$@" || test $? -eq 1`
355 } 363 }
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
375if expr a : '\(a\)' >/dev/null 2>&1 && 383if expr a : '\(a\)' >/dev/null 2>&1 &&
376 test "X`expr 00001 : '.*\(...\)'`" = X001; then 384 test "X`expr 00001 : '.*\(...\)'`" = X001; then
528 536
529test -n "$DJDIR" || exec 7<&0 </dev/null 537test -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
537# 545#
538# Initializations. 546# Initializations.
601PERL 609PERL
602XFT_CONFIG 610XFT_CONFIG
603AFTERIMAGE_LIBS 611AFTERIMAGE_LIBS
604AFTERIMAGE_CFLAGS 612AFTERIMAGE_CFLAGS
605afterimage_config 613afterimage_config
614STARTUP_NOTIFICATION_LIBS
615STARTUP_NOTIFICATION_CFLAGS
606PIXBUF_LIBS 616PIXBUF_LIBS
607PIXBUF_CFLAGS 617PIXBUF_CFLAGS
608PKG_CONFIG 618PKG_CONFIG
609X_EXTRA_LIBS 619X_EXTRA_LIBS
610X_LIBS 620X_LIBS
691enable_xft 701enable_xft
692enable_font_styles 702enable_font_styles
693enable_afterimage 703enable_afterimage
694with_afterimage_config 704with_afterimage_config
695enable_pixbuf 705enable_pixbuf
706enable_startup_notification
696enable_transparency 707enable_transparency
697enable_fading 708enable_fading
698enable_rxvt_scroll 709enable_rxvt_scroll
699enable_next_scroll 710enable_next_scroll
700enable_xterm_scroll 711enable_xterm_scroll
800 ac_prev= 811 ac_prev=
801 continue 812 continue
802 fi 813 fi
803 814
804 case $ac_option in 815 case $ac_option in
805 *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; 816 *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
817 *=) ac_optarg= ;;
806 *) ac_optarg=yes ;; 818 *) ac_optarg=yes ;;
807 esac 819 esac
808 820
809 # Accept the important Cygnus configure options, so we can diagnose typos. 821 # Accept the important Cygnus configure options, so we can diagnose typos.
810 822
811 case $ac_dashdash$ac_option in 823 case $ac_dashdash$ac_option in
846 858
847 -disable-* | --disable-*) 859 -disable-* | --disable-*)
848 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 860 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
849 # Reject names that are not valid shell variable names. 861 # Reject names that are not valid shell variable names.
850 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 862 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
851 as_fn_error "invalid feature name: $ac_useropt" 863 as_fn_error $? "invalid feature name: $ac_useropt"
852 ac_useropt_orig=$ac_useropt 864 ac_useropt_orig=$ac_useropt
853 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 865 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
854 case $ac_user_opts in 866 case $ac_user_opts in
855 *" 867 *"
856"enable_$ac_useropt" 868"enable_$ac_useropt"
872 884
873 -enable-* | --enable-*) 885 -enable-* | --enable-*)
874 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 886 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
875 # Reject names that are not valid shell variable names. 887 # Reject names that are not valid shell variable names.
876 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 888 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
877 as_fn_error "invalid feature name: $ac_useropt" 889 as_fn_error $? "invalid feature name: $ac_useropt"
878 ac_useropt_orig=$ac_useropt 890 ac_useropt_orig=$ac_useropt
879 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 891 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
880 case $ac_user_opts in 892 case $ac_user_opts in
881 *" 893 *"
882"enable_$ac_useropt" 894"enable_$ac_useropt"
1076 1088
1077 -with-* | --with-*) 1089 -with-* | --with-*)
1078 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1090 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
1079 # Reject names that are not valid shell variable names. 1091 # Reject names that are not valid shell variable names.
1080 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1092 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1081 as_fn_error "invalid package name: $ac_useropt" 1093 as_fn_error $? "invalid package name: $ac_useropt"
1082 ac_useropt_orig=$ac_useropt 1094 ac_useropt_orig=$ac_useropt
1083 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1095 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1084 case $ac_user_opts in 1096 case $ac_user_opts in
1085 *" 1097 *"
1086"with_$ac_useropt" 1098"with_$ac_useropt"
1092 1104
1093 -without-* | --without-*) 1105 -without-* | --without-*)
1094 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1106 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
1095 # Reject names that are not valid shell variable names. 1107 # Reject names that are not valid shell variable names.
1096 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1108 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
1097 as_fn_error "invalid package name: $ac_useropt" 1109 as_fn_error $? "invalid package name: $ac_useropt"
1098 ac_useropt_orig=$ac_useropt 1110 ac_useropt_orig=$ac_useropt
1099 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1111 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
1100 case $ac_user_opts in 1112 case $ac_user_opts in
1101 *" 1113 *"
1102"with_$ac_useropt" 1114"with_$ac_useropt"
1122 ac_prev=x_libraries ;; 1134 ac_prev=x_libraries ;;
1123 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ 1135 -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
1124 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) 1136 | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
1125 x_libraries=$ac_optarg ;; 1137 x_libraries=$ac_optarg ;;
1126 1138
1127 -*) as_fn_error "unrecognized option: \`$ac_option' 1139 -*) as_fn_error $? "unrecognized option: \`$ac_option'
1128Try \`$0 --help' for more information." 1140Try \`$0 --help' for more information"
1129 ;; 1141 ;;
1130 1142
1131 *=*) 1143 *=*)
1132 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` 1144 ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
1133 # Reject names that are not valid shell variable names. 1145 # Reject names that are not valid shell variable names.
1134 case $ac_envvar in #( 1146 case $ac_envvar in #(
1135 '' | [0-9]* | *[!_$as_cr_alnum]* ) 1147 '' | [0-9]* | *[!_$as_cr_alnum]* )
1136 as_fn_error "invalid variable name: \`$ac_envvar'" ;; 1148 as_fn_error $? "invalid variable name: \`$ac_envvar'" ;;
1137 esac 1149 esac
1138 eval $ac_envvar=\$ac_optarg 1150 eval $ac_envvar=\$ac_optarg
1139 export $ac_envvar ;; 1151 export $ac_envvar ;;
1140 1152
1141 *) 1153 *)
1142 # FIXME: should be removed in autoconf 3.0. 1154 # FIXME: should be removed in autoconf 3.0.
1143 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1155 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
1144 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1156 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
1145 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1157 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
1146 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1158 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}"
1147 ;; 1159 ;;
1148 1160
1149 esac 1161 esac
1150done 1162done
1151 1163
1152if test -n "$ac_prev"; then 1164if test -n "$ac_prev"; then
1153 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1165 ac_option=--`echo $ac_prev | sed 's/_/-/g'`
1154 as_fn_error "missing argument to $ac_option" 1166 as_fn_error $? "missing argument to $ac_option"
1155fi 1167fi
1156 1168
1157if test -n "$ac_unrecognized_opts"; then 1169if test -n "$ac_unrecognized_opts"; then
1158 case $enable_option_checking in 1170 case $enable_option_checking in
1159 no) ;; 1171 no) ;;
1160 fatal) as_fn_error "unrecognized options: $ac_unrecognized_opts" ;; 1172 fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;;
1161 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1173 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
1162 esac 1174 esac
1163fi 1175fi
1164 1176
1165# Check all directory arguments for consistency. 1177# Check all directory arguments for consistency.
1178 # Be sure to have absolute directory names. 1190 # Be sure to have absolute directory names.
1179 case $ac_val in 1191 case $ac_val in
1180 [\\/$]* | ?:[\\/]* ) continue;; 1192 [\\/$]* | ?:[\\/]* ) continue;;
1181 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1193 NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
1182 esac 1194 esac
1183 as_fn_error "expected an absolute directory name for --$ac_var: $ac_val" 1195 as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val"
1184done 1196done
1185 1197
1186# There might be people who depend on the old broken behavior: `$host' 1198# There might be people who depend on the old broken behavior: `$host'
1187# used to hold the argument of --host etc. 1199# used to hold the argument of --host etc.
1188# FIXME: To remove some day. 1200# FIXME: To remove some day.
1192 1204
1193# FIXME: To remove some day. 1205# FIXME: To remove some day.
1194if test "x$host_alias" != x; then 1206if test "x$host_alias" != x; then
1195 if test "x$build_alias" = x; then 1207 if test "x$build_alias" = x; then
1196 cross_compiling=maybe 1208 cross_compiling=maybe
1197 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1209 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
1198 If a cross compiler is detected then cross compile mode will be used." >&2 1210 If a cross compiler is detected then cross compile mode will be used" >&2
1199 elif test "x$build_alias" != "x$host_alias"; then 1211 elif test "x$build_alias" != "x$host_alias"; then
1200 cross_compiling=yes 1212 cross_compiling=yes
1201 fi 1213 fi
1202fi 1214fi
1203 1215
1208 1220
1209 1221
1210ac_pwd=`pwd` && test -n "$ac_pwd" && 1222ac_pwd=`pwd` && test -n "$ac_pwd" &&
1211ac_ls_di=`ls -di .` && 1223ac_ls_di=`ls -di .` &&
1212ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1224ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
1213 as_fn_error "working directory cannot be determined" 1225 as_fn_error $? "working directory cannot be determined"
1214test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1226test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
1215 as_fn_error "pwd does not report name of working directory" 1227 as_fn_error $? "pwd does not report name of working directory"
1216 1228
1217 1229
1218# Find the source files, if location was not specified. 1230# Find the source files, if location was not specified.
1219if test -z "$srcdir"; then 1231if test -z "$srcdir"; then
1220 ac_srcdir_defaulted=yes 1232 ac_srcdir_defaulted=yes
1249else 1261else
1250 ac_srcdir_defaulted=no 1262 ac_srcdir_defaulted=no
1251fi 1263fi
1252if test ! -r "$srcdir/$ac_unique_file"; then 1264if test ! -r "$srcdir/$ac_unique_file"; then
1253 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1265 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
1254 as_fn_error "cannot find sources ($ac_unique_file) in $srcdir" 1266 as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir"
1255fi 1267fi
1256ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1268ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
1257ac_abs_confdir=`( 1269ac_abs_confdir=`(
1258 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error "$ac_msg" 1270 cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg"
1259 pwd)` 1271 pwd)`
1260# When building in place, set srcdir=. 1272# When building in place, set srcdir=.
1261if test "$ac_abs_confdir" = "$ac_pwd"; then 1273if test "$ac_abs_confdir" = "$ac_pwd"; then
1262 srcdir=. 1274 srcdir=.
1263fi 1275fi
1293Configuration: 1305Configuration:
1294 -h, --help display this help and exit 1306 -h, --help display this help and exit
1295 --help=short display options specific to this package 1307 --help=short display options specific to this package
1296 --help=recursive display the short help of all the included packages 1308 --help=recursive display the short help of all the included packages
1297 -V, --version display version information and exit 1309 -V, --version display version information and exit
1298 -q, --quiet, --silent do not print \`checking...' messages 1310 -q, --quiet, --silent do not print \`checking ...' messages
1299 --cache-file=FILE cache test results in FILE [disabled] 1311 --cache-file=FILE cache test results in FILE [disabled]
1300 -C, --config-cache alias for \`--cache-file=config.cache' 1312 -C, --config-cache alias for \`--cache-file=config.cache'
1301 -n, --no-create do not create output files 1313 -n, --no-create do not create output files
1302 --srcdir=DIR find the sources in DIR [configure dir or \`..'] 1314 --srcdir=DIR find the sources in DIR [configure dir or \`..']
1303 1315
1365 --enable-combining enable composition of base and combining characters 1377 --enable-combining enable composition of base and combining characters
1366 --enable-xft enable xft support on systems that have it 1378 --enable-xft enable xft support on systems that have it
1367 --enable-font-styles enable bold and italic support 1379 --enable-font-styles enable bold and italic support
1368 --enable-afterimage enable integration with libAfterImage for background images 1380 --enable-afterimage enable integration with libAfterImage for background images
1369 --enable-pixbuf enable integration with gdk-pixbuf for background images 1381 --enable-pixbuf enable integration with gdk-pixbuf for background images
1382 --enable-startup-notification enable freedesktop startup notification support
1370 --enable-transparency enable transparent backgrounds 1383 --enable-transparency enable transparent backgrounds
1371 --enable-fading enable colors fading when off focus 1384 --enable-fading enable colors fading when off focus
1372 --enable-rxvt-scroll enable rxvt style scrollbar 1385 --enable-rxvt-scroll enable rxvt style scrollbar
1373 --enable-next-scroll enable NeXT style scrollbar 1386 --enable-next-scroll enable NeXT style scrollbar
1374 --enable-xterm-scroll enable Xterm style scrollbar 1387 --enable-xterm-scroll enable Xterm style scrollbar
1484 1497
1485test -n "$ac_init_help" && exit $ac_status 1498test -n "$ac_init_help" && exit $ac_status
1486if $ac_init_version; then 1499if $ac_init_version; then
1487 cat <<\_ACEOF 1500 cat <<\_ACEOF
1488configure 1501configure
1489generated by GNU Autoconf 2.65 1502generated by GNU Autoconf 2.68
1490 1503
1491Copyright (C) 2009 Free Software Foundation, Inc. 1504Copyright (C) 2010 Free Software Foundation, Inc.
1492This configure script is free software; the Free Software Foundation 1505This configure script is free software; the Free Software Foundation
1493gives unlimited permission to copy, distribute and modify it. 1506gives unlimited permission to copy, distribute and modify it.
1494_ACEOF 1507_ACEOF
1495 exit 1508 exit
1496fi 1509fi
1530 $as_echo "$as_me: failed program was:" >&5 1543 $as_echo "$as_me: failed program was:" >&5
1531sed 's/^/| /' conftest.$ac_ext >&5 1544sed 's/^/| /' conftest.$ac_ext >&5
1532 1545
1533 ac_retval=1 1546 ac_retval=1
1534fi 1547fi
1535 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1548 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1536 as_fn_set_status $ac_retval 1549 as_fn_set_status $ac_retval
1537 1550
1538} # ac_fn_c_try_compile 1551} # ac_fn_c_try_compile
1539 1552
1540# ac_fn_cxx_try_compile LINENO 1553# ac_fn_cxx_try_compile LINENO
1568 $as_echo "$as_me: failed program was:" >&5 1581 $as_echo "$as_me: failed program was:" >&5
1569sed 's/^/| /' conftest.$ac_ext >&5 1582sed 's/^/| /' conftest.$ac_ext >&5
1570 1583
1571 ac_retval=1 1584 ac_retval=1
1572fi 1585fi
1573 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1586 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1574 as_fn_set_status $ac_retval 1587 as_fn_set_status $ac_retval
1575 1588
1576} # ac_fn_cxx_try_compile 1589} # ac_fn_cxx_try_compile
1577 1590
1578# ac_fn_c_try_cpp LINENO 1591# ac_fn_c_try_cpp LINENO
1594 grep -v '^ *+' conftest.err >conftest.er1 1607 grep -v '^ *+' conftest.err >conftest.er1
1595 cat conftest.er1 >&5 1608 cat conftest.er1 >&5
1596 mv -f conftest.er1 conftest.err 1609 mv -f conftest.er1 conftest.err
1597 fi 1610 fi
1598 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1611 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1599 test $ac_status = 0; } >/dev/null && { 1612 test $ac_status = 0; } > conftest.i && {
1600 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || 1613 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" ||
1601 test ! -s conftest.err 1614 test ! -s conftest.err
1602 }; then : 1615 }; then :
1603 ac_retval=0 1616 ac_retval=0
1604else 1617else
1605 $as_echo "$as_me: failed program was:" >&5 1618 $as_echo "$as_me: failed program was:" >&5
1606sed 's/^/| /' conftest.$ac_ext >&5 1619sed 's/^/| /' conftest.$ac_ext >&5
1607 1620
1608 ac_retval=1 1621 ac_retval=1
1609fi 1622fi
1610 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1623 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1611 as_fn_set_status $ac_retval 1624 as_fn_set_status $ac_retval
1612 1625
1613} # ac_fn_c_try_cpp 1626} # ac_fn_c_try_cpp
1614 1627
1615# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES 1628# ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES
1618# the include files in INCLUDES and setting the cache variable VAR 1631# the include files in INCLUDES and setting the cache variable VAR
1619# accordingly. 1632# accordingly.
1620ac_fn_c_check_header_mongrel () 1633ac_fn_c_check_header_mongrel ()
1621{ 1634{
1622 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1635 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1623 if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1636 if eval \${$3+:} false; then :
1624 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1637 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1625$as_echo_n "checking for $2... " >&6; } 1638$as_echo_n "checking for $2... " >&6; }
1626if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1639if eval \${$3+:} false; then :
1627 $as_echo_n "(cached) " >&6 1640 $as_echo_n "(cached) " >&6
1628fi 1641fi
1629eval ac_res=\$$3 1642eval ac_res=\$$3
1630 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1643 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1631$as_echo "$ac_res" >&6; } 1644$as_echo "$ac_res" >&6; }
1657if ac_fn_c_try_cpp "$LINENO"; then : 1670if ac_fn_c_try_cpp "$LINENO"; then :
1658 ac_header_preproc=yes 1671 ac_header_preproc=yes
1659else 1672else
1660 ac_header_preproc=no 1673 ac_header_preproc=no
1661fi 1674fi
1662rm -f conftest.err conftest.$ac_ext 1675rm -f conftest.err conftest.i conftest.$ac_ext
1663{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 1676{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
1664$as_echo "$ac_header_preproc" >&6; } 1677$as_echo "$ac_header_preproc" >&6; }
1665 1678
1666# So? What about this header? 1679# So? What about this header?
1667case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( 1680case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #((
1684$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} 1697$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1685 ;; 1698 ;;
1686esac 1699esac
1687 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1700 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1688$as_echo_n "checking for $2... " >&6; } 1701$as_echo_n "checking for $2... " >&6; }
1689if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1702if eval \${$3+:} false; then :
1690 $as_echo_n "(cached) " >&6 1703 $as_echo_n "(cached) " >&6
1691else 1704else
1692 eval "$3=\$ac_header_compiler" 1705 eval "$3=\$ac_header_compiler"
1693fi 1706fi
1694eval ac_res=\$$3 1707eval ac_res=\$$3
1695 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1708 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1696$as_echo "$ac_res" >&6; } 1709$as_echo "$ac_res" >&6; }
1697fi 1710fi
1698 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1711 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1699 1712
1700} # ac_fn_c_check_header_mongrel 1713} # ac_fn_c_check_header_mongrel
1701 1714
1702# ac_fn_c_try_run LINENO 1715# ac_fn_c_try_run LINENO
1703# ---------------------- 1716# ----------------------
1734sed 's/^/| /' conftest.$ac_ext >&5 1747sed 's/^/| /' conftest.$ac_ext >&5
1735 1748
1736 ac_retval=$ac_status 1749 ac_retval=$ac_status
1737fi 1750fi
1738 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1751 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1739 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1752 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1740 as_fn_set_status $ac_retval 1753 as_fn_set_status $ac_retval
1741 1754
1742} # ac_fn_c_try_run 1755} # ac_fn_c_try_run
1743 1756
1744# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES 1757# ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES
1748ac_fn_c_check_header_compile () 1761ac_fn_c_check_header_compile ()
1749{ 1762{
1750 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1763 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1751 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1764 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1752$as_echo_n "checking for $2... " >&6; } 1765$as_echo_n "checking for $2... " >&6; }
1753if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1766if eval \${$3+:} false; then :
1754 $as_echo_n "(cached) " >&6 1767 $as_echo_n "(cached) " >&6
1755else 1768else
1756 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 1769 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
1757/* end confdefs.h. */ 1770/* end confdefs.h. */
1758$4 1771$4
1766rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 1779rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
1767fi 1780fi
1768eval ac_res=\$$3 1781eval ac_res=\$$3
1769 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1782 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1770$as_echo "$ac_res" >&6; } 1783$as_echo "$ac_res" >&6; }
1771 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1784 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1772 1785
1773} # ac_fn_c_check_header_compile 1786} # ac_fn_c_check_header_compile
1774 1787
1775# ac_fn_c_try_link LINENO 1788# ac_fn_c_try_link LINENO
1776# ----------------------- 1789# -----------------------
1811 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information 1824 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
1812 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would 1825 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
1813 # interfere with the next link command; also delete a directory that is 1826 # interfere with the next link command; also delete a directory that is
1814 # left behind by Apple's compiler. We do this before executing the actions. 1827 # left behind by Apple's compiler. We do this before executing the actions.
1815 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1828 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1816 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1829 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1817 as_fn_set_status $ac_retval 1830 as_fn_set_status $ac_retval
1818 1831
1819} # ac_fn_c_try_link 1832} # ac_fn_c_try_link
1820 1833
1821# ac_fn_cxx_try_link LINENO 1834# ac_fn_cxx_try_link LINENO
1857 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information 1870 # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information
1858 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would 1871 # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would
1859 # interfere with the next link command; also delete a directory that is 1872 # interfere with the next link command; also delete a directory that is
1860 # left behind by Apple's compiler. We do this before executing the actions. 1873 # left behind by Apple's compiler. We do this before executing the actions.
1861 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 1874 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
1862 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1875 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1863 as_fn_set_status $ac_retval 1876 as_fn_set_status $ac_retval
1864 1877
1865} # ac_fn_cxx_try_link 1878} # ac_fn_cxx_try_link
1866 1879
1867# ac_fn_cxx_try_cpp LINENO 1880# ac_fn_cxx_try_cpp LINENO
1883 grep -v '^ *+' conftest.err >conftest.er1 1896 grep -v '^ *+' conftest.err >conftest.er1
1884 cat conftest.er1 >&5 1897 cat conftest.er1 >&5
1885 mv -f conftest.er1 conftest.err 1898 mv -f conftest.er1 conftest.err
1886 fi 1899 fi
1887 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 1900 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
1888 test $ac_status = 0; } >/dev/null && { 1901 test $ac_status = 0; } > conftest.i && {
1889 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || 1902 test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" ||
1890 test ! -s conftest.err 1903 test ! -s conftest.err
1891 }; then : 1904 }; then :
1892 ac_retval=0 1905 ac_retval=0
1893else 1906else
1894 $as_echo "$as_me: failed program was:" >&5 1907 $as_echo "$as_me: failed program was:" >&5
1895sed 's/^/| /' conftest.$ac_ext >&5 1908sed 's/^/| /' conftest.$ac_ext >&5
1896 1909
1897 ac_retval=1 1910 ac_retval=1
1898fi 1911fi
1899 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 1912 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1900 as_fn_set_status $ac_retval 1913 as_fn_set_status $ac_retval
1901 1914
1902} # ac_fn_cxx_try_cpp 1915} # ac_fn_cxx_try_cpp
1903 1916
1904# ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES 1917# ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES
1907# the include files in INCLUDES and setting the cache variable VAR 1920# the include files in INCLUDES and setting the cache variable VAR
1908# accordingly. 1921# accordingly.
1909ac_fn_cxx_check_header_mongrel () 1922ac_fn_cxx_check_header_mongrel ()
1910{ 1923{
1911 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 1924 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1912 if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1925 if eval \${$3+:} false; then :
1913 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1926 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1914$as_echo_n "checking for $2... " >&6; } 1927$as_echo_n "checking for $2... " >&6; }
1915if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1928if eval \${$3+:} false; then :
1916 $as_echo_n "(cached) " >&6 1929 $as_echo_n "(cached) " >&6
1917fi 1930fi
1918eval ac_res=\$$3 1931eval ac_res=\$$3
1919 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1932 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1920$as_echo "$ac_res" >&6; } 1933$as_echo "$ac_res" >&6; }
1946if ac_fn_cxx_try_cpp "$LINENO"; then : 1959if ac_fn_cxx_try_cpp "$LINENO"; then :
1947 ac_header_preproc=yes 1960 ac_header_preproc=yes
1948else 1961else
1949 ac_header_preproc=no 1962 ac_header_preproc=no
1950fi 1963fi
1951rm -f conftest.err conftest.$ac_ext 1964rm -f conftest.err conftest.i conftest.$ac_ext
1952{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 1965{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5
1953$as_echo "$ac_header_preproc" >&6; } 1966$as_echo "$ac_header_preproc" >&6; }
1954 1967
1955# So? What about this header? 1968# So? What about this header?
1956case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( 1969case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #((
1973$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} 1986$as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;}
1974 ;; 1987 ;;
1975esac 1988esac
1976 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 1989 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1977$as_echo_n "checking for $2... " >&6; } 1990$as_echo_n "checking for $2... " >&6; }
1978if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 1991if eval \${$3+:} false; then :
1979 $as_echo_n "(cached) " >&6 1992 $as_echo_n "(cached) " >&6
1980else 1993else
1981 eval "$3=\$ac_header_compiler" 1994 eval "$3=\$ac_header_compiler"
1982fi 1995fi
1983eval ac_res=\$$3 1996eval ac_res=\$$3
1984 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 1997 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
1985$as_echo "$ac_res" >&6; } 1998$as_echo "$ac_res" >&6; }
1986fi 1999fi
1987 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2000 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
1988 2001
1989} # ac_fn_cxx_check_header_mongrel 2002} # ac_fn_cxx_check_header_mongrel
1990 2003
1991# ac_fn_cxx_check_func LINENO FUNC VAR 2004# ac_fn_cxx_check_func LINENO FUNC VAR
1992# ------------------------------------ 2005# ------------------------------------
1994ac_fn_cxx_check_func () 2007ac_fn_cxx_check_func ()
1995{ 2008{
1996 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2009 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
1997 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2010 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
1998$as_echo_n "checking for $2... " >&6; } 2011$as_echo_n "checking for $2... " >&6; }
1999if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2012if eval \${$3+:} false; then :
2000 $as_echo_n "(cached) " >&6 2013 $as_echo_n "(cached) " >&6
2001else 2014else
2002 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2015 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2003/* end confdefs.h. */ 2016/* end confdefs.h. */
2004/* Define $2 to an innocuous variant, in case <limits.h> declares $2. 2017/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
2049 conftest$ac_exeext conftest.$ac_ext 2062 conftest$ac_exeext conftest.$ac_ext
2050fi 2063fi
2051eval ac_res=\$$3 2064eval ac_res=\$$3
2052 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2065 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2053$as_echo "$ac_res" >&6; } 2066$as_echo "$ac_res" >&6; }
2054 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2067 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2055 2068
2056} # ac_fn_cxx_check_func 2069} # ac_fn_cxx_check_func
2057 2070
2058# ac_fn_cxx_check_type LINENO TYPE VAR INCLUDES 2071# ac_fn_cxx_check_type LINENO TYPE VAR INCLUDES
2059# --------------------------------------------- 2072# ---------------------------------------------
2062ac_fn_cxx_check_type () 2075ac_fn_cxx_check_type ()
2063{ 2076{
2064 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2077 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2065 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 2078 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5
2066$as_echo_n "checking for $2... " >&6; } 2079$as_echo_n "checking for $2... " >&6; }
2067if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2080if eval \${$3+:} false; then :
2068 $as_echo_n "(cached) " >&6 2081 $as_echo_n "(cached) " >&6
2069else 2082else
2070 eval "$3=no" 2083 eval "$3=no"
2071 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2084 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2072/* end confdefs.h. */ 2085/* end confdefs.h. */
2103rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2116rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2104fi 2117fi
2105eval ac_res=\$$3 2118eval ac_res=\$$3
2106 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2119 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2107$as_echo "$ac_res" >&6; } 2120$as_echo "$ac_res" >&6; }
2108 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2121 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2109 2122
2110} # ac_fn_cxx_check_type 2123} # ac_fn_cxx_check_type
2111 2124
2112# ac_fn_c_find_intX_t LINENO BITS VAR 2125# ac_fn_c_find_intX_t LINENO BITS VAR
2113# ----------------------------------- 2126# -----------------------------------
2116ac_fn_c_find_intX_t () 2129ac_fn_c_find_intX_t ()
2117{ 2130{
2118 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2131 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2119 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int$2_t" >&5 2132 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for int$2_t" >&5
2120$as_echo_n "checking for int$2_t... " >&6; } 2133$as_echo_n "checking for int$2_t... " >&6; }
2121if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2134if eval \${$3+:} false; then :
2122 $as_echo_n "(cached) " >&6 2135 $as_echo_n "(cached) " >&6
2123else 2136else
2124 eval "$3=no" 2137 eval "$3=no"
2125 # Order is important - never check a type that is potentially smaller 2138 # Order is important - never check a type that is potentially smaller
2126 # than half of the expected target width. 2139 # than half of the expected target width.
2127 for ac_type in int$2_t 'int' 'long int' \ 2140 for ac_type in int$2_t 'int' 'long int' \
2128 'long long int' 'short int' 'signed char'; do 2141 'long long int' 'short int' 'signed char'; do
2129 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2142 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2130/* end confdefs.h. */ 2143/* end confdefs.h. */
2131$ac_includes_default 2144$ac_includes_default
2145 enum { N = $2 / 2 - 1 };
2132int 2146int
2133main () 2147main ()
2134{ 2148{
2135static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
2136 0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))]; 2149static int test_array [1 - 2 * !(0 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1))];
2137test_array [0] = 0 2150test_array [0] = 0
2138 2151
2139 ; 2152 ;
2140 return 0; 2153 return 0;
2141} 2154}
2142_ACEOF 2155_ACEOF
2143if ac_fn_cxx_try_compile "$LINENO"; then : 2156if ac_fn_cxx_try_compile "$LINENO"; then :
2144 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 2157 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
2145/* end confdefs.h. */ 2158/* end confdefs.h. */
2146$ac_includes_default 2159$ac_includes_default
2160 enum { N = $2 / 2 - 1 };
2147int 2161int
2148main () 2162main ()
2149{ 2163{
2150static int test_array [1 - 2 * !(enum { N = $2 / 2 - 1 };
2151 ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1) 2164static int test_array [1 - 2 * !(($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 1)
2152 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))]; 2165 < ($ac_type) ((((($ac_type) 1 << N) << N) - 1) * 2 + 2))];
2153test_array [0] = 0 2166test_array [0] = 0
2154 2167
2155 ; 2168 ;
2156 return 0; 2169 return 0;
2167esac 2180esac
2168fi 2181fi
2169rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2182rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2170fi 2183fi
2171rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2184rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2172 eval as_val=\$$3 2185 if eval test \"x\$"$3"\" = x"no"; then :
2173 if test "x$as_val" = x""no; then :
2174 2186
2175else 2187else
2176 break 2188 break
2177fi 2189fi
2178 done 2190 done
2179fi 2191fi
2180eval ac_res=\$$3 2192eval ac_res=\$$3
2181 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2193 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2182$as_echo "$ac_res" >&6; } 2194$as_echo "$ac_res" >&6; }
2183 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2195 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2184 2196
2185} # ac_fn_c_find_intX_t 2197} # ac_fn_c_find_intX_t
2186 2198
2187# ac_fn_c_find_uintX_t LINENO BITS VAR 2199# ac_fn_c_find_uintX_t LINENO BITS VAR
2188# ------------------------------------ 2200# ------------------------------------
2191ac_fn_c_find_uintX_t () 2203ac_fn_c_find_uintX_t ()
2192{ 2204{
2193 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 2205 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
2194 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5 2206 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5
2195$as_echo_n "checking for uint$2_t... " >&6; } 2207$as_echo_n "checking for uint$2_t... " >&6; }
2196if { as_var=$3; eval "test \"\${$as_var+set}\" = set"; }; then : 2208if eval \${$3+:} false; then :
2197 $as_echo_n "(cached) " >&6 2209 $as_echo_n "(cached) " >&6
2198else 2210else
2199 eval "$3=no" 2211 eval "$3=no"
2200 # Order is important - never check a type that is potentially smaller 2212 # Order is important - never check a type that is potentially smaller
2201 # than half of the expected target width. 2213 # than half of the expected target width.
2221 *) : 2233 *) :
2222 eval "$3=\$ac_type" ;; 2234 eval "$3=\$ac_type" ;;
2223esac 2235esac
2224fi 2236fi
2225rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 2237rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
2226 eval as_val=\$$3 2238 if eval test \"x\$"$3"\" = x"no"; then :
2227 if test "x$as_val" = x""no; then :
2228 2239
2229else 2240else
2230 break 2241 break
2231fi 2242fi
2232 done 2243 done
2233fi 2244fi
2234eval ac_res=\$$3 2245eval ac_res=\$$3
2235 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 2246 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
2236$as_echo "$ac_res" >&6; } 2247$as_echo "$ac_res" >&6; }
2237 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2248 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2238 2249
2239} # ac_fn_c_find_uintX_t 2250} # ac_fn_c_find_uintX_t
2240 2251
2241# ac_fn_cxx_try_run LINENO 2252# ac_fn_cxx_try_run LINENO
2242# ------------------------ 2253# ------------------------
2273sed 's/^/| /' conftest.$ac_ext >&5 2284sed 's/^/| /' conftest.$ac_ext >&5
2274 2285
2275 ac_retval=$ac_status 2286 ac_retval=$ac_status
2276fi 2287fi
2277 rm -rf conftest.dSYM conftest_ipa8_conftest.oo 2288 rm -rf conftest.dSYM conftest_ipa8_conftest.oo
2278 eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} 2289 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
2279 as_fn_set_status $ac_retval 2290 as_fn_set_status $ac_retval
2280 2291
2281} # ac_fn_cxx_try_run 2292} # ac_fn_cxx_try_run
2282cat >config.log <<_ACEOF 2293cat >config.log <<_ACEOF
2283This file contains any messages produced by compilers while 2294This file contains any messages produced by compilers while
2284running configure, to aid debugging if configure makes a mistake. 2295running configure, to aid debugging if configure makes a mistake.
2285 2296
2286It was created by $as_me, which was 2297It was created by $as_me, which was
2287generated by GNU Autoconf 2.65. Invocation command line was 2298generated by GNU Autoconf 2.68. Invocation command line was
2288 2299
2289 $ $0 $@ 2300 $ $0 $@
2290 2301
2291_ACEOF 2302_ACEOF
2292exec 5>>config.log 2303exec 5>>config.log
2392trap 'exit_status=$? 2403trap 'exit_status=$?
2393 # Save into config.log some information that might help in debugging. 2404 # Save into config.log some information that might help in debugging.
2394 { 2405 {
2395 echo 2406 echo
2396 2407
2397 cat <<\_ASBOX
2398## ---------------- ## 2408 $as_echo "## ---------------- ##
2399## Cache variables. ## 2409## Cache variables. ##
2400## ---------------- ## 2410## ---------------- ##"
2401_ASBOX
2402 echo 2411 echo
2403 # The following way of writing the cache mishandles newlines in values, 2412 # The following way of writing the cache mishandles newlines in values,
2404( 2413(
2405 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do 2414 for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do
2406 eval ac_val=\$$ac_var 2415 eval ac_val=\$$ac_var
2430 esac | 2439 esac |
2431 sort 2440 sort
2432) 2441)
2433 echo 2442 echo
2434 2443
2435 cat <<\_ASBOX
2436## ----------------- ## 2444 $as_echo "## ----------------- ##
2437## Output variables. ## 2445## Output variables. ##
2438## ----------------- ## 2446## ----------------- ##"
2439_ASBOX
2440 echo 2447 echo
2441 for ac_var in $ac_subst_vars 2448 for ac_var in $ac_subst_vars
2442 do 2449 do
2443 eval ac_val=\$$ac_var 2450 eval ac_val=\$$ac_var
2444 case $ac_val in 2451 case $ac_val in
2447 $as_echo "$ac_var='\''$ac_val'\''" 2454 $as_echo "$ac_var='\''$ac_val'\''"
2448 done | sort 2455 done | sort
2449 echo 2456 echo
2450 2457
2451 if test -n "$ac_subst_files"; then 2458 if test -n "$ac_subst_files"; then
2452 cat <<\_ASBOX
2453## ------------------- ## 2459 $as_echo "## ------------------- ##
2454## File substitutions. ## 2460## File substitutions. ##
2455## ------------------- ## 2461## ------------------- ##"
2456_ASBOX
2457 echo 2462 echo
2458 for ac_var in $ac_subst_files 2463 for ac_var in $ac_subst_files
2459 do 2464 do
2460 eval ac_val=\$$ac_var 2465 eval ac_val=\$$ac_var
2461 case $ac_val in 2466 case $ac_val in
2465 done | sort 2470 done | sort
2466 echo 2471 echo
2467 fi 2472 fi
2468 2473
2469 if test -s confdefs.h; then 2474 if test -s confdefs.h; then
2470 cat <<\_ASBOX 2475 $as_echo "## ----------- ##
2471## ----------- ##
2472## confdefs.h. ## 2476## confdefs.h. ##
2473## ----------- ## 2477## ----------- ##"
2474_ASBOX
2475 echo 2478 echo
2476 cat confdefs.h 2479 cat confdefs.h
2477 echo 2480 echo
2478 fi 2481 fi
2479 test "$ac_signal" != 0 && 2482 test "$ac_signal" != 0 &&
2524# Let the site file select an alternate cache file if it wants to. 2527# Let the site file select an alternate cache file if it wants to.
2525# Prefer an explicitly selected file to automatically selected ones. 2528# Prefer an explicitly selected file to automatically selected ones.
2526ac_site_file1=NONE 2529ac_site_file1=NONE
2527ac_site_file2=NONE 2530ac_site_file2=NONE
2528if test -n "$CONFIG_SITE"; then 2531if test -n "$CONFIG_SITE"; then
2532 # We do not want a PATH search for config.site.
2533 case $CONFIG_SITE in #((
2534 -*) ac_site_file1=./$CONFIG_SITE;;
2529 ac_site_file1=$CONFIG_SITE 2535 */*) ac_site_file1=$CONFIG_SITE;;
2536 *) ac_site_file1=./$CONFIG_SITE;;
2537 esac
2530elif test "x$prefix" != xNONE; then 2538elif test "x$prefix" != xNONE; then
2531 ac_site_file1=$prefix/share/config.site 2539 ac_site_file1=$prefix/share/config.site
2532 ac_site_file2=$prefix/etc/config.site 2540 ac_site_file2=$prefix/etc/config.site
2533else 2541else
2534 ac_site_file1=$ac_default_prefix/share/config.site 2542 ac_site_file1=$ac_default_prefix/share/config.site
2539 test "x$ac_site_file" = xNONE && continue 2547 test "x$ac_site_file" = xNONE && continue
2540 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then 2548 if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then
2541 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 2549 { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5
2542$as_echo "$as_me: loading site script $ac_site_file" >&6;} 2550$as_echo "$as_me: loading site script $ac_site_file" >&6;}
2543 sed 's/^/| /' "$ac_site_file" >&5 2551 sed 's/^/| /' "$ac_site_file" >&5
2544 . "$ac_site_file" 2552 . "$ac_site_file" \
2553 || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2554$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2555as_fn_error $? "failed to load site script $ac_site_file
2556See \`config.log' for more details" "$LINENO" 5; }
2545 fi 2557 fi
2546done 2558done
2547 2559
2548if test -r "$cache_file"; then 2560if test -r "$cache_file"; then
2549 # Some versions of bash will fail to source /dev/null (special files 2561 # Some versions of bash will fail to source /dev/null (special files
2615if $ac_cache_corrupted; then 2627if $ac_cache_corrupted; then
2616 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 2628 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
2617$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2629$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
2618 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 2630 { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5
2619$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 2631$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
2620 as_fn_error "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 2632 as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5
2621fi 2633fi
2622## -------------------- ## 2634## -------------------- ##
2623## Main body of script. ## 2635## Main body of script. ##
2624## -------------------- ## 2636## -------------------- ##
2625 2637
2635ac_config_headers="$ac_config_headers config.h:config.h.in" 2647ac_config_headers="$ac_config_headers config.h:config.h.in"
2636 2648
2637 2649
2638ac_aux_dir= 2650ac_aux_dir=
2639for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do 2651for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
2640 for ac_t in install-sh install.sh shtool; do
2641 if test -f "$ac_dir/$ac_t"; then 2652 if test -f "$ac_dir/install-sh"; then
2642 ac_aux_dir=$ac_dir 2653 ac_aux_dir=$ac_dir
2643 ac_install_sh="$ac_aux_dir/$ac_t -c" 2654 ac_install_sh="$ac_aux_dir/install-sh -c"
2644 break 2 2655 break
2656 elif test -f "$ac_dir/install.sh"; then
2657 ac_aux_dir=$ac_dir
2658 ac_install_sh="$ac_aux_dir/install.sh -c"
2659 break
2660 elif test -f "$ac_dir/shtool"; then
2661 ac_aux_dir=$ac_dir
2662 ac_install_sh="$ac_aux_dir/shtool install -c"
2663 break
2645 fi 2664 fi
2646 done
2647done 2665done
2648if test -z "$ac_aux_dir"; then 2666if test -z "$ac_aux_dir"; then
2649 as_fn_error "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 2667 as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5
2650fi 2668fi
2651 2669
2652# These three variables are undocumented and unsupported, 2670# These three variables are undocumented and unsupported,
2653# and are intended to be withdrawn in a future Autoconf release. 2671# and are intended to be withdrawn in a future Autoconf release.
2654# They can cause serious problems if a builder's source tree is in a directory 2672# They can cause serious problems if a builder's source tree is in a directory
2658ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 2676ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
2659 2677
2660 2678
2661# Make sure we can run config.sub. 2679# Make sure we can run config.sub.
2662$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || 2680$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
2663 as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 2681 as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
2664 2682
2665{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 2683{ $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5
2666$as_echo_n "checking build system type... " >&6; } 2684$as_echo_n "checking build system type... " >&6; }
2667if test "${ac_cv_build+set}" = set; then : 2685if ${ac_cv_build+:} false; then :
2668 $as_echo_n "(cached) " >&6 2686 $as_echo_n "(cached) " >&6
2669else 2687else
2670 ac_build_alias=$build_alias 2688 ac_build_alias=$build_alias
2671test "x$ac_build_alias" = x && 2689test "x$ac_build_alias" = x &&
2672 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` 2690 ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
2673test "x$ac_build_alias" = x && 2691test "x$ac_build_alias" = x &&
2674 as_fn_error "cannot guess build type; you must specify one" "$LINENO" 5 2692 as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
2675ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || 2693ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
2676 as_fn_error "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 2694 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
2677 2695
2678fi 2696fi
2679{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 2697{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5
2680$as_echo "$ac_cv_build" >&6; } 2698$as_echo "$ac_cv_build" >&6; }
2681case $ac_cv_build in 2699case $ac_cv_build in
2682*-*-*) ;; 2700*-*-*) ;;
2683*) as_fn_error "invalid value of canonical build" "$LINENO" 5;; 2701*) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;;
2684esac 2702esac
2685build=$ac_cv_build 2703build=$ac_cv_build
2686ac_save_IFS=$IFS; IFS='-' 2704ac_save_IFS=$IFS; IFS='-'
2687set x $ac_cv_build 2705set x $ac_cv_build
2688shift 2706shift
2696case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac 2714case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
2697 2715
2698 2716
2699{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 2717{ $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5
2700$as_echo_n "checking host system type... " >&6; } 2718$as_echo_n "checking host system type... " >&6; }
2701if test "${ac_cv_host+set}" = set; then : 2719if ${ac_cv_host+:} false; then :
2702 $as_echo_n "(cached) " >&6 2720 $as_echo_n "(cached) " >&6
2703else 2721else
2704 if test "x$host_alias" = x; then 2722 if test "x$host_alias" = x; then
2705 ac_cv_host=$ac_cv_build 2723 ac_cv_host=$ac_cv_build
2706else 2724else
2707 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || 2725 ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
2708 as_fn_error "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 2726 as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
2709fi 2727fi
2710 2728
2711fi 2729fi
2712{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 2730{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5
2713$as_echo "$ac_cv_host" >&6; } 2731$as_echo "$ac_cv_host" >&6; }
2714case $ac_cv_host in 2732case $ac_cv_host in
2715*-*-*) ;; 2733*-*-*) ;;
2716*) as_fn_error "invalid value of canonical host" "$LINENO" 5;; 2734*) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;;
2717esac 2735esac
2718host=$ac_cv_host 2736host=$ac_cv_host
2719ac_save_IFS=$IFS; IFS='-' 2737ac_save_IFS=$IFS; IFS='-'
2720set x $ac_cv_host 2738set x $ac_cv_host
2721shift 2739shift
2747if test -n "$ac_tool_prefix"; then 2765if test -n "$ac_tool_prefix"; then
2748 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 2766 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
2749set dummy ${ac_tool_prefix}gcc; ac_word=$2 2767set dummy ${ac_tool_prefix}gcc; ac_word=$2
2750{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2768{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2751$as_echo_n "checking for $ac_word... " >&6; } 2769$as_echo_n "checking for $ac_word... " >&6; }
2752if test "${ac_cv_prog_CC+set}" = set; then : 2770if ${ac_cv_prog_CC+:} false; then :
2753 $as_echo_n "(cached) " >&6 2771 $as_echo_n "(cached) " >&6
2754else 2772else
2755 if test -n "$CC"; then 2773 if test -n "$CC"; then
2756 ac_cv_prog_CC="$CC" # Let the user override the test. 2774 ac_cv_prog_CC="$CC" # Let the user override the test.
2757else 2775else
2787 ac_ct_CC=$CC 2805 ac_ct_CC=$CC
2788 # Extract the first word of "gcc", so it can be a program name with args. 2806 # Extract the first word of "gcc", so it can be a program name with args.
2789set dummy gcc; ac_word=$2 2807set dummy gcc; ac_word=$2
2790{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2808{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2791$as_echo_n "checking for $ac_word... " >&6; } 2809$as_echo_n "checking for $ac_word... " >&6; }
2792if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : 2810if ${ac_cv_prog_ac_ct_CC+:} false; then :
2793 $as_echo_n "(cached) " >&6 2811 $as_echo_n "(cached) " >&6
2794else 2812else
2795 if test -n "$ac_ct_CC"; then 2813 if test -n "$ac_ct_CC"; then
2796 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 2814 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2797else 2815else
2840 if test -n "$ac_tool_prefix"; then 2858 if test -n "$ac_tool_prefix"; then
2841 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 2859 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
2842set dummy ${ac_tool_prefix}cc; ac_word=$2 2860set dummy ${ac_tool_prefix}cc; ac_word=$2
2843{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2861{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2844$as_echo_n "checking for $ac_word... " >&6; } 2862$as_echo_n "checking for $ac_word... " >&6; }
2845if test "${ac_cv_prog_CC+set}" = set; then : 2863if ${ac_cv_prog_CC+:} false; then :
2846 $as_echo_n "(cached) " >&6 2864 $as_echo_n "(cached) " >&6
2847else 2865else
2848 if test -n "$CC"; then 2866 if test -n "$CC"; then
2849 ac_cv_prog_CC="$CC" # Let the user override the test. 2867 ac_cv_prog_CC="$CC" # Let the user override the test.
2850else 2868else
2880if test -z "$CC"; then 2898if test -z "$CC"; then
2881 # Extract the first word of "cc", so it can be a program name with args. 2899 # Extract the first word of "cc", so it can be a program name with args.
2882set dummy cc; ac_word=$2 2900set dummy cc; ac_word=$2
2883{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2901{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2884$as_echo_n "checking for $ac_word... " >&6; } 2902$as_echo_n "checking for $ac_word... " >&6; }
2885if test "${ac_cv_prog_CC+set}" = set; then : 2903if ${ac_cv_prog_CC+:} false; then :
2886 $as_echo_n "(cached) " >&6 2904 $as_echo_n "(cached) " >&6
2887else 2905else
2888 if test -n "$CC"; then 2906 if test -n "$CC"; then
2889 ac_cv_prog_CC="$CC" # Let the user override the test. 2907 ac_cv_prog_CC="$CC" # Let the user override the test.
2890else 2908else
2939 do 2957 do
2940 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2958 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2941set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2959set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2942{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 2960{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2943$as_echo_n "checking for $ac_word... " >&6; } 2961$as_echo_n "checking for $ac_word... " >&6; }
2944if test "${ac_cv_prog_CC+set}" = set; then : 2962if ${ac_cv_prog_CC+:} false; then :
2945 $as_echo_n "(cached) " >&6 2963 $as_echo_n "(cached) " >&6
2946else 2964else
2947 if test -n "$CC"; then 2965 if test -n "$CC"; then
2948 ac_cv_prog_CC="$CC" # Let the user override the test. 2966 ac_cv_prog_CC="$CC" # Let the user override the test.
2949else 2967else
2983do 3001do
2984 # Extract the first word of "$ac_prog", so it can be a program name with args. 3002 # Extract the first word of "$ac_prog", so it can be a program name with args.
2985set dummy $ac_prog; ac_word=$2 3003set dummy $ac_prog; ac_word=$2
2986{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3004{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
2987$as_echo_n "checking for $ac_word... " >&6; } 3005$as_echo_n "checking for $ac_word... " >&6; }
2988if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : 3006if ${ac_cv_prog_ac_ct_CC+:} false; then :
2989 $as_echo_n "(cached) " >&6 3007 $as_echo_n "(cached) " >&6
2990else 3008else
2991 if test -n "$ac_ct_CC"; then 3009 if test -n "$ac_ct_CC"; then
2992 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 3010 ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
2993else 3011else
3037fi 3055fi
3038 3056
3039 3057
3040test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3058test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3041$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3059$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3042as_fn_error "no acceptable C compiler found in \$PATH 3060as_fn_error $? "no acceptable C compiler found in \$PATH
3043See \`config.log' for more details." "$LINENO" 5; } 3061See \`config.log' for more details" "$LINENO" 5; }
3044 3062
3045# Provide some information about the compiler. 3063# Provide some information about the compiler.
3046$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 3064$as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5
3047set X $ac_compile 3065set X $ac_compile
3048ac_compiler=$2 3066ac_compiler=$2
3152$as_echo "$as_me: failed program was:" >&5 3170$as_echo "$as_me: failed program was:" >&5
3153sed 's/^/| /' conftest.$ac_ext >&5 3171sed 's/^/| /' conftest.$ac_ext >&5
3154 3172
3155{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3173{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3156$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3174$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3157{ as_fn_set_status 77
3158as_fn_error "C compiler cannot create executables 3175as_fn_error 77 "C compiler cannot create executables
3159See \`config.log' for more details." "$LINENO" 5; }; } 3176See \`config.log' for more details" "$LINENO" 5; }
3160else 3177else
3161 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 3178 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
3162$as_echo "yes" >&6; } 3179$as_echo "yes" >&6; }
3163fi 3180fi
3164{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 3181{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5
3196 esac 3213 esac
3197done 3214done
3198else 3215else
3199 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3216 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3200$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3217$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3201as_fn_error "cannot compute suffix of executables: cannot compile and link 3218as_fn_error $? "cannot compute suffix of executables: cannot compile and link
3202See \`config.log' for more details." "$LINENO" 5; } 3219See \`config.log' for more details" "$LINENO" 5; }
3203fi 3220fi
3204rm -f conftest conftest$ac_cv_exeext 3221rm -f conftest conftest$ac_cv_exeext
3205{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 3222{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5
3206$as_echo "$ac_cv_exeext" >&6; } 3223$as_echo "$ac_cv_exeext" >&6; }
3207 3224
3254 if test "$cross_compiling" = maybe; then 3271 if test "$cross_compiling" = maybe; then
3255 cross_compiling=yes 3272 cross_compiling=yes
3256 else 3273 else
3257 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3274 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3258$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3275$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3259as_fn_error "cannot run C compiled programs. 3276as_fn_error $? "cannot run C compiled programs.
3260If you meant to cross compile, use \`--host'. 3277If you meant to cross compile, use \`--host'.
3261See \`config.log' for more details." "$LINENO" 5; } 3278See \`config.log' for more details" "$LINENO" 5; }
3262 fi 3279 fi
3263 fi 3280 fi
3264fi 3281fi
3265{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 3282{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5
3266$as_echo "$cross_compiling" >&6; } 3283$as_echo "$cross_compiling" >&6; }
3267 3284
3268rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out 3285rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out
3269ac_clean_files=$ac_clean_files_save 3286ac_clean_files=$ac_clean_files_save
3270{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 3287{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5
3271$as_echo_n "checking for suffix of object files... " >&6; } 3288$as_echo_n "checking for suffix of object files... " >&6; }
3272if test "${ac_cv_objext+set}" = set; then : 3289if ${ac_cv_objext+:} false; then :
3273 $as_echo_n "(cached) " >&6 3290 $as_echo_n "(cached) " >&6
3274else 3291else
3275 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3292 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3276/* end confdefs.h. */ 3293/* end confdefs.h. */
3277 3294
3307 $as_echo "$as_me: failed program was:" >&5 3324 $as_echo "$as_me: failed program was:" >&5
3308sed 's/^/| /' conftest.$ac_ext >&5 3325sed 's/^/| /' conftest.$ac_ext >&5
3309 3326
3310{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3327{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3311$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3328$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3312as_fn_error "cannot compute suffix of object files: cannot compile 3329as_fn_error $? "cannot compute suffix of object files: cannot compile
3313See \`config.log' for more details." "$LINENO" 5; } 3330See \`config.log' for more details" "$LINENO" 5; }
3314fi 3331fi
3315rm -f conftest.$ac_cv_objext conftest.$ac_ext 3332rm -f conftest.$ac_cv_objext conftest.$ac_ext
3316fi 3333fi
3317{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 3334{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5
3318$as_echo "$ac_cv_objext" >&6; } 3335$as_echo "$ac_cv_objext" >&6; }
3319OBJEXT=$ac_cv_objext 3336OBJEXT=$ac_cv_objext
3320ac_objext=$OBJEXT 3337ac_objext=$OBJEXT
3321{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 3338{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5
3322$as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 3339$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
3323if test "${ac_cv_c_compiler_gnu+set}" = set; then : 3340if ${ac_cv_c_compiler_gnu+:} false; then :
3324 $as_echo_n "(cached) " >&6 3341 $as_echo_n "(cached) " >&6
3325else 3342else
3326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3343 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3327/* end confdefs.h. */ 3344/* end confdefs.h. */
3328 3345
3355fi 3372fi
3356ac_test_CFLAGS=${CFLAGS+set} 3373ac_test_CFLAGS=${CFLAGS+set}
3357ac_save_CFLAGS=$CFLAGS 3374ac_save_CFLAGS=$CFLAGS
3358{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 3375{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5
3359$as_echo_n "checking whether $CC accepts -g... " >&6; } 3376$as_echo_n "checking whether $CC accepts -g... " >&6; }
3360if test "${ac_cv_prog_cc_g+set}" = set; then : 3377if ${ac_cv_prog_cc_g+:} false; then :
3361 $as_echo_n "(cached) " >&6 3378 $as_echo_n "(cached) " >&6
3362else 3379else
3363 ac_save_c_werror_flag=$ac_c_werror_flag 3380 ac_save_c_werror_flag=$ac_c_werror_flag
3364 ac_c_werror_flag=yes 3381 ac_c_werror_flag=yes
3365 ac_cv_prog_cc_g=no 3382 ac_cv_prog_cc_g=no
3433 CFLAGS= 3450 CFLAGS=
3434 fi 3451 fi
3435fi 3452fi
3436{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 3453{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5
3437$as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 3454$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
3438if test "${ac_cv_prog_cc_c89+set}" = set; then : 3455if ${ac_cv_prog_cc_c89+:} false; then :
3439 $as_echo_n "(cached) " >&6 3456 $as_echo_n "(cached) " >&6
3440else 3457else
3441 ac_cv_prog_cc_c89=no 3458 ac_cv_prog_cc_c89=no
3442ac_save_CC=$CC 3459ac_save_CC=$CC
3443cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3460cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3544 do 3561 do
3545 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 3562 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3546set dummy $ac_tool_prefix$ac_prog; ac_word=$2 3563set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3547{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3564{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3548$as_echo_n "checking for $ac_word... " >&6; } 3565$as_echo_n "checking for $ac_word... " >&6; }
3549if test "${ac_cv_prog_CXX+set}" = set; then : 3566if ${ac_cv_prog_CXX+:} false; then :
3550 $as_echo_n "(cached) " >&6 3567 $as_echo_n "(cached) " >&6
3551else 3568else
3552 if test -n "$CXX"; then 3569 if test -n "$CXX"; then
3553 ac_cv_prog_CXX="$CXX" # Let the user override the test. 3570 ac_cv_prog_CXX="$CXX" # Let the user override the test.
3554else 3571else
3588do 3605do
3589 # Extract the first word of "$ac_prog", so it can be a program name with args. 3606 # Extract the first word of "$ac_prog", so it can be a program name with args.
3590set dummy $ac_prog; ac_word=$2 3607set dummy $ac_prog; ac_word=$2
3591{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 3608{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
3592$as_echo_n "checking for $ac_word... " >&6; } 3609$as_echo_n "checking for $ac_word... " >&6; }
3593if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : 3610if ${ac_cv_prog_ac_ct_CXX+:} false; then :
3594 $as_echo_n "(cached) " >&6 3611 $as_echo_n "(cached) " >&6
3595else 3612else
3596 if test -n "$ac_ct_CXX"; then 3613 if test -n "$ac_ct_CXX"; then
3597 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. 3614 ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test.
3598else 3615else
3666 test $ac_status = 0; } 3683 test $ac_status = 0; }
3667done 3684done
3668 3685
3669{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 3686{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5
3670$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } 3687$as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; }
3671if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : 3688if ${ac_cv_cxx_compiler_gnu+:} false; then :
3672 $as_echo_n "(cached) " >&6 3689 $as_echo_n "(cached) " >&6
3673else 3690else
3674 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3691 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3675/* end confdefs.h. */ 3692/* end confdefs.h. */
3676 3693
3703fi 3720fi
3704ac_test_CXXFLAGS=${CXXFLAGS+set} 3721ac_test_CXXFLAGS=${CXXFLAGS+set}
3705ac_save_CXXFLAGS=$CXXFLAGS 3722ac_save_CXXFLAGS=$CXXFLAGS
3706{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 3723{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5
3707$as_echo_n "checking whether $CXX accepts -g... " >&6; } 3724$as_echo_n "checking whether $CXX accepts -g... " >&6; }
3708if test "${ac_cv_prog_cxx_g+set}" = set; then : 3725if ${ac_cv_prog_cxx_g+:} false; then :
3709 $as_echo_n "(cached) " >&6 3726 $as_echo_n "(cached) " >&6
3710else 3727else
3711 ac_save_cxx_werror_flag=$ac_cxx_werror_flag 3728 ac_save_cxx_werror_flag=$ac_cxx_werror_flag
3712 ac_cxx_werror_flag=yes 3729 ac_cxx_werror_flag=yes
3713 ac_cv_prog_cxx_g=no 3730 ac_cv_prog_cxx_g=no
3797# On Suns, sometimes $CPP names a directory. 3814# On Suns, sometimes $CPP names a directory.
3798if test -n "$CPP" && test -d "$CPP"; then 3815if test -n "$CPP" && test -d "$CPP"; then
3799 CPP= 3816 CPP=
3800fi 3817fi
3801if test -z "$CPP"; then 3818if test -z "$CPP"; then
3802 if test "${ac_cv_prog_CPP+set}" = set; then : 3819 if ${ac_cv_prog_CPP+:} false; then :
3803 $as_echo_n "(cached) " >&6 3820 $as_echo_n "(cached) " >&6
3804else 3821else
3805 # Double quotes because CPP needs to be expanded 3822 # Double quotes because CPP needs to be expanded
3806 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" 3823 for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp"
3807 do 3824 do
3827 3844
3828else 3845else
3829 # Broken: fails on valid input. 3846 # Broken: fails on valid input.
3830continue 3847continue
3831fi 3848fi
3832rm -f conftest.err conftest.$ac_ext 3849rm -f conftest.err conftest.i conftest.$ac_ext
3833 3850
3834 # OK, works on sane cases. Now check whether nonexistent headers 3851 # OK, works on sane cases. Now check whether nonexistent headers
3835 # can be detected and how. 3852 # can be detected and how.
3836 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3853 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3837/* end confdefs.h. */ 3854/* end confdefs.h. */
3843else 3860else
3844 # Passes both tests. 3861 # Passes both tests.
3845ac_preproc_ok=: 3862ac_preproc_ok=:
3846break 3863break
3847fi 3864fi
3848rm -f conftest.err conftest.$ac_ext 3865rm -f conftest.err conftest.i conftest.$ac_ext
3849 3866
3850done 3867done
3851# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 3868# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
3852rm -f conftest.err conftest.$ac_ext 3869rm -f conftest.i conftest.err conftest.$ac_ext
3853if $ac_preproc_ok; then : 3870if $ac_preproc_ok; then :
3854 break 3871 break
3855fi 3872fi
3856 3873
3857 done 3874 done
3886 3903
3887else 3904else
3888 # Broken: fails on valid input. 3905 # Broken: fails on valid input.
3889continue 3906continue
3890fi 3907fi
3891rm -f conftest.err conftest.$ac_ext 3908rm -f conftest.err conftest.i conftest.$ac_ext
3892 3909
3893 # OK, works on sane cases. Now check whether nonexistent headers 3910 # OK, works on sane cases. Now check whether nonexistent headers
3894 # can be detected and how. 3911 # can be detected and how.
3895 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 3912 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
3896/* end confdefs.h. */ 3913/* end confdefs.h. */
3902else 3919else
3903 # Passes both tests. 3920 # Passes both tests.
3904ac_preproc_ok=: 3921ac_preproc_ok=:
3905break 3922break
3906fi 3923fi
3907rm -f conftest.err conftest.$ac_ext 3924rm -f conftest.err conftest.i conftest.$ac_ext
3908 3925
3909done 3926done
3910# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 3927# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
3911rm -f conftest.err conftest.$ac_ext 3928rm -f conftest.i conftest.err conftest.$ac_ext
3912if $ac_preproc_ok; then : 3929if $ac_preproc_ok; then :
3913 3930
3914else 3931else
3915 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 3932 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
3916$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3933$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
3917as_fn_error "C preprocessor \"$CPP\" fails sanity check 3934as_fn_error $? "C preprocessor \"$CPP\" fails sanity check
3918See \`config.log' for more details." "$LINENO" 5; } 3935See \`config.log' for more details" "$LINENO" 5; }
3919fi 3936fi
3920 3937
3921ac_ext=c 3938ac_ext=c
3922ac_cpp='$CPP $CPPFLAGS' 3939ac_cpp='$CPP $CPPFLAGS'
3923ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 3940ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
3939# ./install, which can be erroneously created by make from ./install.sh. 3956# ./install, which can be erroneously created by make from ./install.sh.
3940# Reject install programs that cannot install multiple files. 3957# Reject install programs that cannot install multiple files.
3941{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 3958{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5
3942$as_echo_n "checking for a BSD-compatible install... " >&6; } 3959$as_echo_n "checking for a BSD-compatible install... " >&6; }
3943if test -z "$INSTALL"; then 3960if test -z "$INSTALL"; then
3944if test "${ac_cv_path_install+set}" = set; then : 3961if ${ac_cv_path_install+:} false; then :
3945 $as_echo_n "(cached) " >&6 3962 $as_echo_n "(cached) " >&6
3946else 3963else
3947 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3964 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
3948for as_dir in $PATH 3965for as_dir in $PATH
3949do 3966do
4020 4037
4021 4038
4022 4039
4023{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 4040{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5
4024$as_echo_n "checking for grep that handles long lines and -e... " >&6; } 4041$as_echo_n "checking for grep that handles long lines and -e... " >&6; }
4025if test "${ac_cv_path_GREP+set}" = set; then : 4042if ${ac_cv_path_GREP+:} false; then :
4026 $as_echo_n "(cached) " >&6 4043 $as_echo_n "(cached) " >&6
4027else 4044else
4028 if test -z "$GREP"; then 4045 if test -z "$GREP"; then
4029 ac_path_GREP_found=false 4046 ac_path_GREP_found=false
4030 # Loop through the user's path and test for each of PROGNAME-LIST 4047 # Loop through the user's path and test for each of PROGNAME-LIST
4069 done 4086 done
4070 done 4087 done
4071 done 4088 done
4072IFS=$as_save_IFS 4089IFS=$as_save_IFS
4073 if test -z "$ac_cv_path_GREP"; then 4090 if test -z "$ac_cv_path_GREP"; then
4074 as_fn_error "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4091 as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4075 fi 4092 fi
4076else 4093else
4077 ac_cv_path_GREP=$GREP 4094 ac_cv_path_GREP=$GREP
4078fi 4095fi
4079 4096
4083 GREP="$ac_cv_path_GREP" 4100 GREP="$ac_cv_path_GREP"
4084 4101
4085 4102
4086{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 4103{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5
4087$as_echo_n "checking for egrep... " >&6; } 4104$as_echo_n "checking for egrep... " >&6; }
4088if test "${ac_cv_path_EGREP+set}" = set; then : 4105if ${ac_cv_path_EGREP+:} false; then :
4089 $as_echo_n "(cached) " >&6 4106 $as_echo_n "(cached) " >&6
4090else 4107else
4091 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 4108 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1
4092 then ac_cv_path_EGREP="$GREP -E" 4109 then ac_cv_path_EGREP="$GREP -E"
4093 else 4110 else
4135 done 4152 done
4136 done 4153 done
4137 done 4154 done
4138IFS=$as_save_IFS 4155IFS=$as_save_IFS
4139 if test -z "$ac_cv_path_EGREP"; then 4156 if test -z "$ac_cv_path_EGREP"; then
4140 as_fn_error "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 4157 as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5
4141 fi 4158 fi
4142else 4159else
4143 ac_cv_path_EGREP=$EGREP 4160 ac_cv_path_EGREP=$EGREP
4144fi 4161fi
4145 4162
4150 EGREP="$ac_cv_path_EGREP" 4167 EGREP="$ac_cv_path_EGREP"
4151 4168
4152 4169
4153{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 4170{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5
4154$as_echo_n "checking for ANSI C header files... " >&6; } 4171$as_echo_n "checking for ANSI C header files... " >&6; }
4155if test "${ac_cv_header_stdc+set}" = set; then : 4172if ${ac_cv_header_stdc+:} false; then :
4156 $as_echo_n "(cached) " >&6 4173 $as_echo_n "(cached) " >&6
4157else 4174else
4158 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4175 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4159/* end confdefs.h. */ 4176/* end confdefs.h. */
4160#include <stdlib.h> 4177#include <stdlib.h>
4267 inttypes.h stdint.h unistd.h 4284 inttypes.h stdint.h unistd.h
4268do : 4285do :
4269 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4286 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
4270ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default 4287ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
4271" 4288"
4272eval as_val=\$$as_ac_Header 4289if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
4273 if test "x$as_val" = x""yes; then :
4274 cat >>confdefs.h <<_ACEOF 4290 cat >>confdefs.h <<_ACEOF
4275#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4291#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
4276_ACEOF 4292_ACEOF
4277 4293
4278fi 4294fi
4280done 4296done
4281 4297
4282 4298
4283 4299
4284 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" 4300 ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default"
4285if test "x$ac_cv_header_minix_config_h" = x""yes; then : 4301if test "x$ac_cv_header_minix_config_h" = xyes; then :
4286 MINIX=yes 4302 MINIX=yes
4287else 4303else
4288 MINIX= 4304 MINIX=
4289fi 4305fi
4290 4306
4302 fi 4318 fi
4303 4319
4304 4320
4305 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 4321 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5
4306$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } 4322$as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; }
4307if test "${ac_cv_safe_to_define___extensions__+set}" = set; then : 4323if ${ac_cv_safe_to_define___extensions__+:} false; then :
4308 $as_echo_n "(cached) " >&6 4324 $as_echo_n "(cached) " >&6
4309else 4325else
4310 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4326 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4311/* end confdefs.h. */ 4327/* end confdefs.h. */
4312 4328
4343 4359
4344 4360
4345 4361
4346{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 4362{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5
4347$as_echo_n "checking for library containing strerror... " >&6; } 4363$as_echo_n "checking for library containing strerror... " >&6; }
4348if test "${ac_cv_search_strerror+set}" = set; then : 4364if ${ac_cv_search_strerror+:} false; then :
4349 $as_echo_n "(cached) " >&6 4365 $as_echo_n "(cached) " >&6
4350else 4366else
4351 ac_func_search_save_LIBS=$LIBS 4367 ac_func_search_save_LIBS=$LIBS
4352cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4368cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4353/* end confdefs.h. */ 4369/* end confdefs.h. */
4377 if ac_fn_c_try_link "$LINENO"; then : 4393 if ac_fn_c_try_link "$LINENO"; then :
4378 ac_cv_search_strerror=$ac_res 4394 ac_cv_search_strerror=$ac_res
4379fi 4395fi
4380rm -f core conftest.err conftest.$ac_objext \ 4396rm -f core conftest.err conftest.$ac_objext \
4381 conftest$ac_exeext 4397 conftest$ac_exeext
4382 if test "${ac_cv_search_strerror+set}" = set; then : 4398 if ${ac_cv_search_strerror+:} false; then :
4383 break 4399 break
4384fi 4400fi
4385done 4401done
4386if test "${ac_cv_search_strerror+set}" = set; then : 4402if ${ac_cv_search_strerror+:} false; then :
4387 4403
4388else 4404else
4389 ac_cv_search_strerror=no 4405 ac_cv_search_strerror=no
4390fi 4406fi
4391rm conftest.$ac_ext 4407rm conftest.$ac_ext
4479 ;; 4495 ;;
4480esac 4496esac
4481 4497
4482{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setlocale" >&5 4498{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing setlocale" >&5
4483$as_echo_n "checking for library containing setlocale... " >&6; } 4499$as_echo_n "checking for library containing setlocale... " >&6; }
4484if test "${ac_cv_search_setlocale+set}" = set; then : 4500if ${ac_cv_search_setlocale+:} false; then :
4485 $as_echo_n "(cached) " >&6 4501 $as_echo_n "(cached) " >&6
4486else 4502else
4487 ac_func_search_save_LIBS=$LIBS 4503 ac_func_search_save_LIBS=$LIBS
4488cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4504cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4489/* end confdefs.h. */ 4505/* end confdefs.h. */
4513 if ac_fn_cxx_try_link "$LINENO"; then : 4529 if ac_fn_cxx_try_link "$LINENO"; then :
4514 ac_cv_search_setlocale=$ac_res 4530 ac_cv_search_setlocale=$ac_res
4515fi 4531fi
4516rm -f core conftest.err conftest.$ac_objext \ 4532rm -f core conftest.err conftest.$ac_objext \
4517 conftest$ac_exeext 4533 conftest$ac_exeext
4518 if test "${ac_cv_search_setlocale+set}" = set; then : 4534 if ${ac_cv_search_setlocale+:} false; then :
4519 break 4535 break
4520fi 4536fi
4521done 4537done
4522if test "${ac_cv_search_setlocale+set}" = set; then : 4538if ${ac_cv_search_setlocale+:} false; then :
4523 4539
4524else 4540else
4525 ac_cv_search_setlocale=no 4541 ac_cv_search_setlocale=no
4526fi 4542fi
4527rm conftest.$ac_ext 4543rm conftest.$ac_ext
4536fi 4552fi
4537 4553
4538 4554
4539{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5 4555{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing gethostbyname" >&5
4540$as_echo_n "checking for library containing gethostbyname... " >&6; } 4556$as_echo_n "checking for library containing gethostbyname... " >&6; }
4541if test "${ac_cv_search_gethostbyname+set}" = set; then : 4557if ${ac_cv_search_gethostbyname+:} false; then :
4542 $as_echo_n "(cached) " >&6 4558 $as_echo_n "(cached) " >&6
4543else 4559else
4544 ac_func_search_save_LIBS=$LIBS 4560 ac_func_search_save_LIBS=$LIBS
4545cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4561cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4546/* end confdefs.h. */ 4562/* end confdefs.h. */
4570 if ac_fn_cxx_try_link "$LINENO"; then : 4586 if ac_fn_cxx_try_link "$LINENO"; then :
4571 ac_cv_search_gethostbyname=$ac_res 4587 ac_cv_search_gethostbyname=$ac_res
4572fi 4588fi
4573rm -f core conftest.err conftest.$ac_objext \ 4589rm -f core conftest.err conftest.$ac_objext \
4574 conftest$ac_exeext 4590 conftest$ac_exeext
4575 if test "${ac_cv_search_gethostbyname+set}" = set; then : 4591 if ${ac_cv_search_gethostbyname+:} false; then :
4576 break 4592 break
4577fi 4593fi
4578done 4594done
4579if test "${ac_cv_search_gethostbyname+set}" = set; then : 4595if ${ac_cv_search_gethostbyname+:} false; then :
4580 4596
4581else 4597else
4582 ac_cv_search_gethostbyname=no 4598 ac_cv_search_gethostbyname=no
4583fi 4599fi
4584rm conftest.$ac_ext 4600rm conftest.$ac_ext
4592 4608
4593fi 4609fi
4594 4610
4595{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5 4611{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing socket" >&5
4596$as_echo_n "checking for library containing socket... " >&6; } 4612$as_echo_n "checking for library containing socket... " >&6; }
4597if test "${ac_cv_search_socket+set}" = set; then : 4613if ${ac_cv_search_socket+:} false; then :
4598 $as_echo_n "(cached) " >&6 4614 $as_echo_n "(cached) " >&6
4599else 4615else
4600 ac_func_search_save_LIBS=$LIBS 4616 ac_func_search_save_LIBS=$LIBS
4601cat confdefs.h - <<_ACEOF >conftest.$ac_ext 4617cat confdefs.h - <<_ACEOF >conftest.$ac_ext
4602/* end confdefs.h. */ 4618/* end confdefs.h. */
4626 if ac_fn_cxx_try_link "$LINENO"; then : 4642 if ac_fn_cxx_try_link "$LINENO"; then :
4627 ac_cv_search_socket=$ac_res 4643 ac_cv_search_socket=$ac_res
4628fi 4644fi
4629rm -f core conftest.err conftest.$ac_objext \ 4645rm -f core conftest.err conftest.$ac_objext \
4630 conftest$ac_exeext 4646 conftest$ac_exeext
4631 if test "${ac_cv_search_socket+set}" = set; then : 4647 if ${ac_cv_search_socket+:} false; then :
4632 break 4648 break
4633fi 4649fi
4634done 4650done
4635if test "${ac_cv_search_socket+set}" = set; then : 4651if ${ac_cv_search_socket+:} false; then :
4636 4652
4637else 4653else
4638 ac_cv_search_socket=no 4654 ac_cv_search_socket=no
4639fi 4655fi
4640rm conftest.$ac_ext 4656rm conftest.$ac_ext
4660support_pointer_blank=yes 4676support_pointer_blank=yes
4661support_scroll_rxvt=yes 4677support_scroll_rxvt=yes
4662support_scroll_next=yes 4678support_scroll_next=yes
4663support_scroll_xterm=yes 4679support_scroll_xterm=yes
4664support_xim=yes 4680support_xim=yes
4681support_pixbuf=yes
4682support_startup_notification=yes
4665support_afterimage=yes 4683support_afterimage=yes
4666support_afterstep=yes
4667support_xft=yes 4684support_xft=yes
4668support_unicode3=no 4685support_unicode3=no
4669support_combining=yes 4686support_combining=yes
4670support_8bitctrls=no 4687support_8bitctrls=no
4671support_iso14755=yes 4688support_iso14755=yes
4692 support_scroll_next=no 4709 support_scroll_next=no
4693 support_scroll_xterm=no 4710 support_scroll_xterm=no
4694 support_utmp=no 4711 support_utmp=no
4695 support_wtmp=no 4712 support_wtmp=no
4696 support_xim=no 4713 support_xim=no
4714 support_pixbuf=no
4715 support_startup_notification=no
4697 support_afterimage=no 4716 support_afterimage=no
4698 support_afterstep=no
4699 support_xft=no 4717 support_xft=no
4700 support_unicode3=no 4718 support_unicode3=no
4701 support_combining=no 4719 support_combining=no
4702 support_8bitctrls=no 4720 support_8bitctrls=no
4703 support_iso14755=no 4721 support_iso14755=no
4720 support_scroll_next=yes 4738 support_scroll_next=yes
4721 support_scroll_xterm=yes 4739 support_scroll_xterm=yes
4722 support_utmp=yes 4740 support_utmp=yes
4723 support_wtmp=yes 4741 support_wtmp=yes
4724 support_xim=yes 4742 support_xim=yes
4743 support_pixbuf=yes
4744 support_startup_notification=yes
4725 support_afterimage=yes 4745 support_afterimage=yes
4726 support_afterstep=yes
4727 support_xft=yes 4746 support_xft=yes
4728 support_unicode3=yes 4747 support_unicode3=yes
4729 support_combining=yes 4748 support_combining=yes
4730 #support_8bitctrls=yes 4749 #support_8bitctrls=yes
4731 support_iso14755=yes 4750 support_iso14755=yes
4846 afterimage_config=$withval/afterimage-config 4865 afterimage_config=$withval/afterimage-config
4847 fi 4866 fi
4848fi 4867fi
4849 4868
4850 4869
4851
4852# Check whether --enable-pixbuf was given. 4870# Check whether --enable-pixbuf was given.
4853if test "${enable_pixbuf+set}" = set; then : 4871if test "${enable_pixbuf+set}" = set; then :
4854 enableval=$enable_pixbuf; if test x$enableval = xyes -o x$enableval = xno; then 4872 enableval=$enable_pixbuf; if test x$enableval = xyes -o x$enableval = xno; then
4855 support_pixbuf=$enableval 4873 support_pixbuf=$enableval
4874 fi
4875fi
4876
4877
4878# Check whether --enable-startup-notification was given.
4879if test "${enable_startup_notification+set}" = set; then :
4880 enableval=$enable_startup_notification; if test x$enableval = xyes -o x$enableval = xno; then
4881 support_startup_notification=$enableval
4856 fi 4882 fi
4857fi 4883fi
4858 4884
4859 4885
4860# Check whether --enable-transparency was given. 4886# Check whether --enable-transparency was given.
5137ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 5163ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
5138ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 5164ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
5139{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 5165{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5
5140$as_echo_n "checking how to run the C++ preprocessor... " >&6; } 5166$as_echo_n "checking how to run the C++ preprocessor... " >&6; }
5141if test -z "$CXXCPP"; then 5167if test -z "$CXXCPP"; then
5142 if test "${ac_cv_prog_CXXCPP+set}" = set; then : 5168 if ${ac_cv_prog_CXXCPP+:} false; then :
5143 $as_echo_n "(cached) " >&6 5169 $as_echo_n "(cached) " >&6
5144else 5170else
5145 # Double quotes because CXXCPP needs to be expanded 5171 # Double quotes because CXXCPP needs to be expanded
5146 for CXXCPP in "$CXX -E" "/lib/cpp" 5172 for CXXCPP in "$CXX -E" "/lib/cpp"
5147 do 5173 do
5167 5193
5168else 5194else
5169 # Broken: fails on valid input. 5195 # Broken: fails on valid input.
5170continue 5196continue
5171fi 5197fi
5172rm -f conftest.err conftest.$ac_ext 5198rm -f conftest.err conftest.i conftest.$ac_ext
5173 5199
5174 # OK, works on sane cases. Now check whether nonexistent headers 5200 # OK, works on sane cases. Now check whether nonexistent headers
5175 # can be detected and how. 5201 # can be detected and how.
5176 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5202 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5177/* end confdefs.h. */ 5203/* end confdefs.h. */
5183else 5209else
5184 # Passes both tests. 5210 # Passes both tests.
5185ac_preproc_ok=: 5211ac_preproc_ok=:
5186break 5212break
5187fi 5213fi
5188rm -f conftest.err conftest.$ac_ext 5214rm -f conftest.err conftest.i conftest.$ac_ext
5189 5215
5190done 5216done
5191# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5217# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5192rm -f conftest.err conftest.$ac_ext 5218rm -f conftest.i conftest.err conftest.$ac_ext
5193if $ac_preproc_ok; then : 5219if $ac_preproc_ok; then :
5194 break 5220 break
5195fi 5221fi
5196 5222
5197 done 5223 done
5226 5252
5227else 5253else
5228 # Broken: fails on valid input. 5254 # Broken: fails on valid input.
5229continue 5255continue
5230fi 5256fi
5231rm -f conftest.err conftest.$ac_ext 5257rm -f conftest.err conftest.i conftest.$ac_ext
5232 5258
5233 # OK, works on sane cases. Now check whether nonexistent headers 5259 # OK, works on sane cases. Now check whether nonexistent headers
5234 # can be detected and how. 5260 # can be detected and how.
5235 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5261 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5236/* end confdefs.h. */ 5262/* end confdefs.h. */
5242else 5268else
5243 # Passes both tests. 5269 # Passes both tests.
5244ac_preproc_ok=: 5270ac_preproc_ok=:
5245break 5271break
5246fi 5272fi
5247rm -f conftest.err conftest.$ac_ext 5273rm -f conftest.err conftest.i conftest.$ac_ext
5248 5274
5249done 5275done
5250# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. 5276# Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped.
5251rm -f conftest.err conftest.$ac_ext 5277rm -f conftest.i conftest.err conftest.$ac_ext
5252if $ac_preproc_ok; then : 5278if $ac_preproc_ok; then :
5253 5279
5254else 5280else
5255 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 5281 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
5256$as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 5282$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
5257as_fn_error "C++ preprocessor \"$CXXCPP\" fails sanity check 5283as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check
5258See \`config.log' for more details." "$LINENO" 5; } 5284See \`config.log' for more details" "$LINENO" 5; }
5259fi 5285fi
5260 5286
5261ac_ext=cpp 5287ac_ext=cpp
5262ac_cpp='$CXXCPP $CPPFLAGS' 5288ac_cpp='$CXXCPP $CPPFLAGS'
5263ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 5289ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
5267 5293
5268for ac_header in sys/inotify.h sys/epoll.h sys/event.h port.h poll.h sys/select.h sys/eventfd.h sys/signalfd.h 5294for ac_header in sys/inotify.h sys/epoll.h sys/event.h port.h poll.h sys/select.h sys/eventfd.h sys/signalfd.h
5269do : 5295do :
5270 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 5296 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
5271ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 5297ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
5272eval as_val=\$$as_ac_Header 5298if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
5273 if test "x$as_val" = x""yes; then :
5274 cat >>confdefs.h <<_ACEOF 5299 cat >>confdefs.h <<_ACEOF
5275#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 5300#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
5276_ACEOF 5301_ACEOF
5277 5302
5278fi 5303fi
5282 5307
5283for ac_func in inotify_init epoll_ctl kqueue port_create poll select eventfd signalfd 5308for ac_func in inotify_init epoll_ctl kqueue port_create poll select eventfd signalfd
5284do : 5309do :
5285 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 5310 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
5286ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var" 5311ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var"
5287eval as_val=\$$as_ac_var
5288 if test "x$as_val" = x""yes; then : 5312if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
5289 cat >>confdefs.h <<_ACEOF 5313 cat >>confdefs.h <<_ACEOF
5290#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 5314#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
5291_ACEOF 5315_ACEOF
5292 5316
5293fi 5317fi
5294done 5318done
5295 5319
5296 5320
5321for ac_func in clock_gettime
5322do :
5297ac_fn_cxx_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime" 5323 ac_fn_cxx_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
5298if test "x$ac_cv_func_clock_gettime" = x""yes; then : 5324if test "x$ac_cv_func_clock_gettime" = xyes; then :
5325 cat >>confdefs.h <<_ACEOF
5326#define HAVE_CLOCK_GETTIME 1
5327_ACEOF
5299 5328
5300else 5329else
5301 5330
5302 if test $(uname) = Linux; then 5331 if test $(uname) = Linux; then
5303 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime syscall" >&5 5332 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime syscall" >&5
5330 conftest$ac_exeext conftest.$ac_ext 5359 conftest$ac_exeext conftest.$ac_ext
5331 fi 5360 fi
5332 if test -z "$LIBEV_M4_AVOID_LIBRT" && test -z "$ac_have_clock_syscall"; then 5361 if test -z "$LIBEV_M4_AVOID_LIBRT" && test -z "$ac_have_clock_syscall"; then
5333 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5 5362 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5
5334$as_echo_n "checking for clock_gettime in -lrt... " >&6; } 5363$as_echo_n "checking for clock_gettime in -lrt... " >&6; }
5335if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then : 5364if ${ac_cv_lib_rt_clock_gettime+:} false; then :
5336 $as_echo_n "(cached) " >&6 5365 $as_echo_n "(cached) " >&6
5337else 5366else
5338 ac_check_lib_save_LIBS=$LIBS 5367 ac_check_lib_save_LIBS=$LIBS
5339LIBS="-lrt $LIBS" 5368LIBS="-lrt $LIBS"
5340cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5369cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5364 conftest$ac_exeext conftest.$ac_ext 5393 conftest$ac_exeext conftest.$ac_ext
5365LIBS=$ac_check_lib_save_LIBS 5394LIBS=$ac_check_lib_save_LIBS
5366fi 5395fi
5367{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5 5396{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5
5368$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; } 5397$as_echo "$ac_cv_lib_rt_clock_gettime" >&6; }
5369if test "x$ac_cv_lib_rt_clock_gettime" = x""yes; then : 5398if test "x$ac_cv_lib_rt_clock_gettime" = xyes; then :
5370 cat >>confdefs.h <<_ACEOF 5399 cat >>confdefs.h <<_ACEOF
5371#define HAVE_LIBRT 1 5400#define HAVE_LIBRT 1
5372_ACEOF 5401_ACEOF
5373 5402
5374 LIBS="-lrt $LIBS" 5403 LIBS="-lrt $LIBS"
5377 5406
5378 unset ac_cv_func_clock_gettime 5407 unset ac_cv_func_clock_gettime
5379 for ac_func in clock_gettime 5408 for ac_func in clock_gettime
5380do : 5409do :
5381 ac_fn_cxx_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime" 5410 ac_fn_cxx_check_func "$LINENO" "clock_gettime" "ac_cv_func_clock_gettime"
5382if test "x$ac_cv_func_clock_gettime" = x""yes; then : 5411if test "x$ac_cv_func_clock_gettime" = xyes; then :
5383 cat >>confdefs.h <<_ACEOF 5412 cat >>confdefs.h <<_ACEOF
5384#define HAVE_CLOCK_GETTIME 1 5413#define HAVE_CLOCK_GETTIME 1
5385_ACEOF 5414_ACEOF
5386 5415
5387fi 5416fi
5388done 5417done
5389 5418
5390 fi 5419 fi
5391 5420
5392fi 5421fi
5422done
5393 5423
5394 5424
5425for ac_func in nanosleep
5426do :
5395ac_fn_cxx_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep" 5427 ac_fn_cxx_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep"
5396if test "x$ac_cv_func_nanosleep" = x""yes; then : 5428if test "x$ac_cv_func_nanosleep" = xyes; then :
5429 cat >>confdefs.h <<_ACEOF
5430#define HAVE_NANOSLEEP 1
5431_ACEOF
5397 5432
5398else 5433else
5399 5434
5400 if test -z "$LIBEV_M4_AVOID_LIBRT"; then 5435 if test -z "$LIBEV_M4_AVOID_LIBRT"; then
5401 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5 5436 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for nanosleep in -lrt" >&5
5402$as_echo_n "checking for nanosleep in -lrt... " >&6; } 5437$as_echo_n "checking for nanosleep in -lrt... " >&6; }
5403if test "${ac_cv_lib_rt_nanosleep+set}" = set; then : 5438if ${ac_cv_lib_rt_nanosleep+:} false; then :
5404 $as_echo_n "(cached) " >&6 5439 $as_echo_n "(cached) " >&6
5405else 5440else
5406 ac_check_lib_save_LIBS=$LIBS 5441 ac_check_lib_save_LIBS=$LIBS
5407LIBS="-lrt $LIBS" 5442LIBS="-lrt $LIBS"
5408cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5443cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5432 conftest$ac_exeext conftest.$ac_ext 5467 conftest$ac_exeext conftest.$ac_ext
5433LIBS=$ac_check_lib_save_LIBS 5468LIBS=$ac_check_lib_save_LIBS
5434fi 5469fi
5435{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5 5470{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_nanosleep" >&5
5436$as_echo "$ac_cv_lib_rt_nanosleep" >&6; } 5471$as_echo "$ac_cv_lib_rt_nanosleep" >&6; }
5437if test "x$ac_cv_lib_rt_nanosleep" = x""yes; then : 5472if test "x$ac_cv_lib_rt_nanosleep" = xyes; then :
5438 cat >>confdefs.h <<_ACEOF 5473 cat >>confdefs.h <<_ACEOF
5439#define HAVE_LIBRT 1 5474#define HAVE_LIBRT 1
5440_ACEOF 5475_ACEOF
5441 5476
5442 LIBS="-lrt $LIBS" 5477 LIBS="-lrt $LIBS"
5445 5480
5446 unset ac_cv_func_nanosleep 5481 unset ac_cv_func_nanosleep
5447 for ac_func in nanosleep 5482 for ac_func in nanosleep
5448do : 5483do :
5449 ac_fn_cxx_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep" 5484 ac_fn_cxx_check_func "$LINENO" "nanosleep" "ac_cv_func_nanosleep"
5450if test "x$ac_cv_func_nanosleep" = x""yes; then : 5485if test "x$ac_cv_func_nanosleep" = xyes; then :
5451 cat >>confdefs.h <<_ACEOF 5486 cat >>confdefs.h <<_ACEOF
5452#define HAVE_NANOSLEEP 1 5487#define HAVE_NANOSLEEP 1
5453_ACEOF 5488_ACEOF
5454 5489
5455fi 5490fi
5456done 5491done
5457 5492
5458 fi 5493 fi
5459 5494
5460fi 5495fi
5496done
5461 5497
5462 5498
5499if test -z "$LIBEV_M4_AVOID_LIBM"; then
5500 LIBM=m
5501fi
5463{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ceil in -lm" >&5 5502{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing floor" >&5
5464$as_echo_n "checking for ceil in -lm... " >&6; } 5503$as_echo_n "checking for library containing floor... " >&6; }
5465if test "${ac_cv_lib_m_ceil+set}" = set; then : 5504if ${ac_cv_search_floor+:} false; then :
5466 $as_echo_n "(cached) " >&6 5505 $as_echo_n "(cached) " >&6
5467else 5506else
5468 ac_check_lib_save_LIBS=$LIBS 5507 ac_func_search_save_LIBS=$LIBS
5469LIBS="-lm $LIBS"
5470cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5508cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5471/* end confdefs.h. */ 5509/* end confdefs.h. */
5472 5510
5473/* Override any GCC internal prototype to avoid an error. 5511/* Override any GCC internal prototype to avoid an error.
5474 Use char because int might match the return type of a GCC 5512 Use char because int might match the return type of a GCC
5475 builtin and then its argument prototype would still apply. */ 5513 builtin and then its argument prototype would still apply. */
5476#ifdef __cplusplus 5514#ifdef __cplusplus
5477extern "C" 5515extern "C"
5478#endif 5516#endif
5479char ceil (); 5517char floor ();
5480int 5518int
5481main () 5519main ()
5482{ 5520{
5483return ceil (); 5521return floor ();
5484 ; 5522 ;
5485 return 0; 5523 return 0;
5486} 5524}
5487_ACEOF 5525_ACEOF
5526for ac_lib in '' $LIBM; do
5527 if test -z "$ac_lib"; then
5528 ac_res="none required"
5529 else
5530 ac_res=-l$ac_lib
5531 LIBS="-l$ac_lib $ac_func_search_save_LIBS"
5532 fi
5488if ac_fn_cxx_try_link "$LINENO"; then : 5533 if ac_fn_cxx_try_link "$LINENO"; then :
5489 ac_cv_lib_m_ceil=yes 5534 ac_cv_search_floor=$ac_res
5490else
5491 ac_cv_lib_m_ceil=no
5492fi 5535fi
5493rm -f core conftest.err conftest.$ac_objext \ 5536rm -f core conftest.err conftest.$ac_objext \
5494 conftest$ac_exeext conftest.$ac_ext 5537 conftest$ac_exeext
5495LIBS=$ac_check_lib_save_LIBS 5538 if ${ac_cv_search_floor+:} false; then :
5539 break
5496fi 5540fi
5541done
5542if ${ac_cv_search_floor+:} false; then :
5543
5544else
5545 ac_cv_search_floor=no
5546fi
5547rm conftest.$ac_ext
5548LIBS=$ac_func_search_save_LIBS
5549fi
5497{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_m_ceil" >&5 5550{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_floor" >&5
5498$as_echo "$ac_cv_lib_m_ceil" >&6; } 5551$as_echo "$ac_cv_search_floor" >&6; }
5499if test "x$ac_cv_lib_m_ceil" = x""yes; then : 5552ac_res=$ac_cv_search_floor
5500 cat >>confdefs.h <<_ACEOF 5553if test "$ac_res" != no; then :
5501#define HAVE_LIBM 1 5554 test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
5502_ACEOF
5503 5555
5504 LIBS="-lm $LIBS" 5556$as_echo "#define HAVE_FLOOR 1" >>confdefs.h
5505 5557
5506fi 5558fi
5507 5559
5508 5560
5509 5561
5511 5563
5512# Extract the first word of "tic", so it can be a program name with args. 5564# Extract the first word of "tic", so it can be a program name with args.
5513set dummy tic; ac_word=$2 5565set dummy tic; ac_word=$2
5514{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 5566{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
5515$as_echo_n "checking for $ac_word... " >&6; } 5567$as_echo_n "checking for $ac_word... " >&6; }
5516if test "${ac_cv_path_TIC+set}" = set; then : 5568if ${ac_cv_path_TIC+:} false; then :
5517 $as_echo_n "(cached) " >&6 5569 $as_echo_n "(cached) " >&6
5518else 5570else
5519 case $TIC in 5571 case $TIC in
5520 [\\/]* | ?:[\\/]*) 5572 [\\/]* | ?:[\\/]*)
5521 ac_cv_path_TIC="$TIC" # Let the user override the test with a path. 5573 ac_cv_path_TIC="$TIC" # Let the user override the test with a path.
5564if test "x$with_x" = xno; then 5616if test "x$with_x" = xno; then
5565 # The user explicitly disabled X. 5617 # The user explicitly disabled X.
5566 have_x=disabled 5618 have_x=disabled
5567else 5619else
5568 case $x_includes,$x_libraries in #( 5620 case $x_includes,$x_libraries in #(
5569 *\'*) as_fn_error "cannot use X directory names containing '" "$LINENO" 5;; #( 5621 *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #(
5570 *,NONE | NONE,*) if test "${ac_cv_have_x+set}" = set; then : 5622 *,NONE | NONE,*) if ${ac_cv_have_x+:} false; then :
5571 $as_echo_n "(cached) " >&6 5623 $as_echo_n "(cached) " >&6
5572else 5624else
5573 # One or both of the vars are not set, and there is no cached value. 5625 # One or both of the vars are not set, and there is no cached value.
5574ac_x_includes=no ac_x_libraries=no 5626ac_x_includes=no ac_x_libraries=no
5575rm -f -r conftest.dir 5627rm -f -r conftest.dir
5582 @echo usrlibdir='${USRLIBDIR}' 5634 @echo usrlibdir='${USRLIBDIR}'
5583libdir: 5635libdir:
5584 @echo libdir='${LIBDIR}' 5636 @echo libdir='${LIBDIR}'
5585_ACEOF 5637_ACEOF
5586 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then 5638 if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then
5587 # GNU make sometimes prints "make[1]: Entering...", which would confuse us. 5639 # GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
5588 for ac_var in incroot usrlibdir libdir; do 5640 for ac_var in incroot usrlibdir libdir; do
5589 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" 5641 eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`"
5590 done 5642 done
5591 # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. 5643 # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR.
5592 for ac_extension in a so sl dylib la dll; do 5644 for ac_extension in a so sl dylib la dll; do
5668 ac_x_includes=$ac_dir 5720 ac_x_includes=$ac_dir
5669 break 5721 break
5670 fi 5722 fi
5671done 5723done
5672fi 5724fi
5673rm -f conftest.err conftest.$ac_ext 5725rm -f conftest.err conftest.i conftest.$ac_ext
5674fi # $ac_x_includes = no 5726fi # $ac_x_includes = no
5675 5727
5676if test "$ac_x_libraries" = no; then 5728if test "$ac_x_libraries" = no; then
5677 # Check for the libraries. 5729 # Check for the libraries.
5678 # See if we find them without any special options. 5730 # See if we find them without any special options.
5842if ac_fn_cxx_try_link "$LINENO"; then : 5894if ac_fn_cxx_try_link "$LINENO"; then :
5843 5895
5844else 5896else
5845 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 5897 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5
5846$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; } 5898$as_echo_n "checking for dnet_ntoa in -ldnet... " >&6; }
5847if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then : 5899if ${ac_cv_lib_dnet_dnet_ntoa+:} false; then :
5848 $as_echo_n "(cached) " >&6 5900 $as_echo_n "(cached) " >&6
5849else 5901else
5850 ac_check_lib_save_LIBS=$LIBS 5902 ac_check_lib_save_LIBS=$LIBS
5851LIBS="-ldnet $LIBS" 5903LIBS="-ldnet $LIBS"
5852cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5904cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5876 conftest$ac_exeext conftest.$ac_ext 5928 conftest$ac_exeext conftest.$ac_ext
5877LIBS=$ac_check_lib_save_LIBS 5929LIBS=$ac_check_lib_save_LIBS
5878fi 5930fi
5879{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 5931{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
5880$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; } 5932$as_echo "$ac_cv_lib_dnet_dnet_ntoa" >&6; }
5881if test "x$ac_cv_lib_dnet_dnet_ntoa" = x""yes; then : 5933if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes; then :
5882 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" 5934 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
5883fi 5935fi
5884 5936
5885 if test $ac_cv_lib_dnet_dnet_ntoa = no; then 5937 if test $ac_cv_lib_dnet_dnet_ntoa = no; then
5886 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 5938 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5
5887$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; } 5939$as_echo_n "checking for dnet_ntoa in -ldnet_stub... " >&6; }
5888if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then : 5940if ${ac_cv_lib_dnet_stub_dnet_ntoa+:} false; then :
5889 $as_echo_n "(cached) " >&6 5941 $as_echo_n "(cached) " >&6
5890else 5942else
5891 ac_check_lib_save_LIBS=$LIBS 5943 ac_check_lib_save_LIBS=$LIBS
5892LIBS="-ldnet_stub $LIBS" 5944LIBS="-ldnet_stub $LIBS"
5893cat confdefs.h - <<_ACEOF >conftest.$ac_ext 5945cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5917 conftest$ac_exeext conftest.$ac_ext 5969 conftest$ac_exeext conftest.$ac_ext
5918LIBS=$ac_check_lib_save_LIBS 5970LIBS=$ac_check_lib_save_LIBS
5919fi 5971fi
5920{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 5972{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
5921$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } 5973$as_echo "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; }
5922if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = x""yes; then : 5974if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes; then :
5923 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" 5975 X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
5924fi 5976fi
5925 5977
5926 fi 5978 fi
5927fi 5979fi
5936 # The nsl library prevents programs from opening the X display 5988 # The nsl library prevents programs from opening the X display
5937 # on Irix 5.2, according to T.E. Dickey. 5989 # on Irix 5.2, according to T.E. Dickey.
5938 # The functions gethostbyname, getservbyname, and inet_addr are 5990 # The functions gethostbyname, getservbyname, and inet_addr are
5939 # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. 5991 # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
5940 ac_fn_cxx_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" 5992 ac_fn_cxx_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname"
5941if test "x$ac_cv_func_gethostbyname" = x""yes; then : 5993if test "x$ac_cv_func_gethostbyname" = xyes; then :
5942 5994
5943fi 5995fi
5944 5996
5945 if test $ac_cv_func_gethostbyname = no; then 5997 if test $ac_cv_func_gethostbyname = no; then
5946 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 5998 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5
5947$as_echo_n "checking for gethostbyname in -lnsl... " >&6; } 5999$as_echo_n "checking for gethostbyname in -lnsl... " >&6; }
5948if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then : 6000if ${ac_cv_lib_nsl_gethostbyname+:} false; then :
5949 $as_echo_n "(cached) " >&6 6001 $as_echo_n "(cached) " >&6
5950else 6002else
5951 ac_check_lib_save_LIBS=$LIBS 6003 ac_check_lib_save_LIBS=$LIBS
5952LIBS="-lnsl $LIBS" 6004LIBS="-lnsl $LIBS"
5953cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6005cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5977 conftest$ac_exeext conftest.$ac_ext 6029 conftest$ac_exeext conftest.$ac_ext
5978LIBS=$ac_check_lib_save_LIBS 6030LIBS=$ac_check_lib_save_LIBS
5979fi 6031fi
5980{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 6032{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5
5981$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } 6033$as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; }
5982if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then : 6034if test "x$ac_cv_lib_nsl_gethostbyname" = xyes; then :
5983 X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" 6035 X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
5984fi 6036fi
5985 6037
5986 if test $ac_cv_lib_nsl_gethostbyname = no; then 6038 if test $ac_cv_lib_nsl_gethostbyname = no; then
5987 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 6039 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5
5988$as_echo_n "checking for gethostbyname in -lbsd... " >&6; } 6040$as_echo_n "checking for gethostbyname in -lbsd... " >&6; }
5989if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then : 6041if ${ac_cv_lib_bsd_gethostbyname+:} false; then :
5990 $as_echo_n "(cached) " >&6 6042 $as_echo_n "(cached) " >&6
5991else 6043else
5992 ac_check_lib_save_LIBS=$LIBS 6044 ac_check_lib_save_LIBS=$LIBS
5993LIBS="-lbsd $LIBS" 6045LIBS="-lbsd $LIBS"
5994cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6046cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6018 conftest$ac_exeext conftest.$ac_ext 6070 conftest$ac_exeext conftest.$ac_ext
6019LIBS=$ac_check_lib_save_LIBS 6071LIBS=$ac_check_lib_save_LIBS
6020fi 6072fi
6021{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 6073{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5
6022$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; } 6074$as_echo "$ac_cv_lib_bsd_gethostbyname" >&6; }
6023if test "x$ac_cv_lib_bsd_gethostbyname" = x""yes; then : 6075if test "x$ac_cv_lib_bsd_gethostbyname" = xyes; then :
6024 X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" 6076 X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
6025fi 6077fi
6026 6078
6027 fi 6079 fi
6028 fi 6080 fi
6033 # on later versions), says Simon Leinen: it contains gethostby* 6085 # on later versions), says Simon Leinen: it contains gethostby*
6034 # variants that don't use the name server (or something). -lsocket 6086 # variants that don't use the name server (or something). -lsocket
6035 # must be given before -lnsl if both are needed. We assume that 6087 # must be given before -lnsl if both are needed. We assume that
6036 # if connect needs -lnsl, so does gethostbyname. 6088 # if connect needs -lnsl, so does gethostbyname.
6037 ac_fn_cxx_check_func "$LINENO" "connect" "ac_cv_func_connect" 6089 ac_fn_cxx_check_func "$LINENO" "connect" "ac_cv_func_connect"
6038if test "x$ac_cv_func_connect" = x""yes; then : 6090if test "x$ac_cv_func_connect" = xyes; then :
6039 6091
6040fi 6092fi
6041 6093
6042 if test $ac_cv_func_connect = no; then 6094 if test $ac_cv_func_connect = no; then
6043 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 6095 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5
6044$as_echo_n "checking for connect in -lsocket... " >&6; } 6096$as_echo_n "checking for connect in -lsocket... " >&6; }
6045if test "${ac_cv_lib_socket_connect+set}" = set; then : 6097if ${ac_cv_lib_socket_connect+:} false; then :
6046 $as_echo_n "(cached) " >&6 6098 $as_echo_n "(cached) " >&6
6047else 6099else
6048 ac_check_lib_save_LIBS=$LIBS 6100 ac_check_lib_save_LIBS=$LIBS
6049LIBS="-lsocket $X_EXTRA_LIBS $LIBS" 6101LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
6050cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6102cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6074 conftest$ac_exeext conftest.$ac_ext 6126 conftest$ac_exeext conftest.$ac_ext
6075LIBS=$ac_check_lib_save_LIBS 6127LIBS=$ac_check_lib_save_LIBS
6076fi 6128fi
6077{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 6129{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5
6078$as_echo "$ac_cv_lib_socket_connect" >&6; } 6130$as_echo "$ac_cv_lib_socket_connect" >&6; }
6079if test "x$ac_cv_lib_socket_connect" = x""yes; then : 6131if test "x$ac_cv_lib_socket_connect" = xyes; then :
6080 X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" 6132 X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
6081fi 6133fi
6082 6134
6083 fi 6135 fi
6084 6136
6085 # Guillermo Gomez says -lposix is necessary on A/UX. 6137 # Guillermo Gomez says -lposix is necessary on A/UX.
6086 ac_fn_cxx_check_func "$LINENO" "remove" "ac_cv_func_remove" 6138 ac_fn_cxx_check_func "$LINENO" "remove" "ac_cv_func_remove"
6087if test "x$ac_cv_func_remove" = x""yes; then : 6139if test "x$ac_cv_func_remove" = xyes; then :
6088 6140
6089fi 6141fi
6090 6142
6091 if test $ac_cv_func_remove = no; then 6143 if test $ac_cv_func_remove = no; then
6092 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 6144 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5
6093$as_echo_n "checking for remove in -lposix... " >&6; } 6145$as_echo_n "checking for remove in -lposix... " >&6; }
6094if test "${ac_cv_lib_posix_remove+set}" = set; then : 6146if ${ac_cv_lib_posix_remove+:} false; then :
6095 $as_echo_n "(cached) " >&6 6147 $as_echo_n "(cached) " >&6
6096else 6148else
6097 ac_check_lib_save_LIBS=$LIBS 6149 ac_check_lib_save_LIBS=$LIBS
6098LIBS="-lposix $LIBS" 6150LIBS="-lposix $LIBS"
6099cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6151cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6123 conftest$ac_exeext conftest.$ac_ext 6175 conftest$ac_exeext conftest.$ac_ext
6124LIBS=$ac_check_lib_save_LIBS 6176LIBS=$ac_check_lib_save_LIBS
6125fi 6177fi
6126{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 6178{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5
6127$as_echo "$ac_cv_lib_posix_remove" >&6; } 6179$as_echo "$ac_cv_lib_posix_remove" >&6; }
6128if test "x$ac_cv_lib_posix_remove" = x""yes; then : 6180if test "x$ac_cv_lib_posix_remove" = xyes; then :
6129 X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" 6181 X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
6130fi 6182fi
6131 6183
6132 fi 6184 fi
6133 6185
6134 # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. 6186 # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
6135 ac_fn_cxx_check_func "$LINENO" "shmat" "ac_cv_func_shmat" 6187 ac_fn_cxx_check_func "$LINENO" "shmat" "ac_cv_func_shmat"
6136if test "x$ac_cv_func_shmat" = x""yes; then : 6188if test "x$ac_cv_func_shmat" = xyes; then :
6137 6189
6138fi 6190fi
6139 6191
6140 if test $ac_cv_func_shmat = no; then 6192 if test $ac_cv_func_shmat = no; then
6141 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 6193 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5
6142$as_echo_n "checking for shmat in -lipc... " >&6; } 6194$as_echo_n "checking for shmat in -lipc... " >&6; }
6143if test "${ac_cv_lib_ipc_shmat+set}" = set; then : 6195if ${ac_cv_lib_ipc_shmat+:} false; then :
6144 $as_echo_n "(cached) " >&6 6196 $as_echo_n "(cached) " >&6
6145else 6197else
6146 ac_check_lib_save_LIBS=$LIBS 6198 ac_check_lib_save_LIBS=$LIBS
6147LIBS="-lipc $LIBS" 6199LIBS="-lipc $LIBS"
6148cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6200cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6172 conftest$ac_exeext conftest.$ac_ext 6224 conftest$ac_exeext conftest.$ac_ext
6173LIBS=$ac_check_lib_save_LIBS 6225LIBS=$ac_check_lib_save_LIBS
6174fi 6226fi
6175{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 6227{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5
6176$as_echo "$ac_cv_lib_ipc_shmat" >&6; } 6228$as_echo "$ac_cv_lib_ipc_shmat" >&6; }
6177if test "x$ac_cv_lib_ipc_shmat" = x""yes; then : 6229if test "x$ac_cv_lib_ipc_shmat" = xyes; then :
6178 X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" 6230 X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
6179fi 6231fi
6180 6232
6181 fi 6233 fi
6182 fi 6234 fi
6190 # These have to be linked with before -lX11, unlike the other 6242 # These have to be linked with before -lX11, unlike the other
6191 # libraries we check for below, so use a different variable. 6243 # libraries we check for below, so use a different variable.
6192 # John Interrante, Karl Berry 6244 # John Interrante, Karl Berry
6193 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 6245 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5
6194$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; } 6246$as_echo_n "checking for IceConnectionNumber in -lICE... " >&6; }
6195if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then : 6247if ${ac_cv_lib_ICE_IceConnectionNumber+:} false; then :
6196 $as_echo_n "(cached) " >&6 6248 $as_echo_n "(cached) " >&6
6197else 6249else
6198 ac_check_lib_save_LIBS=$LIBS 6250 ac_check_lib_save_LIBS=$LIBS
6199LIBS="-lICE $X_EXTRA_LIBS $LIBS" 6251LIBS="-lICE $X_EXTRA_LIBS $LIBS"
6200cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6252cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6224 conftest$ac_exeext conftest.$ac_ext 6276 conftest$ac_exeext conftest.$ac_ext
6225LIBS=$ac_check_lib_save_LIBS 6277LIBS=$ac_check_lib_save_LIBS
6226fi 6278fi
6227{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 6279{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
6228$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } 6280$as_echo "$ac_cv_lib_ICE_IceConnectionNumber" >&6; }
6229if test "x$ac_cv_lib_ICE_IceConnectionNumber" = x""yes; then : 6281if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes; then :
6230 X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" 6282 X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
6231fi 6283fi
6232 6284
6233 LDFLAGS=$ac_save_LDFLAGS 6285 LDFLAGS=$ac_save_LDFLAGS
6234 6286
6235fi 6287fi
6236 6288
6289
6290image_lib=none
6237 6291
6238PIXBUF_CFLAGS= 6292PIXBUF_CFLAGS=
6239PIXBUF_LIBS= 6293PIXBUF_LIBS=
6240 6294
6241if test x$support_pixbuf = xyes; then 6295if test x$support_pixbuf = xyes; then
6242 support_pixbuf=no 6296 support_pixbuf=no
6243 # Extract the first word of "pkg-config", so it can be a program name with args. 6297 # Extract the first word of "pkg-config", so it can be a program name with args.
6244set dummy pkg-config; ac_word=$2 6298set dummy pkg-config; ac_word=$2
6245{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6299{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6246$as_echo_n "checking for $ac_word... " >&6; } 6300$as_echo_n "checking for $ac_word... " >&6; }
6247if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 6301if ${ac_cv_path_PKG_CONFIG+:} false; then :
6248 $as_echo_n "(cached) " >&6 6302 $as_echo_n "(cached) " >&6
6249else 6303else
6250 case $PKG_CONFIG in 6304 case $PKG_CONFIG in
6251 [\\/]* | ?:[\\/]*) 6305 [\\/]* | ?:[\\/]*)
6252 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. 6306 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
6281fi 6335fi
6282 6336
6283 6337
6284 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdk-pixbuf" >&5 6338 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for gdk-pixbuf" >&5
6285$as_echo_n "checking for gdk-pixbuf... " >&6; } 6339$as_echo_n "checking for gdk-pixbuf... " >&6; }
6286 if test $PKG_CONFIG != no && $PKG_CONFIG --exists gdk-pixbuf-xlib-2.0; then 6340 if test $PKG_CONFIG != no && $PKG_CONFIG --exists gdk-pixbuf-2.0; then
6287 PIXBUF_CFLAGS="`$PKG_CONFIG gdk-pixbuf-xlib-2.0 --cflags`" 6341 PIXBUF_CFLAGS="`$PKG_CONFIG gdk-pixbuf-2.0 --cflags`"
6288 PIXBUF_LIBS="`$PKG_CONFIG gdk-pixbuf-xlib-2.0 --libs`" 6342 PIXBUF_LIBS="`$PKG_CONFIG gdk-pixbuf-2.0 --libs`"
6289 support_pixbuf=yes 6343 support_pixbuf=yes
6290 fi 6344 fi
6291 6345
6292 if test x$support_pixbuf = xyes; then 6346 if test x$support_pixbuf = xyes; then
6293 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 6347 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
6294$as_echo "ok" >&6; } 6348$as_echo "ok" >&6; }
6349 image_lib=gdk-pixbuf
6295 support_afterimage=no 6350 support_afterimage=no
6296 6351
6297$as_echo "#define HAVE_PIXBUF 1" >>confdefs.h 6352$as_echo "#define HAVE_PIXBUF 1" >>confdefs.h
6298 6353
6299 6354
6300$as_echo "#define BG_IMAGE_FROM_FILE 1" >>confdefs.h 6355$as_echo "#define BG_IMAGE_FROM_FILE 1" >>confdefs.h
6356
6357 else
6358 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
6359$as_echo "no" >&6; }
6360 fi
6361fi
6362
6363
6364
6365
6366STARTUP_NOTIFICATION_CFLAGS=
6367STARTUP_NOTIFICATION_LIBS=
6368
6369if test x$support_startup_notification = xyes; then
6370 support_startup_notification=no
6371 # Extract the first word of "pkg-config", so it can be a program name with args.
6372set dummy pkg-config; ac_word=$2
6373{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6374$as_echo_n "checking for $ac_word... " >&6; }
6375if ${ac_cv_path_PKG_CONFIG+:} false; then :
6376 $as_echo_n "(cached) " >&6
6377else
6378 case $PKG_CONFIG in
6379 [\\/]* | ?:[\\/]*)
6380 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
6381 ;;
6382 *)
6383 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6384for as_dir in $PATH
6385do
6386 IFS=$as_save_IFS
6387 test -z "$as_dir" && as_dir=.
6388 for ac_exec_ext in '' $ac_executable_extensions; do
6389 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
6390 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
6391 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
6392 break 2
6393 fi
6394done
6395 done
6396IFS=$as_save_IFS
6397
6398 test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
6399 ;;
6400esac
6401fi
6402PKG_CONFIG=$ac_cv_path_PKG_CONFIG
6403if test -n "$PKG_CONFIG"; then
6404 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
6405$as_echo "$PKG_CONFIG" >&6; }
6406else
6407 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
6408$as_echo "no" >&6; }
6409fi
6410
6411
6412 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for libstartup-notification" >&5
6413$as_echo_n "checking for libstartup-notification... " >&6; }
6414 if test $PKG_CONFIG != no && $PKG_CONFIG --exists libstartup-notification-1.0; then
6415 STARTUP_NOTIFICATION_CFLAGS="`$PKG_CONFIG libstartup-notification-1.0 --cflags`"
6416 STARTUP_NOTIFICATION_LIBS="`$PKG_CONFIG libstartup-notification-1.0 --libs`"
6417 support_startup_notification=yes
6418 fi
6419
6420 if test x$support_startup_notification = xyes; then
6421 { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5
6422$as_echo "ok" >&6; }
6423
6424$as_echo "#define HAVE_STARTUP_NOTIFICATION 1" >>confdefs.h
6301 6425
6302 else 6426 else
6303 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 6427 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
6304$as_echo "no" >&6; } 6428$as_echo "no" >&6; }
6305 fi 6429 fi
6318 if test "x$afterimage_config" = "x" ; then 6442 if test "x$afterimage_config" = "x" ; then
6319 # Extract the first word of "afterimage-config", so it can be a program name with args. 6443 # Extract the first word of "afterimage-config", so it can be a program name with args.
6320set dummy afterimage-config; ac_word=$2 6444set dummy afterimage-config; ac_word=$2
6321{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 6445{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
6322$as_echo_n "checking for $ac_word... " >&6; } 6446$as_echo_n "checking for $ac_word... " >&6; }
6323if test "${ac_cv_path_afterimage_config+set}" = set; then : 6447if ${ac_cv_path_afterimage_config+:} false; then :
6324 $as_echo_n "(cached) " >&6 6448 $as_echo_n "(cached) " >&6
6325else 6449else
6326 case $afterimage_config in 6450 case $afterimage_config in
6327 [\\/]* | ?:[\\/]*) 6451 [\\/]* | ?:[\\/]*)
6328 ac_cv_path_afterimage_config="$afterimage_config" # Let the user override the test with a path. 6452 ac_cv_path_afterimage_config="$afterimage_config" # Let the user override the test with a path.
6377 fi 6501 fi
6378 fi 6502 fi
6379 if test "x$support_afterimage" = "xyes"; then 6503 if test "x$support_afterimage" = "xyes"; then
6380 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AFTERIMAGE_LIBS" >&5 6504 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AFTERIMAGE_LIBS" >&5
6381$as_echo "$AFTERIMAGE_LIBS" >&6; } 6505$as_echo "$AFTERIMAGE_LIBS" >&6; }
6506 image_lib=libafterimage
6382 6507
6383$as_echo "#define HAVE_AFTERIMAGE 1" >>confdefs.h 6508$as_echo "#define HAVE_AFTERIMAGE 1" >>confdefs.h
6384 6509
6385 6510
6386$as_echo "#define BG_IMAGE_FROM_FILE 1" >>confdefs.h 6511$as_echo "#define BG_IMAGE_FROM_FILE 1" >>confdefs.h
6405 cwchar \ 6530 cwchar \
6406 6531
6407do : 6532do :
6408 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 6533 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
6409ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 6534ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
6410eval as_val=\$$as_ac_Header 6535if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
6411 if test "x$as_val" = x""yes; then :
6412 cat >>confdefs.h <<_ACEOF 6536 cat >>confdefs.h <<_ACEOF
6413#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 6537#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
6414_ACEOF 6538_ACEOF
6415 6539
6416fi 6540fi
6417 6541
6418done 6542done
6419 6543
6420 6544
6421{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XPointer" >&5 6545{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XLIB_ILLEGAL_ACCESS" >&5
6422$as_echo_n "checking for XPointer... " >&6; } 6546$as_echo_n "checking for XLIB_ILLEGAL_ACCESS... " >&6; }
6423if test "${rxvt_cv_xpointer+set}" = set; then : 6547if ${rxvt_cv_xlib_illegal_access+:} false; then :
6424 $as_echo_n "(cached) " >&6 6548 $as_echo_n "(cached) " >&6
6425else 6549else
6426 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6550 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6427/* end confdefs.h. */ 6551/* end confdefs.h. */
6552
6553#define XLIB_ILLEGAL_ACCESS
6428#include <X11/Xlib.h> 6554#include <X11/Xlib.h>
6555
6429int 6556int
6430main () 6557main ()
6431{ 6558{
6432XPointer dummy; 6559
6560 Display *dpy;
6561 dpy->xdefaults = (char *)0;
6562
6433 ; 6563 ;
6434 return 0; 6564 return 0;
6435} 6565}
6436_ACEOF 6566_ACEOF
6437if ac_fn_cxx_try_compile "$LINENO"; then : 6567if ac_fn_cxx_try_compile "$LINENO"; then :
6438 rxvt_cv_xpointer=yes
6439else
6440 rxvt_cv_xpointer=no
6441fi
6442rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6443fi
6444{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $rxvt_cv_xpointer" >&5
6445$as_echo "$rxvt_cv_xpointer" >&6; }
6446if test x$rxvt_cv_xpointer = xyes; then
6447
6448$as_echo "#define HAVE_XPOINTER 1" >>confdefs.h
6449
6450fi
6451
6452{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for XLIB_ILLEGAL_ACCESS" >&5
6453$as_echo_n "checking for XLIB_ILLEGAL_ACCESS... " >&6; }
6454if test "${rxvt_cv_xlib_illegal_access+set}" = set; then :
6455 $as_echo_n "(cached) " >&6
6456else
6457 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6458/* end confdefs.h. */
6459
6460#define XLIB_ILLEGAL_ACCESS
6461#include <X11/Xlib.h>
6462
6463int
6464main ()
6465{
6466
6467 Display *dpy;
6468 dpy->xdefaults = (char *)0;
6469
6470 ;
6471 return 0;
6472}
6473_ACEOF
6474if ac_fn_cxx_try_compile "$LINENO"; then :
6475 rxvt_cv_xlib_illegal_access=yes 6568 rxvt_cv_xlib_illegal_access=yes
6476else 6569else
6477 rxvt_cv_xlib_illegal_access=no 6570 rxvt_cv_xlib_illegal_access=no
6478 6571
6479fi 6572fi
6486$as_echo "#define XLIB_ILLEGAL_ACCESS 1" >>confdefs.h 6579$as_echo "#define XLIB_ILLEGAL_ACCESS 1" >>confdefs.h
6487 6580
6488fi 6581fi
6489 6582
6490ac_fn_cxx_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" 6583ac_fn_cxx_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default"
6491if test "x$ac_cv_type_mode_t" = x""yes; then : 6584if test "x$ac_cv_type_mode_t" = xyes; then :
6492 6585
6493else 6586else
6494 6587
6495cat >>confdefs.h <<_ACEOF 6588cat >>confdefs.h <<_ACEOF
6496#define mode_t int 6589#define mode_t int
6497_ACEOF 6590_ACEOF
6498 6591
6499fi 6592fi
6500 6593
6501ac_fn_cxx_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" 6594ac_fn_cxx_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default"
6502if test "x$ac_cv_type_pid_t" = x""yes; then : 6595if test "x$ac_cv_type_pid_t" = xyes; then :
6503 6596
6504else 6597else
6505 6598
6506cat >>confdefs.h <<_ACEOF 6599cat >>confdefs.h <<_ACEOF
6507#define pid_t int 6600#define pid_t int
6509 6602
6510fi 6603fi
6511 6604
6512{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5 6605{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for uid_t in sys/types.h" >&5
6513$as_echo_n "checking for uid_t in sys/types.h... " >&6; } 6606$as_echo_n "checking for uid_t in sys/types.h... " >&6; }
6514if test "${ac_cv_type_uid_t+set}" = set; then : 6607if ${ac_cv_type_uid_t+:} false; then :
6515 $as_echo_n "(cached) " >&6 6608 $as_echo_n "(cached) " >&6
6516else 6609else
6517 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6610 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6518/* end confdefs.h. */ 6611/* end confdefs.h. */
6519#include <sys/types.h> 6612#include <sys/types.h>
6589 6682
6590 6683
6591for ac_func in unsetenv 6684for ac_func in unsetenv
6592do : 6685do :
6593 ac_fn_cxx_check_func "$LINENO" "unsetenv" "ac_cv_func_unsetenv" 6686 ac_fn_cxx_check_func "$LINENO" "unsetenv" "ac_cv_func_unsetenv"
6594if test "x$ac_cv_func_unsetenv" = x""yes; then : 6687if test "x$ac_cv_func_unsetenv" = xyes; then :
6595 cat >>confdefs.h <<_ACEOF 6688 cat >>confdefs.h <<_ACEOF
6596#define HAVE_UNSETENV 1 6689#define HAVE_UNSETENV 1
6597_ACEOF 6690_ACEOF
6598 6691
6599fi 6692fi
6651 updlastlogx \ 6744 updlastlogx \
6652 6745
6653do : 6746do :
6654 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 6747 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
6655ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var" 6748ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var"
6656eval as_val=\$$as_ac_var
6657 if test "x$as_val" = x""yes; then : 6749if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
6658 cat >>confdefs.h <<_ACEOF 6750 cat >>confdefs.h <<_ACEOF
6659#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 6751#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
6660_ACEOF 6752_ACEOF
6661 6753
6662fi 6754fi
6664 6756
6665 6757
6666for ac_header in lastlog.h 6758for ac_header in lastlog.h
6667do : 6759do :
6668 ac_fn_cxx_check_header_mongrel "$LINENO" "lastlog.h" "ac_cv_header_lastlog_h" "$ac_includes_default" 6760 ac_fn_cxx_check_header_mongrel "$LINENO" "lastlog.h" "ac_cv_header_lastlog_h" "$ac_includes_default"
6669if test "x$ac_cv_header_lastlog_h" = x""yes; then : 6761if test "x$ac_cv_header_lastlog_h" = xyes; then :
6670 cat >>confdefs.h <<_ACEOF 6762 cat >>confdefs.h <<_ACEOF
6671#define HAVE_LASTLOG_H 1 6763#define HAVE_LASTLOG_H 1
6672_ACEOF 6764_ACEOF
6673 6765
6674fi 6766fi
6678 6770
6679 6771
6680for ac_header in utmp.h 6772for ac_header in utmp.h
6681do : 6773do :
6682 ac_fn_cxx_check_header_mongrel "$LINENO" "utmp.h" "ac_cv_header_utmp_h" "$ac_includes_default" 6774 ac_fn_cxx_check_header_mongrel "$LINENO" "utmp.h" "ac_cv_header_utmp_h" "$ac_includes_default"
6683if test "x$ac_cv_header_utmp_h" = x""yes; then : 6775if test "x$ac_cv_header_utmp_h" = xyes; then :
6684 cat >>confdefs.h <<_ACEOF 6776 cat >>confdefs.h <<_ACEOF
6685#define HAVE_UTMP_H 1 6777#define HAVE_UTMP_H 1
6686_ACEOF 6778_ACEOF
6779 ac_fn_cxx_check_type "$LINENO" "struct utmp" "ac_cv_type_struct_utmp" "
6780#include <sys/types.h>
6781#include <utmp.h>
6782
6783"
6784if test "x$ac_cv_type_struct_utmp" = xyes; then :
6785
6786cat >>confdefs.h <<_ACEOF
6787#define HAVE_STRUCT_UTMP 1
6788_ACEOF
6789
6790
6791fi
6792
6793
6794
6795# ac_fn_cxx_check_member LINENO AGGR MEMBER VAR INCLUDES
6796# ------------------------------------------------------
6797# Tries to find if the field MEMBER exists in type AGGR, after including
6798# INCLUDES, setting cache variable VAR accordingly.
6799ac_fn_cxx_check_member ()
6800{
6801 as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
6687 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utmp" >&5 6802 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2.$3" >&5
6688$as_echo_n "checking for struct utmp... " >&6; } 6803$as_echo_n "checking for $2.$3... " >&6; }
6689if test "${pt_cv_struct_utmp+set}" = set; then : 6804if eval \${$4+:} false; then :
6690 $as_echo_n "(cached) " >&6 6805 $as_echo_n "(cached) " >&6
6691else 6806else
6692 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6807 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6693/* end confdefs.h. */ 6808/* end confdefs.h. */
6694#include <sys/types.h> 6809$5
6695#include <utmp.h>
6696int 6810int
6697main () 6811main ()
6698{ 6812{
6699struct utmp ut; 6813static $2 ac_aggr;
6814if (ac_aggr.$3)
6815return 0;
6700 ; 6816 ;
6701 return 0; 6817 return 0;
6702} 6818}
6703_ACEOF 6819_ACEOF
6704if ac_fn_cxx_try_compile "$LINENO"; then : 6820if ac_fn_cxx_try_compile "$LINENO"; then :
6705 pt_cv_struct_utmp=yes 6821 eval "$4=yes"
6706else
6707 pt_cv_struct_utmp=no
6708fi
6709rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6710fi
6711{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmp" >&5
6712$as_echo "$pt_cv_struct_utmp" >&6; }
6713if test x$pt_cv_struct_utmp = xyes; then
6714
6715$as_echo "#define HAVE_STRUCT_UTMP 1" >>confdefs.h
6716
6717fi
6718
6719
6720{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ut_host in utmp struct" >&5
6721$as_echo_n "checking for ut_host in utmp struct... " >&6; }
6722if test "${pt_cv_struct_utmp_host+set}" = set; then :
6723 $as_echo_n "(cached) " >&6
6724else 6822else
6725 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6823 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6726/* end confdefs.h. */ 6824/* end confdefs.h. */
6727#include <sys/types.h> 6825$5
6728#include <utmp.h>
6729int 6826int
6730main () 6827main ()
6731{ 6828{
6732struct utmp ut; ut.ut_host; 6829static $2 ac_aggr;
6830if (sizeof ac_aggr.$3)
6831return 0;
6733 ; 6832 ;
6734 return 0; 6833 return 0;
6735} 6834}
6736_ACEOF 6835_ACEOF
6737if ac_fn_cxx_try_compile "$LINENO"; then : 6836if ac_fn_cxx_try_compile "$LINENO"; then :
6738 pt_cv_struct_utmp_host=yes 6837 eval "$4=yes"
6739else 6838else
6740 pt_cv_struct_utmp_host=no 6839 eval "$4=no"
6741fi 6840fi
6742rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6841rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6743fi 6842fi
6843rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6844fi
6845eval ac_res=\$$4
6744{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmp_host" >&5 6846 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5
6745$as_echo "$pt_cv_struct_utmp_host" >&6; } 6847$as_echo "$ac_res" >&6; }
6746if test x$pt_cv_struct_utmp_host = xyes; then 6848 eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno
6747 6849
6748$as_echo "#define HAVE_UTMP_HOST 1" >>confdefs.h 6850} # ac_fn_cxx_check_member
6749 6851ac_fn_cxx_check_member "$LINENO" "struct utmp" "ut_host" "ac_cv_member_struct_utmp_ut_host" "
6750fi
6751
6752{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ut_pid in utmp struct" >&5
6753$as_echo_n "checking for ut_pid in utmp struct... " >&6; }
6754if test "${pt_cv_struct_utmp_pid+set}" = set; then :
6755 $as_echo_n "(cached) " >&6
6756else
6757 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6758/* end confdefs.h. */
6759#include <sys/types.h> 6852#include <sys/types.h>
6760#include <utmp.h> 6853#include <utmp.h>
6761int 6854
6762main () 6855"
6763{ 6856if test "x$ac_cv_member_struct_utmp_ut_host" = xyes; then :
6764struct utmp ut; ut.ut_pid; 6857
6765 ; 6858$as_echo "#define HAVE_UTMP_HOST 1" >>confdefs.h
6766 return 0; 6859
6767}
6768_ACEOF
6769if ac_fn_cxx_try_compile "$LINENO"; then :
6770 pt_cv_struct_utmp_pid=yes
6771else
6772 pt_cv_struct_utmp_pid=no
6773fi 6860fi
6774rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 6861
6775fi 6862
6776{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmp_pid" >&5 6863ac_fn_cxx_check_member "$LINENO" "struct utmp" "ut_pid" "ac_cv_member_struct_utmp_ut_pid" "
6777$as_echo "$pt_cv_struct_utmp_pid" >&6; } 6864#include <sys/types.h>
6865#include <utmp.h>
6866
6867"
6778if test x$pt_cv_struct_utmp_pid = xyes; then 6868if test "x$ac_cv_member_struct_utmp_ut_pid" = xyes; then :
6779 6869
6780$as_echo "#define HAVE_UTMP_PID 1" >>confdefs.h 6870$as_echo "#define HAVE_UTMP_PID 1" >>confdefs.h
6781 6871
6782fi 6872fi
6873
6783 6874
6784fi 6875fi
6785 6876
6786done 6877done
6787 6878
6788 6879
6789for ac_header in utmpx.h 6880for ac_header in utmpx.h
6790do : 6881do :
6791 ac_fn_cxx_check_header_mongrel "$LINENO" "utmpx.h" "ac_cv_header_utmpx_h" "$ac_includes_default" 6882 ac_fn_cxx_check_header_mongrel "$LINENO" "utmpx.h" "ac_cv_header_utmpx_h" "$ac_includes_default"
6792if test "x$ac_cv_header_utmpx_h" = x""yes; then : 6883if test "x$ac_cv_header_utmpx_h" = xyes; then :
6793 cat >>confdefs.h <<_ACEOF 6884 cat >>confdefs.h <<_ACEOF
6794#define HAVE_UTMPX_H 1 6885#define HAVE_UTMPX_H 1
6795_ACEOF 6886_ACEOF
6796 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct utmpx" >&5 6887 ac_fn_cxx_check_type "$LINENO" "struct utmpx" "ac_cv_type_struct_utmpx" "
6797$as_echo_n "checking for struct utmpx... " >&6; }
6798if test "${pt_cv_struct_utmpx+set}" = set; then :
6799 $as_echo_n "(cached) " >&6
6800else
6801 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6802/* end confdefs.h. */
6803#include <sys/types.h> 6888#include <sys/types.h>
6804#include <utmpx.h> 6889#include <utmpx.h>
6805int 6890
6806main () 6891"
6807{
6808struct utmpx ut;
6809 ;
6810 return 0;
6811}
6812_ACEOF
6813if ac_fn_cxx_try_compile "$LINENO"; then :
6814 pt_cv_struct_utmpx=yes
6815else
6816 pt_cv_struct_utmpx=no
6817fi
6818rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6819fi
6820{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmpx" >&5
6821$as_echo "$pt_cv_struct_utmpx" >&6; }
6822if test x$pt_cv_struct_utmpx = xyes; then 6892if test "x$ac_cv_type_struct_utmpx" = xyes; then :
6823 6893
6824$as_echo "#define HAVE_STRUCT_UTMPX 1" >>confdefs.h 6894cat >>confdefs.h <<_ACEOF
6895#define HAVE_STRUCT_UTMPX 1
6896_ACEOF
6825 6897
6826fi
6827 6898
6899fi
6828 6900
6829{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for host in utmpx struct" >&5 6901
6830$as_echo_n "checking for host in utmpx struct... " >&6; } 6902ac_fn_cxx_check_member "$LINENO" "struct utmpx" "ut_host" "ac_cv_member_struct_utmpx_ut_host" "
6831if test "${pt_cv_struct_utmpx_host+set}" = set; then :
6832 $as_echo_n "(cached) " >&6
6833else
6834 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6835/* end confdefs.h. */
6836#include <sys/types.h> 6903#include <sys/types.h>
6837#include <utmpx.h> 6904#include <utmpx.h>
6838int 6905
6839main () 6906"
6840{
6841struct utmpx utx; utx.ut_host;
6842 ;
6843 return 0;
6844}
6845_ACEOF
6846if ac_fn_cxx_try_compile "$LINENO"; then :
6847 pt_cv_struct_utmpx_host=yes
6848else
6849 pt_cv_struct_utmpx_host=no
6850fi
6851rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6852fi
6853{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmpx_host" >&5
6854$as_echo "$pt_cv_struct_utmpx_host" >&6; }
6855if test x$pt_cv_struct_utmpx_host = xyes; then 6907if test "x$ac_cv_member_struct_utmpx_ut_host" = xyes; then :
6856 6908
6857$as_echo "#define HAVE_UTMPX_HOST 1" >>confdefs.h 6909$as_echo "#define HAVE_UTMPX_HOST 1" >>confdefs.h
6858 6910
6859fi 6911fi
6860 6912
6861{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for session in utmpx struct" >&5 6913
6862$as_echo_n "checking for session in utmpx struct... " >&6; } 6914ac_fn_cxx_check_member "$LINENO" "struct utmpx" "ut_session" "ac_cv_member_struct_utmpx_ut_session" "
6863if test "${pt_cv_struct_utmpx_session+set}" = set; then :
6864 $as_echo_n "(cached) " >&6
6865else
6866 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6867/* end confdefs.h. */
6868#include <sys/types.h> 6915#include <sys/types.h>
6869#include <utmpx.h> 6916#include <utmpx.h>
6870int 6917
6871main () 6918"
6872{
6873struct utmpx utx; utx.ut_session;
6874 ;
6875 return 0;
6876}
6877_ACEOF
6878if ac_fn_cxx_try_compile "$LINENO"; then :
6879 pt_cv_struct_utmpx_session=yes
6880else
6881 pt_cv_struct_utmpx_session=no
6882fi
6883rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6884fi
6885{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_utmpx_session" >&5
6886$as_echo "$pt_cv_struct_utmpx_session" >&6; }
6887if test x$pt_cv_struct_utmpx_session = xyes; then 6919if test "x$ac_cv_member_struct_utmpx_ut_session" = xyes; then :
6888 6920
6889$as_echo "#define HAVE_UTMPX_SESSION 1" >>confdefs.h 6921$as_echo "#define HAVE_UTMPX_SESSION 1" >>confdefs.h
6890 6922
6891fi 6923fi
6892 6924
6925
6893fi 6926fi
6894 6927
6895done 6928done
6896 6929
6897{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct lastlog" >&5 6930ac_fn_cxx_check_type "$LINENO" "struct lastlog" "ac_cv_type_struct_lastlog" "
6898$as_echo_n "checking for struct lastlog... " >&6; }
6899if test "${pt_cv_struct_lastlog+set}" = set; then :
6900 $as_echo_n "(cached) " >&6
6901else
6902 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6903/* end confdefs.h. */
6904#include <sys/types.h> 6931#include <sys/types.h>
6905#include <utmp.h> 6932#include <utmp.h>
6906#ifdef HAVE_LASTLOG_H 6933#ifdef HAVE_LASTLOG_H
6907#include <lastlog.h> 6934#include <lastlog.h>
6908#endif 6935#endif
6909 6936
6910int 6937"
6911main ()
6912{
6913struct lastlog ll;
6914 ;
6915 return 0;
6916}
6917_ACEOF
6918if ac_fn_cxx_try_compile "$LINENO"; then :
6919 pt_cv_struct_lastlog=yes
6920else
6921 pt_cv_struct_lastlog=no
6922fi
6923rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6924fi
6925{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_lastlog" >&5
6926$as_echo "$pt_cv_struct_lastlog" >&6; }
6927if test x$pt_cv_struct_lastlog = xyes; then 6938if test "x$ac_cv_type_struct_lastlog" = xyes; then :
6928 6939
6929$as_echo "#define HAVE_STRUCT_LASTLOG 1" >>confdefs.h 6940cat >>confdefs.h <<_ACEOF
6941#define HAVE_STRUCT_LASTLOG 1
6942_ACEOF
6930 6943
6931fi
6932 6944
6933{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for struct lastlogx" >&5 6945fi
6934$as_echo_n "checking for struct lastlogx... " >&6; } 6946
6935if test "${pt_cv_struct_lastlogx+set}" = set; then : 6947
6936 $as_echo_n "(cached) " >&6 6948ac_fn_cxx_check_type "$LINENO" "struct lastlogx" "ac_cv_type_struct_lastlogx" "
6937else
6938 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6939/* end confdefs.h. */
6940#include <sys/types.h> 6949#include <sys/types.h>
6941#include <utmpx.h> 6950#include <utmpx.h>
6942#ifdef HAVE_LASTLOG_H 6951#ifdef HAVE_LASTLOG_H
6943#include <lastlog.h> 6952#include <lastlog.h>
6944#endif 6953#endif
6945 6954
6946int 6955"
6947main ()
6948{
6949struct lastlogx ll;
6950 ;
6951 return 0;
6952}
6953_ACEOF
6954if ac_fn_cxx_try_compile "$LINENO"; then :
6955 pt_cv_struct_lastlogx=yes
6956else
6957 pt_cv_struct_lastlogx=no
6958fi
6959rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
6960fi
6961{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $pt_cv_struct_lastlogx" >&5
6962$as_echo "$pt_cv_struct_lastlogx" >&6; }
6963if test x$pt_cv_struct_lastlogx = xyes; then 6956if test "x$ac_cv_type_struct_lastlogx" = xyes; then :
6964 6957
6965$as_echo "#define HAVE_STRUCT_LASTLOGX 1" >>confdefs.h 6958cat >>confdefs.h <<_ACEOF
6959#define HAVE_STRUCT_LASTLOGX 1
6960_ACEOF
6966 6961
6962
6967fi 6963fi
6964
6968 6965
6969 6966
6970{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where utmp is located" >&5 6967{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where utmp is located" >&5
6971$as_echo_n "checking where utmp is located... " >&6; } 6968$as_echo_n "checking where utmp is located... " >&6; }
6972if test "${pt_cv_path_utmp+set}" = set; then : 6969if ${pt_cv_path_utmp+:} false; then :
6973 $as_echo_n "(cached) " >&6 6970 $as_echo_n "(cached) " >&6
6974else 6971else
6975 if test "$cross_compiling" = yes; then : 6972 if test "$cross_compiling" = yes; then :
6976 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define UTMP_FILE in config.h manually" >&5 6973 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define UTMP_FILE in config.h manually" >&5
6977$as_echo "$as_me: WARNING: Define UTMP_FILE in config.h manually" >&2;} 6974$as_echo "$as_me: WARNING: Define UTMP_FILE in config.h manually" >&2;}
6978else 6975else
6979 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 6976 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
6980/* end confdefs.h. */ 6977/* end confdefs.h. */
6981#include <stdio.h> 6978#include <stdio.h>
6982#include <stdlib.h> 6979#include <stdlib.h>
6980#include <sys/stat.h>
6981
6983#include <sys/types.h> 6982#include <sys/types.h>
6984#include <utmp.h> 6983#include <utmp.h>
6985#include <errno.h> 6984
6986main() 6985int main()
6987{ 6986{
6988 char **u, *utmplist[] = {
6989 "/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp", NULL }; 6987 const char **path, *list[] = { "/var/run/utmp", "/var/adm/utmp", "/etc/utmp", "/usr/etc/utmp", "/usr/adm/utmp", NULL };
6990 FILE *a, *f=fopen("conftestval", "w"); 6988 FILE *f = fopen("conftestval", "w");
6991 if (!f) exit(1); 6989 if (!f) return 1;
6992#ifdef UTMP_FILE 6990#ifdef UTMP_FILE
6993 fprintf(f, "%s\n", UTMP_FILE); 6991 fprintf(f, "%s\n", UTMP_FILE);
6994 exit(0); 6992#elif defined(_PATH_UTMP)
6993 fprintf(f, "%s\n", _PATH_UTMP);
6994#else
6995 for (path = list; *path; path++) {
6996 struct stat st;
6997 if (stat(*path, &st) == 0) {
6998 fprintf(f, "%s\n", *path);
6999 break;
7000 }
7001 }
6995#endif 7002#endif
6996#ifdef _PATH_UTMP 7003 return fclose(f) != 0;
6997 fprintf(f, "%s\n", _PATH_UTMP);
6998 exit(0);
6999#endif
7000 for (u = utmplist; *u; u++) {
7001 if ((a = fopen(*u, "r")) != NULL || errno == EACCES) {
7002 fprintf(f, "%s\n", *u);
7003 exit(0);
7004 }
7005 }
7006 exit(0);
7007} 7004}
7008_ACEOF 7005_ACEOF
7009if ac_fn_cxx_try_run "$LINENO"; then : 7006if ac_fn_cxx_try_run "$LINENO"; then :
7010 pt_cv_path_utmp=`cat conftestval` 7007 pt_cv_path_utmp=`cat conftestval`
7011else 7008else
7027fi 7024fi
7028 7025
7029 7026
7030{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where wtmp is located" >&5 7027{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where wtmp is located" >&5
7031$as_echo_n "checking where wtmp is located... " >&6; } 7028$as_echo_n "checking where wtmp is located... " >&6; }
7032if test "${pt_cv_path_wtmp+set}" = set; then : 7029if ${pt_cv_path_wtmp+:} false; then :
7033 $as_echo_n "(cached) " >&6 7030 $as_echo_n "(cached) " >&6
7034else 7031else
7035 if test "$cross_compiling" = yes; then : 7032 if test "$cross_compiling" = yes; then :
7036 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define WTMP_FILE in config.h manually" >&5 7033 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define WTMP_FILE in config.h manually" >&5
7037$as_echo "$as_me: WARNING: Define WTMP_FILE in config.h manually" >&2;} 7034$as_echo "$as_me: WARNING: Define WTMP_FILE in config.h manually" >&2;}
7038else 7035else
7039 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7036 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7040/* end confdefs.h. */ 7037/* end confdefs.h. */
7041#include <stdio.h> 7038#include <stdio.h>
7042#include <stdlib.h> 7039#include <stdlib.h>
7040#include <sys/stat.h>
7041
7043#include <sys/types.h> 7042#include <sys/types.h>
7044#ifdef HAVE_UTMP_H 7043#ifdef HAVE_UTMP_H
7045#include <utmp.h> 7044#include <utmp.h>
7046#endif 7045#endif
7047#include <errno.h> 7046
7048main() 7047int main()
7049{ 7048{
7050 char **w, *wtmplist[] = {
7051 "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL }; 7049 const char **path, *list[] = { "/var/log/wtmp", "/var/adm/wtmp", "/etc/wtmp", "/usr/etc/wtmp", "/usr/adm/wtmp", NULL };
7052 FILE *a, *f=fopen("conftestval", "w"); 7050 FILE *f = fopen("conftestval", "w");
7053 if (!f) exit(1); 7051 if (!f) return 1;
7054#ifdef WTMP_FILE 7052#ifdef WTMP_FILE
7055 fprintf(f, "%s\n", WTMP_FILE); 7053 fprintf(f, "%s\n", WTMP_FILE);
7056 exit(0); 7054#elif defined(_PATH_WTMP)
7055 fprintf(f, "%s\n", _PATH_WTMP);
7056#else
7057 for (path = list; *path; path++) {
7058 struct stat st;
7059 if (stat(*path, &st) == 0) {
7060 fprintf(f, "%s\n", *path);
7061 break;
7062 }
7063 }
7057#endif 7064#endif
7058#ifdef _PATH_WTMP 7065 return fclose(f) != 0;
7059 fprintf(f, "%s\n", _PATH_WTMP);
7060 exit(0);
7061#endif
7062 for (w = wtmplist; *w; w++) {
7063 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
7064 fprintf(f, "%s\n", *w);
7065 exit(0);
7066 }
7067 }
7068 exit(0);
7069} 7066}
7070_ACEOF 7067_ACEOF
7071if ac_fn_cxx_try_run "$LINENO"; then : 7068if ac_fn_cxx_try_run "$LINENO"; then :
7072 pt_cv_path_wtmp=`cat conftestval` 7069 pt_cv_path_wtmp=`cat conftestval`
7073else 7070else
7088 7085
7089fi 7086fi
7090 7087
7091{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where wtmpx is located" >&5 7088{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where wtmpx is located" >&5
7092$as_echo_n "checking where wtmpx is located... " >&6; } 7089$as_echo_n "checking where wtmpx is located... " >&6; }
7093if test "${pt_cv_path_wtmpx+set}" = set; then : 7090if ${pt_cv_path_wtmpx+:} false; then :
7094 $as_echo_n "(cached) " >&6 7091 $as_echo_n "(cached) " >&6
7095else 7092else
7096 if test "$cross_compiling" = yes; then : 7093 if test "$cross_compiling" = yes; then :
7097 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define WTMPX_FILE in config.h manually" >&5 7094 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define WTMPX_FILE in config.h manually" >&5
7098$as_echo "$as_me: WARNING: Define WTMPX_FILE in config.h manually" >&2;} 7095$as_echo "$as_me: WARNING: Define WTMPX_FILE in config.h manually" >&2;}
7099else 7096else
7100 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7097 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7101/* end confdefs.h. */ 7098/* end confdefs.h. */
7102#include <stdio.h> 7099#include <stdio.h>
7103#include <stdlib.h> 7100#include <stdlib.h>
7101#include <sys/stat.h>
7102
7104#ifdef HAVE_UTMPX_H 7103#ifdef HAVE_UTMPX_H
7105#include <utmpx.h> 7104#include <utmpx.h>
7106#endif 7105#endif
7107#include <errno.h> 7106
7108main() 7107int main()
7109{ 7108{
7110 char **w, *wtmplist[] = {
7111 "/var/log/wtmpx", "/var/adm/wtmpx", NULL }; 7109 const char **path, *list[] = { "/var/log/wtmpx", "/var/adm/wtmpx", NULL };
7112 FILE *a, *f=fopen("conftestval", "w"); 7110 FILE *f = fopen("conftestval", "w");
7113 if (!f) exit(1); 7111 if (!f) return 1;
7114#ifdef WTMPX_FILE 7112#ifdef WTMPX_FILE
7115 fprintf(f, "%s\n", WTMPX_FILE); 7113 fprintf(f, "%s\n", WTMPX_FILE);
7116 exit(0); 7114#elif defined(_PATH_WTMPX)
7115 fprintf(f, "%s\n", _PATH_WTMPX);
7116#else
7117 for (path = list; *path; path++) {
7118 struct stat st;
7119 if (stat(*path, &st) == 0) {
7120 fprintf(f, "%s\n", *path);
7121 break;
7122 }
7123 }
7117#endif 7124#endif
7118#ifdef _PATH_WTMPX 7125 return fclose(f) != 0;
7119 fprintf(f, "%s\n", _PATH_WTMPX);
7120 exit(0);
7121#endif
7122 for (w = wtmplist; *w; w++) {
7123 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
7124 fprintf(f, "%s\n", *w);
7125 exit(0);
7126 }
7127 }
7128 exit(0);
7129} 7126}
7130_ACEOF 7127_ACEOF
7131if ac_fn_cxx_try_run "$LINENO"; then : 7128if ac_fn_cxx_try_run "$LINENO"; then :
7132 pt_cv_path_wtmpx=`cat conftestval` 7129 pt_cv_path_wtmpx=`cat conftestval`
7133else 7130else
7148 7145
7149fi 7146fi
7150 7147
7151{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where lastlog is located" >&5 7148{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where lastlog is located" >&5
7152$as_echo_n "checking where lastlog is located... " >&6; } 7149$as_echo_n "checking where lastlog is located... " >&6; }
7153if test "${pt_cv_path_lastlog+set}" = set; then : 7150if ${pt_cv_path_lastlog+:} false; then :
7154 $as_echo_n "(cached) " >&6 7151 $as_echo_n "(cached) " >&6
7155else 7152else
7156 if test "$cross_compiling" = yes; then : 7153 if test "$cross_compiling" = yes; then :
7157 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define LASTLOG_FILE in config.h manually" >&5 7154 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define LASTLOG_FILE in config.h manually" >&5
7158$as_echo "$as_me: WARNING: Define LASTLOG_FILE in config.h manually" >&2;} 7155$as_echo "$as_me: WARNING: Define LASTLOG_FILE in config.h manually" >&2;}
7159else 7156else
7160 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7157 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7161/* end confdefs.h. */ 7158/* end confdefs.h. */
7162#include <stdio.h> 7159#include <stdio.h>
7163#include <stdlib.h> 7160#include <stdlib.h>
7161#include <sys/stat.h>
7162
7164#include <sys/types.h> 7163#include <sys/types.h>
7165#ifdef HAVE_UTMPX_H 7164#ifdef HAVE_UTMP_H
7166#include <utmpx.h>
7167#elif defined(HAVE_UTMP_H)
7168#include <utmp.h> 7165#include <utmp.h>
7169#endif 7166#endif
7170#ifdef HAVE_LASTLOG_H 7167#ifdef HAVE_LASTLOG_H
7171#include <lastlog.h> 7168#include <lastlog.h>
7172#endif 7169#endif
7173#include <errno.h> 7170
7174main() 7171int main()
7175{ 7172{
7176 char **w, *lastloglist[] = { "/var/log/lastlog", NULL }; 7173 const char **path, *list[] = { "/var/log/lastlog", NULL };
7177 FILE *a, *f=fopen("conftestval", "w"); 7174 FILE *f = fopen("conftestval", "w");
7178 if (!f) exit(1); 7175 if (!f) return 1;
7179#ifdef LASTLOG_FILE 7176#ifdef LASTLOG_FILE
7180 fprintf(f, "%s\n", LASTLOG_FILE); 7177 fprintf(f, "%s\n", LASTLOG_FILE);
7181 exit(0); 7178#elif defined(_PATH_LASTLOG)
7179 fprintf(f, "%s\n", _PATH_LASTLOG);
7180#else
7181 for (path = list; *path; path++) {
7182 struct stat st;
7183 if (stat(*path, &st) == 0) {
7184 fprintf(f, "%s\n", *path);
7185 break;
7186 }
7187 }
7182#endif 7188#endif
7183#ifdef _PATH_LASTLOG 7189 return fclose(f) != 0;
7184 fprintf(f, "%s\n", _PATH_LASTLOG);
7185 exit(0);
7186#endif
7187 for (w = lastloglist; *w; w++) {
7188 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
7189 fprintf(f, "%s\n", *w);
7190 exit(0);
7191 }
7192 }
7193 exit(0);
7194} 7190}
7195_ACEOF 7191_ACEOF
7196if ac_fn_cxx_try_run "$LINENO"; then : 7192if ac_fn_cxx_try_run "$LINENO"; then :
7197 pt_cv_path_lastlog=`cat conftestval` 7193 pt_cv_path_lastlog=`cat conftestval`
7198else 7194else
7213 7209
7214fi 7210fi
7215 7211
7216{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where lastlogx is located" >&5 7212{ $as_echo "$as_me:${as_lineno-$LINENO}: checking where lastlogx is located" >&5
7217$as_echo_n "checking where lastlogx is located... " >&6; } 7213$as_echo_n "checking where lastlogx is located... " >&6; }
7218if test "${pt_cv_path_lastlogx+set}" = set; then : 7214if ${pt_cv_path_lastlogx+:} false; then :
7219 $as_echo_n "(cached) " >&6 7215 $as_echo_n "(cached) " >&6
7220else 7216else
7221 if test "$cross_compiling" = yes; then : 7217 if test "$cross_compiling" = yes; then :
7222 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define LASTLOGX_FILE in config.h manually" >&5 7218 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Define LASTLOGX_FILE in config.h manually" >&5
7223$as_echo "$as_me: WARNING: Define LASTLOGX_FILE in config.h manually" >&2;} 7219$as_echo "$as_me: WARNING: Define LASTLOGX_FILE in config.h manually" >&2;}
7224else 7220else
7225 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7221 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7226/* end confdefs.h. */ 7222/* end confdefs.h. */
7227#include <stdio.h> 7223#include <stdio.h>
7228#include <stdlib.h> 7224#include <stdlib.h>
7225#include <sys/stat.h>
7226
7229#ifdef HAVE_UTMPX_H 7227#ifdef HAVE_UTMPX_H
7230#include <utmpx.h> 7228#include <utmpx.h>
7231#endif 7229#endif
7232#include <errno.h> 7230
7233main() 7231int main()
7234{ 7232{
7235 char **w, *wtmplist[] = { "/var/log/lastlogx", "/var/adm/lastlogx", NULL }; 7233 const char **path, *list[] = { "/var/log/lastlogx", "/var/adm/lastlogx", NULL };
7236 FILE *a, *f=fopen("conftestval", "w"); 7234 FILE *f = fopen("conftestval", "w");
7237 if (!f) exit(1); 7235 if (!f) return 1;
7238#ifdef LASTLOGX_FILE 7236#ifdef LASTLOGX_FILE
7239 fprintf(f, "%s\n", LASTLOGX_FILE); 7237 fprintf(f, "%s\n", LASTLOGX_FILE);
7240 exit(0); 7238#elif defined(_PATH_LASTLOGX)
7239 fprintf(f, "%s\n", _PATH_LASTLOGX);
7240#else
7241 for (path = list; *path; path++) {
7242 struct stat st;
7243 if (stat(*path, &st) == 0) {
7244 fprintf(f, "%s\n", *path);
7245 break;
7246 }
7247 }
7241#endif 7248#endif
7242#ifdef _PATH_LASTLOGX 7249 return fclose(f) != 0;
7243 fprintf(f, "%s\n", _PATH_LASTLOGX);
7244 exit(0);
7245#endif
7246 for (w = wtmplist; *w; w++) {
7247 if ((a = fopen(*w, "r")) != NULL || errno == EACCES) {
7248 fprintf(f, "%s\n", *w);
7249 exit(0);
7250 }
7251 }
7252 exit(0);
7253} 7250}
7254_ACEOF 7251_ACEOF
7255if ac_fn_cxx_try_run "$LINENO"; then : 7252if ac_fn_cxx_try_run "$LINENO"; then :
7256 pt_cv_path_lastlogx=`cat conftestval` 7253 pt_cv_path_lastlogx=`cat conftestval`
7257else 7254else
7280CFLAGS="$CFLAGS $X_CFLAGS" 7277CFLAGS="$CFLAGS $X_CFLAGS"
7281LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11" 7278LIBS="$LIBS $X_LIBS $X_EXTRA_LIBS -lX11"
7282if test x$support_xim = xyes; then 7279if test x$support_xim = xyes; then
7283 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working Xlocale" >&5 7280 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working Xlocale" >&5
7284$as_echo_n "checking for working Xlocale... " >&6; } 7281$as_echo_n "checking for working Xlocale... " >&6; }
7285if test "${rxvt_cv_func_xlocale+set}" = set; then : 7282if ${rxvt_cv_func_xlocale+:} false; then :
7286 $as_echo_n "(cached) " >&6 7283 $as_echo_n "(cached) " >&6
7287else 7284else
7288 if test "$cross_compiling" = yes; then : 7285 if test "$cross_compiling" = yes; then :
7289 : 7286 :
7290else 7287else
7291 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7288 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7292/* end confdefs.h. */ 7289/* end confdefs.h. */
7290
7293#include <X11/Xlib.h> 7291 #include <X11/Xlib.h>
7294 #include <stdlib.h> 7292 #include <stdlib.h>
7295 main() { 7293 int main() {
7296 char *p; 7294 char *p;
7297 if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p) 7295 if ((p = XSetLocaleModifiers("@im=none")) != NULL && *p)
7298 exit (XSupportsLocale() ? 0 : 1); 7296 exit (XSupportsLocale() ? 0 : 1);
7299 else 7297 else
7300 exit (1);} 7298 exit (1);
7299 }
7300
7301_ACEOF 7301_ACEOF
7302if ac_fn_cxx_try_run "$LINENO"; then : 7302if ac_fn_cxx_try_run "$LINENO"; then :
7303 rxvt_cv_func_xlocale=yes 7303 rxvt_cv_func_xlocale=yes
7304else 7304else
7305 rxvt_cv_func_xlocale=no 7305 rxvt_cv_func_xlocale=no
7306fi 7306fi
7307rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ 7307rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
7308 conftest.$ac_objext conftest.beam conftest.$ac_ext 7308 conftest.$ac_objext conftest.beam conftest.$ac_ext
7315 7315
7316$as_echo "#define USE_XIM 1" >>confdefs.h 7316$as_echo "#define USE_XIM 1" >>confdefs.h
7317 7317
7318 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken XIM callback" >&5 7318 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for broken XIM callback" >&5
7319$as_echo_n "checking for broken XIM callback... " >&6; } 7319$as_echo_n "checking for broken XIM callback... " >&6; }
7320if test "${rxvt_cv_broken_ximcb+set}" = set; then : 7320if ${rxvt_cv_broken_ximcb+:} false; then :
7321 $as_echo_n "(cached) " >&6 7321 $as_echo_n "(cached) " >&6
7322else 7322else
7323 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7323 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7324/* end confdefs.h. */ 7324/* end confdefs.h. */
7325 7325
7351 fi 7351 fi
7352fi 7352fi
7353 7353
7354{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working X setlocale" >&5 7354{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working X setlocale" >&5
7355$as_echo_n "checking for working X setlocale... " >&6; } 7355$as_echo_n "checking for working X setlocale... " >&6; }
7356if test "${rxvt_cv_func_xsetlocale+set}" = set; then : 7356if ${rxvt_cv_func_xsetlocale+:} false; then :
7357 $as_echo_n "(cached) " >&6 7357 $as_echo_n "(cached) " >&6
7358else 7358else
7359 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7359 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7360/* end confdefs.h. */ 7360/* end confdefs.h. */
7361#define X_LOCALE 1 7361#define X_LOCALE 1
7386LIBS=$save_LIBS 7386LIBS=$save_LIBS
7387CFLAGS=$save_CFLAGS 7387CFLAGS=$save_CFLAGS
7388 7388
7389{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working plain setlocale" >&5 7389{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working plain setlocale" >&5
7390$as_echo_n "checking for working plain setlocale... " >&6; } 7390$as_echo_n "checking for working plain setlocale... " >&6; }
7391if test "${rxvt_cv_func_setlocale+set}" = set; then : 7391if ${rxvt_cv_func_setlocale+:} false; then :
7392 $as_echo_n "(cached) " >&6 7392 $as_echo_n "(cached) " >&6
7393else 7393else
7394 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7394 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7395/* end confdefs.h. */ 7395/* end confdefs.h. */
7396#include <clocale> 7396#include <clocale>
7418 7418
7419fi 7419fi
7420 7420
7421{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working nl_langinfo" >&5 7421{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for working nl_langinfo" >&5
7422$as_echo_n "checking for working nl_langinfo... " >&6; } 7422$as_echo_n "checking for working nl_langinfo... " >&6; }
7423if test "${rxvt_cv_func_nl_langinfo+set}" = set; then : 7423if ${rxvt_cv_func_nl_langinfo+:} false; then :
7424 $as_echo_n "(cached) " >&6 7424 $as_echo_n "(cached) " >&6
7425else 7425else
7426 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7426 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7427/* end confdefs.h. */ 7427/* end confdefs.h. */
7428#include <langinfo.h> 7428#include <langinfo.h>
7451fi 7451fi
7452 7452
7453 7453
7454{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unix-compliant filehandle passing ability" >&5 7454{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for unix-compliant filehandle passing ability" >&5
7455$as_echo_n "checking for unix-compliant filehandle passing ability... " >&6; } 7455$as_echo_n "checking for unix-compliant filehandle passing ability... " >&6; }
7456if test "${pt_cv_can_pass_fds+set}" = set; then : 7456if ${pt_cv_can_pass_fds+:} false; then :
7457 $as_echo_n "(cached) " >&6 7457 $as_echo_n "(cached) " >&6
7458else 7458else
7459 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7459 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7460/* end confdefs.h. */ 7460/* end confdefs.h. */
7461 7461
7509if test x$pt_cv_can_pass_fds = xyes; then 7509if test x$pt_cv_can_pass_fds = xyes; then
7510 7510
7511$as_echo "#define HAVE_UNIX_FDPASS 1" >>confdefs.h 7511$as_echo "#define HAVE_UNIX_FDPASS 1" >>confdefs.h
7512 7512
7513else 7513else
7514 as_fn_error "libptytty requires unix-compliant filehandle passing ability" "$LINENO" 5 7514 as_fn_error $? "libptytty requires unix-compliant filehandle passing ability" "$LINENO" 5
7515fi 7515fi
7516 7516
7517 7517
7518 7518
7519for ac_header in \ 7519for ac_header in \
7525 stropts.h \ 7525 stropts.h \
7526 7526
7527do : 7527do :
7528 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 7528 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
7529ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" 7529ac_fn_cxx_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
7530eval as_val=\$$as_ac_Header 7530if eval test \"x\$"$as_ac_Header"\" = x"yes"; then :
7531 if test "x$as_val" = x""yes; then :
7532 cat >>confdefs.h <<_ACEOF 7531 cat >>confdefs.h <<_ACEOF
7533#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 7532#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
7534_ACEOF 7533_ACEOF
7535 7534
7536fi 7535fi
7550 setresuid \ 7549 setresuid \
7551 7550
7552do : 7551do :
7553 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 7552 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
7554ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var" 7553ac_fn_cxx_check_func "$LINENO" "$ac_func" "$as_ac_var"
7555eval as_val=\$$as_ac_var
7556 if test "x$as_val" = x""yes; then : 7554if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
7557 cat >>confdefs.h <<_ACEOF 7555 cat >>confdefs.h <<_ACEOF
7558#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 7556#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
7559_ACEOF 7557_ACEOF
7560 7558
7561fi 7559fi
7562done 7560done
7563 7561
7564 7562
7565have_clone=no
7566
7567{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for /dev/ptc" >&5
7568$as_echo_n "checking for /dev/ptc... " >&6; }
7569if test -e /dev/ptc; then
7570 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7571$as_echo "yes" >&6; }
7572
7573$as_echo "#define CLONE_DEVICE \"/dev/ptc\"" >>confdefs.h
7574
7575 have_clone=yes
7576else
7577 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7578$as_echo "no" >&6; }
7579fi
7580
7581case $host in
7582 *-*-cygwin*)
7583 have_clone=yes
7584
7585$as_echo "#define CLONE_DEVICE \"/dev/ptmx\"" >>confdefs.h
7586
7587 ;;
7588 *)
7589 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for /dev/ptmx" >&5
7590$as_echo_n "checking for /dev/ptmx... " >&6; }
7591 if test -e /dev/ptmx; then
7592 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7593$as_echo "yes" >&6; }
7594
7595$as_echo "#define HAVE_DEV_PTMX 1" >>confdefs.h
7596
7597
7598$as_echo "#define CLONE_DEVICE \"/dev/ptmx\"" >>confdefs.h
7599
7600 have_clone=yes
7601 else
7602 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7603$as_echo "no" >&6; }
7604 fi
7605 ;;
7606esac
7607
7608if test x$ac_cv_func_getpt = xyes -o x$ac_cv_func_posix_openpt = xyes -o x$have_clone = xyes; then
7609 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for UNIX98 ptys" >&5 7563 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for UNIX98 ptys" >&5
7610$as_echo_n "checking for UNIX98 ptys... " >&6; } 7564$as_echo_n "checking for UNIX98 ptys... " >&6; }
7611 cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7565 cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7612/* end confdefs.h. */ 7566/* end confdefs.h. */
7613#include <stdlib.h> 7567#include <stdlib.h>
7630 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 7584 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7631$as_echo "no" >&6; } 7585$as_echo "no" >&6; }
7632fi 7586fi
7633rm -f core conftest.err conftest.$ac_objext \ 7587rm -f core conftest.err conftest.$ac_objext \
7634 conftest$ac_exeext conftest.$ac_ext 7588 conftest$ac_exeext conftest.$ac_ext
7635fi
7636 7589
7637if test -z "$unix98_pty"; then 7590if test -z "$unix98_pty"; then
7638 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing openpty" >&5 7591 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing openpty" >&5
7639$as_echo_n "checking for library containing openpty... " >&6; } 7592$as_echo_n "checking for library containing openpty... " >&6; }
7640if test "${ac_cv_search_openpty+set}" = set; then : 7593if ${ac_cv_search_openpty+:} false; then :
7641 $as_echo_n "(cached) " >&6 7594 $as_echo_n "(cached) " >&6
7642else 7595else
7643 ac_func_search_save_LIBS=$LIBS 7596 ac_func_search_save_LIBS=$LIBS
7644cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7597cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7645/* end confdefs.h. */ 7598/* end confdefs.h. */
7669 if ac_fn_cxx_try_link "$LINENO"; then : 7622 if ac_fn_cxx_try_link "$LINENO"; then :
7670 ac_cv_search_openpty=$ac_res 7623 ac_cv_search_openpty=$ac_res
7671fi 7624fi
7672rm -f core conftest.err conftest.$ac_objext \ 7625rm -f core conftest.err conftest.$ac_objext \
7673 conftest$ac_exeext 7626 conftest$ac_exeext
7674 if test "${ac_cv_search_openpty+set}" = set; then : 7627 if ${ac_cv_search_openpty+:} false; then :
7675 break 7628 break
7676fi 7629fi
7677done 7630done
7678if test "${ac_cv_search_openpty+set}" = set; then : 7631if ${ac_cv_search_openpty+:} false; then :
7679 7632
7680else 7633else
7681 ac_cv_search_openpty=no 7634 ac_cv_search_openpty=no
7682fi 7635fi
7683rm conftest.$ac_ext 7636rm conftest.$ac_ext
7697 7650
7698 7651
7699 7652
7700{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tty group" >&5 7653{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for tty group" >&5
7701$as_echo_n "checking for tty group... " >&6; } 7654$as_echo_n "checking for tty group... " >&6; }
7702if test "${pt_cv_tty_group+set}" = set; then : 7655if ${pt_cv_tty_group+:} false; then :
7703 $as_echo_n "(cached) " >&6 7656 $as_echo_n "(cached) " >&6
7704else 7657else
7705 if test "$cross_compiling" = yes; then : 7658 if test "$cross_compiling" = yes; then :
7706 pt_cv_tty_group=no 7659 pt_cv_tty_group=no
7707else 7660else
7711#include <sys/types.h> 7664#include <sys/types.h>
7712#include <sys/stat.h> 7665#include <sys/stat.h>
7713#include <unistd.h> 7666#include <unistd.h>
7714#include <grp.h> 7667#include <grp.h>
7715 7668
7716main() 7669int main()
7717{ 7670{
7718 struct stat st; 7671 struct stat st;
7719 struct group *gr; 7672 struct group *gr;
7720 char *tty; 7673 char *tty;
7721 gr = getgrnam("tty"); 7674 gr = getgrnam("tty");
7745 7698
7746$as_echo "#define TTY_GID_SUPPORT 1" >>confdefs.h 7699$as_echo "#define TTY_GID_SUPPORT 1" >>confdefs.h
7747 7700
7748fi 7701fi
7749 7702
7750if test x$support_xft = xyes; then 7703if test x$support_xft = xyes || test x$support_inheritpixmap = xyes; then
7704 rxvt_have_xrender=no
7751 # Extract the first word of "pkg-config", so it can be a program name with args. 7705 # Extract the first word of "pkg-config", so it can be a program name with args.
7752set dummy pkg-config; ac_word=$2 7706set dummy pkg-config; ac_word=$2
7753{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 7707{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7754$as_echo_n "checking for $ac_word... " >&6; } 7708$as_echo_n "checking for $ac_word... " >&6; }
7755if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : 7709if ${ac_cv_path_PKG_CONFIG+:} false; then :
7756 $as_echo_n "(cached) " >&6 7710 $as_echo_n "(cached) " >&6
7757else 7711else
7758 case $PKG_CONFIG in 7712 case $PKG_CONFIG in
7759 [\\/]* | ?:[\\/]*) 7713 [\\/]* | ?:[\\/]*)
7760 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. 7714 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
7787 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 7741 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7788$as_echo "no" >&6; } 7742$as_echo "no" >&6; }
7789fi 7743fi
7790 7744
7791 7745
7746 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xrender; then
7747 X_LIBS="`$PKG_CONFIG xrender --libs` $X_LIBS"
7748 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xrender --cflags`"
7749 rxvt_have_xrender=yes
7750
7751 save_LIBS="$LIBS"
7752 LIBS="$LIBS $X_LIBS"
7753 ac_fn_cxx_check_header_mongrel "$LINENO" "X11/extensions/Xrender.h" "ac_cv_header_X11_extensions_Xrender_h" "$ac_includes_default"
7754if test "x$ac_cv_header_X11_extensions_Xrender_h" = xyes; then :
7755
7756else
7757 rxvt_have_xrender=no
7758fi
7759
7760
7761 ac_fn_cxx_check_func "$LINENO" "XRenderFindStandardFormat" "ac_cv_func_XRenderFindStandardFormat"
7762if test "x$ac_cv_func_XRenderFindStandardFormat" = xyes; then :
7763
7764else
7765 rxvt_have_xrender=no
7766fi
7767
7768 LIBS="$save_LIBS"
7769 fi
7770fi
7771
7772if test x$support_xft = xyes && test x$rxvt_have_xrender = xyes; then
7773 # Extract the first word of "pkg-config", so it can be a program name with args.
7774set dummy pkg-config; ac_word=$2
7775{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7776$as_echo_n "checking for $ac_word... " >&6; }
7777if ${ac_cv_path_PKG_CONFIG+:} false; then :
7778 $as_echo_n "(cached) " >&6
7779else
7780 case $PKG_CONFIG in
7781 [\\/]* | ?:[\\/]*)
7782 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
7783 ;;
7784 *)
7785 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7786for as_dir in $PATH
7787do
7788 IFS=$as_save_IFS
7789 test -z "$as_dir" && as_dir=.
7790 for ac_exec_ext in '' $ac_executable_extensions; do
7791 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7792 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
7793 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7794 break 2
7795 fi
7796done
7797 done
7798IFS=$as_save_IFS
7799
7800 test -z "$ac_cv_path_PKG_CONFIG" && ac_cv_path_PKG_CONFIG="no"
7801 ;;
7802esac
7803fi
7804PKG_CONFIG=$ac_cv_path_PKG_CONFIG
7805if test -n "$PKG_CONFIG"; then
7806 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
7807$as_echo "$PKG_CONFIG" >&6; }
7808else
7809 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7810$as_echo "no" >&6; }
7811fi
7812
7813
7792 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then 7814 if test $PKG_CONFIG != no && $PKG_CONFIG --exists xft; then
7793 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS" 7815 X_LIBS="`$PKG_CONFIG xft --libs` $X_LIBS"
7794 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`" 7816 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG xft --cflags`"
7795 else 7817 else
7796 # Extract the first word of "xft-config", so it can be a program name with args. 7818 # Extract the first word of "xft-config", so it can be a program name with args.
7797set dummy xft-config; ac_word=$2 7819set dummy xft-config; ac_word=$2
7798{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 7820{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7799$as_echo_n "checking for $ac_word... " >&6; } 7821$as_echo_n "checking for $ac_word... " >&6; }
7800if test "${ac_cv_path_XFT_CONFIG+set}" = set; then : 7822if ${ac_cv_path_XFT_CONFIG+:} false; then :
7801 $as_echo_n "(cached) " >&6 7823 $as_echo_n "(cached) " >&6
7802else 7824else
7803 case $XFT_CONFIG in 7825 case $XFT_CONFIG in
7804 [\\/]* | ?:[\\/]*) 7826 [\\/]* | ?:[\\/]*)
7805 ac_cv_path_XFT_CONFIG="$XFT_CONFIG" # Let the user override the test with a path. 7827 ac_cv_path_XFT_CONFIG="$XFT_CONFIG" # Let the user override the test with a path.
7838 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS" 7860 X_LIBS="`$XFT_CONFIG --libs` $X_LIBS"
7839 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`" 7861 CPPFLAGS="$CPPFLAGS `$XFT_CONFIG --cflags`"
7840 fi 7862 fi
7841 fi 7863 fi
7842 7864
7865 if test $PKG_CONFIG != no && $PKG_CONFIG --exists fontconfig; then
7866 X_LIBS="`$PKG_CONFIG fontconfig --libs` $X_LIBS"
7867 CPPFLAGS="$CPPFLAGS `$PKG_CONFIG fontconfig --cflags`"
7868 fi
7869
7843 save_LIBS="$LIBS" 7870 save_LIBS="$LIBS"
7844 LIBS="$LIBS $X_LIBS" 7871 LIBS="$LIBS $X_LIBS"
7845 for ac_header in X11/Xft/Xft.h 7872 for ac_header in X11/Xft/Xft.h
7846do : 7873do :
7847 ac_fn_cxx_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default" 7874 ac_fn_cxx_check_header_mongrel "$LINENO" "X11/Xft/Xft.h" "ac_cv_header_X11_Xft_Xft_h" "$ac_includes_default"
7848if test "x$ac_cv_header_X11_Xft_Xft_h" = x""yes; then : 7875if test "x$ac_cv_header_X11_Xft_Xft_h" = xyes; then :
7849 cat >>confdefs.h <<_ACEOF 7876 cat >>confdefs.h <<_ACEOF
7850#define HAVE_X11_XFT_XFT_H 1 7877#define HAVE_X11_XFT_XFT_H 1
7851_ACEOF 7878_ACEOF
7852 7879
7853else 7880else
7856 7883
7857done 7884done
7858 7885
7859 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftDrawString32 in -lXft" >&5 7886 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for XftDrawString32 in -lXft" >&5
7860$as_echo_n "checking for XftDrawString32 in -lXft... " >&6; } 7887$as_echo_n "checking for XftDrawString32 in -lXft... " >&6; }
7861if test "${ac_cv_lib_Xft_XftDrawString32+set}" = set; then : 7888if ${ac_cv_lib_Xft_XftDrawString32+:} false; then :
7862 $as_echo_n "(cached) " >&6 7889 $as_echo_n "(cached) " >&6
7863else 7890else
7864 ac_check_lib_save_LIBS=$LIBS 7891 ac_check_lib_save_LIBS=$LIBS
7865LIBS="-lXft $LIBS" 7892LIBS="-lXft $LIBS"
7866cat confdefs.h - <<_ACEOF >conftest.$ac_ext 7893cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7890 conftest$ac_exeext conftest.$ac_ext 7917 conftest$ac_exeext conftest.$ac_ext
7891LIBS=$ac_check_lib_save_LIBS 7918LIBS=$ac_check_lib_save_LIBS
7892fi 7919fi
7893{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftDrawString32" >&5 7920{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_Xft_XftDrawString32" >&5
7894$as_echo "$ac_cv_lib_Xft_XftDrawString32" >&6; } 7921$as_echo "$ac_cv_lib_Xft_XftDrawString32" >&6; }
7895if test "x$ac_cv_lib_Xft_XftDrawString32" = x""yes; then : 7922if test "x$ac_cv_lib_Xft_XftDrawString32" = xyes; then :
7896 : 7923 :
7897else 7924else
7898 support_xft=no 7925 support_xft=no
7899fi 7926fi
7900 7927
7928 for ac_header in fontconfig/fontconfig.h
7929do :
7930 ac_fn_cxx_check_header_mongrel "$LINENO" "fontconfig/fontconfig.h" "ac_cv_header_fontconfig_fontconfig_h" "$ac_includes_default"
7931if test "x$ac_cv_header_fontconfig_fontconfig_h" = xyes; then :
7932 cat >>confdefs.h <<_ACEOF
7933#define HAVE_FONTCONFIG_FONTCONFIG_H 1
7934_ACEOF
7935
7936else
7937 support_xft=no
7938fi
7939
7940done
7941
7942 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FcPatternGet in -lfontconfig" >&5
7943$as_echo_n "checking for FcPatternGet in -lfontconfig... " >&6; }
7944if ${ac_cv_lib_fontconfig_FcPatternGet+:} false; then :
7945 $as_echo_n "(cached) " >&6
7946else
7947 ac_check_lib_save_LIBS=$LIBS
7948LIBS="-lfontconfig $LIBS"
7949cat confdefs.h - <<_ACEOF >conftest.$ac_ext
7950/* end confdefs.h. */
7951
7952/* Override any GCC internal prototype to avoid an error.
7953 Use char because int might match the return type of a GCC
7954 builtin and then its argument prototype would still apply. */
7955#ifdef __cplusplus
7956extern "C"
7957#endif
7958char FcPatternGet ();
7959int
7960main ()
7961{
7962return FcPatternGet ();
7963 ;
7964 return 0;
7965}
7966_ACEOF
7967if ac_fn_cxx_try_link "$LINENO"; then :
7968 ac_cv_lib_fontconfig_FcPatternGet=yes
7969else
7970 ac_cv_lib_fontconfig_FcPatternGet=no
7971fi
7972rm -f core conftest.err conftest.$ac_objext \
7973 conftest$ac_exeext conftest.$ac_ext
7974LIBS=$ac_check_lib_save_LIBS
7975fi
7976{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_fontconfig_FcPatternGet" >&5
7977$as_echo "$ac_cv_lib_fontconfig_FcPatternGet" >&6; }
7978if test "x$ac_cv_lib_fontconfig_FcPatternGet" = xyes; then :
7979 :
7980else
7981 support_xft=no
7982fi
7983
7901 LIBS="$save_LIBS" 7984 LIBS="$save_LIBS"
7902 7985
7903 if test x$support_xft = xyes; then 7986 if test x$support_xft = xyes; then
7904 7987
7905$as_echo "#define XFT 1" >>confdefs.h 7988$as_echo "#define XFT 1" >>confdefs.h
7925 8008
7926$as_echo "#define OFF_FOCUS_FADING 1" >>confdefs.h 8009$as_echo "#define OFF_FOCUS_FADING 1" >>confdefs.h
7927 8010
7928fi 8011fi
7929if test x$support_inheritpixmap = xyes; then 8012if test x$support_inheritpixmap = xyes; then
8013 if test x$rxvt_have_xrender = xyes; then
8014 LIBS="$LIBS -lm"
8015
8016$as_echo "#define XRENDER 1" >>confdefs.h
8017
8018 fi
7930 8019
7931$as_echo "#define ENABLE_TRANSPARENCY 1" >>confdefs.h 8020$as_echo "#define ENABLE_TRANSPARENCY 1" >>confdefs.h
7932 8021
7933fi 8022fi
7934if test x$support_keepscrolling = xno; then 8023if test x$support_keepscrolling = xno; then
7954if test x$support_mouseslipwheel = xyes; then 8043if test x$support_mouseslipwheel = xyes; then
7955 8044
7956$as_echo "#define MOUSE_SLIP_WHEELING 1" >>confdefs.h 8045$as_echo "#define MOUSE_SLIP_WHEELING 1" >>confdefs.h
7957 8046
7958fi 8047fi
7959
7960 8048
7961scrolltypes=plain 8049scrolltypes=plain
7962 8050
7963$as_echo "#define PLAIN_SCROLLBAR 1" >>confdefs.h 8051$as_echo "#define PLAIN_SCROLLBAR 1" >>confdefs.h
7964 8052
8034if test x$support_perl = xyes; then 8122if test x$support_perl = xyes; then
8035 # Extract the first word of "perl5", so it can be a program name with args. 8123 # Extract the first word of "perl5", so it can be a program name with args.
8036set dummy perl5; ac_word=$2 8124set dummy perl5; ac_word=$2
8037{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8125{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8038$as_echo_n "checking for $ac_word... " >&6; } 8126$as_echo_n "checking for $ac_word... " >&6; }
8039if test "${ac_cv_path_PERL+set}" = set; then : 8127if ${ac_cv_path_PERL+:} false; then :
8040 $as_echo_n "(cached) " >&6 8128 $as_echo_n "(cached) " >&6
8041else 8129else
8042 case $PERL in 8130 case $PERL in
8043 [\\/]* | ?:[\\/]*) 8131 [\\/]* | ?:[\\/]*)
8044 ac_cv_path_PERL="$PERL" # Let the user override the test with a path. 8132 ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
8074 8162
8075 # Extract the first word of "perl", so it can be a program name with args. 8163 # Extract the first word of "perl", so it can be a program name with args.
8076set dummy perl; ac_word=$2 8164set dummy perl; ac_word=$2
8077{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 8165{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8078$as_echo_n "checking for $ac_word... " >&6; } 8166$as_echo_n "checking for $ac_word... " >&6; }
8079if test "${ac_cv_path_PERL+set}" = set; then : 8167if ${ac_cv_path_PERL+:} false; then :
8080 $as_echo_n "(cached) " >&6 8168 $as_echo_n "(cached) " >&6
8081else 8169else
8082 case $PERL in 8170 case $PERL in
8083 [\\/]* | ?:[\\/]*) 8171 [\\/]* | ?:[\\/]*)
8084 ac_cv_path_PERL="$PERL" # Let the user override the test with a path. 8172 ac_cv_path_PERL="$PERL" # Let the user override the test with a path.
8158 PERL_O=rxvtperl.o 8246 PERL_O=rxvtperl.o
8159 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`" 8247 PERLFLAGS="`$PERL -MExtUtils::Embed -e ccopts`"
8160 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`" 8248 PERLLIB="`$PERL -MExtUtils::Embed -e ldopts`"
8161 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`" 8249 PERLPRIVLIBEXP="`$PERL -MConfig -e 'print $Config{privlibexp}'`"
8162 else 8250 else
8163 as_fn_error "no, unable to link" "$LINENO" 5 8251 as_fn_error $? "no, unable to link" "$LINENO" 5
8164 fi 8252 fi
8165 else 8253 else
8166 as_fn_error "no working perl found, or perl not version >= 5.8" "$LINENO" 5 8254 as_fn_error $? "no working perl found, or perl not version >= 5.8" "$LINENO" 5
8167 fi 8255 fi
8168fi 8256fi
8169 8257
8170 8258
8171 8259
8238 t end 8326 t end
8239 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ 8327 s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
8240 :end' >>confcache 8328 :end' >>confcache
8241if diff "$cache_file" confcache >/dev/null 2>&1; then :; else 8329if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
8242 if test -w "$cache_file"; then 8330 if test -w "$cache_file"; then
8243 test "x$cache_file" != "x/dev/null" && 8331 if test "x$cache_file" != "x/dev/null"; then
8244 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 8332 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5
8245$as_echo "$as_me: updating cache $cache_file" >&6;} 8333$as_echo "$as_me: updating cache $cache_file" >&6;}
8334 if test ! -f "$cache_file" || test -h "$cache_file"; then
8246 cat confcache >$cache_file 8335 cat confcache >"$cache_file"
8336 else
8337 case $cache_file in #(
8338 */* | ?:*)
8339 mv -f confcache "$cache_file"$$ &&
8340 mv -f "$cache_file"$$ "$cache_file" ;; #(
8341 *)
8342 mv -f confcache "$cache_file" ;;
8343 esac
8344 fi
8345 fi
8247 else 8346 else
8248 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 8347 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5
8249$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 8348$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
8250 fi 8349 fi
8251fi 8350fi
8257 8356
8258DEFS=-DHAVE_CONFIG_H 8357DEFS=-DHAVE_CONFIG_H
8259 8358
8260ac_libobjs= 8359ac_libobjs=
8261ac_ltlibobjs= 8360ac_ltlibobjs=
8361U=
8262for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue 8362for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
8263 # 1. Remove the extension, and $U if already installed. 8363 # 1. Remove the extension, and $U if already installed.
8264 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 8364 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
8265 ac_i=`$as_echo "$ac_i" | sed "$ac_script"` 8365 ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
8266 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 8366 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
8272 8372
8273LTLIBOBJS=$ac_ltlibobjs 8373LTLIBOBJS=$ac_ltlibobjs
8274 8374
8275 8375
8276 8376
8277: ${CONFIG_STATUS=./config.status} 8377: "${CONFIG_STATUS=./config.status}"
8278ac_write_fail=0 8378ac_write_fail=0
8279ac_clean_files_save=$ac_clean_files 8379ac_clean_files_save=$ac_clean_files
8280ac_clean_files="$ac_clean_files $CONFIG_STATUS" 8380ac_clean_files="$ac_clean_files $CONFIG_STATUS"
8281{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 8381{ $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5
8282$as_echo "$as_me: creating $CONFIG_STATUS" >&6;} 8382$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
8373# (If _AS_PATH_WALK were called with IFS unset, it would disable word 8473# (If _AS_PATH_WALK were called with IFS unset, it would disable word
8374# splitting by setting IFS to empty value.) 8474# splitting by setting IFS to empty value.)
8375IFS=" "" $as_nl" 8475IFS=" "" $as_nl"
8376 8476
8377# Find who we are. Look in the path if we contain no directory separator. 8477# Find who we are. Look in the path if we contain no directory separator.
8478as_myself=
8378case $0 in #(( 8479case $0 in #((
8379 *[\\/]* ) as_myself=$0 ;; 8480 *[\\/]* ) as_myself=$0 ;;
8380 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 8481 *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8381for as_dir in $PATH 8482for as_dir in $PATH
8382do 8483do
8418 8519
8419# CDPATH. 8520# CDPATH.
8420(unset CDPATH) >/dev/null 2>&1 && unset CDPATH 8521(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
8421 8522
8422 8523
8423# as_fn_error ERROR [LINENO LOG_FD] 8524# as_fn_error STATUS ERROR [LINENO LOG_FD]
8424# --------------------------------- 8525# ----------------------------------------
8425# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are 8526# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
8426# provided, also output the error to LOG_FD, referencing LINENO. Then exit the 8527# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
8427# script with status $?, using 1 if that was 0. 8528# script with STATUS, using 1 if that was 0.
8428as_fn_error () 8529as_fn_error ()
8429{ 8530{
8430 as_status=$?; test $as_status -eq 0 && as_status=1 8531 as_status=$1; test $as_status -eq 0 && as_status=1
8431 if test "$3"; then 8532 if test "$4"; then
8432 as_lineno=${as_lineno-"$2"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 8533 as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
8433 $as_echo "$as_me:${as_lineno-$LINENO}: error: $1" >&$3 8534 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
8434 fi 8535 fi
8435 $as_echo "$as_me: error: $1" >&2 8536 $as_echo "$as_me: error: $2" >&2
8436 as_fn_exit $as_status 8537 as_fn_exit $as_status
8437} # as_fn_error 8538} # as_fn_error
8438 8539
8439 8540
8440# as_fn_set_status STATUS 8541# as_fn_set_status STATUS
8626 } 8727 }
8627 s/.*/./; q'` 8728 s/.*/./; q'`
8628 test -d "$as_dir" && break 8729 test -d "$as_dir" && break
8629 done 8730 done
8630 test -z "$as_dirs" || eval "mkdir $as_dirs" 8731 test -z "$as_dirs" || eval "mkdir $as_dirs"
8631 } || test -d "$as_dir" || as_fn_error "cannot create directory $as_dir" 8732 } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
8632 8733
8633 8734
8634} # as_fn_mkdir_p 8735} # as_fn_mkdir_p
8635if mkdir -p . 2>/dev/null; then 8736if mkdir -p . 2>/dev/null; then
8636 as_mkdir_p='mkdir -p "$as_dir"' 8737 as_mkdir_p='mkdir -p "$as_dir"'
8680# Save the log message, to keep $0 and so on meaningful, and to 8781# Save the log message, to keep $0 and so on meaningful, and to
8681# report actual input values of CONFIG_FILES etc. instead of their 8782# report actual input values of CONFIG_FILES etc. instead of their
8682# values after options handling. 8783# values after options handling.
8683ac_log=" 8784ac_log="
8684This file was extended by $as_me, which was 8785This file was extended by $as_me, which was
8685generated by GNU Autoconf 2.65. Invocation command line was 8786generated by GNU Autoconf 2.68. Invocation command line was
8686 8787
8687 CONFIG_FILES = $CONFIG_FILES 8788 CONFIG_FILES = $CONFIG_FILES
8688 CONFIG_HEADERS = $CONFIG_HEADERS 8789 CONFIG_HEADERS = $CONFIG_HEADERS
8689 CONFIG_LINKS = $CONFIG_LINKS 8790 CONFIG_LINKS = $CONFIG_LINKS
8690 CONFIG_COMMANDS = $CONFIG_COMMANDS 8791 CONFIG_COMMANDS = $CONFIG_COMMANDS
8742_ACEOF 8843_ACEOF
8743cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 8844cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
8744ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" 8845ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
8745ac_cs_version="\\ 8846ac_cs_version="\\
8746config.status 8847config.status
8747configured by $0, generated by GNU Autoconf 2.65, 8848configured by $0, generated by GNU Autoconf 2.68,
8748 with options \\"\$ac_cs_config\\" 8849 with options \\"\$ac_cs_config\\"
8749 8850
8750Copyright (C) 2009 Free Software Foundation, Inc. 8851Copyright (C) 2010 Free Software Foundation, Inc.
8751This config.status script is free software; the Free Software Foundation 8852This config.status script is free software; the Free Software Foundation
8752gives unlimited permission to copy, distribute and modify it." 8853gives unlimited permission to copy, distribute and modify it."
8753 8854
8754ac_pwd='$ac_pwd' 8855ac_pwd='$ac_pwd'
8755srcdir='$srcdir' 8856srcdir='$srcdir'
8761# The default lists apply if the user does not specify any file. 8862# The default lists apply if the user does not specify any file.
8762ac_need_defaults=: 8863ac_need_defaults=:
8763while test $# != 0 8864while test $# != 0
8764do 8865do
8765 case $1 in 8866 case $1 in
8766 --*=*) 8867 --*=?*)
8767 ac_option=`expr "X$1" : 'X\([^=]*\)='` 8868 ac_option=`expr "X$1" : 'X\([^=]*\)='`
8768 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` 8869 ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
8870 ac_shift=:
8871 ;;
8872 --*=)
8873 ac_option=`expr "X$1" : 'X\([^=]*\)='`
8874 ac_optarg=
8769 ac_shift=: 8875 ac_shift=:
8770 ;; 8876 ;;
8771 *) 8877 *)
8772 ac_option=$1 8878 ac_option=$1
8773 ac_optarg=$2 8879 ac_optarg=$2
8787 debug=: ;; 8893 debug=: ;;
8788 --file | --fil | --fi | --f ) 8894 --file | --fil | --fi | --f )
8789 $ac_shift 8895 $ac_shift
8790 case $ac_optarg in 8896 case $ac_optarg in
8791 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 8897 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
8898 '') as_fn_error $? "missing file argument" ;;
8792 esac 8899 esac
8793 as_fn_append CONFIG_FILES " '$ac_optarg'" 8900 as_fn_append CONFIG_FILES " '$ac_optarg'"
8794 ac_need_defaults=false;; 8901 ac_need_defaults=false;;
8795 --header | --heade | --head | --hea ) 8902 --header | --heade | --head | --hea )
8796 $ac_shift 8903 $ac_shift
8799 esac 8906 esac
8800 as_fn_append CONFIG_HEADERS " '$ac_optarg'" 8907 as_fn_append CONFIG_HEADERS " '$ac_optarg'"
8801 ac_need_defaults=false;; 8908 ac_need_defaults=false;;
8802 --he | --h) 8909 --he | --h)
8803 # Conflict between --help and --header 8910 # Conflict between --help and --header
8804 as_fn_error "ambiguous option: \`$1' 8911 as_fn_error $? "ambiguous option: \`$1'
8805Try \`$0 --help' for more information.";; 8912Try \`$0 --help' for more information.";;
8806 --help | --hel | -h ) 8913 --help | --hel | -h )
8807 $as_echo "$ac_cs_usage"; exit ;; 8914 $as_echo "$ac_cs_usage"; exit ;;
8808 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 8915 -q | -quiet | --quiet | --quie | --qui | --qu | --q \
8809 | -silent | --silent | --silen | --sile | --sil | --si | --s) 8916 | -silent | --silent | --silen | --sile | --sil | --si | --s)
8810 ac_cs_silent=: ;; 8917 ac_cs_silent=: ;;
8811 8918
8812 # This is an error. 8919 # This is an error.
8813 -*) as_fn_error "unrecognized option: \`$1' 8920 -*) as_fn_error $? "unrecognized option: \`$1'
8814Try \`$0 --help' for more information." ;; 8921Try \`$0 --help' for more information." ;;
8815 8922
8816 *) as_fn_append ac_config_targets " $1" 8923 *) as_fn_append ac_config_targets " $1"
8817 ac_need_defaults=false ;; 8924 ac_need_defaults=false ;;
8818 8925
8862 "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.h.in" ;; 8969 "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h:config.h.in" ;;
8863 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 8970 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
8864 "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; 8971 "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
8865 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; 8972 "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;;
8866 8973
8867 *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;; 8974 *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
8868 esac 8975 esac
8869done 8976done
8870 8977
8871 8978
8872# If the user did not use the arguments to specify the items to instantiate, 8979# If the user did not use the arguments to specify the items to instantiate,
8884# Hook for its removal unless debugging. 8991# Hook for its removal unless debugging.
8885# Note that there is a small window in which the directory will not be cleaned: 8992# Note that there is a small window in which the directory will not be cleaned:
8886# after its creation but before its name has been assigned to `$tmp'. 8993# after its creation but before its name has been assigned to `$tmp'.
8887$debug || 8994$debug ||
8888{ 8995{
8889 tmp= 8996 tmp= ac_tmp=
8890 trap 'exit_status=$? 8997 trap 'exit_status=$?
8998 : "${ac_tmp:=$tmp}"
8891 { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status 8999 { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
8892' 0 9000' 0
8893 trap 'as_fn_exit 1' 1 2 13 15 9001 trap 'as_fn_exit 1' 1 2 13 15
8894} 9002}
8895# Create a (secure) tmp directory for tmp files. 9003# Create a (secure) tmp directory for tmp files.
8896 9004
8897{ 9005{
8898 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && 9006 tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
8899 test -n "$tmp" && test -d "$tmp" 9007 test -d "$tmp"
8900} || 9008} ||
8901{ 9009{
8902 tmp=./conf$$-$RANDOM 9010 tmp=./conf$$-$RANDOM
8903 (umask 077 && mkdir "$tmp") 9011 (umask 077 && mkdir "$tmp")
8904} || as_fn_error "cannot create a temporary directory in ." "$LINENO" 5 9012} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
9013ac_tmp=$tmp
8905 9014
8906# Set up the scripts for CONFIG_FILES section. 9015# Set up the scripts for CONFIG_FILES section.
8907# No need to generate them if there are no CONFIG_FILES. 9016# No need to generate them if there are no CONFIG_FILES.
8908# This happens for instance with `./config.status config.h'. 9017# This happens for instance with `./config.status config.h'.
8909if test -n "$CONFIG_FILES"; then 9018if test -n "$CONFIG_FILES"; then
8916if test "x$ac_cr" = x; then 9025if test "x$ac_cr" = x; then
8917 eval ac_cr=\$\'\\r\' 9026 eval ac_cr=\$\'\\r\'
8918fi 9027fi
8919ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 9028ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
8920if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 9029if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
8921 ac_cs_awk_cr='\r' 9030 ac_cs_awk_cr='\\r'
8922else 9031else
8923 ac_cs_awk_cr=$ac_cr 9032 ac_cs_awk_cr=$ac_cr
8924fi 9033fi
8925 9034
8926echo 'BEGIN {' >"$tmp/subs1.awk" && 9035echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
8927_ACEOF 9036_ACEOF
8928 9037
8929 9038
8930{ 9039{
8931 echo "cat >conf$$subs.awk <<_ACEOF" && 9040 echo "cat >conf$$subs.awk <<_ACEOF" &&
8932 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 9041 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
8933 echo "_ACEOF" 9042 echo "_ACEOF"
8934} >conf$$subs.sh || 9043} >conf$$subs.sh ||
8935 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 9044 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
8936ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` 9045ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
8937ac_delim='%!_!# ' 9046ac_delim='%!_!# '
8938for ac_last_try in false false false false false :; do 9047for ac_last_try in false false false false false :; do
8939 . ./conf$$subs.sh || 9048 . ./conf$$subs.sh ||
8940 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 9049 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
8941 9050
8942 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 9051 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
8943 if test $ac_delim_n = $ac_delim_num; then 9052 if test $ac_delim_n = $ac_delim_num; then
8944 break 9053 break
8945 elif $ac_last_try; then 9054 elif $ac_last_try; then
8946 as_fn_error "could not make $CONFIG_STATUS" "$LINENO" 5 9055 as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
8947 else 9056 else
8948 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 9057 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
8949 fi 9058 fi
8950done 9059done
8951rm -f conf$$subs.sh 9060rm -f conf$$subs.sh
8952 9061
8953cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 9062cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
8954cat >>"\$tmp/subs1.awk" <<\\_ACAWK && 9063cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK &&
8955_ACEOF 9064_ACEOF
8956sed -n ' 9065sed -n '
8957h 9066h
8958s/^/S["/; s/!.*/"]=/ 9067s/^/S["/; s/!.*/"]=/
8959p 9068p
8997} 9106}
8998' >>$CONFIG_STATUS || ac_write_fail=1 9107' >>$CONFIG_STATUS || ac_write_fail=1
8999rm -f conf$$subs.awk 9108rm -f conf$$subs.awk
9000cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 9109cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
9001_ACAWK 9110_ACAWK
9002cat >>"\$tmp/subs1.awk" <<_ACAWK && 9111cat >>"\$ac_tmp/subs1.awk" <<_ACAWK &&
9003 for (key in S) S_is_set[key] = 1 9112 for (key in S) S_is_set[key] = 1
9004 FS = "" 9113 FS = ""
9005 9114
9006} 9115}
9007{ 9116{
9029cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 9138cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
9030if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then 9139if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
9031 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 9140 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
9032else 9141else
9033 cat 9142 cat
9034fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ 9143fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
9035 || as_fn_error "could not setup config files machinery" "$LINENO" 5 9144 || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
9036_ACEOF 9145_ACEOF
9037 9146
9038# VPATH may cause trouble with some makes, so we remove $(srcdir), 9147# VPATH may cause trouble with some makes, so we remove sole $(srcdir),
9039# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and 9148# ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and
9040# trailing colons and then remove the whole line if VPATH becomes empty 9149# trailing colons and then remove the whole line if VPATH becomes empty
9041# (actually we leave an empty line to preserve line numbers). 9150# (actually we leave an empty line to preserve line numbers).
9042if test "x$srcdir" = x.; then 9151if test "x$srcdir" = x.; then
9043 ac_vpsub='/^[ ]*VPATH[ ]*=/{ 9152 ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{
9153h
9154s///
9155s/^/:/
9156s/[ ]*$/:/
9044s/:*\$(srcdir):*/:/ 9157s/:\$(srcdir):/:/g
9045s/:*\${srcdir}:*/:/ 9158s/:\${srcdir}:/:/g
9046s/:*@srcdir@:*/:/ 9159s/:@srcdir@:/:/g
9047s/^\([^=]*=[ ]*\):*/\1/ 9160s/^:*//
9048s/:*$// 9161s/:*$//
9162x
9163s/\(=[ ]*\).*/\1/
9164G
9165s/\n//
9049s/^[^=]*=[ ]*$// 9166s/^[^=]*=[ ]*$//
9050}' 9167}'
9051fi 9168fi
9052 9169
9053cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 9170cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
9055 9172
9056# Set up the scripts for CONFIG_HEADERS section. 9173# Set up the scripts for CONFIG_HEADERS section.
9057# No need to generate them if there are no CONFIG_HEADERS. 9174# No need to generate them if there are no CONFIG_HEADERS.
9058# This happens for instance with `./config.status Makefile'. 9175# This happens for instance with `./config.status Makefile'.
9059if test -n "$CONFIG_HEADERS"; then 9176if test -n "$CONFIG_HEADERS"; then
9060cat >"$tmp/defines.awk" <<\_ACAWK || 9177cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
9061BEGIN { 9178BEGIN {
9062_ACEOF 9179_ACEOF
9063 9180
9064# Transform confdefs.h into an awk script `defines.awk', embedded as 9181# Transform confdefs.h into an awk script `defines.awk', embedded as
9065# here-document in config.status, that substitutes the proper values into 9182# here-document in config.status, that substitutes the proper values into
9067 9184
9068# Create a delimiter string that does not exist in confdefs.h, to ease 9185# Create a delimiter string that does not exist in confdefs.h, to ease
9069# handling of long lines. 9186# handling of long lines.
9070ac_delim='%!_!# ' 9187ac_delim='%!_!# '
9071for ac_last_try in false false :; do 9188for ac_last_try in false false :; do
9072 ac_t=`sed -n "/$ac_delim/p" confdefs.h` 9189 ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
9073 if test -z "$ac_t"; then 9190 if test -z "$ac_tt"; then
9074 break 9191 break
9075 elif $ac_last_try; then 9192 elif $ac_last_try; then
9076 as_fn_error "could not make $CONFIG_HEADERS" "$LINENO" 5 9193 as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5
9077 else 9194 else
9078 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 9195 ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
9079 fi 9196 fi
9080done 9197done
9081 9198
9156} 9273}
9157{ print } 9274{ print }
9158_ACAWK 9275_ACAWK
9159_ACEOF 9276_ACEOF
9160cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 9277cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
9161 as_fn_error "could not setup config headers machinery" "$LINENO" 5 9278 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
9162fi # test -n "$CONFIG_HEADERS" 9279fi # test -n "$CONFIG_HEADERS"
9163 9280
9164 9281
9165eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " 9282eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS "
9166shift 9283shift
9169 case $ac_tag in 9286 case $ac_tag in
9170 :[FHLC]) ac_mode=$ac_tag; continue;; 9287 :[FHLC]) ac_mode=$ac_tag; continue;;
9171 esac 9288 esac
9172 case $ac_mode$ac_tag in 9289 case $ac_mode$ac_tag in
9173 :[FHL]*:*);; 9290 :[FHL]*:*);;
9174 :L* | :C*:*) as_fn_error "invalid tag \`$ac_tag'" "$LINENO" 5;; 9291 :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
9175 :[FH]-) ac_tag=-:-;; 9292 :[FH]-) ac_tag=-:-;;
9176 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; 9293 :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
9177 esac 9294 esac
9178 ac_save_IFS=$IFS 9295 ac_save_IFS=$IFS
9179 IFS=: 9296 IFS=:
9188 :[FH]) 9305 :[FH])
9189 ac_file_inputs= 9306 ac_file_inputs=
9190 for ac_f 9307 for ac_f
9191 do 9308 do
9192 case $ac_f in 9309 case $ac_f in
9193 -) ac_f="$tmp/stdin";; 9310 -) ac_f="$ac_tmp/stdin";;
9194 *) # Look for the file first in the build tree, then in the source tree 9311 *) # Look for the file first in the build tree, then in the source tree
9195 # (if the path is not absolute). The absolute path cannot be DOS-style, 9312 # (if the path is not absolute). The absolute path cannot be DOS-style,
9196 # because $ac_f cannot contain `:'. 9313 # because $ac_f cannot contain `:'.
9197 test -f "$ac_f" || 9314 test -f "$ac_f" ||
9198 case $ac_f in 9315 case $ac_f in
9199 [\\/$]*) false;; 9316 [\\/$]*) false;;
9200 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 9317 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
9201 esac || 9318 esac ||
9202 as_fn_error "cannot find input file: \`$ac_f'" "$LINENO" 5;; 9319 as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
9203 esac 9320 esac
9204 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 9321 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
9205 as_fn_append ac_file_inputs " '$ac_f'" 9322 as_fn_append ac_file_inputs " '$ac_f'"
9206 done 9323 done
9207 9324
9223 sed 's/[\\\\&|]/\\\\&/g'`;; #( 9340 sed 's/[\\\\&|]/\\\\&/g'`;; #(
9224 *) ac_sed_conf_input=$configure_input;; 9341 *) ac_sed_conf_input=$configure_input;;
9225 esac 9342 esac
9226 9343
9227 case $ac_tag in 9344 case $ac_tag in
9228 *:-:* | *:-) cat >"$tmp/stdin" \ 9345 *:-:* | *:-) cat >"$ac_tmp/stdin" \
9229 || as_fn_error "could not create $ac_file" "$LINENO" 5 ;; 9346 || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
9230 esac 9347 esac
9231 ;; 9348 ;;
9232 esac 9349 esac
9233 9350
9234 ac_dir=`$as_dirname -- "$ac_file" || 9351 ac_dir=`$as_dirname -- "$ac_file" ||
9354s&@abs_builddir@&$ac_abs_builddir&;t t 9471s&@abs_builddir@&$ac_abs_builddir&;t t
9355s&@abs_top_builddir@&$ac_abs_top_builddir&;t t 9472s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
9356s&@INSTALL@&$ac_INSTALL&;t t 9473s&@INSTALL@&$ac_INSTALL&;t t
9357$ac_datarootdir_hack 9474$ac_datarootdir_hack
9358" 9475"
9359eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ 9476eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
9360 || as_fn_error "could not create $ac_file" "$LINENO" 5 9477 >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
9361 9478
9362test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 9479test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
9363 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 9480 { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
9364 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 9481 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
9482 "$ac_tmp/out"`; test -z "$ac_out"; } &&
9365 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' 9483 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
9366which seems to be undefined. Please make sure it is defined." >&5 9484which seems to be undefined. Please make sure it is defined" >&5
9367$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 9485$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
9368which seems to be undefined. Please make sure it is defined." >&2;} 9486which seems to be undefined. Please make sure it is defined" >&2;}
9369 9487
9370 rm -f "$tmp/stdin" 9488 rm -f "$ac_tmp/stdin"
9371 case $ac_file in 9489 case $ac_file in
9372 -) cat "$tmp/out" && rm -f "$tmp/out";; 9490 -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
9373 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; 9491 *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
9374 esac \ 9492 esac \
9375 || as_fn_error "could not create $ac_file" "$LINENO" 5 9493 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
9376 ;; 9494 ;;
9377 :H) 9495 :H)
9378 # 9496 #
9379 # CONFIG_HEADER 9497 # CONFIG_HEADER
9380 # 9498 #
9381 if test x"$ac_file" != x-; then 9499 if test x"$ac_file" != x-; then
9382 { 9500 {
9383 $as_echo "/* $configure_input */" \ 9501 $as_echo "/* $configure_input */" \
9384 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" 9502 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
9385 } >"$tmp/config.h" \ 9503 } >"$ac_tmp/config.h" \
9386 || as_fn_error "could not create $ac_file" "$LINENO" 5 9504 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
9387 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then 9505 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
9388 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 9506 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
9389$as_echo "$as_me: $ac_file is unchanged" >&6;} 9507$as_echo "$as_me: $ac_file is unchanged" >&6;}
9390 else 9508 else
9391 rm -f "$ac_file" 9509 rm -f "$ac_file"
9392 mv "$tmp/config.h" "$ac_file" \ 9510 mv "$ac_tmp/config.h" "$ac_file" \
9393 || as_fn_error "could not create $ac_file" "$LINENO" 5 9511 || as_fn_error $? "could not create $ac_file" "$LINENO" 5
9394 fi 9512 fi
9395 else 9513 else
9396 $as_echo "/* $configure_input */" \ 9514 $as_echo "/* $configure_input */" \
9397 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ 9515 && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
9398 || as_fn_error "could not create -" "$LINENO" 5 9516 || as_fn_error $? "could not create -" "$LINENO" 5
9399 fi 9517 fi
9400 ;; 9518 ;;
9401 9519
9402 9520
9403 esac 9521 esac
9408as_fn_exit 0 9526as_fn_exit 0
9409_ACEOF 9527_ACEOF
9410ac_clean_files=$ac_clean_files_save 9528ac_clean_files=$ac_clean_files_save
9411 9529
9412test $ac_write_fail = 0 || 9530test $ac_write_fail = 0 ||
9413 as_fn_error "write failure creating $CONFIG_STATUS" "$LINENO" 5 9531 as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5
9414 9532
9415 9533
9416# configure is writing to config.log, and then calls config.status. 9534# configure is writing to config.log, and then calls config.status.
9417# config.status does its own redirection, appending to config.log. 9535# config.status does its own redirection, appending to config.log.
9418# Unfortunately, on DOS this fails, as config.log is still kept open 9536# Unfortunately, on DOS this fails, as config.log is still kept open
9429 exec 5>/dev/null 9547 exec 5>/dev/null
9430 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false 9548 $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
9431 exec 5>>config.log 9549 exec 5>>config.log
9432 # Use ||, not &&, to avoid exiting from the if with $? = 1, which 9550 # Use ||, not &&, to avoid exiting from the if with $? = 1, which
9433 # would make configure fail if this is the last instruction. 9551 # would make configure fail if this is the last instruction.
9434 $ac_cs_success || as_fn_exit $? 9552 $ac_cs_success || as_fn_exit 1
9435fi 9553fi
9436if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 9554if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
9437 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 9555 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
9438$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 9556$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
9439fi 9557fi
9459if test x$RESFALLBACK != x; then 9577if test x$RESFALLBACK != x; then
9460 echo " resource class fallback: $RESFALLBACK" 9578 echo " resource class fallback: $RESFALLBACK"
9461fi 9579fi
9462echo 9580echo
9463echo " embedded perl: $support_perl" 9581echo " embedded perl: $support_perl"
9464echo " libafterimage: $support_afterimage" 9582echo " image library: $image_lib"
9465echo 9583echo
9466if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then 9584if test x$support_xim = xyes -a x$rxvt_cv_func_xlocale = xno; then
9467 echo ".----------------------------------------------------------------." 9585 echo ".----------------------------------------------------------------."
9468 echo ". WARNING: --enable-xim was specified however the locale support ." 9586 echo ". WARNING: --enable-xim was specified however the locale support ."
9469 echo ". functions could not be found. ." 9587 echo ". functions could not be found. ."

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines