Changeset 06b2d12
- Timestamp:
- Aug 26, 2012, 6:48:21 PM (13 years ago)
- Branches:
- clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 68a11fb
- Parents:
- 6ecbe33
- Location:
- patches
- Files:
-
- 5 added
- 4 deleted
- 1 moved
-
binutils-2.22-branch_update-1.patch (added)
-
flex-2.5.35-gcc44-1.patch (deleted)
-
gcc-4.6.3-branch_update-1.patch (added)
-
iproute2-3.3.0-libdir-1.patch (deleted)
-
iproute2-3.4.0-libdir-1.patch (added)
-
ncurses-5.9-branch_update-4.patch (moved) (moved from patches/ncurses-5.9-branch_update-3.patch ) (1599 diffs)
-
perl-5.14.2-Configure_multilib-1.patch (deleted)
-
perl-5.14.2-libc-1.patch (deleted)
-
perl-5.16.1-Configure_multilib-1.patch (added)
-
perl-5.16.1-libc-1.patch (added)
Legend:
- Unmodified
- Added
- Removed
-
patches/ncurses-5.9-branch_update-4.patch
r6ecbe33 r06b2d12 1 1 Submitted By: Jonathan Norman (jonathan at bluesquarelinux dot co dot uk) 2 Date: 2012-0 2-162 Date: 2012-08-25 3 3 Initial Package Version: 5.9 4 4 Origin: Upstream 5 5 Upstream Status: Applied 6 Description: Contains all upstream patches up to 5.9-201 112246 Description: Contains all upstream patches up to 5.9-20120616 7 7 8 8 diff -Naur ncurses-5.9.orig/Ada95/aclocal.m4 ncurses-5.9/Ada95/aclocal.m4 9 --- ncurses-5.9.orig/Ada95/aclocal.m4 2012-0 2-16 18:25:12.619808985+000010 +++ ncurses-5.9/Ada95/aclocal.m4 2012-0 2-16 18:25:13.167823445+00009 --- ncurses-5.9.orig/Ada95/aclocal.m4 2012-08-25 19:57:59.386567678 +0000 10 +++ ncurses-5.9/Ada95/aclocal.m4 2012-08-25 19:58:02.099888180 +0000 11 11 @@ -1,5 +1,5 @@ 12 12 dnl*************************************************************************** … … 21 21 dnl 22 22 -dnl $Id: aclocal.m4,v 1.24 2011/03/31 23:32:36 tom Exp $ 23 +dnl $Id: aclocal.m4,v 1. 44 2012/01/22 00:33:42tom Exp $23 +dnl $Id: aclocal.m4,v 1.52 2012/08/04 18:12:47 tom Exp $ 24 24 dnl Macros used in NCURSES Ada95 auto-configuration script. 25 25 dnl … … 94 94 cf_cv_ansi_cc=no 95 95 cf_save_CFLAGS="$CFLAGS" 96 @@ -504,7 +550,7 @@ 96 @@ -413,6 +459,35 @@ 97 AC_SUBST(ARFLAGS) 98 ]) 99 dnl --------------------------------------------------------------------------- 100 +dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31 101 +dnl -------------- 102 +dnl Allow user to disable a normally-on option. 103 +AC_DEFUN([CF_ARG_DISABLE], 104 +[CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl 105 +dnl --------------------------------------------------------------------------- 106 +dnl CF_ARG_OPTION version: 4 updated: 2010/05/26 05:38:42 107 +dnl ------------- 108 +dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus 109 +dnl values. 110 +dnl 111 +dnl Parameters: 112 +dnl $1 = option name 113 +dnl $2 = help-string 114 +dnl $3 = action to perform if option is not default 115 +dnl $4 = action if perform if option is default 116 +dnl $5 = default option value (either 'yes' or 'no') 117 +AC_DEFUN([CF_ARG_OPTION], 118 +[AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes) 119 + if test "$enableval" != "$5" ; then 120 +ifelse([$3],,[ :]dnl 121 +,[ $3]) ifelse([$4],,,[ 122 + else 123 + $4]) 124 + fi],[enableval=$5 ifelse([$4],,,[ 125 + $4 126 +])dnl 127 + ])])dnl 128 +dnl --------------------------------------------------------------------------- 129 dnl CF_BUILD_CC version: 6 updated: 2006/10/14 15:23:15 130 dnl ----------- 131 dnl If we're cross-compiling, allow the user to override the tools and their 132 @@ -504,7 +579,7 @@ 97 133 AC_SUBST(BUILD_OBJEXT) 98 134 ])dnl … … 103 139 dnl Determine the default configuration into which we'll install ncurses. This 104 140 dnl can be overridden by the user's command-line options. There's two items to 105 @@ -522,7 +5 68,7 @@141 @@ -522,7 +597,7 @@ 106 142 if test "x$prefix" = "xNONE" ; then 107 143 case "$cf_cv_system_name" in … … 112 148 ;; 113 149 *) prefix=$ac_default_prefix 114 @@ -593,7 +6 39,7@@150 @@ -593,7 +668,40 @@ 115 151 fi 116 152 ])dnl 117 153 dnl --------------------------------------------------------------------------- 118 154 -dnl CF_CURSES_HEADER version: 2 updated: 2010/04/28 06:02:16 155 +dnl CF_CLANG_COMPILER version: 1 updated: 2012/06/16 14:55:39 156 +dnl ----------------- 157 +dnl Check if the given compiler is really clang. clang's C driver defines 158 +dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does 159 +dnl not ignore some gcc options. 160 +dnl 161 +dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to 162 +dnl ensure that it is not mistaken for gcc/g++. It is normally invoked from 163 +dnl the wrappers for gcc and g++ warnings. 164 +dnl 165 +dnl $1 = GCC (default) or GXX 166 +dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS 167 +dnl $3 = CFLAGS (default) or CXXFLAGS 168 +AC_DEFUN([CF_CLANG_COMPILER],[ 169 +ifelse([$2],,CLANG_COMPILER,[$2])=no 170 + 171 +if test "$ifelse([$1],,[$1],GCC)" = yes ; then 172 + AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler) 173 + cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])" 174 + ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -Qunused-arguments" 175 + AC_TRY_COMPILE([],[ 176 +#ifdef __clang__ 177 +#else 178 +make an error 179 +#endif 180 +],[ifelse([$2],,CLANG_COMPILER,[$2])=yes 181 +cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" 182 +],[]) 183 + ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS" 184 + AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2])) 185 +fi 186 +]) 187 +dnl --------------------------------------------------------------------------- 119 188 +dnl CF_CURSES_HEADER version: 3 updated: 2011/05/01 19:47:45 120 189 dnl ---------------- 121 190 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common 122 191 dnl variations of ncurses' installs. 123 @@ -603,10 + 649,10 @@192 @@ -603,10 +711,10 @@ 124 193 AC_CACHE_CHECK(if we have identified curses headers,cf_cv_ncurses_header,[ 125 194 cf_cv_ncurses_header=none … … 136 205 AC_TRY_COMPILE([#include <${cf_header}>], 137 206 [initscr(); tgoto("?", 0,0)], 138 @@ -627,6 + 673,31@@207 @@ -627,6 +735,67 @@ 139 208 dnl "dirname" is not portable, so we fake it with a shell script. 140 209 AC_DEFUN([CF_DIRNAME],[$1=`echo $2 | sed -e 's%/[[^/]]*$%%'`])dnl 141 210 dnl --------------------------------------------------------------------------- 142 +dnl CF_ENABLE_PC_FILES version: 7 updated: 2011/12/10 18:58:47 211 +dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57 212 +dnl --------------- 213 +dnl You can always use "make -n" to see the actual options, but it's hard to 214 +dnl pick out/analyze warning messages when the compile-line is long. 215 +dnl 216 +dnl Sets: 217 +dnl ECHO_LT - symbol to control if libtool is verbose 218 +dnl ECHO_LD - symbol to prefix "cc -o" lines 219 +dnl RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o) 220 +dnl SHOW_CC - symbol to put before explicit "cc -c" lines 221 +dnl ECHO_CC - symbol to put before any "cc" line 222 +dnl 223 +AC_DEFUN([CF_DISABLE_ECHO],[ 224 +AC_MSG_CHECKING(if you want to see long compiling messages) 225 +CF_ARG_DISABLE(echo, 226 + [ --disable-echo display "compiling" commands], 227 + [ 228 + ECHO_LT='--silent' 229 + ECHO_LD='@echo linking [$]@;' 230 + RULE_CC='@echo compiling [$]<' 231 + SHOW_CC='@echo compiling [$]@' 232 + ECHO_CC='@' 233 +],[ 234 + ECHO_LT='' 235 + ECHO_LD='' 236 + RULE_CC='' 237 + SHOW_CC='' 238 + ECHO_CC='' 239 +]) 240 +AC_MSG_RESULT($enableval) 241 +AC_SUBST(ECHO_LT) 242 +AC_SUBST(ECHO_LD) 243 +AC_SUBST(RULE_CC) 244 +AC_SUBST(SHOW_CC) 245 +AC_SUBST(ECHO_CC) 246 +])dnl 247 +dnl --------------------------------------------------------------------------- 248 +dnl CF_ENABLE_PC_FILES version: 9 updated: 2012/08/04 13:59:54 143 249 +dnl ------------------ 144 250 +dnl This is the "--enable-pc-files" option, which is available if there is a … … 149 255 + 150 256 +if test "$PKG_CONFIG" != none ; then 151 + if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 152 + AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG) 153 + AC_ARG_ENABLE(pc-files, 154 + [ --enable-pc-files generate and install .pc files for pkg-config], 155 + [enable_pc_files=$enableval], 156 + [enable_pc_files=no]) 157 + AC_MSG_RESULT($enable_pc_files) 158 + elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then 159 + enable_pc_files=no 160 + AC_MSG_WARN(did not find $PKG_CONFIG library) 257 + AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG) 258 + AC_ARG_ENABLE(pc-files, 259 + [ --enable-pc-files generate and install .pc files for pkg-config], 260 + [enable_pc_files=$enableval], 261 + [enable_pc_files=no]) 262 + AC_MSG_RESULT($enable_pc_files) 263 + if test "$enable_pc_files" != no 264 + then 265 + CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR) 161 266 + fi 162 267 +else … … 168 273 dnl --------------- 169 274 dnl Look for a non-standard library, given parameters for AC_TRY_LINK. We 170 @@ -1070,53 +1141,6 @@ 275 @@ -807,6 +976,25 @@ 276 fi 277 ])dnl 278 dnl --------------------------------------------------------------------------- 279 +dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10 280 +dnl ----------------- 281 +dnl make ADAFLAGS consistent with CFLAGS 282 +AC_DEFUN([CF_FIXUP_ADAFLAGS],[ 283 + AC_MSG_CHECKING(optimization options for ADAFLAGS) 284 + case "$CFLAGS" in 285 + *-g*) 286 + CF_ADD_ADAFLAGS(-g) 287 + ;; 288 + esac 289 + case "$CFLAGS" in 290 + *-O*) 291 + cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[ ]].*//'` 292 + CF_ADD_ADAFLAGS($cf_O_flag) 293 + ;; 294 + esac 295 + AC_MSG_RESULT($ADAFLAGS) 296 +])dnl 297 +dnl --------------------------------------------------------------------------- 298 dnl CF_GCC_ATTRIBUTES version: 14 updated: 2010/10/23 15:52:32 299 dnl ----------------- 300 dnl Test for availability of useful gcc __attribute__ directives to quiet 301 @@ -931,7 +1119,7 @@ 302 fi 303 ])dnl 304 dnl --------------------------------------------------------------------------- 305 -dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32 306 +dnl CF_GCC_WARNINGS version: 29 updated: 2012/06/16 14:55:39 307 dnl --------------- 308 dnl Check if the compiler supports useful warning options. There's a few that 309 dnl we don't use, simply because they're too noisy: 310 @@ -954,6 +1142,7 @@ 311 [ 312 AC_REQUIRE([CF_GCC_VERSION]) 313 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS) 314 +CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS) 315 316 cat > conftest.$ac_ext <<EOF 317 #line __oline__ "${as_me:-configure}" 318 @@ -1029,6 +1218,13 @@ 319 continue;; 320 esac 321 ;; 322 + Wpointer-arith) #(vi 323 + case $GCC_VERSION in 324 + [[12]].*) 325 + CF_VERBOSE(feature is broken in gcc $GCC_VERSION) 326 + continue;; 327 + esac 328 + ;; 329 esac 330 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" 331 fi 332 @@ -1070,53 +1266,6 @@ 171 333 AC_SUBST(cf_generic_objects) 172 334 ])dnl … … 222 384 dnl -------------------- 223 385 dnl Check if the gnat pragma "Unreferenced" works. 224 @@ -1253,6 +1 277,53 @@386 @@ -1253,6 +1402,53 @@ 225 387 AC_SUBST(USE_GNAT_LIBRARIES) 226 388 ])dnl … … 276 438 dnl ---------------- 277 439 dnl Verify that a test program compiles/links with GNAT. 278 @@ -1311,7 +1 382,7 @@440 @@ -1311,7 +1507,7 @@ 279 441 rm -rf conftest* *~conftest* 280 442 ])dnl … … 285 447 dnl Verify version of GNAT. 286 448 AC_DEFUN([CF_GNAT_VERSION], 287 @@ -1323,7 +1 394,7 @@449 @@ -1323,7 +1519,7 @@ 288 450 AC_MSG_RESULT($cf_gnat_version) 289 451 … … 294 456 ;; 295 457 *) 296 @@ -1518,7 +1 589,7 @@458 @@ -1518,7 +1714,7 @@ 297 459 ]) 298 460 ]) … … 303 465 dnl For the given system and compiler, find the compiler flags to pass to the 304 466 dnl loader to use the "rpath" feature. 305 @@ -1539,10 +1 610,10 @@467 @@ -1539,10 +1735,10 @@ 306 468 linux*|gnu*|k*bsd*-gnu) #(vi 307 469 LD_RPATH_OPT="-Wl,-rpath," … … 316 478 ;; 317 479 netbsd*) #(vi 318 @@ -1601,11 +1 672,11 @@480 @@ -1601,11 +1797,11 @@ 319 481 $1="$cf_library_path_list [$]$1" 320 482 ])dnl … … 330 492 case $cf_cv_system_name in #(vi 331 493 OS/2*|os2*) #(vi 332 @@ -1655,7 +1 726,7 @@494 @@ -1655,7 +1851,7 @@ 333 495 ]) 334 496 ]) 335 497 dnl --------------------------------------------------------------------------- 336 498 -dnl CF_LIB_SUFFIX version: 16 updated: 2008/12/27 12:30:03 337 +dnl CF_LIB_SUFFIX version: 1 7 updated: 2011/07/02 15:36:04499 +dnl CF_LIB_SUFFIX version: 18 updated: 2012/02/25 15:20:07 338 500 dnl ------------- 339 501 dnl Compute the library file-suffix from the given model name 340 502 dnl $1 = model name 341 @@ -1684, 7 +1755,7@@503 @@ -1684,11 +1880,11 @@ 342 504 ;; 343 505 shared) #(vi … … 348 510 $3=[$]$2 349 511 ;; 350 @@ -2141,7 +2212,7 @@ 512 - cygwin*) #(vi 513 + cygwin*|mingw*) #(vi 514 $2='.dll' 515 $3='.dll.a' 516 ;; 517 @@ -1974,7 +2170,7 @@ 518 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES) 519 ])dnl 520 dnl --------------------------------------------------------------------------- 521 -dnl CF_MKSTEMP version: 7 updated: 2010/08/14 18:25:37 522 +dnl CF_MKSTEMP version: 8 updated: 2012/02/13 20:34:56 523 dnl ---------- 524 dnl Check for a working mkstemp. This creates two files, checks that they are 525 dnl successfully created and distinct (AmigaOS apparently fails on the last). 526 @@ -2016,9 +2212,11 @@ 527 } 528 ],[cf_cv_func_mkstemp=yes 529 ],[cf_cv_func_mkstemp=no 530 -],[AC_CHECK_FUNC(mkstemp) 531 -]) 532 +],[cf_cv_func_mkstemp=maybe]) 533 ]) 534 +if test "x$cf_cv_func_mkstemp" = xmaybe ; then 535 + AC_CHECK_FUNC(mkstemp) 536 +fi 537 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then 538 AC_DEFINE(HAVE_MKSTEMP) 539 fi 540 @@ -2141,7 +2339,7 @@ 351 541 ,[$1=no]) 352 542 ])dnl … … 357 547 dnl Tie together the configure-script macros for ncurses. 358 548 dnl Prefer the "-config" script from ncurses 6.x, to simplify analysis. 359 @@ -2153,7 +2 224,10 @@549 @@ -2153,7 +2351,10 @@ 360 550 cf_ncuconfig_root=ifelse($1,,ncurses,$1) 361 551 … … 369 559 if test "$NCURSES_CONFIG" != none ; then 370 560 371 @@ -2546,7 +2620,7 @@ 561 @@ -2509,7 +2710,7 @@ 562 AC_SUBST(PATH_SEPARATOR) 563 ])dnl 564 dnl --------------------------------------------------------------------------- 565 -dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42 566 +dnl CF_PATH_SYNTAX version: 14 updated: 2012/06/19 20:58:54 567 dnl -------------- 568 dnl Check the argument to see that it looks like a pathname. Rewrite it if it 569 dnl begins with one of the prefix/exec_prefix variables, and then again if the 570 @@ -2529,7 +2730,7 @@ 571 ;; 572 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX 573 ;; 574 -.\[$]{*prefix}*) #(vi 575 +.\[$]{*prefix}*|.\[$]{*dir}*) #(vi 576 eval $1="[$]$1" 577 case ".[$]$1" in #(vi 578 .NONE/*) 579 @@ -2546,7 +2747,7 @@ 372 580 esac 373 581 ])dnl … … 378 586 dnl Check for the package-config program, unless disabled by command-line. 379 587 AC_DEFUN([CF_PKG_CONFIG], 380 @@ -2563,7 +2 637,9 @@588 @@ -2563,7 +2764,9 @@ 381 589 PKG_CONFIG=none 382 590 ;; … … 389 597 *) 390 598 PKG_CONFIG=$withval 391 @@ -2746,7 +2 822,7 @@599 @@ -2746,7 +2949,7 @@ 392 600 test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT") 393 601 ])dnl … … 398 606 dnl Check for gnatmake, ensure that it is complete. 399 607 AC_DEFUN([CF_PROG_GNAT],[ 400 @@ -2754,6 +2 830,7 @@608 @@ -2754,6 +2957,7 @@ 401 609 AC_CHECK_PROG(gnat_exists, $cf_ada_make, yes, no) 402 610 if test "$ac_cv_prog_gnat_exists" = no; then … … 406 614 CF_GNAT_VERSION 407 615 AC_CHECK_PROG(M4_exists, m4, yes, no) 408 @@ -2831,7 + 2908,7 @@616 @@ -2831,7 +3035,7 @@ 409 617 $1=`echo "$2" | sed -e 's/-l$3[[ ]]//g' -e 's/-l$3[$]//'` 410 618 ])dnl 411 619 dnl --------------------------------------------------------------------------- 412 620 -dnl CF_SHARED_OPTS version: 64 updated: 2010/06/05 16:51:16 413 +dnl CF_SHARED_OPTS version: 69 updated: 2011/07/30 19:31:39621 +dnl CF_SHARED_OPTS version: 70 updated: 2012/02/25 15:20:07 414 622 dnl -------------- 415 623 dnl -------------- 416 624 dnl Attempt to determine the appropriate CC/LD options for creating a shared 417 @@ -2906,10 + 2983,14 @@625 @@ -2906,10 +3110,14 @@ 418 626 cf_cv_shlib_version_infix=no 419 627 … … 432 640 ;; 433 641 beos*) #(vi 434 @@ -2962,9 +3 043,19 @@642 @@ -2962,9 +3170,19 @@ 435 643 # readonly to exploit a quirk in the memory manager. 436 644 INSTALL_LIB="-m 555" … … 453 661 # tested with IRIX 5.2 and 'cc'. 454 662 if test "$GCC" != yes; then 455 @@ -2981,18 +3 072,18@@663 @@ -2981,18 +3199,39 @@ 456 664 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 457 665 fi … … 464 672 ;; 465 673 - openbsd[[2-9]].*) #(vi 674 + mingw*) #(vi 675 + cf_cv_shlib_version=mingw 676 + cf_cv_shlib_version_infix=mingw 677 + CC_SHARED_OPTS= 678 + MK_SHARED_LIB='sh ../mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}' 679 + #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]' 680 + #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]' 681 + cat >mk_shared_lib.sh <<-CF_EOF 682 + #!/bin/sh 683 + SHARED_LIB=\[$]1 684 + IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\` 685 + shift 686 + cat <<-EOF 687 + Linking shared library 688 + ** SHARED_LIB \[$]SHARED_LIB 689 + ** IMPORT_LIB \[$]IMPORT_LIB 690 +EOF 691 + exec \[$]* -shared -Wl,--out-implib=../lib/\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\[$]{SHARED_LIB} 692 +CF_EOF 693 + chmod +x mk_shared_lib.sh 694 + ;; 466 695 + openbsd[[2-9]].*|mirbsd*) #(vi 467 696 if test "$DFT_LWR_MODEL" = "shared" ; then … … 475 704 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 476 705 CF_SHARED_SONAME 477 @@ -3003,12 +3 094,12 @@706 @@ -3003,12 +3242,12 @@ 478 707 MK_SHARED_LIB='${LD} -Bshareable -o $[@]' 479 708 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel … … 491 720 CF_SHARED_SONAME 492 721 MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $[@]` -o $[@]' 493 @@ -3018,7 +3 109,7 @@722 @@ -3018,7 +3257,7 @@ 494 723 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then 495 724 LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)" … … 500 729 if test -f /usr/libexec/ld.elf_so; then 501 730 cf_cv_shlib_version=abi 502 @@ -3123,9 +3 214,9@@731 @@ -3123,9 +3362,12 @@ 503 732 ;; 504 733 esac … … 510 739 + test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}" 511 740 + test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}" 741 + 742 + CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS) 743 + CF_VERBOSE(MK_SHARED_LIB: $MK_SHARED_LIB) 512 744 513 745 AC_SUBST(CC_SHARED_OPTS) 514 746 AC_SUBST(LD_RPATH_OPT) 515 @@ -3137,6 +3 228,7 @@747 @@ -3137,6 +3379,7 @@ 516 748 AC_SUBST(LOCAL_LDFLAGS) 517 749 AC_SUBST(LOCAL_LDFLAGS2) … … 521 753 dnl --------------------------------------------------------------------------- 522 754 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43 523 @@ -3253,6 +3 345,45 @@755 @@ -3253,6 +3496,45 @@ 524 756 AC_SUBST(top_builddir) 525 757 ])dnl … … 567 799 dnl -------- 568 800 dnl Make an uppercase version of a variable 569 @@ -3415,6 +3 546,32 @@801 @@ -3415,6 +3697,32 @@ 570 802 fi 571 803 ])dnl … … 600 832 dnl ------------ 601 833 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just 602 @@ -3436,7 +3 593,50 @@834 @@ -3436,7 +3744,50 @@ 603 835 AC_SUBST($3)dnl 604 836 ])dnl … … 652 884 dnl Check for POSIX thread library. 653 885 AC_DEFUN([CF_WITH_PTHREAD], 654 @@ -3452,28 +3 652,33 @@886 @@ -3452,28 +3803,33 @@ 655 887 AC_CHECK_HEADER(pthread.h,[ 656 888 AC_DEFINE(HAVE_PTHREADS_H) … … 700 932 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions, 701 933 dnl or adapt to the vendor's definitions to get equivalent functionality, 702 @@ -3489,7 +3 694,7 @@934 @@ -3489,7 +3845,7 @@ 703 935 cf_xopen_source= 704 936 … … 709 941 ;; 710 942 cygwin) #(vi 711 @@ -3500,6 +3 705,7 @@943 @@ -3500,6 +3856,7 @@ 712 944 ;; 713 945 darwin*) #(vi … … 717 949 freebsd*|dragonfly*) #(vi 718 950 # 5.x headers associate 719 @@ -3517,15 +3 723,23 @@951 @@ -3517,15 +3874,23 @@ 720 952 ;; 721 953 irix[[56]].*) #(vi … … 743 975 openbsd*) #(vi 744 976 # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw 745 @@ -3539,36 +3 753,11 @@977 @@ -3539,36 +3904,11 @@ 746 978 sco*) #(vi 747 979 # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer … … 782 1014 ;; 783 1015 esac 784 @@ -3576,4 +3 765,33 @@1016 @@ -3576,4 +3916,33 @@ 785 1017 if test -n "$cf_xopen_source" ; then 786 1018 CF_ADD_CFLAGS($cf_xopen_source) … … 817 1049 ]) 818 1050 diff -Naur ncurses-5.9.orig/Ada95/configure ncurses-5.9/Ada95/configure 819 --- ncurses-5.9.orig/Ada95/configure 2012-0 2-16 18:25:12.619808985+0000820 +++ ncurses-5.9/Ada95/configure 2012-0 2-16 18:25:13.179823762+0000821 @@ -1, 5 +1,5@@1051 --- ncurses-5.9.orig/Ada95/configure 2012-08-25 19:57:59.386567678 +0000 1052 +++ ncurses-5.9/Ada95/configure 2012-08-25 19:58:02.283220646 +0000 1053 @@ -1,7 +1,7 @@ 822 1054 #! /bin/sh 823 1055 -# From configure.in Revision: 1.30 . 824 +# From configure.in Revision: 1. 38.1056 +# From configure.in Revision: 1.41 . 825 1057 # Guess values for system-dependent variables and create Makefiles. 826 # Generated by Autoconf 2.52.20101002. 1058 -# Generated by Autoconf 2.52.20101002. 1059 +# Generated by Autoconf 2.52.20120811. 827 1060 # 828 @@ -645,6 +645,7 @@ 1061 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 1062 # Free Software Foundation, Inc. 1063 @@ -135,15 +135,16 @@ 1064 bindir='${exec_prefix}/bin' 1065 sbindir='${exec_prefix}/sbin' 1066 libexecdir='${exec_prefix}/libexec' 1067 -datadir='${prefix}/share' 1068 +datarootdir='${prefix}/share' 1069 +datadir='${datarootdir}' 1070 sysconfdir='${prefix}/etc' 1071 sharedstatedir='${prefix}/com' 1072 localstatedir='${prefix}/var' 1073 libdir='${exec_prefix}/lib' 1074 includedir='${prefix}/include' 1075 oldincludedir='/usr/include' 1076 -infodir='${prefix}/info' 1077 -mandir='${prefix}/man' 1078 +infodir='${datarootdir}/info' 1079 +mandir='${datarootdir}/man' 1080 1081 # Identity of this package. 1082 PACKAGE_NAME= 1083 @@ -194,6 +195,13 @@ 1084 | --da=*) 1085 datadir=$ac_optarg ;; 1086 1087 + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ 1088 + | --dataroo | --dataro | --datar) 1089 + ac_prev=datarootdir ;; 1090 + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ 1091 + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) 1092 + datarootdir=$ac_optarg ;; 1093 + 1094 -disable-* | --disable-*) 1095 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 1096 # Reject names that are not valid shell variable names. 1097 @@ -469,7 +477,7 @@ 1098 done 1099 1100 # Be sure to have absolute paths. 1101 -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ 1102 +for ac_var in bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir \ 1103 localstatedir libdir includedir oldincludedir infodir mandir 1104 do 1105 eval ac_val=$`echo $ac_var` 1106 @@ -606,15 +614,16 @@ 1107 --bindir=DIR user executables [EPREFIX/bin] 1108 --sbindir=DIR system admin executables [EPREFIX/sbin] 1109 --libexecdir=DIR program executables [EPREFIX/libexec] 1110 - --datadir=DIR read-only architecture-independent data [PREFIX/share] 1111 + --datarootdir=DIR read-only architecture-independent data [PREFIX/share] 1112 + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1113 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1114 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1115 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1116 --libdir=DIR object code libraries [EPREFIX/lib] 1117 --includedir=DIR C header files [PREFIX/include] 1118 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1119 - --infodir=DIR info documentation [PREFIX/info] 1120 - --mandir=DIR man documentation [PREFIX/man] 1121 + --infodir=DIR info documentation [DATAROOTDIR/info] 1122 + --mandir=DIR man documentation [DATAROOTDIR/man] 1123 EOF 1124 1125 cat <<\EOF 1126 @@ -645,6 +654,7 @@ 829 1127 830 1128 --with-system-type=XXX test: override derived host system-type … … 834 1132 --without-tests suppress build with test-programs 835 1133 --enable-mixed-case tic should assume mixed-case filenames 836 @@ -660,6 +6 61,7 @@1134 @@ -660,6 +670,7 @@ 837 1135 --with-shared generate shared C-objects (needed for --with-ada-sharedlib) 838 1136 --enable-widec compile with wide-char/UTF-8 code … … 842 1140 --enable-rpath-link link sample programs with rpath option 843 1141 Fine-Tuning Your Configuration: 844 @@ -881,7 +883,7 @@ 1142 @@ -677,7 +688,7 @@ 1143 --enable-reentrant compile with experimental reentrant code 1144 --with-wrap-prefix=XXX override prefix used for public variables 1145 Testing/development Options: 1146 - --enable-echo build: display "compiling" commands (default) 1147 + --disable-echo display "compiling" commands 1148 --enable-warnings build: turn on GCC compiler warnings 1149 --enable-assertions test: turn on generation of assertion code 1150 --enable-expanded test: generate functions for certain macros 1151 @@ -757,7 +768,7 @@ 1152 running configure, to aid debugging if configure makes a mistake. 1153 1154 It was created by $as_me, which was 1155 -generated by GNU Autoconf 2.52.20101002. Invocation command line was 1156 +generated by GNU Autoconf 2.52.20120811. Invocation command line was 1157 1158 $ $0 $@ 1159 1160 @@ -881,7 +892,7 @@ 845 1161 fi 846 1162 for ac_site_file in $CONFIG_SITE; do 847 1163 if test -r "$ac_site_file"; then 848 1164 - { echo "$as_me:884: loading site script $ac_site_file" >&5 849 + { echo "$as_me:8 86: loading site script $ac_site_file" >&51165 + { echo "$as_me:895: loading site script $ac_site_file" >&5 850 1166 echo "$as_me: loading site script $ac_site_file" >&6;} 851 1167 cat "$ac_site_file" >&5 852 1168 . "$ac_site_file" 853 @@ -892,7 + 894,7 @@1169 @@ -892,7 +903,7 @@ 854 1170 # Some versions of bash will fail to source /dev/null (special 855 1171 # files actually), so we avoid doing that. 856 1172 if test -f "$cache_file"; then 857 1173 - { echo "$as_me:895: loading cache $cache_file" >&5 858 + { echo "$as_me: 897: loading cache $cache_file" >&51174 + { echo "$as_me:906: loading cache $cache_file" >&5 859 1175 echo "$as_me: loading cache $cache_file" >&6;} 860 1176 case $cache_file in 861 1177 [\\/]* | ?:[\\/]* ) . $cache_file;; 862 @@ -900,7 +9 02,7 @@1178 @@ -900,7 +911,7 @@ 863 1179 esac 864 1180 fi 865 1181 else 866 1182 - { echo "$as_me:903: creating cache $cache_file" >&5 867 + { echo "$as_me:9 05: creating cache $cache_file" >&51183 + { echo "$as_me:914: creating cache $cache_file" >&5 868 1184 echo "$as_me: creating cache $cache_file" >&6;} 869 1185 >$cache_file 870 1186 fi 871 @@ -916,21 +9 18,21 @@1187 @@ -916,21 +927,21 @@ 872 1188 eval ac_new_val="\$ac_env_${ac_var}_value" 873 1189 case $ac_old_set,$ac_new_set in 874 1190 set,) 875 1191 - { echo "$as_me:919: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 876 + { echo "$as_me:9 21: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&51192 + { echo "$as_me:930: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 877 1193 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 878 1194 ac_cache_corrupted=: ;; 879 1195 ,set) 880 1196 - { echo "$as_me:923: error: \`$ac_var' was not set in the previous run" >&5 881 + { echo "$as_me:9 25: error: \`$ac_var' was not set in the previous run" >&51197 + { echo "$as_me:934: error: \`$ac_var' was not set in the previous run" >&5 882 1198 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 883 1199 ac_cache_corrupted=: ;; … … 886 1202 if test "x$ac_old_val" != "x$ac_new_val"; then 887 1203 - { echo "$as_me:929: error: \`$ac_var' has changed since the previous run:" >&5 888 + { echo "$as_me:9 31: error: \`$ac_var' has changed since the previous run:" >&51204 + { echo "$as_me:940: error: \`$ac_var' has changed since the previous run:" >&5 889 1205 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 890 1206 - { echo "$as_me:931: former value: $ac_old_val" >&5 891 + { echo "$as_me:9 33: former value: $ac_old_val" >&51207 + { echo "$as_me:942: former value: $ac_old_val" >&5 892 1208 echo "$as_me: former value: $ac_old_val" >&2;} 893 1209 - { echo "$as_me:933: current value: $ac_new_val" >&5 894 + { echo "$as_me:9 35: current value: $ac_new_val" >&51210 + { echo "$as_me:944: current value: $ac_new_val" >&5 895 1211 echo "$as_me: current value: $ac_new_val" >&2;} 896 1212 ac_cache_corrupted=: 897 1213 fi;; 898 @@ -949,9 +9 51,9 @@1214 @@ -949,9 +960,9 @@ 899 1215 fi 900 1216 done 901 1217 if $ac_cache_corrupted; then 902 1218 - { echo "$as_me:952: error: changes in the environment can compromise the build" >&5 903 + { echo "$as_me:9 54: error: changes in the environment can compromise the build" >&51219 + { echo "$as_me:963: error: changes in the environment can compromise the build" >&5 904 1220 echo "$as_me: error: changes in the environment can compromise the build" >&2;} 905 1221 - { { echo "$as_me:954: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 906 + { { echo "$as_me:9 56: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&51222 + { { echo "$as_me:965: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 907 1223 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 908 1224 { (exit 1); exit 1; }; } 909 1225 fi 910 @@ -972,10 +9 74,10 @@1226 @@ -972,10 +983,10 @@ 911 1227 echo "#! $SHELL" >conftest.sh 912 1228 echo "exit 0" >>conftest.sh 913 1229 chmod +x conftest.sh 914 1230 -if { (echo "$as_me:975: PATH=\".;.\"; conftest.sh") >&5 915 +if { (echo "$as_me:9 77: PATH=\".;.\"; conftest.sh") >&51231 +if { (echo "$as_me:986: PATH=\".;.\"; conftest.sh") >&5 916 1232 (PATH=".;."; conftest.sh) 2>&5 917 1233 ac_status=$? 918 1234 - echo "$as_me:978: \$? = $ac_status" >&5 919 + echo "$as_me:98 0: \$? = $ac_status" >&51235 + echo "$as_me:989: \$? = $ac_status" >&5 920 1236 (exit $ac_status); }; then 921 1237 ac_path_separator=';' 922 1238 else 923 @@ -1005,7 +10 07,7 @@1239 @@ -1005,7 +1016,7 @@ 924 1240 fi 925 1241 done 926 1242 if test -z "$ac_aux_dir"; then 927 1243 - { { echo "$as_me:1008: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 928 + { { echo "$as_me:101 0: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&51244 + { { echo "$as_me:1019: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 929 1245 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} 930 1246 { (exit 1); exit 1; }; } 931 1247 fi 932 @@ -1015,11 +10 17,11 @@1248 @@ -1015,11 +1026,11 @@ 933 1249 934 1250 # Make sure we can run config.sub. 935 1251 $ac_config_sub sun4 >/dev/null 2>&1 || 936 1252 - { { echo "$as_me:1018: error: cannot run $ac_config_sub" >&5 937 + { { echo "$as_me:102 0: error: cannot run $ac_config_sub" >&51253 + { { echo "$as_me:1029: error: cannot run $ac_config_sub" >&5 938 1254 echo "$as_me: error: cannot run $ac_config_sub" >&2;} 939 1255 { (exit 1); exit 1; }; } 940 1256 941 1257 -echo "$as_me:1022: checking build system type" >&5 942 +echo "$as_me:10 24: checking build system type" >&51258 +echo "$as_me:1033: checking build system type" >&5 943 1259 echo $ECHO_N "checking build system type... $ECHO_C" >&6 944 1260 if test "${ac_cv_build+set}" = set; then 945 1261 echo $ECHO_N "(cached) $ECHO_C" >&6 946 @@ -1028,23 +103 0,23 @@1262 @@ -1028,23 +1039,23 @@ 947 1263 test -z "$ac_cv_build_alias" && 948 1264 ac_cv_build_alias=`$ac_config_guess` 949 1265 test -z "$ac_cv_build_alias" && 950 1266 - { { echo "$as_me:1031: error: cannot guess build type; you must specify one" >&5 951 + { { echo "$as_me:10 33: error: cannot guess build type; you must specify one" >&51267 + { { echo "$as_me:1042: error: cannot guess build type; you must specify one" >&5 952 1268 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} 953 1269 { (exit 1); exit 1; }; } 954 1270 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || 955 1271 - { { echo "$as_me:1035: error: $ac_config_sub $ac_cv_build_alias failed." >&5 956 + { { echo "$as_me:10 37: error: $ac_config_sub $ac_cv_build_alias failed." >&51272 + { { echo "$as_me:1046: error: $ac_config_sub $ac_cv_build_alias failed." >&5 957 1273 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} 958 1274 { (exit 1); exit 1; }; } … … 960 1276 fi 961 1277 -echo "$as_me:1040: result: $ac_cv_build" >&5 962 +echo "$as_me:10 42: result: $ac_cv_build" >&51278 +echo "$as_me:1051: result: $ac_cv_build" >&5 963 1279 echo "${ECHO_T}$ac_cv_build" >&6 964 1280 build=$ac_cv_build … … 968 1284 969 1285 -echo "$as_me:1047: checking host system type" >&5 970 +echo "$as_me:10 49: checking host system type" >&51286 +echo "$as_me:1058: checking host system type" >&5 971 1287 echo $ECHO_N "checking host system type... $ECHO_C" >&6 972 1288 if test "${ac_cv_host+set}" = set; then 973 1289 echo $ECHO_N "(cached) $ECHO_C" >&6 974 @@ -1053,12 +10 55,12 @@1290 @@ -1053,12 +1064,12 @@ 975 1291 test -z "$ac_cv_host_alias" && 976 1292 ac_cv_host_alias=$ac_cv_build_alias 977 1293 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || 978 1294 - { { echo "$as_me:1056: error: $ac_config_sub $ac_cv_host_alias failed" >&5 979 + { { echo "$as_me:10 58: error: $ac_config_sub $ac_cv_host_alias failed" >&51295 + { { echo "$as_me:1067: error: $ac_config_sub $ac_cv_host_alias failed" >&5 980 1296 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} 981 1297 { (exit 1); exit 1; }; } … … 983 1299 fi 984 1300 -echo "$as_me:1061: result: $ac_cv_host" >&5 985 +echo "$as_me:10 63: result: $ac_cv_host" >&51301 +echo "$as_me:1072: result: $ac_cv_host" >&5 986 1302 echo "${ECHO_T}$ac_cv_host" >&6 987 1303 host=$ac_cv_host 988 1304 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 989 @@ -1066,7 +10 68,7 @@1305 @@ -1066,7 +1077,7 @@ 990 1306 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 991 1307 992 1308 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then 993 1309 - echo "$as_me:1069: checking target system type" >&5 994 + echo "$as_me:10 71: checking target system type" >&51310 + echo "$as_me:1080: checking target system type" >&5 995 1311 echo $ECHO_N "checking target system type... $ECHO_C" >&6 996 1312 if test "${ac_cv_target+set}" = set; then 997 1313 echo $ECHO_N "(cached) $ECHO_C" >&6 998 @@ -1075,12 +10 77,12 @@1314 @@ -1075,12 +1086,12 @@ 999 1315 test "x$ac_cv_target_alias" = "x" && 1000 1316 ac_cv_target_alias=$ac_cv_host_alias 1001 1317 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || 1002 1318 - { { echo "$as_me:1078: error: $ac_config_sub $ac_cv_target_alias failed" >&5 1003 + { { echo "$as_me:108 0: error: $ac_config_sub $ac_cv_target_alias failed" >&51319 + { { echo "$as_me:1089: error: $ac_config_sub $ac_cv_target_alias failed" >&5 1004 1320 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} 1005 1321 { (exit 1); exit 1; }; } … … 1007 1323 fi 1008 1324 -echo "$as_me:1083: result: $ac_cv_target" >&5 1009 +echo "$as_me:10 85: result: $ac_cv_target" >&51325 +echo "$as_me:1094: result: $ac_cv_target" >&5 1010 1326 echo "${ECHO_T}$ac_cv_target" >&6 1011 1327 target=$ac_cv_target 1012 1328 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 1013 @@ -1111,13 +11 13,13 @@1329 @@ -1111,13 +1122,13 @@ 1014 1330 fi 1015 1331 1016 1332 test -z "$system_name" && system_name="$cf_cv_system_name" 1017 1333 -test -n "$cf_cv_system_name" && echo "$as_me:1114: result: Configuring for $cf_cv_system_name" >&5 1018 +test -n "$cf_cv_system_name" && echo "$as_me:11 16: result: Configuring for $cf_cv_system_name" >&51334 +test -n "$cf_cv_system_name" && echo "$as_me:1125: result: Configuring for $cf_cv_system_name" >&5 1019 1335 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6 1020 1336 1021 1337 if test ".$system_name" != ".$cf_cv_system_name" ; then 1022 1338 - echo "$as_me:1118: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 1023 + echo "$as_me:112 0: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&51339 + echo "$as_me:1129: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 1024 1340 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6 1025 1341 - { { echo "$as_me:1120: error: \"Please remove config.cache and try again.\"" >&5 1026 + { { echo "$as_me:11 22: error: \"Please remove config.cache and try again.\"" >&51342 + { { echo "$as_me:1131: error: \"Please remove config.cache and try again.\"" >&5 1027 1343 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;} 1028 1344 { (exit 1); exit 1; }; } 1029 1345 fi 1030 @@ -1125,7 +11 27,7 @@1346 @@ -1125,7 +1136,7 @@ 1031 1347 # Check whether --with-system-type or --without-system-type was given. 1032 1348 if test "${with_system_type+set}" = set; then 1033 1349 withval="$with_system_type" 1034 1350 - { echo "$as_me:1128: WARNING: overriding system type to $withval" >&5 1035 + { echo "$as_me:113 0: WARNING: overriding system type to $withval" >&51351 + { echo "$as_me:1139: WARNING: overriding system type to $withval" >&5 1036 1352 echo "$as_me: WARNING: overriding system type to $withval" >&2;} 1037 1353 cf_cv_system_name=$withval 1038 1354 fi; 1039 @@ -1135,23 +11 37,23 @@1355 @@ -1135,23 +1146,23 @@ 1040 1356 1041 1357 ### Default install-location 1042 1358 1043 1359 -echo "$as_me:1138: checking for prefix" >&5 1044 +echo "$as_me:114 0: checking for prefix" >&51360 +echo "$as_me:1149: checking for prefix" >&5 1045 1361 echo $ECHO_N "checking for prefix... $ECHO_C" >&6 1046 1362 if test "x$prefix" = "xNONE" ; then … … 1056 1372 fi 1057 1373 -echo "$as_me:1150: result: $prefix" >&5 1058 +echo "$as_me:11 52: result: $prefix" >&51374 +echo "$as_me:1161: result: $prefix" >&5 1059 1375 echo "${ECHO_T}$prefix" >&6 1060 1376 1061 1377 if test "x$prefix" = "xNONE" ; then 1062 1378 -echo "$as_me:1154: checking for default include-directory" >&5 1063 +echo "$as_me:11 56: checking for default include-directory" >&51379 +echo "$as_me:1165: checking for default include-directory" >&5 1064 1380 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6 1065 1381 test -n "$verbose" && echo 1>&6 1066 1382 for cf_symbol in \ 1067 @@ -1174,7 +11 76,7 @@1383 @@ -1174,7 +1185,7 @@ 1068 1384 fi 1069 1385 test -n "$verbose" && echo " tested $cf_dir" 1>&6 1070 1386 done 1071 1387 -echo "$as_me:1177: result: $includedir" >&5 1072 +echo "$as_me:11 79: result: $includedir" >&51388 +echo "$as_me:1188: result: $includedir" >&5 1073 1389 echo "${ECHO_T}$includedir" >&6 1074 1390 fi 1075 1391 1076 @@ -1188,7 +1190,7 @@ 1392 @@ -1186,213 +1197,11 @@ 1393 ac_compiler_gnu=$ac_cv_c_compiler_gnu 1394 ac_main_return=return 1077 1395 if test -n "$ac_tool_prefix"; then 1078 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.1079 set dummy ${ac_tool_prefix}gcc; ac_word=$21396 - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 1397 -set dummy ${ac_tool_prefix}gcc; ac_word=$2 1080 1398 -echo "$as_me:1191: checking for $ac_word" >&5 1081 +echo "$as_me:1193: checking for $ac_word" >&5 1082 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1083 if test "${ac_cv_prog_CC+set}" = set; then 1084 echo $ECHO_N "(cached) $ECHO_C" >&6 1085 @@ -1203,7 +1205,7 @@ 1086 test -z "$ac_dir" && ac_dir=. 1087 $as_executable_p "$ac_dir/$ac_word" || continue 1088 ac_cv_prog_CC="${ac_tool_prefix}gcc" 1399 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1400 -if test "${ac_cv_prog_CC+set}" = set; then 1401 - echo $ECHO_N "(cached) $ECHO_C" >&6 1402 -else 1403 - if test -n "$CC"; then 1404 - ac_cv_prog_CC="$CC" # Let the user override the test. 1405 -else 1406 - ac_save_IFS=$IFS; IFS=$ac_path_separator 1407 -ac_dummy="$PATH" 1408 -for ac_dir in $ac_dummy; do 1409 - IFS=$ac_save_IFS 1410 - test -z "$ac_dir" && ac_dir=. 1411 - $as_executable_p "$ac_dir/$ac_word" || continue 1412 -ac_cv_prog_CC="${ac_tool_prefix}gcc" 1089 1413 -echo "$as_me:1206: found $ac_dir/$ac_word" >&5 1090 +echo "$as_me:1208: found $ac_dir/$ac_word" >&5 1091 break 1092 done 1093 1094 @@ -1211,10 +1213,10 @@ 1095 fi 1096 CC=$ac_cv_prog_CC 1097 if test -n "$CC"; then 1414 -break 1415 -done 1416 - 1417 -fi 1418 -fi 1419 -CC=$ac_cv_prog_CC 1420 -if test -n "$CC"; then 1098 1421 - echo "$as_me:1214: result: $CC" >&5 1099 + echo "$as_me:1216: result: $CC" >&5 1100 echo "${ECHO_T}$CC" >&6 1101 else 1422 -echo "${ECHO_T}$CC" >&6 1423 -else 1102 1424 - echo "$as_me:1217: result: no" >&5 1103 + echo "$as_me:1219: result: no" >&5 1104 echo "${ECHO_T}no" >&6 1105 fi 1106 1107 @@ -1223,7 +1225,7 @@ 1108 ac_ct_CC=$CC1109 # Extract the first word of "gcc", so it can be a program name with args.1110 set dummy gcc; ac_word=$21425 -echo "${ECHO_T}no" >&6 1426 -fi 1427 - 1428 -fi 1429 -if test -z "$ac_cv_prog_CC"; then 1430 - ac_ct_CC=$CC 1431 - # Extract the first word of "gcc", so it can be a program name with args. 1432 -set dummy gcc; ac_word=$2 1111 1433 -echo "$as_me:1226: checking for $ac_word" >&5 1112 +echo "$as_me:1228: checking for $ac_word" >&5 1113 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1114 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1115 echo $ECHO_N "(cached) $ECHO_C" >&6 1116 @@ -1238,7 +1240,7 @@ 1117 test -z "$ac_dir" && ac_dir=. 1118 $as_executable_p "$ac_dir/$ac_word" || continue 1119 ac_cv_prog_ac_ct_CC="gcc" 1434 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1435 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1436 - echo $ECHO_N "(cached) $ECHO_C" >&6 1437 -else 1438 - if test -n "$ac_ct_CC"; then 1439 - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 1440 -else 1441 - ac_save_IFS=$IFS; IFS=$ac_path_separator 1442 -ac_dummy="$PATH" 1443 -for ac_dir in $ac_dummy; do 1444 - IFS=$ac_save_IFS 1445 - test -z "$ac_dir" && ac_dir=. 1446 - $as_executable_p "$ac_dir/$ac_word" || continue 1447 -ac_cv_prog_ac_ct_CC="gcc" 1120 1448 -echo "$as_me:1241: found $ac_dir/$ac_word" >&5 1121 +echo "$as_me:1243: found $ac_dir/$ac_word" >&5 1122 break 1123 done 1124 1125 @@ -1246,10 +1248,10 @@ 1126 fi 1127 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1128 if test -n "$ac_ct_CC"; then 1449 -break 1450 -done 1451 - 1452 -fi 1453 -fi 1454 -ac_ct_CC=$ac_cv_prog_ac_ct_CC 1455 -if test -n "$ac_ct_CC"; then 1129 1456 - echo "$as_me:1249: result: $ac_ct_CC" >&5 1130 + echo "$as_me:1251: result: $ac_ct_CC" >&5 1131 echo "${ECHO_T}$ac_ct_CC" >&6 1132 else 1457 -echo "${ECHO_T}$ac_ct_CC" >&6 1458 -else 1133 1459 - echo "$as_me:1252: result: no" >&5 1134 + echo "$as_me:1254: result: no" >&5 1135 echo "${ECHO_T}no" >&6 1136 fi 1137 1138 @@ -1262,7 +1264,7 @@ 1139 if test -n "$ac_tool_prefix"; then 1140 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 1141 set dummy ${ac_tool_prefix}cc; ac_word=$2 1460 -echo "${ECHO_T}no" >&6 1461 -fi 1462 - 1463 - CC=$ac_ct_CC 1464 -else 1465 - CC="$ac_cv_prog_CC" 1466 -fi 1467 - 1468 -if test -z "$CC"; then 1469 - if test -n "$ac_tool_prefix"; then 1470 - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 1471 -set dummy ${ac_tool_prefix}cc; ac_word=$2 1142 1472 -echo "$as_me:1265: checking for $ac_word" >&5 1143 +echo "$as_me:1267: checking for $ac_word" >&5 1144 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1145 if test "${ac_cv_prog_CC+set}" = set; then 1146 echo $ECHO_N "(cached) $ECHO_C" >&6 1147 @@ -1277,7 +1279,7 @@ 1148 test -z "$ac_dir" && ac_dir=. 1149 $as_executable_p "$ac_dir/$ac_word" || continue 1150 ac_cv_prog_CC="${ac_tool_prefix}cc" 1473 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1474 -if test "${ac_cv_prog_CC+set}" = set; then 1475 - echo $ECHO_N "(cached) $ECHO_C" >&6 1476 -else 1477 - if test -n "$CC"; then 1478 - ac_cv_prog_CC="$CC" # Let the user override the test. 1479 -else 1480 - ac_save_IFS=$IFS; IFS=$ac_path_separator 1481 -ac_dummy="$PATH" 1482 -for ac_dir in $ac_dummy; do 1483 - IFS=$ac_save_IFS 1484 - test -z "$ac_dir" && ac_dir=. 1485 - $as_executable_p "$ac_dir/$ac_word" || continue 1486 -ac_cv_prog_CC="${ac_tool_prefix}cc" 1151 1487 -echo "$as_me:1280: found $ac_dir/$ac_word" >&5 1152 +echo "$as_me:1282: found $ac_dir/$ac_word" >&5 1153 break 1154 done 1155 1156 @@ -1285,10 +1287,10 @@ 1157 fi 1158 CC=$ac_cv_prog_CC 1159 if test -n "$CC"; then 1488 -break 1489 -done 1490 - 1491 -fi 1492 -fi 1493 -CC=$ac_cv_prog_CC 1494 -if test -n "$CC"; then 1160 1495 - echo "$as_me:1288: result: $CC" >&5 1161 + echo "$as_me:1290: result: $CC" >&5 1162 echo "${ECHO_T}$CC" >&6 1163 else 1496 -echo "${ECHO_T}$CC" >&6 1497 -else 1164 1498 - echo "$as_me:1291: result: no" >&5 1165 + echo "$as_me:1293: result: no" >&5 1166 echo "${ECHO_T}no" >&6 1167 fi 1168 1169 @@ -1297,7 +1299,7 @@ 1170 ac_ct_CC=$CC1171 # Extract the first word of "cc", so it can be a program name with args.1172 set dummy cc; ac_word=$21499 -echo "${ECHO_T}no" >&6 1500 -fi 1501 - 1502 -fi 1503 -if test -z "$ac_cv_prog_CC"; then 1504 - ac_ct_CC=$CC 1505 - # Extract the first word of "cc", so it can be a program name with args. 1506 -set dummy cc; ac_word=$2 1173 1507 -echo "$as_me:1300: checking for $ac_word" >&5 1174 +echo "$as_me:1302: checking for $ac_word" >&5 1175 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1176 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1177 echo $ECHO_N "(cached) $ECHO_C" >&6 1178 @@ -1312,7 +1314,7 @@ 1179 test -z "$ac_dir" && ac_dir=. 1180 $as_executable_p "$ac_dir/$ac_word" || continue 1181 ac_cv_prog_ac_ct_CC="cc" 1508 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1509 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1510 - echo $ECHO_N "(cached) $ECHO_C" >&6 1511 -else 1512 - if test -n "$ac_ct_CC"; then 1513 - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 1514 -else 1515 - ac_save_IFS=$IFS; IFS=$ac_path_separator 1516 -ac_dummy="$PATH" 1517 -for ac_dir in $ac_dummy; do 1518 - IFS=$ac_save_IFS 1519 - test -z "$ac_dir" && ac_dir=. 1520 - $as_executable_p "$ac_dir/$ac_word" || continue 1521 -ac_cv_prog_ac_ct_CC="cc" 1182 1522 -echo "$as_me:1315: found $ac_dir/$ac_word" >&5 1183 +echo "$as_me:1317: found $ac_dir/$ac_word" >&5 1184 break 1185 done 1186 1187 @@ -1320,10 +1322,10 @@ 1188 fi 1189 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1190 if test -n "$ac_ct_CC"; then 1523 -break 1524 -done 1525 - 1526 -fi 1527 -fi 1528 -ac_ct_CC=$ac_cv_prog_ac_ct_CC 1529 -if test -n "$ac_ct_CC"; then 1191 1530 - echo "$as_me:1323: result: $ac_ct_CC" >&5 1192 + echo "$as_me:1325: result: $ac_ct_CC" >&5 1193 echo "${ECHO_T}$ac_ct_CC" >&6 1194 else 1531 -echo "${ECHO_T}$ac_ct_CC" >&6 1532 -else 1195 1533 - echo "$as_me:1326: result: no" >&5 1196 + echo "$as_me:1328: result: no" >&5 1197 echo "${ECHO_T}no" >&6 1198 fi 1199 1200 @@ -1336,7 +1338,7 @@ 1201 if test -z "$CC"; then 1202 # Extract the first word of "cc", so it can be a program name with args. 1203 set dummy cc; ac_word=$2 1534 -echo "${ECHO_T}no" >&6 1535 -fi 1536 - 1537 - CC=$ac_ct_CC 1538 -else 1539 - CC="$ac_cv_prog_CC" 1540 -fi 1541 - 1542 -fi 1543 -if test -z "$CC"; then 1544 - # Extract the first word of "cc", so it can be a program name with args. 1545 -set dummy cc; ac_word=$2 1204 1546 -echo "$as_me:1339: checking for $ac_word" >&5 1205 +echo "$as_me:1341: checking for $ac_word" >&5 1206 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1207 if test "${ac_cv_prog_CC+set}" = set; then 1208 echo $ECHO_N "(cached) $ECHO_C" >&6 1209 @@ -1356,7 +1358,7 @@ 1210 continue 1211 fi 1212 ac_cv_prog_CC="cc" 1547 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1548 -if test "${ac_cv_prog_CC+set}" = set; then 1549 - echo $ECHO_N "(cached) $ECHO_C" >&6 1550 -else 1551 - if test -n "$CC"; then 1552 - ac_cv_prog_CC="$CC" # Let the user override the test. 1553 -else 1554 - ac_prog_rejected=no 1555 - ac_save_IFS=$IFS; IFS=$ac_path_separator 1556 -ac_dummy="$PATH" 1557 -for ac_dir in $ac_dummy; do 1558 - IFS=$ac_save_IFS 1559 - test -z "$ac_dir" && ac_dir=. 1560 - $as_executable_p "$ac_dir/$ac_word" || continue 1561 -if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 1562 - ac_prog_rejected=yes 1563 - continue 1564 -fi 1565 -ac_cv_prog_CC="cc" 1213 1566 -echo "$as_me:1359: found $ac_dir/$ac_word" >&5 1214 +echo "$as_me:1361: found $ac_dir/$ac_word" >&5 1215 break 1216 done 1217 1218 @@ -1378,10 +1380,10 @@ 1219 fi 1220 CC=$ac_cv_prog_CC 1221 if test -n "$CC"; then 1567 -break 1568 -done 1569 - 1570 -if test $ac_prog_rejected = yes; then 1571 - # We found a bogon in the path, so make sure we never use it. 1572 - set dummy $ac_cv_prog_CC 1573 - shift 1574 - if test $# != 0; then 1575 - # We chose a different compiler from the bogus one. 1576 - # However, it has the same basename, so the bogon will be chosen 1577 - # first if we set CC to just the basename; use the full file name. 1578 - shift 1579 - set dummy "$ac_dir/$ac_word" ${1+"$@"} 1580 - shift 1581 - ac_cv_prog_CC="$@" 1582 - fi 1583 -fi 1584 -fi 1585 -fi 1586 -CC=$ac_cv_prog_CC 1587 -if test -n "$CC"; then 1222 1588 - echo "$as_me:1381: result: $CC" >&5 1223 + echo "$as_me:1383: result: $CC" >&5 1224 echo "${ECHO_T}$CC" >&6 1225 else 1589 -echo "${ECHO_T}$CC" >&6 1590 -else 1226 1591 - echo "$as_me:1384: result: no" >&5 1227 + echo "$as_me:1386: result: no" >&5 1228 echo "${ECHO_T}no" >&6 1229 fi 1230 1231 @@ -1392,7 +1394,7 @@ 1592 -echo "${ECHO_T}no" >&6 1593 -fi 1594 - 1595 -fi 1596 -if test -z "$CC"; then 1597 - if test -n "$ac_tool_prefix"; then 1598 - for ac_prog in cl 1599 + for ac_prog in gnatgcc gcc cc 1232 1600 do 1233 1601 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 1234 1602 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 1235 1603 -echo "$as_me:1395: checking for $ac_word" >&5 1236 +echo "$as_me:1 397: checking for $ac_word" >&51604 +echo "$as_me:1204: checking for $ac_word" >&5 1237 1605 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1238 1606 if test "${ac_cv_prog_CC+set}" = set; then 1239 1607 echo $ECHO_N "(cached) $ECHO_C" >&6 1240 @@ -1407,7 +1 409,7 @@1608 @@ -1407,7 +1216,7 @@ 1241 1609 test -z "$ac_dir" && ac_dir=. 1242 1610 $as_executable_p "$ac_dir/$ac_word" || continue 1243 1611 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 1244 1612 -echo "$as_me:1410: found $ac_dir/$ac_word" >&5 1245 +echo "$as_me:1 412: found $ac_dir/$ac_word" >&51613 +echo "$as_me:1219: found $ac_dir/$ac_word" >&5 1246 1614 break 1247 1615 done 1248 1616 1249 @@ -1415,10 +1 417,10 @@1617 @@ -1415,10 +1224,10 @@ 1250 1618 fi 1251 1619 CC=$ac_cv_prog_CC 1252 1620 if test -n "$CC"; then 1253 1621 - echo "$as_me:1418: result: $CC" >&5 1254 + echo "$as_me:1 420: result: $CC" >&51622 + echo "$as_me:1227: result: $CC" >&5 1255 1623 echo "${ECHO_T}$CC" >&6 1256 1624 else 1257 1625 - echo "$as_me:1421: result: no" >&5 1258 + echo "$as_me:1 423: result: no" >&51626 + echo "$as_me:1230: result: no" >&5 1259 1627 echo "${ECHO_T}no" >&6 1260 1628 fi 1261 1629 1262 @@ -1431,7 +1433,7 @@ 1630 @@ -1427,11 +1236,11 @@ 1631 fi 1632 if test -z "$CC"; then 1633 ac_ct_CC=$CC 1634 - for ac_prog in cl 1635 + for ac_prog in gnatgcc gcc cc 1263 1636 do 1264 1637 # Extract the first word of "$ac_prog", so it can be a program name with args. 1265 1638 set dummy $ac_prog; ac_word=$2 1266 1639 -echo "$as_me:1434: checking for $ac_word" >&5 1267 +echo "$as_me:1 436: checking for $ac_word" >&51640 +echo "$as_me:1243: checking for $ac_word" >&5 1268 1641 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 1269 1642 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1270 1643 echo $ECHO_N "(cached) $ECHO_C" >&6 1271 @@ -1446,7 +1 448,7 @@1644 @@ -1446,7 +1255,7 @@ 1272 1645 test -z "$ac_dir" && ac_dir=. 1273 1646 $as_executable_p "$ac_dir/$ac_word" || continue 1274 1647 ac_cv_prog_ac_ct_CC="$ac_prog" 1275 1648 -echo "$as_me:1449: found $ac_dir/$ac_word" >&5 1276 +echo "$as_me:1 451: found $ac_dir/$ac_word" >&51649 +echo "$as_me:1258: found $ac_dir/$ac_word" >&5 1277 1650 break 1278 1651 done 1279 1652 1280 @@ -1454,10 +1 456,10 @@1653 @@ -1454,10 +1263,10 @@ 1281 1654 fi 1282 1655 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1283 1656 if test -n "$ac_ct_CC"; then 1284 1657 - echo "$as_me:1457: result: $ac_ct_CC" >&5 1285 + echo "$as_me:1 459: result: $ac_ct_CC" >&51658 + echo "$as_me:1266: result: $ac_ct_CC" >&5 1286 1659 echo "${ECHO_T}$ac_ct_CC" >&6 1287 1660 else 1288 1661 - echo "$as_me:1460: result: no" >&5 1289 + echo "$as_me:1 462: result: no" >&51662 + echo "$as_me:1269: result: no" >&5 1290 1663 echo "${ECHO_T}no" >&6 1291 1664 fi 1292 1665 1293 @@ -1469,32 +1471,32 @@ 1294 1295 fi 1296 1666 @@ -1467,34 +1276,32 @@ 1667 CC=$ac_ct_CC 1668 fi 1669 1670 -fi 1671 - 1297 1672 -test -z "$CC" && { { echo "$as_me:1472: error: no acceptable cc found in \$PATH" >&5 1298 +test -z "$CC" && { { echo "$as_me:1 474: error: no acceptable cc found in \$PATH" >&51673 +test -z "$CC" && { { echo "$as_me:1279: error: no acceptable cc found in \$PATH" >&5 1299 1674 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} 1300 1675 { (exit 1); exit 1; }; } … … 1302 1677 # Provide some information about the compiler. 1303 1678 -echo "$as_me:1477:" \ 1304 +echo "$as_me:1 479:" \1679 +echo "$as_me:1284:" \ 1305 1680 "checking for C compiler version" >&5 1306 1681 ac_compiler=`set X $ac_compile; echo $2` 1307 1682 -{ (eval echo "$as_me:1480: \"$ac_compiler --version </dev/null >&5\"") >&5 1308 +{ (eval echo "$as_me:1 482: \"$ac_compiler --version </dev/null >&5\"") >&51683 +{ (eval echo "$as_me:1287: \"$ac_compiler --version </dev/null >&5\"") >&5 1309 1684 (eval $ac_compiler --version </dev/null >&5) 2>&5 1310 1685 ac_status=$? 1311 1686 - echo "$as_me:1483: \$? = $ac_status" >&5 1312 + echo "$as_me:1 485: \$? = $ac_status" >&51687 + echo "$as_me:1290: \$? = $ac_status" >&5 1313 1688 (exit $ac_status); } 1314 1689 -{ (eval echo "$as_me:1485: \"$ac_compiler -v </dev/null >&5\"") >&5 1315 +{ (eval echo "$as_me:1 487: \"$ac_compiler -v </dev/null >&5\"") >&51690 +{ (eval echo "$as_me:1292: \"$ac_compiler -v </dev/null >&5\"") >&5 1316 1691 (eval $ac_compiler -v </dev/null >&5) 2>&5 1317 1692 ac_status=$? 1318 1693 - echo "$as_me:1488: \$? = $ac_status" >&5 1319 + echo "$as_me:1 490: \$? = $ac_status" >&51694 + echo "$as_me:1295: \$? = $ac_status" >&5 1320 1695 (exit $ac_status); } 1321 1696 -{ (eval echo "$as_me:1490: \"$ac_compiler -V </dev/null >&5\"") >&5 1322 +{ (eval echo "$as_me:1 492: \"$ac_compiler -V </dev/null >&5\"") >&51697 +{ (eval echo "$as_me:1297: \"$ac_compiler -V </dev/null >&5\"") >&5 1323 1698 (eval $ac_compiler -V </dev/null >&5) 2>&5 1324 1699 ac_status=$? 1325 1700 - echo "$as_me:1493: \$? = $ac_status" >&5 1326 + echo "$as_me:1 495: \$? = $ac_status" >&51701 + echo "$as_me:1300: \$? = $ac_status" >&5 1327 1702 (exit $ac_status); } 1328 1703 1329 1704 cat >conftest.$ac_ext <<_ACEOF 1330 1705 -#line 1497 "configure" 1331 +#line 1 499"configure"1706 +#line 1304 "configure" 1332 1707 #include "confdefs.h" 1333 1708 1334 1709 int 1335 @@ -1510,13 +1 512,13 @@1710 @@ -1510,13 +1317,13 @@ 1336 1711 # Try to create an executable without -o first, disregard a.out. 1337 1712 # It will help us diagnose broken compilers, and finding out an intuition 1338 1713 # of exeext. 1339 1714 -echo "$as_me:1513: checking for C compiler default output" >&5 1340 +echo "$as_me:1 515: checking for C compiler default output" >&51715 +echo "$as_me:1320: checking for C compiler default output" >&5 1341 1716 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 1342 1717 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 1343 1718 -if { (eval echo "$as_me:1516: \"$ac_link_default\"") >&5 1344 +if { (eval echo "$as_me:1 518: \"$ac_link_default\"") >&51719 +if { (eval echo "$as_me:1323: \"$ac_link_default\"") >&5 1345 1720 (eval $ac_link_default) 2>&5 1346 1721 ac_status=$? 1347 1722 - echo "$as_me:1519: \$? = $ac_status" >&5 1348 + echo "$as_me:1 521: \$? = $ac_status" >&51723 + echo "$as_me:1326: \$? = $ac_status" >&5 1349 1724 (exit $ac_status); }; then 1350 1725 # Find the output, starting from the most likely. This scheme is 1351 1726 # not robust to junk in `.', hence go to wildcards (a.*) only as a last 1352 @@ -1539,34 +1 541,34 @@1727 @@ -1539,34 +1346,34 @@ 1353 1728 else 1354 1729 echo "$as_me: failed program was:" >&5 1355 1730 cat conftest.$ac_ext >&5 1356 1731 -{ { echo "$as_me:1542: error: C compiler cannot create executables" >&5 1357 +{ { echo "$as_me:1 544: error: C compiler cannot create executables" >&51732 +{ { echo "$as_me:1349: error: C compiler cannot create executables" >&5 1358 1733 echo "$as_me: error: C compiler cannot create executables" >&2;} 1359 1734 { (exit 77); exit 77; }; } … … 1362 1737 ac_exeext=$ac_cv_exeext 1363 1738 -echo "$as_me:1548: result: $ac_file" >&5 1364 +echo "$as_me:1 550: result: $ac_file" >&51739 +echo "$as_me:1355: result: $ac_file" >&5 1365 1740 echo "${ECHO_T}$ac_file" >&6 1366 1741 … … 1368 1743 # the compiler is broken, or we cross compile. 1369 1744 -echo "$as_me:1553: checking whether the C compiler works" >&5 1370 +echo "$as_me:1 555: checking whether the C compiler works" >&51745 +echo "$as_me:1360: checking whether the C compiler works" >&5 1371 1746 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 1372 1747 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 … … 1375 1750 if { ac_try='./$ac_file' 1376 1751 - { (eval echo "$as_me:1559: \"$ac_try\"") >&5 1377 + { (eval echo "$as_me:1 561: \"$ac_try\"") >&51752 + { (eval echo "$as_me:1366: \"$ac_try\"") >&5 1378 1753 (eval $ac_try) 2>&5 1379 1754 ac_status=$? 1380 1755 - echo "$as_me:1562: \$? = $ac_status" >&5 1381 + echo "$as_me:1 564: \$? = $ac_status" >&51756 + echo "$as_me:1369: \$? = $ac_status" >&5 1382 1757 (exit $ac_status); }; }; then 1383 1758 cross_compiling=no … … 1387 1762 else 1388 1763 - { { echo "$as_me:1569: error: cannot run C compiled programs. 1389 + { { echo "$as_me:1 571: error: cannot run C compiled programs.1764 + { { echo "$as_me:1376: error: cannot run C compiled programs. 1390 1765 If you meant to cross compile, use \`--host'." >&5 1391 1766 echo "$as_me: error: cannot run C compiled programs. 1392 1767 If you meant to cross compile, use \`--host'." >&2;} 1393 @@ -1574,24 +1 576,24 @@1768 @@ -1574,24 +1381,24 @@ 1394 1769 fi 1395 1770 fi 1396 1771 fi 1397 1772 -echo "$as_me:1577: result: yes" >&5 1398 +echo "$as_me:1 579: result: yes" >&51773 +echo "$as_me:1384: result: yes" >&5 1399 1774 echo "${ECHO_T}yes" >&6 1400 1775 … … 1404 1779 # the compiler is broken, or we cross compile. 1405 1780 -echo "$as_me:1584: checking whether we are cross compiling" >&5 1406 +echo "$as_me:1 586: checking whether we are cross compiling" >&51781 +echo "$as_me:1391: checking whether we are cross compiling" >&5 1407 1782 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 1408 1783 -echo "$as_me:1586: result: $cross_compiling" >&5 1409 +echo "$as_me:1 588: result: $cross_compiling" >&51784 +echo "$as_me:1393: result: $cross_compiling" >&5 1410 1785 echo "${ECHO_T}$cross_compiling" >&6 1411 1786 1412 1787 -echo "$as_me:1589: checking for executable suffix" >&5 1413 +echo "$as_me:1 591: checking for executable suffix" >&51788 +echo "$as_me:1396: checking for executable suffix" >&5 1414 1789 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 1415 1790 -if { (eval echo "$as_me:1591: \"$ac_link\"") >&5 1416 +if { (eval echo "$as_me:1 593: \"$ac_link\"") >&51791 +if { (eval echo "$as_me:1398: \"$ac_link\"") >&5 1417 1792 (eval $ac_link) 2>&5 1418 1793 ac_status=$? 1419 1794 - echo "$as_me:1594: \$? = $ac_status" >&5 1420 + echo "$as_me:1 596: \$? = $ac_status" >&51795 + echo "$as_me:1401: \$? = $ac_status" >&5 1421 1796 (exit $ac_status); }; then 1422 1797 # If both `conftest.exe' and `conftest' are `present' (well, observable) 1423 1798 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will 1424 @@ -1607,25 +1 609,25 @@1799 @@ -1607,25 +1414,25 @@ 1425 1800 esac 1426 1801 done 1427 1802 else 1428 1803 - { { echo "$as_me:1610: error: cannot compute EXEEXT: cannot compile and link" >&5 1429 + { { echo "$as_me:1 612: error: cannot compute EXEEXT: cannot compile and link" >&51804 + { { echo "$as_me:1417: error: cannot compute EXEEXT: cannot compile and link" >&5 1430 1805 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} 1431 1806 { (exit 1); exit 1; }; } … … 1434 1809 rm -f conftest$ac_cv_exeext 1435 1810 -echo "$as_me:1616: result: $ac_cv_exeext" >&5 1436 +echo "$as_me:1 618: result: $ac_cv_exeext" >&51811 +echo "$as_me:1423: result: $ac_cv_exeext" >&5 1437 1812 echo "${ECHO_T}$ac_cv_exeext" >&6 1438 1813 … … 1441 1816 ac_exeext=$EXEEXT 1442 1817 -echo "$as_me:1622: checking for object suffix" >&5 1443 +echo "$as_me:1 624: checking for object suffix" >&51818 +echo "$as_me:1429: checking for object suffix" >&5 1444 1819 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 1445 1820 if test "${ac_cv_objext+set}" = set; then … … 1448 1823 cat >conftest.$ac_ext <<_ACEOF 1449 1824 -#line 1628 "configure" 1450 +#line 1 630"configure"1825 +#line 1435 "configure" 1451 1826 #include "confdefs.h" 1452 1827 1453 1828 int 1454 @@ -1637,10 +1 639,10 @@1829 @@ -1637,10 +1444,10 @@ 1455 1830 } 1456 1831 _ACEOF 1457 1832 rm -f conftest.o conftest.obj 1458 1833 -if { (eval echo "$as_me:1640: \"$ac_compile\"") >&5 1459 +if { (eval echo "$as_me:1 642: \"$ac_compile\"") >&51834 +if { (eval echo "$as_me:1447: \"$ac_compile\"") >&5 1460 1835 (eval $ac_compile) 2>&5 1461 1836 ac_status=$? 1462 1837 - echo "$as_me:1643: \$? = $ac_status" >&5 1463 + echo "$as_me:1 645: \$? = $ac_status" >&51838 + echo "$as_me:1450: \$? = $ac_status" >&5 1464 1839 (exit $ac_status); }; then 1465 1840 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do 1466 1841 case $ac_file in 1467 @@ -1652,24 +1 654,24 @@1842 @@ -1652,24 +1459,24 @@ 1468 1843 else 1469 1844 echo "$as_me: failed program was:" >&5 1470 1845 cat conftest.$ac_ext >&5 1471 1846 -{ { echo "$as_me:1655: error: cannot compute OBJEXT: cannot compile" >&5 1472 +{ { echo "$as_me:1 657: error: cannot compute OBJEXT: cannot compile" >&51847 +{ { echo "$as_me:1462: error: cannot compute OBJEXT: cannot compile" >&5 1473 1848 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} 1474 1849 { (exit 1); exit 1; }; } … … 1478 1853 fi 1479 1854 -echo "$as_me:1662: result: $ac_cv_objext" >&5 1480 +echo "$as_me:1 664: result: $ac_cv_objext" >&51855 +echo "$as_me:1469: result: $ac_cv_objext" >&5 1481 1856 echo "${ECHO_T}$ac_cv_objext" >&6 1482 1857 OBJEXT=$ac_cv_objext 1483 1858 ac_objext=$OBJEXT 1484 1859 -echo "$as_me:1666: checking whether we are using the GNU C compiler" >&5 1485 +echo "$as_me:1 668: checking whether we are using the GNU C compiler" >&51860 +echo "$as_me:1473: checking whether we are using the GNU C compiler" >&5 1486 1861 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 1487 1862 if test "${ac_cv_c_compiler_gnu+set}" = set; then … … 1490 1865 cat >conftest.$ac_ext <<_ACEOF 1491 1866 -#line 1672 "configure" 1492 +#line 1 674"configure"1867 +#line 1479 "configure" 1493 1868 #include "confdefs.h" 1494 1869 1495 1870 int 1496 @@ -1684,16 +1 686,16 @@1871 @@ -1684,16 +1491,16 @@ 1497 1872 } 1498 1873 _ACEOF 1499 1874 rm -f conftest.$ac_objext 1500 1875 -if { (eval echo "$as_me:1687: \"$ac_compile\"") >&5 1501 +if { (eval echo "$as_me:1 689: \"$ac_compile\"") >&51876 +if { (eval echo "$as_me:1494: \"$ac_compile\"") >&5 1502 1877 (eval $ac_compile) 2>&5 1503 1878 ac_status=$? 1504 1879 - echo "$as_me:1690: \$? = $ac_status" >&5 1505 + echo "$as_me:1 692: \$? = $ac_status" >&51880 + echo "$as_me:1497: \$? = $ac_status" >&5 1506 1881 (exit $ac_status); } && 1507 1882 { ac_try='test -s conftest.$ac_objext' 1508 1883 - { (eval echo "$as_me:1693: \"$ac_try\"") >&5 1509 + { (eval echo "$as_me:1 695: \"$ac_try\"") >&51884 + { (eval echo "$as_me:1500: \"$ac_try\"") >&5 1510 1885 (eval $ac_try) 2>&5 1511 1886 ac_status=$? 1512 1887 - echo "$as_me:1696: \$? = $ac_status" >&5 1513 + echo "$as_me:1 698: \$? = $ac_status" >&51888 + echo "$as_me:1503: \$? = $ac_status" >&5 1514 1889 (exit $ac_status); }; }; then 1515 1890 ac_compiler_gnu=yes 1516 1891 else 1517 @@ -1705,19 +1 707,19 @@1892 @@ -1705,19 +1512,19 @@ 1518 1893 ac_cv_c_compiler_gnu=$ac_compiler_gnu 1519 1894 1520 1895 fi 1521 1896 -echo "$as_me:1708: result: $ac_cv_c_compiler_gnu" >&5 1522 +echo "$as_me:1 710: result: $ac_cv_c_compiler_gnu" >&51897 +echo "$as_me:1515: result: $ac_cv_c_compiler_gnu" >&5 1523 1898 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 1524 1899 GCC=`test $ac_compiler_gnu = yes && echo yes` … … 1527 1902 CFLAGS="-g" 1528 1903 -echo "$as_me:1714: checking whether $CC accepts -g" >&5 1529 +echo "$as_me:1 716: checking whether $CC accepts -g" >&51904 +echo "$as_me:1521: checking whether $CC accepts -g" >&5 1530 1905 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 1531 1906 if test "${ac_cv_prog_cc_g+set}" = set; then … … 1534 1909 cat >conftest.$ac_ext <<_ACEOF 1535 1910 -#line 1720 "configure" 1536 +#line 1 722"configure"1911 +#line 1527 "configure" 1537 1912 #include "confdefs.h" 1538 1913 1539 1914 int 1540 @@ -1729,16 +1 731,16 @@1915 @@ -1729,16 +1536,16 @@ 1541 1916 } 1542 1917 _ACEOF 1543 1918 rm -f conftest.$ac_objext 1544 1919 -if { (eval echo "$as_me:1732: \"$ac_compile\"") >&5 1545 +if { (eval echo "$as_me:1 734: \"$ac_compile\"") >&51920 +if { (eval echo "$as_me:1539: \"$ac_compile\"") >&5 1546 1921 (eval $ac_compile) 2>&5 1547 1922 ac_status=$? 1548 1923 - echo "$as_me:1735: \$? = $ac_status" >&5 1549 + echo "$as_me:1 737: \$? = $ac_status" >&51924 + echo "$as_me:1542: \$? = $ac_status" >&5 1550 1925 (exit $ac_status); } && 1551 1926 { ac_try='test -s conftest.$ac_objext' 1552 1927 - { (eval echo "$as_me:1738: \"$ac_try\"") >&5 1553 + { (eval echo "$as_me:1 740: \"$ac_try\"") >&51928 + { (eval echo "$as_me:1545: \"$ac_try\"") >&5 1554 1929 (eval $ac_try) 2>&5 1555 1930 ac_status=$? 1556 1931 - echo "$as_me:1741: \$? = $ac_status" >&5 1557 + echo "$as_me:1 743: \$? = $ac_status" >&51932 + echo "$as_me:1548: \$? = $ac_status" >&5 1558 1933 (exit $ac_status); }; }; then 1559 1934 ac_cv_prog_cc_g=yes 1560 1935 else 1561 @@ -1748,7 +1 750,7 @@1936 @@ -1748,7 +1555,7 @@ 1562 1937 fi 1563 1938 rm -f conftest.$ac_objext conftest.$ac_ext 1564 1939 fi 1565 1940 -echo "$as_me:1751: result: $ac_cv_prog_cc_g" >&5 1566 +echo "$as_me:1 753: result: $ac_cv_prog_cc_g" >&51941 +echo "$as_me:1558: result: $ac_cv_prog_cc_g" >&5 1567 1942 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 1568 1943 if test "$ac_test_CFLAGS" = set; then 1569 1944 CFLAGS=$ac_save_CFLAGS 1570 @@ -1775,16 +1 777,16 @@1945 @@ -1775,16 +1582,16 @@ 1571 1946 #endif 1572 1947 _ACEOF 1573 1948 rm -f conftest.$ac_objext 1574 1949 -if { (eval echo "$as_me:1778: \"$ac_compile\"") >&5 1575 +if { (eval echo "$as_me:1 780: \"$ac_compile\"") >&51950 +if { (eval echo "$as_me:1585: \"$ac_compile\"") >&5 1576 1951 (eval $ac_compile) 2>&5 1577 1952 ac_status=$? 1578 1953 - echo "$as_me:1781: \$? = $ac_status" >&5 1579 + echo "$as_me:1 783: \$? = $ac_status" >&51954 + echo "$as_me:1588: \$? = $ac_status" >&5 1580 1955 (exit $ac_status); } && 1581 1956 { ac_try='test -s conftest.$ac_objext' 1582 1957 - { (eval echo "$as_me:1784: \"$ac_try\"") >&5 1583 + { (eval echo "$as_me:1 786: \"$ac_try\"") >&51958 + { (eval echo "$as_me:1591: \"$ac_try\"") >&5 1584 1959 (eval $ac_try) 2>&5 1585 1960 ac_status=$? 1586 1961 - echo "$as_me:1787: \$? = $ac_status" >&5 1587 + echo "$as_me:1 789: \$? = $ac_status" >&51962 + echo "$as_me:1594: \$? = $ac_status" >&5 1588 1963 (exit $ac_status); }; }; then 1589 1964 for ac_declaration in \ 1590 1965 ''\ 1591 @@ -1796,7 +1 798,7 @@1966 @@ -1796,7 +1603,7 @@ 1592 1967 'void exit (int);' 1593 1968 do 1594 1969 cat >conftest.$ac_ext <<_ACEOF 1595 1970 -#line 1799 "configure" 1596 +#line 1 801"configure"1971 +#line 1606 "configure" 1597 1972 #include "confdefs.h" 1598 1973 #include <stdlib.h> 1599 1974 $ac_declaration 1600 @@ -1809,16 +1 811,16 @@1975 @@ -1809,16 +1616,16 @@ 1601 1976 } 1602 1977 _ACEOF 1603 1978 rm -f conftest.$ac_objext 1604 1979 -if { (eval echo "$as_me:1812: \"$ac_compile\"") >&5 1605 +if { (eval echo "$as_me:1 814: \"$ac_compile\"") >&51980 +if { (eval echo "$as_me:1619: \"$ac_compile\"") >&5 1606 1981 (eval $ac_compile) 2>&5 1607 1982 ac_status=$? 1608 1983 - echo "$as_me:1815: \$? = $ac_status" >&5 1609 + echo "$as_me:1 817: \$? = $ac_status" >&51984 + echo "$as_me:1622: \$? = $ac_status" >&5 1610 1985 (exit $ac_status); } && 1611 1986 { ac_try='test -s conftest.$ac_objext' 1612 1987 - { (eval echo "$as_me:1818: \"$ac_try\"") >&5 1613 + { (eval echo "$as_me:1 820: \"$ac_try\"") >&51988 + { (eval echo "$as_me:1625: \"$ac_try\"") >&5 1614 1989 (eval $ac_try) 2>&5 1615 1990 ac_status=$? 1616 1991 - echo "$as_me:1821: \$? = $ac_status" >&5 1617 + echo "$as_me:1 823: \$? = $ac_status" >&51992 + echo "$as_me:1628: \$? = $ac_status" >&5 1618 1993 (exit $ac_status); }; }; then 1619 1994 : 1620 1995 else 1621 @@ -1828,7 +1 830,7 @@1996 @@ -1828,7 +1635,7 @@ 1622 1997 fi 1623 1998 rm -f conftest.$ac_objext conftest.$ac_ext 1624 1999 cat >conftest.$ac_ext <<_ACEOF 1625 2000 -#line 1831 "configure" 1626 +#line 1 833"configure"2001 +#line 1638 "configure" 1627 2002 #include "confdefs.h" 1628 2003 $ac_declaration 1629 2004 int 1630 @@ -1840,16 +1 842,16 @@2005 @@ -1840,16 +1647,16 @@ 1631 2006 } 1632 2007 _ACEOF 1633 2008 rm -f conftest.$ac_objext 1634 2009 -if { (eval echo "$as_me:1843: \"$ac_compile\"") >&5 1635 +if { (eval echo "$as_me:1 845: \"$ac_compile\"") >&52010 +if { (eval echo "$as_me:1650: \"$ac_compile\"") >&5 1636 2011 (eval $ac_compile) 2>&5 1637 2012 ac_status=$? 1638 2013 - echo "$as_me:1846: \$? = $ac_status" >&5 1639 + echo "$as_me:1 848: \$? = $ac_status" >&52014 + echo "$as_me:1653: \$? = $ac_status" >&5 1640 2015 (exit $ac_status); } && 1641 2016 { ac_try='test -s conftest.$ac_objext' 1642 2017 - { (eval echo "$as_me:1849: \"$ac_try\"") >&5 1643 + { (eval echo "$as_me:1 851: \"$ac_try\"") >&52018 + { (eval echo "$as_me:1656: \"$ac_try\"") >&5 1644 2019 (eval $ac_try) 2>&5 1645 2020 ac_status=$? 1646 2021 - echo "$as_me:1852: \$? = $ac_status" >&5 1647 + echo "$as_me:1 854: \$? = $ac_status" >&52022 + echo "$as_me:1659: \$? = $ac_status" >&5 1648 2023 (exit $ac_status); }; }; then 1649 2024 break 1650 2025 else 1651 @@ -1879,11 +1 881,11 @@2026 @@ -1879,11 +1686,11 @@ 1652 2027 1653 2028 GCC_VERSION=none 1654 2029 if test "$GCC" = yes ; then 1655 2030 - echo "$as_me:1882: checking version of $CC" >&5 1656 + echo "$as_me:1 884: checking version of $CC" >&52031 + echo "$as_me:1689: checking version of $CC" >&5 1657 2032 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 1658 2033 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" 1659 2034 test -z "$GCC_VERSION" && GCC_VERSION=unknown 1660 2035 - echo "$as_me:1886: result: $GCC_VERSION" >&5 1661 + echo "$as_me:1 888: result: $GCC_VERSION" >&52036 + echo "$as_me:1693: result: $GCC_VERSION" >&5 1662 2037 echo "${ECHO_T}$GCC_VERSION" >&6 1663 2038 fi 1664 2039 1665 @@ -1893,7 +1 895,7 @@2040 @@ -1893,7 +1700,7 @@ 1666 2041 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 1667 2042 ac_compiler_gnu=$ac_cv_c_compiler_gnu 1668 2043 ac_main_return=return 1669 2044 -echo "$as_me:1896: checking how to run the C preprocessor" >&5 1670 +echo "$as_me:1 898: checking how to run the C preprocessor" >&52045 +echo "$as_me:1703: checking how to run the C preprocessor" >&5 1671 2046 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 1672 2047 # On Suns, sometimes $CPP names a directory. 1673 2048 if test -n "$CPP" && test -d "$CPP"; then 1674 @@ -1914,18 +1 916,18 @@2049 @@ -1914,18 +1721,18 @@ 1675 2050 # On the NeXT, cc -E runs the code through the compiler's parser, 1676 2051 # not just through cpp. "Syntax error" is here to catch this case. 1677 2052 cat >conftest.$ac_ext <<_ACEOF 1678 2053 -#line 1917 "configure" 1679 +#line 1 919"configure"2054 +#line 1724 "configure" 1680 2055 #include "confdefs.h" 1681 2056 #include <assert.h> … … 1683 2058 _ACEOF 1684 2059 -if { (eval echo "$as_me:1922: \"$ac_cpp conftest.$ac_ext\"") >&5 1685 +if { (eval echo "$as_me:1 924: \"$ac_cpp conftest.$ac_ext\"") >&52060 +if { (eval echo "$as_me:1729: \"$ac_cpp conftest.$ac_ext\"") >&5 1686 2061 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 1687 2062 ac_status=$? … … 1690 2065 cat conftest.err >&5 1691 2066 - echo "$as_me:1928: \$? = $ac_status" >&5 1692 + echo "$as_me:1 930: \$? = $ac_status" >&52067 + echo "$as_me:1735: \$? = $ac_status" >&5 1693 2068 (exit $ac_status); } >/dev/null; then 1694 2069 if test -s conftest.err; then 1695 2070 ac_cpp_err=$ac_c_preproc_warn_flag 1696 @@ -1948,17 +1 950,17 @@2071 @@ -1948,17 +1755,17 @@ 1697 2072 # OK, works on sane cases. Now check whether non-existent headers 1698 2073 # can be detected and how. 1699 2074 cat >conftest.$ac_ext <<_ACEOF 1700 2075 -#line 1951 "configure" 1701 +#line 1 953"configure"2076 +#line 1758 "configure" 1702 2077 #include "confdefs.h" 1703 2078 #include <ac_nonexistent.h> 1704 2079 _ACEOF 1705 2080 -if { (eval echo "$as_me:1955: \"$ac_cpp conftest.$ac_ext\"") >&5 1706 +if { (eval echo "$as_me:1 957: \"$ac_cpp conftest.$ac_ext\"") >&52081 +if { (eval echo "$as_me:1762: \"$ac_cpp conftest.$ac_ext\"") >&5 1707 2082 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 1708 2083 ac_status=$? … … 1711 2086 cat conftest.err >&5 1712 2087 - echo "$as_me:1961: \$? = $ac_status" >&5 1713 + echo "$as_me:1 963: \$? = $ac_status" >&52088 + echo "$as_me:1768: \$? = $ac_status" >&5 1714 2089 (exit $ac_status); } >/dev/null; then 1715 2090 if test -s conftest.err; then 1716 2091 ac_cpp_err=$ac_c_preproc_warn_flag 1717 @@ -1995,7 +1 997,7 @@2092 @@ -1995,7 +1802,7 @@ 1718 2093 else 1719 2094 ac_cv_prog_CPP=$CPP 1720 2095 fi 1721 2096 -echo "$as_me:1998: result: $CPP" >&5 1722 +echo "$as_me: 2000: result: $CPP" >&52097 +echo "$as_me:1805: result: $CPP" >&5 1723 2098 echo "${ECHO_T}$CPP" >&6 1724 2099 ac_preproc_ok=false 1725 2100 for ac_c_preproc_warn_flag in '' yes 1726 @@ -2005,18 + 2007,18 @@2101 @@ -2005,18 +1812,18 @@ 1727 2102 # On the NeXT, cc -E runs the code through the compiler's parser, 1728 2103 # not just through cpp. "Syntax error" is here to catch this case. 1729 2104 cat >conftest.$ac_ext <<_ACEOF 1730 2105 -#line 2008 "configure" 1731 +#line 2010"configure"2106 +#line 1815 "configure" 1732 2107 #include "confdefs.h" 1733 2108 #include <assert.h> … … 1735 2110 _ACEOF 1736 2111 -if { (eval echo "$as_me:2013: \"$ac_cpp conftest.$ac_ext\"") >&5 1737 +if { (eval echo "$as_me: 2015: \"$ac_cpp conftest.$ac_ext\"") >&52112 +if { (eval echo "$as_me:1820: \"$ac_cpp conftest.$ac_ext\"") >&5 1738 2113 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 1739 2114 ac_status=$? … … 1742 2117 cat conftest.err >&5 1743 2118 - echo "$as_me:2019: \$? = $ac_status" >&5 1744 + echo "$as_me: 2021: \$? = $ac_status" >&52119 + echo "$as_me:1826: \$? = $ac_status" >&5 1745 2120 (exit $ac_status); } >/dev/null; then 1746 2121 if test -s conftest.err; then 1747 2122 ac_cpp_err=$ac_c_preproc_warn_flag 1748 @@ -2039,17 + 2041,17 @@2123 @@ -2039,17 +1846,17 @@ 1749 2124 # OK, works on sane cases. Now check whether non-existent headers 1750 2125 # can be detected and how. 1751 2126 cat >conftest.$ac_ext <<_ACEOF 1752 2127 -#line 2042 "configure" 1753 +#line 2044"configure"2128 +#line 1849 "configure" 1754 2129 #include "confdefs.h" 1755 2130 #include <ac_nonexistent.h> 1756 2131 _ACEOF 1757 2132 -if { (eval echo "$as_me:2046: \"$ac_cpp conftest.$ac_ext\"") >&5 1758 +if { (eval echo "$as_me: 2048: \"$ac_cpp conftest.$ac_ext\"") >&52133 +if { (eval echo "$as_me:1853: \"$ac_cpp conftest.$ac_ext\"") >&5 1759 2134 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 1760 2135 ac_status=$? … … 1763 2138 cat conftest.err >&5 1764 2139 - echo "$as_me:2052: \$? = $ac_status" >&5 1765 + echo "$as_me: 2054: \$? = $ac_status" >&52140 + echo "$as_me:1859: \$? = $ac_status" >&5 1766 2141 (exit $ac_status); } >/dev/null; then 1767 2142 if test -s conftest.err; then 1768 2143 ac_cpp_err=$ac_c_preproc_warn_flag 1769 @@ -2077,7 + 2079,7 @@2144 @@ -2077,7 +1884,7 @@ 1770 2145 if $ac_preproc_ok; then 1771 2146 : 1772 2147 else 1773 2148 - { { echo "$as_me:2080: error: C preprocessor \"$CPP\" fails sanity check" >&5 1774 + { { echo "$as_me: 2082: error: C preprocessor \"$CPP\" fails sanity check" >&52149 + { { echo "$as_me:1887: error: C preprocessor \"$CPP\" fails sanity check" >&5 1775 2150 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} 1776 2151 { (exit 1); exit 1; }; } 1777 2152 fi 1778 @@ -2090,14 + 2092,14 @@2153 @@ -2090,14 +1897,14 @@ 1779 2154 ac_main_return=return 1780 2155 1781 2156 if test $ac_cv_c_compiler_gnu = yes; then 1782 2157 - echo "$as_me:2093: checking whether $CC needs -traditional" >&5 1783 + echo "$as_me: 2095: checking whether $CC needs -traditional" >&52158 + echo "$as_me:1900: checking whether $CC needs -traditional" >&5 1784 2159 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6 1785 2160 if test "${ac_cv_prog_gcc_traditional+set}" = set; then … … 1789 2164 cat >conftest.$ac_ext <<_ACEOF 1790 2165 -#line 2100 "configure" 1791 +#line 2102"configure"2166 +#line 1907 "configure" 1792 2167 #include "confdefs.h" 1793 2168 #include <sgtty.h> 1794 2169 int Autoconf = TIOCGETP; 1795 @@ -2112,7 + 2114,7 @@2170 @@ -2112,7 +1919,7 @@ 1796 2171 1797 2172 if test $ac_cv_prog_gcc_traditional = no; then 1798 2173 cat >conftest.$ac_ext <<_ACEOF 1799 2174 -#line 2115 "configure" 1800 +#line 2117"configure"2175 +#line 1922 "configure" 1801 2176 #include "confdefs.h" 1802 2177 #include <termio.h> 1803 2178 int Autoconf = TCGETA; 1804 @@ -2125,14 + 2127,14 @@2179 @@ -2125,14 +1932,14 @@ 1805 2180 1806 2181 fi 1807 2182 fi 1808 2183 -echo "$as_me:2128: result: $ac_cv_prog_gcc_traditional" >&5 1809 +echo "$as_me: 2130: result: $ac_cv_prog_gcc_traditional" >&52184 +echo "$as_me:1935: result: $ac_cv_prog_gcc_traditional" >&5 1810 2185 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6 1811 2186 if test $ac_cv_prog_gcc_traditional = yes; then … … 1815 2190 1816 2191 -echo "$as_me:2135: checking whether $CC understands -c and -o together" >&5 1817 +echo "$as_me: 2137: checking whether $CC understands -c and -o together" >&52192 +echo "$as_me:1942: checking whether $CC understands -c and -o together" >&5 1818 2193 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6 1819 2194 if test "${cf_cv_prog_CC_c_o+set}" = set; then 1820 2195 echo $ECHO_N "(cached) $ECHO_C" >&6 1821 @@ -2148,15 + 2150,15 @@2196 @@ -2148,15 +1955,15 @@ 1822 2197 # We do the test twice because some compilers refuse to overwrite an 1823 2198 # existing .o file with -o, though they will create one. 1824 2199 ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' 1825 2200 -if { (eval echo "$as_me:2151: \"$ac_try\"") >&5 1826 +if { (eval echo "$as_me: 2153: \"$ac_try\"") >&52201 +if { (eval echo "$as_me:1958: \"$ac_try\"") >&5 1827 2202 (eval $ac_try) 2>&5 1828 2203 ac_status=$? 1829 2204 - echo "$as_me:2154: \$? = $ac_status" >&5 1830 + echo "$as_me: 2156: \$? = $ac_status" >&52205 + echo "$as_me:1961: \$? = $ac_status" >&5 1831 2206 (exit $ac_status); } && 1832 2207 - test -f conftest2.$ac_objext && { (eval echo "$as_me:2156: \"$ac_try\"") >&5 1833 + test -f conftest2.$ac_objext && { (eval echo "$as_me: 2158: \"$ac_try\"") >&52208 + test -f conftest2.$ac_objext && { (eval echo "$as_me:1963: \"$ac_try\"") >&5 1834 2209 (eval $ac_try) 2>&5 1835 2210 ac_status=$? 1836 2211 - echo "$as_me:2159: \$? = $ac_status" >&5 1837 + echo "$as_me: 2161: \$? = $ac_status" >&52212 + echo "$as_me:1966: \$? = $ac_status" >&5 1838 2213 (exit $ac_status); }; 1839 2214 then 1840 2215 eval cf_cv_prog_CC_c_o=yes 1841 @@ -2167,19 + 2169,19 @@2216 @@ -2167,19 +1974,19 @@ 1842 2217 1843 2218 fi 1844 2219 if test $cf_cv_prog_CC_c_o = yes; then 1845 2220 - echo "$as_me:2170: result: yes" >&5 1846 + echo "$as_me: 2172: result: yes" >&52221 + echo "$as_me:1977: result: yes" >&5 1847 2222 echo "${ECHO_T}yes" >&6 1848 2223 else 1849 2224 - echo "$as_me:2173: result: no" >&5 1850 + echo "$as_me: 2175: result: no" >&52225 + echo "$as_me:1980: result: no" >&5 1851 2226 echo "${ECHO_T}no" >&6 1852 2227 fi 1853 2228 1854 2229 -echo "$as_me:2177: checking for POSIXized ISC" >&5 1855 +echo "$as_me: 2179: checking for POSIXized ISC" >&52230 +echo "$as_me:1984: checking for POSIXized ISC" >&5 1856 2231 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6 1857 2232 if test -d /etc/conf/kconfig.d && … … 1859 2234 then 1860 2235 - echo "$as_me:2182: result: yes" >&5 1861 + echo "$as_me: 2184: result: yes" >&52236 + echo "$as_me:1989: result: yes" >&5 1862 2237 echo "${ECHO_T}yes" >&6 1863 2238 ISC=yes # If later tests want to check for ISC. 1864 2239 1865 @@ -2193,12 +2 195,115 @@2240 @@ -2193,12 +2000,115 @@ 1866 2241 CC="$CC -Xp" 1867 2242 fi 1868 2243 else 1869 2244 - echo "$as_me:2196: result: no" >&5 1870 + echo "$as_me:2 198: result: no" >&52245 + echo "$as_me:2003: result: no" >&5 1871 2246 echo "${ECHO_T}no" >&6 1872 2247 ISC= … … 1880 2255 +# into CC. This will not help with broken scripts that wrap the compiler with 1881 2256 +# options, but eliminates a more common category of user confusion. 1882 +echo "$as_me:2 209: checking \$CC variable" >&52257 +echo "$as_me:2014: checking \$CC variable" >&5 1883 2258 +echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 1884 2259 +case "$CC" in #(vi 1885 2260 +*[\ \ ]-[IUD]*) 1886 + echo "$as_me:2 213: result: broken" >&52261 + echo "$as_me:2018: result: broken" >&5 1887 2262 +echo "${ECHO_T}broken" >&6 1888 + { echo "$as_me:2 215: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&52263 + { echo "$as_me:2020: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 1889 2264 +echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} 1890 2265 + # humor him... … … 1972 2347 + ;; 1973 2348 +*) 1974 + echo "$as_me:2 301: result: ok" >&52349 + echo "$as_me:2106: result: ok" >&5 1975 2350 +echo "${ECHO_T}ok" >&6 1976 2351 + ;; 1977 2352 +esac 1978 2353 + 1979 +echo "$as_me:2 306: checking for ${CC:-cc} option to accept ANSI C" >&52354 +echo "$as_me:2111: checking for ${CC:-cc} option to accept ANSI C" >&5 1980 2355 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6 1981 2356 if test "${cf_cv_ansi_cc+set}" = set; then 1982 2357 echo $ECHO_N "(cached) $ECHO_C" >&6 1983 @@ -2302,7 +2 407,7 @@2358 @@ -2302,7 +2212,7 @@ 1984 2359 fi 1985 2360 1986 2361 cat >conftest.$ac_ext <<_ACEOF 1987 2362 -#line 2305 "configure" 1988 +#line 2 410"configure"2363 +#line 2215 "configure" 1989 2364 #include "confdefs.h" 1990 2365 1991 2366 #ifndef CC_HAS_PROTOS 1992 @@ -2323,16 +2 428,16 @@2367 @@ -2323,16 +2233,16 @@ 1993 2368 } 1994 2369 _ACEOF 1995 2370 rm -f conftest.$ac_objext 1996 2371 -if { (eval echo "$as_me:2326: \"$ac_compile\"") >&5 1997 +if { (eval echo "$as_me:2 431: \"$ac_compile\"") >&52372 +if { (eval echo "$as_me:2236: \"$ac_compile\"") >&5 1998 2373 (eval $ac_compile) 2>&5 1999 2374 ac_status=$? 2000 2375 - echo "$as_me:2329: \$? = $ac_status" >&5 2001 + echo "$as_me:2 434: \$? = $ac_status" >&52376 + echo "$as_me:2239: \$? = $ac_status" >&5 2002 2377 (exit $ac_status); } && 2003 2378 { ac_try='test -s conftest.$ac_objext' 2004 2379 - { (eval echo "$as_me:2332: \"$ac_try\"") >&5 2005 + { (eval echo "$as_me:2 437: \"$ac_try\"") >&52380 + { (eval echo "$as_me:2242: \"$ac_try\"") >&5 2006 2381 (eval $ac_try) 2>&5 2007 2382 ac_status=$? 2008 2383 - echo "$as_me:2335: \$? = $ac_status" >&5 2009 + echo "$as_me:2 440: \$? = $ac_status" >&52384 + echo "$as_me:2245: \$? = $ac_status" >&5 2010 2385 (exit $ac_status); }; }; then 2011 2386 cf_cv_ansi_cc="$cf_arg"; break 2012 2387 else 2013 @@ -2345,7 +2 450,7 @@2388 @@ -2345,7 +2255,7 @@ 2014 2389 CPPFLAGS="$cf_save_CPPFLAGS" 2015 2390 2016 2391 fi 2017 2392 -echo "$as_me:2348: result: $cf_cv_ansi_cc" >&5 2018 +echo "$as_me:2 453: result: $cf_cv_ansi_cc" >&52393 +echo "$as_me:2258: result: $cf_cv_ansi_cc" >&5 2019 2394 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 2020 2395 2021 2396 if test "$cf_cv_ansi_cc" != "no"; then 2022 @@ -2438,7 +2 543,7 @@2397 @@ -2438,7 +2348,7 @@ 2023 2398 fi 2024 2399 2025 2400 if test "$cf_cv_ansi_cc" = "no"; then 2026 2401 - { { echo "$as_me:2441: error: Your compiler does not appear to recognize prototypes. 2027 + { { echo "$as_me:2 546: error: Your compiler does not appear to recognize prototypes.2402 + { { echo "$as_me:2351: error: Your compiler does not appear to recognize prototypes. 2028 2403 You have the following choices: 2029 2404 a. adjust your compiler options 2030 2405 b. get an up-to-date compiler 2031 @@ -2485,7 +2 590,7 @@2406 @@ -2485,7 +2395,7 @@ 2032 2407 do 2033 2408 # Extract the first word of "$ac_prog", so it can be a program name with args. 2034 2409 set dummy $ac_prog; ac_word=$2 2035 2410 -echo "$as_me:2488: checking for $ac_word" >&5 2036 +echo "$as_me:2 593: checking for $ac_word" >&52411 +echo "$as_me:2398: checking for $ac_word" >&5 2037 2412 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2038 2413 if test "${ac_cv_prog_AWK+set}" = set; then 2039 2414 echo $ECHO_N "(cached) $ECHO_C" >&6 2040 @@ -2500,7 +2 605,7 @@2415 @@ -2500,7 +2410,7 @@ 2041 2416 test -z "$ac_dir" && ac_dir=. 2042 2417 $as_executable_p "$ac_dir/$ac_word" || continue 2043 2418 ac_cv_prog_AWK="$ac_prog" 2044 2419 -echo "$as_me:2503: found $ac_dir/$ac_word" >&5 2045 +echo "$as_me:2 608: found $ac_dir/$ac_word" >&52420 +echo "$as_me:2413: found $ac_dir/$ac_word" >&5 2046 2421 break 2047 2422 done 2048 2423 2049 @@ -2508,21 +2 613,21 @@2424 @@ -2508,21 +2418,21 @@ 2050 2425 fi 2051 2426 AWK=$ac_cv_prog_AWK 2052 2427 if test -n "$AWK"; then 2053 2428 - echo "$as_me:2511: result: $AWK" >&5 2054 + echo "$as_me:2 616: result: $AWK" >&52429 + echo "$as_me:2421: result: $AWK" >&5 2055 2430 echo "${ECHO_T}$AWK" >&6 2056 2431 else 2057 2432 - echo "$as_me:2514: result: no" >&5 2058 + echo "$as_me:2 619: result: no" >&52433 + echo "$as_me:2424: result: no" >&5 2059 2434 echo "${ECHO_T}no" >&6 2060 2435 fi … … 2064 2439 2065 2440 -test -z "$AWK" && { { echo "$as_me:2521: error: No awk program found" >&5 2066 +test -z "$AWK" && { { echo "$as_me:2 626: error: No awk program found" >&52441 +test -z "$AWK" && { { echo "$as_me:2431: error: No awk program found" >&5 2067 2442 echo "$as_me: error: No awk program found" >&2;} 2068 2443 { (exit 1); exit 1; }; } 2069 2444 2070 2445 -echo "$as_me:2525: checking for egrep" >&5 2071 +echo "$as_me:2 630: checking for egrep" >&52446 +echo "$as_me:2435: checking for egrep" >&5 2072 2447 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 2073 2448 if test "${ac_cv_prog_egrep+set}" = set; then 2074 2449 echo $ECHO_N "(cached) $ECHO_C" >&6 2075 @@ -2532,11 +2 637,11 @@2450 @@ -2532,11 +2442,11 @@ 2076 2451 else ac_cv_prog_egrep='egrep' 2077 2452 fi 2078 2453 fi 2079 2454 -echo "$as_me:2535: result: $ac_cv_prog_egrep" >&5 2080 +echo "$as_me:2 640: result: $ac_cv_prog_egrep" >&52455 +echo "$as_me:2445: result: $ac_cv_prog_egrep" >&5 2081 2456 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 2082 2457 EGREP=$ac_cv_prog_egrep 2083 2458 2084 2459 -test -z "$EGREP" && { { echo "$as_me:2539: error: No egrep program found" >&5 2085 +test -z "$EGREP" && { { echo "$as_me:2 644: error: No egrep program found" >&52460 +test -z "$EGREP" && { { echo "$as_me:2449: error: No egrep program found" >&5 2086 2461 echo "$as_me: error: No egrep program found" >&2;} 2087 2462 { (exit 1); exit 1; }; } 2088 2463 2089 @@ -2552,7 +2 657,7 @@2464 @@ -2552,7 +2462,7 @@ 2090 2465 # AFS /usr/afsws/bin/install, which mishandles nonexistent args 2091 2466 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 2092 2467 # ./install, which can be erroneously created by make from ./install.sh. 2093 2468 -echo "$as_me:2555: checking for a BSD compatible install" >&5 2094 +echo "$as_me:2 660: checking for a BSD compatible install" >&52469 +echo "$as_me:2465: checking for a BSD compatible install" >&5 2095 2470 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 2096 2471 if test -z "$INSTALL"; then 2097 2472 if test "${ac_cv_path_install+set}" = set; then 2098 @@ -2601,7 +2 706,7 @@2473 @@ -2601,7 +2511,7 @@ 2099 2474 INSTALL=$ac_install_sh 2100 2475 fi 2101 2476 fi 2102 2477 -echo "$as_me:2604: result: $INSTALL" >&5 2103 +echo "$as_me:2 709: result: $INSTALL" >&52478 +echo "$as_me:2514: result: $INSTALL" >&5 2104 2479 echo "${ECHO_T}$INSTALL" >&6 2105 2480 2106 2481 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. 2107 @@ -2612,18 +2 717,18 @@2482 @@ -2612,18 +2522,18 @@ 2108 2483 2109 2484 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 2110 2485 2111 2486 -echo "$as_me:2615: checking whether ln -s works" >&5 2112 +echo "$as_me:2 720: checking whether ln -s works" >&52487 +echo "$as_me:2525: checking whether ln -s works" >&5 2113 2488 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 2114 2489 LN_S=$as_ln_s 2115 2490 if test "$LN_S" = "ln -s"; then 2116 2491 - echo "$as_me:2619: result: yes" >&5 2117 + echo "$as_me:2 724: result: yes" >&52492 + echo "$as_me:2529: result: yes" >&5 2118 2493 echo "${ECHO_T}yes" >&6 2119 2494 else 2120 2495 - echo "$as_me:2622: result: no, using $LN_S" >&5 2121 + echo "$as_me:2 727: result: no, using $LN_S" >&52496 + echo "$as_me:2532: result: no, using $LN_S" >&5 2122 2497 echo "${ECHO_T}no, using $LN_S" >&6 2123 2498 fi 2124 2499 2125 2500 -echo "$as_me:2626: checking if $LN_S -f options work" >&5 2126 +echo "$as_me:2 731: checking if $LN_S -f options work" >&52501 +echo "$as_me:2536: checking if $LN_S -f options work" >&5 2127 2502 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6 2128 2503 2129 2504 rm -f conf$$.src conf$$dst 2130 @@ -2635,12 +2 740,12 @@2505 @@ -2635,12 +2545,12 @@ 2131 2506 cf_prog_ln_sf=no 2132 2507 fi 2133 2508 rm -f conf$$.dst conf$$src 2134 2509 -echo "$as_me:2638: result: $cf_prog_ln_sf" >&5 2135 +echo "$as_me:2 743: result: $cf_prog_ln_sf" >&52510 +echo "$as_me:2548: result: $cf_prog_ln_sf" >&5 2136 2511 echo "${ECHO_T}$cf_prog_ln_sf" >&6 2137 2512 … … 2139 2514 2140 2515 -echo "$as_me:2643: checking for long file names" >&5 2141 +echo "$as_me:2 748: checking for long file names" >&52516 +echo "$as_me:2553: checking for long file names" >&5 2142 2517 echo $ECHO_N "checking for long file names... $ECHO_C" >&6 2143 2518 if test "${ac_cv_sys_long_file_names+set}" = set; then 2144 2519 echo $ECHO_N "(cached) $ECHO_C" >&6 2145 @@ -2679,7 +2 784,7 @@2520 @@ -2679,7 +2589,7 @@ 2146 2521 rm -rf $ac_xdir 2>/dev/null 2147 2522 done 2148 2523 fi 2149 2524 -echo "$as_me:2682: result: $ac_cv_sys_long_file_names" >&5 2150 +echo "$as_me:2 787: result: $ac_cv_sys_long_file_names" >&52525 +echo "$as_me:2592: result: $ac_cv_sys_long_file_names" >&5 2151 2526 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6 2152 2527 if test $ac_cv_sys_long_file_names = yes; then 2153 2528 2154 @@ -2691,7 +2 796,7 @@2529 @@ -2691,7 +2601,7 @@ 2155 2530 2156 2531 # if we find pkg-config, check if we should install the ".pc" files. 2157 2532 2158 2533 -echo "$as_me:2694: checking if you want to use pkg-config" >&5 2159 +echo "$as_me:2 799: checking if you want to use pkg-config" >&52534 +echo "$as_me:2604: checking if you want to use pkg-config" >&5 2160 2535 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 2161 2536 2162 2537 # Check whether --with-pkg-config or --without-pkg-config was given. 2163 @@ -2701,7 +2 806,7 @@2538 @@ -2701,7 +2611,7 @@ 2164 2539 else 2165 2540 cf_pkg_config=yes 2166 2541 fi; 2167 2542 -echo "$as_me:2704: result: $cf_pkg_config" >&5 2168 +echo "$as_me:2 809: result: $cf_pkg_config" >&52543 +echo "$as_me:2614: result: $cf_pkg_config" >&5 2169 2544 echo "${ECHO_T}$cf_pkg_config" >&6 2170 2545 2171 2546 case $cf_pkg_config in #(vi 2172 @@ -2709,10 +2 814,11 @@2547 @@ -2709,10 +2619,11 @@ 2173 2548 PKG_CONFIG=none 2174 2549 ;; … … 2180 2555 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 2181 2556 -echo "$as_me:2715: checking for $ac_word" >&5 2182 +echo "$as_me:2 821: checking for $ac_word" >&52557 +echo "$as_me:2626: checking for $ac_word" >&5 2183 2558 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2184 2559 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then 2185 2560 echo $ECHO_N "(cached) $ECHO_C" >&6 2186 @@ -2729,7 +2 835,7 @@2561 @@ -2729,7 +2640,7 @@ 2187 2562 test -z "$ac_dir" && ac_dir=. 2188 2563 if $as_executable_p "$ac_dir/$ac_word"; then 2189 2564 ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" 2190 2565 - echo "$as_me:2732: found $ac_dir/$ac_word" >&5 2191 + echo "$as_me:2 838: found $ac_dir/$ac_word" >&52566 + echo "$as_me:2643: found $ac_dir/$ac_word" >&5 2192 2567 break 2193 2568 fi 2194 2569 done 2195 @@ -2740,10 +2 846,10 @@2570 @@ -2740,10 +2651,10 @@ 2196 2571 PKG_CONFIG=$ac_cv_path_PKG_CONFIG 2197 2572 2198 2573 if test -n "$PKG_CONFIG"; then 2199 2574 - echo "$as_me:2743: result: $PKG_CONFIG" >&5 2200 + echo "$as_me:2 849: result: $PKG_CONFIG" >&52575 + echo "$as_me:2654: result: $PKG_CONFIG" >&5 2201 2576 echo "${ECHO_T}$PKG_CONFIG" >&6 2202 2577 else 2203 2578 - echo "$as_me:2746: result: no" >&5 2204 + echo "$as_me:2 852: result: no" >&52579 + echo "$as_me:2657: result: no" >&5 2205 2580 echo "${ECHO_T}no" >&6 2206 2581 fi 2207 2582 2208 @@ -2752,7 +2 858,7 @@2583 @@ -2752,7 +2663,7 @@ 2209 2584 ac_pt_PKG_CONFIG=$PKG_CONFIG 2210 2585 # Extract the first word of "pkg-config", so it can be a program name with args. 2211 2586 set dummy pkg-config; ac_word=$2 2212 2587 -echo "$as_me:2755: checking for $ac_word" >&5 2213 +echo "$as_me:2 861: checking for $ac_word" >&52588 +echo "$as_me:2666: checking for $ac_word" >&5 2214 2589 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2215 2590 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then 2216 2591 echo $ECHO_N "(cached) $ECHO_C" >&6 2217 @@ -2769,7 +2 875,7 @@2592 @@ -2769,7 +2680,7 @@ 2218 2593 test -z "$ac_dir" && ac_dir=. 2219 2594 if $as_executable_p "$ac_dir/$ac_word"; then 2220 2595 ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" 2221 2596 - echo "$as_me:2772: found $ac_dir/$ac_word" >&5 2222 + echo "$as_me:2 878: found $ac_dir/$ac_word" >&52597 + echo "$as_me:2683: found $ac_dir/$ac_word" >&5 2223 2598 break 2224 2599 fi 2225 2600 done 2226 @@ -2781,10 +2 887,10 @@2601 @@ -2781,10 +2692,10 @@ 2227 2602 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG 2228 2603 2229 2604 if test -n "$ac_pt_PKG_CONFIG"; then 2230 2605 - echo "$as_me:2784: result: $ac_pt_PKG_CONFIG" >&5 2231 + echo "$as_me:2 890: result: $ac_pt_PKG_CONFIG" >&52606 + echo "$as_me:2695: result: $ac_pt_PKG_CONFIG" >&5 2232 2607 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 2233 2608 else 2234 2609 - echo "$as_me:2787: result: no" >&5 2235 + echo "$as_me:2 893: result: no" >&52610 + echo "$as_me:2698: result: no" >&5 2236 2611 echo "${ECHO_T}no" >&6 2237 2612 fi 2238 2613 2239 @@ -2827,7 +2933,7 @@ 2614 @@ -2815,7 +2726,7 @@ 2615 ;; 2616 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 2617 ;; 2618 -.\${*prefix}*) #(vi 2619 +.\${*prefix}*|.\${*dir}*) #(vi 2620 eval PKG_CONFIG="$PKG_CONFIG" 2621 case ".$PKG_CONFIG" in #(vi 2622 .NONE/*) 2623 @@ -2827,7 +2738,7 @@ 2240 2624 PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` 2241 2625 ;; 2242 2626 *) 2243 2627 - { { echo "$as_me:2830: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 2244 + { { echo "$as_me:2 936: error: expected a pathname, not \"$PKG_CONFIG\"" >&52628 + { { echo "$as_me:2741: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 2245 2629 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} 2246 2630 { (exit 1); exit 1; }; } 2247 2631 ;; 2248 @@ -2836, 15 +2942,51@@2632 @@ -2836,35 +2747,100 @@ 2249 2633 fi 2250 2634 … … 2252 2636 - echo "$as_me:2839: checking if we should install .pc files for $PKG_CONFIG" >&5 2253 2637 -echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6 2254 + echo "$as_me:2 945: checking for $PKG_CONFIG library directory" >&52638 + echo "$as_me:2750: checking for $PKG_CONFIG library directory" >&5 2255 2639 +echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6 2256 2640 … … 2260 2644 - fi 2261 2645 - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'` 2646 - if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 2647 - 2648 -# Check whether --enable-pc-files or --disable-pc-files was given. 2649 -if test "${enable_pc_files+set}" = set; then 2650 - enableval="$enable_pc_files" 2651 - enable_pc_files=$enableval 2262 2652 +# Check whether --with-pkg-config-libdir or --without-pkg-config-libdir was given. 2263 2653 +if test "${with_pkg_config_libdir+set}" = set; then 2264 2654 + withval="$with_pkg_config_libdir" 2265 2655 + PKG_CONFIG_LIBDIR=$withval 2266 +else 2656 else 2657 - enable_pc_files=no 2267 2658 + PKG_CONFIG_LIBDIR=yes 2268 +fi; 2269 + 2659 fi; 2660 - echo "$as_me:2856: result: $enable_pc_files" >&5 2661 -echo "${ECHO_T}$enable_pc_files" >&6 2662 - else 2663 - echo "$as_me:2859: result: no" >&5 2664 -echo "${ECHO_T}no" >&6 2665 - { echo "$as_me:2861: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5 2666 -echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;} 2667 - enable_pc_files=no 2668 - fi 2669 -fi 2670 2671 -echo "$as_me:2867: checking if you want to build test-programs" >&5 2270 2672 + case x$PKG_CONFIG_LIBDIR in #(vi 2271 2673 + x/*) #(vi … … 2294 2696 + esac 2295 2697 + 2296 + echo "$as_me:2 982: result: $PKG_CONFIG_LIBDIR" >&52698 + echo "$as_me:2787: result: $PKG_CONFIG_LIBDIR" >&5 2297 2699 +echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6 2298 2700 +fi 2299 2701 + 2300 2702 +if test "$PKG_CONFIG" != none ; then 2301 if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 2302 + echo "$as_me:2988: checking if we should install .pc files for $PKG_CONFIG" >&5 2703 + echo "$as_me:2792: checking if we should install .pc files for $PKG_CONFIG" >&5 2303 2704 +echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6 2304 2305 # Check whether --enable-pc-files or --disable-pc-files was given. 2306 if test "${enable_pc_files+set}" = set; then 2307 @@ -2853,18 +2995,18 @@ 2308 else 2309 enable_pc_files=no 2310 fi; 2311 - echo "$as_me:2856: result: $enable_pc_files" >&5 2312 + echo "$as_me:2998: result: $enable_pc_files" >&5 2313 echo "${ECHO_T}$enable_pc_files" >&6 2314 - else 2315 - echo "$as_me:2859: result: no" >&5 2316 -echo "${ECHO_T}no" >&6 2317 - { echo "$as_me:2861: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5 2318 -echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;} 2319 + elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then 2320 enable_pc_files=no 2321 + { echo "$as_me:3002: WARNING: did not find $PKG_CONFIG library" >&5 2322 +echo "$as_me: WARNING: did not find $PKG_CONFIG library" >&2;} 2323 fi 2705 + 2706 +# Check whether --enable-pc-files or --disable-pc-files was given. 2707 +if test "${enable_pc_files+set}" = set; then 2708 + enableval="$enable_pc_files" 2709 + enable_pc_files=$enableval 2710 +else 2711 + enable_pc_files=no 2712 +fi; 2713 + echo "$as_me:2802: result: $enable_pc_files" >&5 2714 +echo "${ECHO_T}$enable_pc_files" >&6 2715 + if test "$enable_pc_files" != no 2716 + then 2717 + 2718 +if test "x$prefix" != xNONE; then 2719 + cf_path_syntax="$prefix" 2720 +else 2721 + cf_path_syntax="$ac_default_prefix" 2722 +fi 2723 + 2724 +case ".$PKG_CONFIG_LIBDIR" in #(vi 2725 +.\$\(*\)*|.\'*\'*) #(vi 2726 + ;; 2727 +..|./*|.\\*) #(vi 2728 + ;; 2729 +.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 2730 + ;; 2731 +.\${*prefix}*|.\${*dir}*) #(vi 2732 + eval PKG_CONFIG_LIBDIR="$PKG_CONFIG_LIBDIR" 2733 + case ".$PKG_CONFIG_LIBDIR" in #(vi 2734 + .NONE/*) 2735 + PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%` 2736 + ;; 2737 + esac 2738 + ;; #(vi 2739 +.no|.NONE/*) 2740 + PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%` 2741 + ;; 2742 +*) 2743 + { { echo "$as_me:2832: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5 2744 +echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&2;} 2745 + { (exit 1); exit 1; }; } 2746 + ;; 2747 +esac 2748 + 2749 + fi 2324 2750 +else 2325 2751 + enable_pc_files=no 2326 fi 2327 2328 -echo "$as_me:2867: checking if you want to build test-programs" >&5 2329 +echo "$as_me:3009: checking if you want to build test-programs" >&5 2752 +fi 2753 + 2754 +echo "$as_me:2843: checking if you want to build test-programs" >&5 2330 2755 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6 2331 2756 2332 2757 # Check whether --with-tests or --without-tests was given. 2333 @@ -2874,10 + 3016,10 @@2758 @@ -2874,10 +2850,10 @@ 2334 2759 else 2335 2760 cf_with_tests=yes 2336 2761 fi; 2337 2762 -echo "$as_me:2877: result: $cf_with_tests" >&5 2338 +echo "$as_me: 3019: result: $cf_with_tests" >&52763 +echo "$as_me:2853: result: $cf_with_tests" >&5 2339 2764 echo "${ECHO_T}$cf_with_tests" >&6 2340 2765 2341 2766 -echo "$as_me:2880: checking if we should assume mixed-case filenames" >&5 2342 +echo "$as_me: 3022: checking if we should assume mixed-case filenames" >&52767 +echo "$as_me:2856: checking if we should assume mixed-case filenames" >&5 2343 2768 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6 2344 2769 2345 2770 # Check whether --enable-mixed-case or --disable-mixed-case was given. 2346 @@ -2887,11 + 3029,11 @@2771 @@ -2887,11 +2863,11 @@ 2347 2772 else 2348 2773 enable_mixedcase=auto 2349 2774 fi; 2350 2775 -echo "$as_me:2890: result: $enable_mixedcase" >&5 2351 +echo "$as_me: 3032: result: $enable_mixedcase" >&52776 +echo "$as_me:2866: result: $enable_mixedcase" >&5 2352 2777 echo "${ECHO_T}$enable_mixedcase" >&6 2353 2778 if test "$enable_mixedcase" = "auto" ; then 2354 2779 2355 2780 -echo "$as_me:2894: checking if filesystem supports mixed-case filenames" >&5 2356 +echo "$as_me: 3036: checking if filesystem supports mixed-case filenames" >&52781 +echo "$as_me:2870: checking if filesystem supports mixed-case filenames" >&5 2357 2782 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6 2358 2783 if test "${cf_cv_mixedcase+set}" = set; then 2359 2784 echo $ECHO_N "(cached) $ECHO_C" >&6 2360 @@ -2918,7 + 3060,7 @@2785 @@ -2918,7 +2894,7 @@ 2361 2786 fi 2362 2787 2363 2788 fi 2364 2789 -echo "$as_me:2921: result: $cf_cv_mixedcase" >&5 2365 +echo "$as_me: 3063: result: $cf_cv_mixedcase" >&52790 +echo "$as_me:2897: result: $cf_cv_mixedcase" >&5 2366 2791 echo "${ECHO_T}$cf_cv_mixedcase" >&6 2367 2792 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF 2368 2793 #define MIXEDCASE_FILENAMES 1 2369 @@ -2935,7 + 3077,7 @@2794 @@ -2935,7 +2911,7 @@ 2370 2795 fi 2371 2796 2372 2797 # do this after mixed-case option (tags/TAGS is not as important as tic). 2373 2798 -echo "$as_me:2938: checking whether ${MAKE-make} sets \${MAKE}" >&5 2374 +echo "$as_me: 3080: checking whether ${MAKE-make} sets \${MAKE}" >&52799 +echo "$as_me:2914: checking whether ${MAKE-make} sets \${MAKE}" >&5 2375 2800 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 2376 2801 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` 2377 2802 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then 2378 @@ -2955,11 + 3097,11 @@2803 @@ -2955,11 +2931,11 @@ 2379 2804 rm -f conftest.make 2380 2805 fi 2381 2806 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then 2382 2807 - echo "$as_me:2958: result: yes" >&5 2383 + echo "$as_me: 3100: result: yes" >&52808 + echo "$as_me:2934: result: yes" >&5 2384 2809 echo "${ECHO_T}yes" >&6 2385 2810 SET_MAKE= 2386 2811 else 2387 2812 - echo "$as_me:2962: result: no" >&5 2388 + echo "$as_me: 3104: result: no" >&52813 + echo "$as_me:2938: result: no" >&5 2389 2814 echo "${ECHO_T}no" >&6 2390 2815 SET_MAKE="MAKE=${MAKE-make}" 2391 2816 fi 2392 @@ -2968,7 + 3110,7 @@2817 @@ -2968,7 +2944,7 @@ 2393 2818 do 2394 2819 # Extract the first word of "$ac_prog", so it can be a program name with args. 2395 2820 set dummy $ac_prog; ac_word=$2 2396 2821 -echo "$as_me:2971: checking for $ac_word" >&5 2397 +echo "$as_me: 3113: checking for $ac_word" >&52822 +echo "$as_me:2947: checking for $ac_word" >&5 2398 2823 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2399 2824 if test "${ac_cv_prog_CTAGS+set}" = set; then 2400 2825 echo $ECHO_N "(cached) $ECHO_C" >&6 2401 @@ -2983,7 + 3125,7 @@2826 @@ -2983,7 +2959,7 @@ 2402 2827 test -z "$ac_dir" && ac_dir=. 2403 2828 $as_executable_p "$ac_dir/$ac_word" || continue 2404 2829 ac_cv_prog_CTAGS="$ac_prog" 2405 2830 -echo "$as_me:2986: found $ac_dir/$ac_word" >&5 2406 +echo "$as_me: 3128: found $ac_dir/$ac_word" >&52831 +echo "$as_me:2962: found $ac_dir/$ac_word" >&5 2407 2832 break 2408 2833 done 2409 2834 2410 @@ -2991,10 + 3133,10 @@2835 @@ -2991,10 +2967,10 @@ 2411 2836 fi 2412 2837 CTAGS=$ac_cv_prog_CTAGS 2413 2838 if test -n "$CTAGS"; then 2414 2839 - echo "$as_me:2994: result: $CTAGS" >&5 2415 + echo "$as_me: 3136: result: $CTAGS" >&52840 + echo "$as_me:2970: result: $CTAGS" >&5 2416 2841 echo "${ECHO_T}$CTAGS" >&6 2417 2842 else 2418 2843 - echo "$as_me:2997: result: no" >&5 2419 + echo "$as_me: 3139: result: no" >&52844 + echo "$as_me:2973: result: no" >&5 2420 2845 echo "${ECHO_T}no" >&6 2421 2846 fi 2422 2847 2423 @@ -3005,7 + 3147,7 @@2848 @@ -3005,7 +2981,7 @@ 2424 2849 do 2425 2850 # Extract the first word of "$ac_prog", so it can be a program name with args. 2426 2851 set dummy $ac_prog; ac_word=$2 2427 2852 -echo "$as_me:3008: checking for $ac_word" >&5 2428 +echo "$as_me: 3150: checking for $ac_word" >&52853 +echo "$as_me:2984: checking for $ac_word" >&5 2429 2854 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2430 2855 if test "${ac_cv_prog_ETAGS+set}" = set; then 2431 2856 echo $ECHO_N "(cached) $ECHO_C" >&6 2432 @@ -3020,7 + 3162,7 @@2857 @@ -3020,7 +2996,7 @@ 2433 2858 test -z "$ac_dir" && ac_dir=. 2434 2859 $as_executable_p "$ac_dir/$ac_word" || continue 2435 2860 ac_cv_prog_ETAGS="$ac_prog" 2436 2861 -echo "$as_me:3023: found $ac_dir/$ac_word" >&5 2437 +echo "$as_me: 3165: found $ac_dir/$ac_word" >&52862 +echo "$as_me:2999: found $ac_dir/$ac_word" >&5 2438 2863 break 2439 2864 done 2440 2865 2441 @@ -3028,10 +3 170,10 @@2866 @@ -3028,10 +3004,10 @@ 2442 2867 fi 2443 2868 ETAGS=$ac_cv_prog_ETAGS 2444 2869 if test -n "$ETAGS"; then 2445 2870 - echo "$as_me:3031: result: $ETAGS" >&5 2446 + echo "$as_me:3 173: result: $ETAGS" >&52871 + echo "$as_me:3007: result: $ETAGS" >&5 2447 2872 echo "${ECHO_T}$ETAGS" >&6 2448 2873 else 2449 2874 - echo "$as_me:3034: result: no" >&5 2450 + echo "$as_me:3 176: result: no" >&52875 + echo "$as_me:3010: result: no" >&5 2451 2876 echo "${ECHO_T}no" >&6 2452 2877 fi 2453 2878 2454 @@ -3040,7 +3 182,7 @@2879 @@ -3040,7 +3016,7 @@ 2455 2880 2456 2881 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args. 2457 2882 set dummy ${CTAGS:-ctags}; ac_word=$2 2458 2883 -echo "$as_me:3043: checking for $ac_word" >&5 2459 +echo "$as_me:3 185: checking for $ac_word" >&52884 +echo "$as_me:3019: checking for $ac_word" >&5 2460 2885 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2461 2886 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then 2462 2887 echo $ECHO_N "(cached) $ECHO_C" >&6 2463 @@ -3055,7 +3 197,7 @@2888 @@ -3055,7 +3031,7 @@ 2464 2889 test -z "$ac_dir" && ac_dir=. 2465 2890 $as_executable_p "$ac_dir/$ac_word" || continue 2466 2891 ac_cv_prog_MAKE_LOWER_TAGS="yes" 2467 2892 -echo "$as_me:3058: found $ac_dir/$ac_word" >&5 2468 +echo "$as_me:3 200: found $ac_dir/$ac_word" >&52893 +echo "$as_me:3034: found $ac_dir/$ac_word" >&5 2469 2894 break 2470 2895 done 2471 2896 2472 @@ -3064,17 +3 206,17 @@2897 @@ -3064,17 +3040,17 @@ 2473 2898 fi 2474 2899 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS 2475 2900 if test -n "$MAKE_LOWER_TAGS"; then 2476 2901 - echo "$as_me:3067: result: $MAKE_LOWER_TAGS" >&5 2477 + echo "$as_me:3 209: result: $MAKE_LOWER_TAGS" >&52902 + echo "$as_me:3043: result: $MAKE_LOWER_TAGS" >&5 2478 2903 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6 2479 2904 else 2480 2905 - echo "$as_me:3070: result: no" >&5 2481 + echo "$as_me:3 212: result: no" >&52906 + echo "$as_me:3046: result: no" >&5 2482 2907 echo "${ECHO_T}no" >&6 2483 2908 fi … … 2487 2912 set dummy ${ETAGS:-etags}; ac_word=$2 2488 2913 -echo "$as_me:3077: checking for $ac_word" >&5 2489 +echo "$as_me:3 219: checking for $ac_word" >&52914 +echo "$as_me:3053: checking for $ac_word" >&5 2490 2915 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2491 2916 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then 2492 2917 echo $ECHO_N "(cached) $ECHO_C" >&6 2493 @@ -3089,7 +3 231,7 @@2918 @@ -3089,7 +3065,7 @@ 2494 2919 test -z "$ac_dir" && ac_dir=. 2495 2920 $as_executable_p "$ac_dir/$ac_word" || continue 2496 2921 ac_cv_prog_MAKE_UPPER_TAGS="yes" 2497 2922 -echo "$as_me:3092: found $ac_dir/$ac_word" >&5 2498 +echo "$as_me:3 234: found $ac_dir/$ac_word" >&52923 +echo "$as_me:3068: found $ac_dir/$ac_word" >&5 2499 2924 break 2500 2925 done 2501 2926 2502 @@ -3098,10 +3 240,10 @@2927 @@ -3098,10 +3074,10 @@ 2503 2928 fi 2504 2929 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS 2505 2930 if test -n "$MAKE_UPPER_TAGS"; then 2506 2931 - echo "$as_me:3101: result: $MAKE_UPPER_TAGS" >&5 2507 + echo "$as_me:3 243: result: $MAKE_UPPER_TAGS" >&52932 + echo "$as_me:3077: result: $MAKE_UPPER_TAGS" >&5 2508 2933 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6 2509 2934 else 2510 2935 - echo "$as_me:3104: result: no" >&5 2511 + echo "$as_me:3 246: result: no" >&52936 + echo "$as_me:3080: result: no" >&5 2512 2937 echo "${ECHO_T}no" >&6 2513 2938 fi 2514 2939 2515 @@ -3121,7 +3 263,7 @@2940 @@ -3121,7 +3097,7 @@ 2516 2941 MAKE_LOWER_TAGS="#" 2517 2942 fi 2518 2943 2519 2944 -echo "$as_me:3124: checking for makeflags variable" >&5 2520 +echo "$as_me:3 266: checking for makeflags variable" >&52945 +echo "$as_me:3100: checking for makeflags variable" >&5 2521 2946 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6 2522 2947 if test "${cf_cv_makeflags+set}" = set; then 2523 2948 echo $ECHO_N "(cached) $ECHO_C" >&6 2524 @@ -3155,13 +3 297,13 @@2949 @@ -3155,13 +3131,13 @@ 2525 2950 rm -f cf_makeflags.tmp 2526 2951 2527 2952 fi 2528 2953 -echo "$as_me:3158: result: $cf_cv_makeflags" >&5 2529 +echo "$as_me:3 300: result: $cf_cv_makeflags" >&52954 +echo "$as_me:3134: result: $cf_cv_makeflags" >&5 2530 2955 echo "${ECHO_T}$cf_cv_makeflags" >&6 2531 2956 … … 2534 2959 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 2535 2960 -echo "$as_me:3164: checking for $ac_word" >&5 2536 +echo "$as_me:3 306: checking for $ac_word" >&52961 +echo "$as_me:3140: checking for $ac_word" >&5 2537 2962 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2538 2963 if test "${ac_cv_prog_RANLIB+set}" = set; then 2539 2964 echo $ECHO_N "(cached) $ECHO_C" >&6 2540 @@ -3176,7 +3 318,7 @@2965 @@ -3176,7 +3152,7 @@ 2541 2966 test -z "$ac_dir" && ac_dir=. 2542 2967 $as_executable_p "$ac_dir/$ac_word" || continue 2543 2968 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 2544 2969 -echo "$as_me:3179: found $ac_dir/$ac_word" >&5 2545 +echo "$as_me:3 321: found $ac_dir/$ac_word" >&52970 +echo "$as_me:3155: found $ac_dir/$ac_word" >&5 2546 2971 break 2547 2972 done 2548 2973 2549 @@ -3184,10 +3 326,10 @@2974 @@ -3184,10 +3160,10 @@ 2550 2975 fi 2551 2976 RANLIB=$ac_cv_prog_RANLIB 2552 2977 if test -n "$RANLIB"; then 2553 2978 - echo "$as_me:3187: result: $RANLIB" >&5 2554 + echo "$as_me:3 329: result: $RANLIB" >&52979 + echo "$as_me:3163: result: $RANLIB" >&5 2555 2980 echo "${ECHO_T}$RANLIB" >&6 2556 2981 else 2557 2982 - echo "$as_me:3190: result: no" >&5 2558 + echo "$as_me:3 332: result: no" >&52983 + echo "$as_me:3166: result: no" >&5 2559 2984 echo "${ECHO_T}no" >&6 2560 2985 fi 2561 2986 2562 @@ -3196,7 +3 338,7 @@2987 @@ -3196,7 +3172,7 @@ 2563 2988 ac_ct_RANLIB=$RANLIB 2564 2989 # Extract the first word of "ranlib", so it can be a program name with args. 2565 2990 set dummy ranlib; ac_word=$2 2566 2991 -echo "$as_me:3199: checking for $ac_word" >&5 2567 +echo "$as_me:3 341: checking for $ac_word" >&52992 +echo "$as_me:3175: checking for $ac_word" >&5 2568 2993 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2569 2994 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then 2570 2995 echo $ECHO_N "(cached) $ECHO_C" >&6 2571 @@ -3211,7 +3 353,7 @@2996 @@ -3211,7 +3187,7 @@ 2572 2997 test -z "$ac_dir" && ac_dir=. 2573 2998 $as_executable_p "$ac_dir/$ac_word" || continue 2574 2999 ac_cv_prog_ac_ct_RANLIB="ranlib" 2575 3000 -echo "$as_me:3214: found $ac_dir/$ac_word" >&5 2576 +echo "$as_me:3 356: found $ac_dir/$ac_word" >&53001 +echo "$as_me:3190: found $ac_dir/$ac_word" >&5 2577 3002 break 2578 3003 done 2579 3004 2580 @@ -3220,10 +3 362,10 @@3005 @@ -3220,10 +3196,10 @@ 2581 3006 fi 2582 3007 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB 2583 3008 if test -n "$ac_ct_RANLIB"; then 2584 3009 - echo "$as_me:3223: result: $ac_ct_RANLIB" >&5 2585 + echo "$as_me:3 365: result: $ac_ct_RANLIB" >&53010 + echo "$as_me:3199: result: $ac_ct_RANLIB" >&5 2586 3011 echo "${ECHO_T}$ac_ct_RANLIB" >&6 2587 3012 else 2588 3013 - echo "$as_me:3226: result: no" >&5 2589 + echo "$as_me:3 368: result: no" >&53014 + echo "$as_me:3202: result: no" >&5 2590 3015 echo "${ECHO_T}no" >&6 2591 3016 fi 2592 3017 2593 @@ -3235,7 +3 377,7 @@3018 @@ -3235,7 +3211,7 @@ 2594 3019 if test -n "$ac_tool_prefix"; then 2595 3020 # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. 2596 3021 set dummy ${ac_tool_prefix}ld; ac_word=$2 2597 3022 -echo "$as_me:3238: checking for $ac_word" >&5 2598 +echo "$as_me:3 380: checking for $ac_word" >&53023 +echo "$as_me:3214: checking for $ac_word" >&5 2599 3024 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2600 3025 if test "${ac_cv_prog_LD+set}" = set; then 2601 3026 echo $ECHO_N "(cached) $ECHO_C" >&6 2602 @@ -3250,7 +3 392,7 @@3027 @@ -3250,7 +3226,7 @@ 2603 3028 test -z "$ac_dir" && ac_dir=. 2604 3029 $as_executable_p "$ac_dir/$ac_word" || continue 2605 3030 ac_cv_prog_LD="${ac_tool_prefix}ld" 2606 3031 -echo "$as_me:3253: found $ac_dir/$ac_word" >&5 2607 +echo "$as_me:3 395: found $ac_dir/$ac_word" >&53032 +echo "$as_me:3229: found $ac_dir/$ac_word" >&5 2608 3033 break 2609 3034 done 2610 3035 2611 @@ -3258,10 +3 400,10 @@3036 @@ -3258,10 +3234,10 @@ 2612 3037 fi 2613 3038 LD=$ac_cv_prog_LD 2614 3039 if test -n "$LD"; then 2615 3040 - echo "$as_me:3261: result: $LD" >&5 2616 + echo "$as_me:3 403: result: $LD" >&53041 + echo "$as_me:3237: result: $LD" >&5 2617 3042 echo "${ECHO_T}$LD" >&6 2618 3043 else 2619 3044 - echo "$as_me:3264: result: no" >&5 2620 + echo "$as_me:3 406: result: no" >&53045 + echo "$as_me:3240: result: no" >&5 2621 3046 echo "${ECHO_T}no" >&6 2622 3047 fi 2623 3048 2624 @@ -3270,7 +3 412,7 @@3049 @@ -3270,7 +3246,7 @@ 2625 3050 ac_ct_LD=$LD 2626 3051 # Extract the first word of "ld", so it can be a program name with args. 2627 3052 set dummy ld; ac_word=$2 2628 3053 -echo "$as_me:3273: checking for $ac_word" >&5 2629 +echo "$as_me:3 415: checking for $ac_word" >&53054 +echo "$as_me:3249: checking for $ac_word" >&5 2630 3055 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2631 3056 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then 2632 3057 echo $ECHO_N "(cached) $ECHO_C" >&6 2633 @@ -3285,7 +3 427,7 @@3058 @@ -3285,7 +3261,7 @@ 2634 3059 test -z "$ac_dir" && ac_dir=. 2635 3060 $as_executable_p "$ac_dir/$ac_word" || continue 2636 3061 ac_cv_prog_ac_ct_LD="ld" 2637 3062 -echo "$as_me:3288: found $ac_dir/$ac_word" >&5 2638 +echo "$as_me:3 430: found $ac_dir/$ac_word" >&53063 +echo "$as_me:3264: found $ac_dir/$ac_word" >&5 2639 3064 break 2640 3065 done 2641 3066 2642 @@ -3294,10 +3 436,10 @@3067 @@ -3294,10 +3270,10 @@ 2643 3068 fi 2644 3069 ac_ct_LD=$ac_cv_prog_ac_ct_LD 2645 3070 if test -n "$ac_ct_LD"; then 2646 3071 - echo "$as_me:3297: result: $ac_ct_LD" >&5 2647 + echo "$as_me:3 439: result: $ac_ct_LD" >&53072 + echo "$as_me:3273: result: $ac_ct_LD" >&5 2648 3073 echo "${ECHO_T}$ac_ct_LD" >&6 2649 3074 else 2650 3075 - echo "$as_me:3300: result: no" >&5 2651 + echo "$as_me:3 442: result: no" >&53076 + echo "$as_me:3276: result: no" >&5 2652 3077 echo "${ECHO_T}no" >&6 2653 3078 fi 2654 3079 2655 @@ -3309,7 +3 451,7 @@3080 @@ -3309,7 +3285,7 @@ 2656 3081 if test -n "$ac_tool_prefix"; then 2657 3082 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. 2658 3083 set dummy ${ac_tool_prefix}ar; ac_word=$2 2659 3084 -echo "$as_me:3312: checking for $ac_word" >&5 2660 +echo "$as_me:3 454: checking for $ac_word" >&53085 +echo "$as_me:3288: checking for $ac_word" >&5 2661 3086 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2662 3087 if test "${ac_cv_prog_AR+set}" = set; then 2663 3088 echo $ECHO_N "(cached) $ECHO_C" >&6 2664 @@ -3324,7 +3 466,7 @@3089 @@ -3324,7 +3300,7 @@ 2665 3090 test -z "$ac_dir" && ac_dir=. 2666 3091 $as_executable_p "$ac_dir/$ac_word" || continue 2667 3092 ac_cv_prog_AR="${ac_tool_prefix}ar" 2668 3093 -echo "$as_me:3327: found $ac_dir/$ac_word" >&5 2669 +echo "$as_me:3 469: found $ac_dir/$ac_word" >&53094 +echo "$as_me:3303: found $ac_dir/$ac_word" >&5 2670 3095 break 2671 3096 done 2672 3097 2673 @@ -3332,10 +3 474,10 @@3098 @@ -3332,10 +3308,10 @@ 2674 3099 fi 2675 3100 AR=$ac_cv_prog_AR 2676 3101 if test -n "$AR"; then 2677 3102 - echo "$as_me:3335: result: $AR" >&5 2678 + echo "$as_me:3 477: result: $AR" >&53103 + echo "$as_me:3311: result: $AR" >&5 2679 3104 echo "${ECHO_T}$AR" >&6 2680 3105 else 2681 3106 - echo "$as_me:3338: result: no" >&5 2682 + echo "$as_me:3 480: result: no" >&53107 + echo "$as_me:3314: result: no" >&5 2683 3108 echo "${ECHO_T}no" >&6 2684 3109 fi 2685 3110 2686 @@ -3344,7 +3 486,7 @@3111 @@ -3344,7 +3320,7 @@ 2687 3112 ac_ct_AR=$AR 2688 3113 # Extract the first word of "ar", so it can be a program name with args. 2689 3114 set dummy ar; ac_word=$2 2690 3115 -echo "$as_me:3347: checking for $ac_word" >&5 2691 +echo "$as_me:3 489: checking for $ac_word" >&53116 +echo "$as_me:3323: checking for $ac_word" >&5 2692 3117 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2693 3118 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then 2694 3119 echo $ECHO_N "(cached) $ECHO_C" >&6 2695 @@ -3359,7 +3 501,7 @@3120 @@ -3359,7 +3335,7 @@ 2696 3121 test -z "$ac_dir" && ac_dir=. 2697 3122 $as_executable_p "$ac_dir/$ac_word" || continue 2698 3123 ac_cv_prog_ac_ct_AR="ar" 2699 3124 -echo "$as_me:3362: found $ac_dir/$ac_word" >&5 2700 +echo "$as_me:3 504: found $ac_dir/$ac_word" >&53125 +echo "$as_me:3338: found $ac_dir/$ac_word" >&5 2701 3126 break 2702 3127 done 2703 3128 2704 @@ -3368,10 +3 510,10 @@3129 @@ -3368,10 +3344,10 @@ 2705 3130 fi 2706 3131 ac_ct_AR=$ac_cv_prog_ac_ct_AR 2707 3132 if test -n "$ac_ct_AR"; then 2708 3133 - echo "$as_me:3371: result: $ac_ct_AR" >&5 2709 + echo "$as_me:3 513: result: $ac_ct_AR" >&53134 + echo "$as_me:3347: result: $ac_ct_AR" >&5 2710 3135 echo "${ECHO_T}$ac_ct_AR" >&6 2711 3136 else 2712 3137 - echo "$as_me:3374: result: no" >&5 2713 + echo "$as_me:3 516: result: no" >&53138 + echo "$as_me:3350: result: no" >&5 2714 3139 echo "${ECHO_T}no" >&6 2715 3140 fi 2716 3141 2717 @@ -3383,7 +3 525,7 @@3142 @@ -3383,7 +3359,7 @@ 2718 3143 if test -n "$ac_tool_prefix"; then 2719 3144 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. 2720 3145 set dummy ${ac_tool_prefix}ar; ac_word=$2 2721 3146 -echo "$as_me:3386: checking for $ac_word" >&5 2722 +echo "$as_me:3 528: checking for $ac_word" >&53147 +echo "$as_me:3362: checking for $ac_word" >&5 2723 3148 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2724 3149 if test "${ac_cv_prog_AR+set}" = set; then 2725 3150 echo $ECHO_N "(cached) $ECHO_C" >&6 2726 @@ -3398,7 +3 540,7 @@3151 @@ -3398,7 +3374,7 @@ 2727 3152 test -z "$ac_dir" && ac_dir=. 2728 3153 $as_executable_p "$ac_dir/$ac_word" || continue 2729 3154 ac_cv_prog_AR="${ac_tool_prefix}ar" 2730 3155 -echo "$as_me:3401: found $ac_dir/$ac_word" >&5 2731 +echo "$as_me:3 543: found $ac_dir/$ac_word" >&53156 +echo "$as_me:3377: found $ac_dir/$ac_word" >&5 2732 3157 break 2733 3158 done 2734 3159 2735 @@ -3406,10 +3 548,10 @@3160 @@ -3406,10 +3382,10 @@ 2736 3161 fi 2737 3162 AR=$ac_cv_prog_AR 2738 3163 if test -n "$AR"; then 2739 3164 - echo "$as_me:3409: result: $AR" >&5 2740 + echo "$as_me:3 551: result: $AR" >&53165 + echo "$as_me:3385: result: $AR" >&5 2741 3166 echo "${ECHO_T}$AR" >&6 2742 3167 else 2743 3168 - echo "$as_me:3412: result: no" >&5 2744 + echo "$as_me:3 554: result: no" >&53169 + echo "$as_me:3388: result: no" >&5 2745 3170 echo "${ECHO_T}no" >&6 2746 3171 fi 2747 3172 2748 @@ -3418,7 +3 560,7 @@3173 @@ -3418,7 +3394,7 @@ 2749 3174 ac_ct_AR=$AR 2750 3175 # Extract the first word of "ar", so it can be a program name with args. 2751 3176 set dummy ar; ac_word=$2 2752 3177 -echo "$as_me:3421: checking for $ac_word" >&5 2753 +echo "$as_me:3 563: checking for $ac_word" >&53178 +echo "$as_me:3397: checking for $ac_word" >&5 2754 3179 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2755 3180 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then 2756 3181 echo $ECHO_N "(cached) $ECHO_C" >&6 2757 @@ -3433,7 +3 575,7 @@3182 @@ -3433,7 +3409,7 @@ 2758 3183 test -z "$ac_dir" && ac_dir=. 2759 3184 $as_executable_p "$ac_dir/$ac_word" || continue 2760 3185 ac_cv_prog_ac_ct_AR="ar" 2761 3186 -echo "$as_me:3436: found $ac_dir/$ac_word" >&5 2762 +echo "$as_me:3 578: found $ac_dir/$ac_word" >&53187 +echo "$as_me:3412: found $ac_dir/$ac_word" >&5 2763 3188 break 2764 3189 done 2765 3190 2766 @@ -3442,10 +3 584,10 @@3191 @@ -3442,10 +3418,10 @@ 2767 3192 fi 2768 3193 ac_ct_AR=$ac_cv_prog_ac_ct_AR 2769 3194 if test -n "$ac_ct_AR"; then 2770 3195 - echo "$as_me:3445: result: $ac_ct_AR" >&5 2771 + echo "$as_me:3 587: result: $ac_ct_AR" >&53196 + echo "$as_me:3421: result: $ac_ct_AR" >&5 2772 3197 echo "${ECHO_T}$ac_ct_AR" >&6 2773 3198 else 2774 3199 - echo "$as_me:3448: result: no" >&5 2775 + echo "$as_me:3 590: result: no" >&53200 + echo "$as_me:3424: result: no" >&5 2776 3201 echo "${ECHO_T}no" >&6 2777 3202 fi 2778 3203 2779 @@ -3454,7 +3 596,7 @@3204 @@ -3454,7 +3430,7 @@ 2780 3205 AR="$ac_cv_prog_AR" 2781 3206 fi 2782 3207 2783 3208 -echo "$as_me:3457: checking for options to update archives" >&5 2784 +echo "$as_me:3 599: checking for options to update archives" >&53209 +echo "$as_me:3433: checking for options to update archives" >&5 2785 3210 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6 2786 3211 if test "${cf_cv_ar_flags+set}" = set; then 2787 3212 echo $ECHO_N "(cached) $ECHO_C" >&6 2788 @@ -3477,13 +3 619,13 @@3213 @@ -3477,13 +3453,13 @@ 2789 3214 rm -f conftest.a 2790 3215 2791 3216 cat >conftest.$ac_ext <<EOF 2792 3217 -#line 3480 "configure" 2793 +#line 3 622"configure"3218 +#line 3456 "configure" 2794 3219 int testdata[3] = { 123, 456, 789 }; 2795 3220 EOF 2796 3221 - if { (eval echo "$as_me:3483: \"$ac_compile\"") >&5 2797 + if { (eval echo "$as_me:3 625: \"$ac_compile\"") >&53222 + if { (eval echo "$as_me:3459: \"$ac_compile\"") >&5 2798 3223 (eval $ac_compile) 2>&5 2799 3224 ac_status=$? 2800 3225 - echo "$as_me:3486: \$? = $ac_status" >&5 2801 + echo "$as_me:3 628: \$? = $ac_status" >&53226 + echo "$as_me:3462: \$? = $ac_status" >&5 2802 3227 (exit $ac_status); } ; then 2803 3228 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5 2804 3229 $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null 2805 @@ -3494,7 +3 636,7 @@3230 @@ -3494,7 +3470,7 @@ 2806 3231 else 2807 3232 test -n "$verbose" && echo " cannot compile test-program" 1>&6 2808 3233 2809 3234 -echo "${as_me:-configure}:3497: testing cannot compile test-program ..." 1>&5 2810 +echo "${as_me:-configure}:3 639: testing cannot compile test-program ..." 1>&53235 +echo "${as_me:-configure}:3473: testing cannot compile test-program ..." 1>&5 2811 3236 2812 3237 break 2813 3238 fi 2814 @@ -3502,7 +3 644,7 @@3239 @@ -3502,7 +3478,7 @@ 2815 3240 rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext 2816 3241 2817 3242 fi 2818 3243 -echo "$as_me:3505: result: $cf_cv_ar_flags" >&5 2819 +echo "$as_me:3 647: result: $cf_cv_ar_flags" >&53244 +echo "$as_me:3481: result: $cf_cv_ar_flags" >&5 2820 3245 echo "${ECHO_T}$cf_cv_ar_flags" >&6 2821 3246 2822 3247 if test -n "$ARFLAGS" ; then 2823 @@ -3513,7 +3 655,7 @@3248 @@ -3513,7 +3489,7 @@ 2824 3249 ARFLAGS=$cf_cv_ar_flags 2825 3250 fi 2826 3251 2827 3252 -echo "$as_me:3516: checking if you have specified an install-prefix" >&5 2828 +echo "$as_me:3 658: checking if you have specified an install-prefix" >&53253 +echo "$as_me:3492: checking if you have specified an install-prefix" >&5 2829 3254 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6 2830 3255 2831 3256 # Check whether --with-install-prefix or --without-install-prefix was given. 2832 @@ -3526,7 +3 668,7 @@3257 @@ -3526,7 +3502,7 @@ 2833 3258 ;; 2834 3259 esac 2835 3260 fi; 2836 3261 -echo "$as_me:3529: result: $DESTDIR" >&5 2837 +echo "$as_me:3 671: result: $DESTDIR" >&53262 +echo "$as_me:3505: result: $DESTDIR" >&5 2838 3263 echo "${ECHO_T}$DESTDIR" >&6 2839 3264 2840 3265 ############################################################################### 2841 @@ -3554,7 +3 696,7 @@3266 @@ -3554,7 +3530,7 @@ 2842 3267 do 2843 3268 # Extract the first word of "$ac_prog", so it can be a program name with args. 2844 3269 set dummy $ac_prog; ac_word=$2 2845 3270 -echo "$as_me:3557: checking for $ac_word" >&5 2846 +echo "$as_me:3 699: checking for $ac_word" >&53271 +echo "$as_me:3533: checking for $ac_word" >&5 2847 3272 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 2848 3273 if test "${ac_cv_prog_BUILD_CC+set}" = set; then 2849 3274 echo $ECHO_N "(cached) $ECHO_C" >&6 2850 @@ -3569,7 +3 711,7 @@3275 @@ -3569,7 +3545,7 @@ 2851 3276 test -z "$ac_dir" && ac_dir=. 2852 3277 $as_executable_p "$ac_dir/$ac_word" || continue 2853 3278 ac_cv_prog_BUILD_CC="$ac_prog" 2854 3279 -echo "$as_me:3572: found $ac_dir/$ac_word" >&5 2855 +echo "$as_me:3 714: found $ac_dir/$ac_word" >&53280 +echo "$as_me:3548: found $ac_dir/$ac_word" >&5 2856 3281 break 2857 3282 done 2858 3283 2859 @@ -3577,10 +3 719,10 @@3284 @@ -3577,10 +3553,10 @@ 2860 3285 fi 2861 3286 BUILD_CC=$ac_cv_prog_BUILD_CC 2862 3287 if test -n "$BUILD_CC"; then 2863 3288 - echo "$as_me:3580: result: $BUILD_CC" >&5 2864 + echo "$as_me:3 722: result: $BUILD_CC" >&53289 + echo "$as_me:3556: result: $BUILD_CC" >&5 2865 3290 echo "${ECHO_T}$BUILD_CC" >&6 2866 3291 else 2867 3292 - echo "$as_me:3583: result: no" >&5 2868 + echo "$as_me:3 725: result: no" >&53293 + echo "$as_me:3559: result: no" >&5 2869 3294 echo "${ECHO_T}no" >&6 2870 3295 fi 2871 3296 2872 @@ -3588,12 +3 730,12 @@3297 @@ -3588,12 +3564,12 @@ 2873 3298 done 2874 3299 2875 3300 fi; 2876 3301 - echo "$as_me:3591: checking for native build C compiler" >&5 2877 + echo "$as_me:3 733: checking for native build C compiler" >&53302 + echo "$as_me:3567: checking for native build C compiler" >&5 2878 3303 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 2879 3304 - echo "$as_me:3593: result: $BUILD_CC" >&5 2880 + echo "$as_me:3 735: result: $BUILD_CC" >&53305 + echo "$as_me:3569: result: $BUILD_CC" >&5 2881 3306 echo "${ECHO_T}$BUILD_CC" >&6 2882 3307 2883 3308 - echo "$as_me:3596: checking for native build C preprocessor" >&5 2884 + echo "$as_me:3 738: checking for native build C preprocessor" >&53309 + echo "$as_me:3572: checking for native build C preprocessor" >&5 2885 3310 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 2886 3311 2887 3312 # Check whether --with-build-cpp or --without-build-cpp was given. 2888 @@ -3603,10 +3 745,10 @@3313 @@ -3603,10 +3579,10 @@ 2889 3314 else 2890 3315 BUILD_CPP='${BUILD_CC} -E' 2891 3316 fi; 2892 3317 - echo "$as_me:3606: result: $BUILD_CPP" >&5 2893 + echo "$as_me:3 748: result: $BUILD_CPP" >&53318 + echo "$as_me:3582: result: $BUILD_CPP" >&5 2894 3319 echo "${ECHO_T}$BUILD_CPP" >&6 2895 3320 2896 3321 - echo "$as_me:3609: checking for native build C flags" >&5 2897 + echo "$as_me:3 751: checking for native build C flags" >&53322 + echo "$as_me:3585: checking for native build C flags" >&5 2898 3323 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 2899 3324 2900 3325 # Check whether --with-build-cflags or --without-build-cflags was given. 2901 @@ -3614,10 +3 756,10 @@3326 @@ -3614,10 +3590,10 @@ 2902 3327 withval="$with_build_cflags" 2903 3328 BUILD_CFLAGS="$withval" 2904 3329 fi; 2905 3330 - echo "$as_me:3617: result: $BUILD_CFLAGS" >&5 2906 + echo "$as_me:3 759: result: $BUILD_CFLAGS" >&53331 + echo "$as_me:3593: result: $BUILD_CFLAGS" >&5 2907 3332 echo "${ECHO_T}$BUILD_CFLAGS" >&6 2908 3333 2909 3334 - echo "$as_me:3620: checking for native build C preprocessor-flags" >&5 2910 + echo "$as_me:3 762: checking for native build C preprocessor-flags" >&53335 + echo "$as_me:3596: checking for native build C preprocessor-flags" >&5 2911 3336 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 2912 3337 2913 3338 # Check whether --with-build-cppflags or --without-build-cppflags was given. 2914 @@ -3625,10 +3 767,10 @@3339 @@ -3625,10 +3601,10 @@ 2915 3340 withval="$with_build_cppflags" 2916 3341 BUILD_CPPFLAGS="$withval" 2917 3342 fi; 2918 3343 - echo "$as_me:3628: result: $BUILD_CPPFLAGS" >&5 2919 + echo "$as_me:3 770: result: $BUILD_CPPFLAGS" >&53344 + echo "$as_me:3604: result: $BUILD_CPPFLAGS" >&5 2920 3345 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 2921 3346 2922 3347 - echo "$as_me:3631: checking for native build linker-flags" >&5 2923 + echo "$as_me:3 773: checking for native build linker-flags" >&53348 + echo "$as_me:3607: checking for native build linker-flags" >&5 2924 3349 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 2925 3350 2926 3351 # Check whether --with-build-ldflags or --without-build-ldflags was given. 2927 @@ -3636,10 +3 778,10 @@3352 @@ -3636,10 +3612,10 @@ 2928 3353 withval="$with_build_ldflags" 2929 3354 BUILD_LDFLAGS="$withval" 2930 3355 fi; 2931 3356 - echo "$as_me:3639: result: $BUILD_LDFLAGS" >&5 2932 + echo "$as_me:3 781: result: $BUILD_LDFLAGS" >&53357 + echo "$as_me:3615: result: $BUILD_LDFLAGS" >&5 2933 3358 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 2934 3359 2935 3360 - echo "$as_me:3642: checking for native build linker-libraries" >&5 2936 + echo "$as_me:3 784: checking for native build linker-libraries" >&53361 + echo "$as_me:3618: checking for native build linker-libraries" >&5 2937 3362 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 2938 3363 2939 3364 # Check whether --with-build-libs or --without-build-libs was given. 2940 @@ -3647,7 +3 789,7 @@3365 @@ -3647,7 +3623,7 @@ 2941 3366 withval="$with_build_libs" 2942 3367 BUILD_LIBS="$withval" 2943 3368 fi; 2944 3369 - echo "$as_me:3650: result: $BUILD_LIBS" >&5 2945 + echo "$as_me:3 792: result: $BUILD_LIBS" >&53370 + echo "$as_me:3626: result: $BUILD_LIBS" >&5 2946 3371 echo "${ECHO_T}$BUILD_LIBS" >&6 2947 3372 2948 3373 # this assumes we're on Unix. 2949 @@ -3657,7 +3 799,7 @@3374 @@ -3657,7 +3633,7 @@ 2950 3375 : ${BUILD_CC:='${CC}'} 2951 3376 2952 3377 if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then 2953 3378 - { { echo "$as_me:3660: error: Cross-build requires two compilers. 2954 + { { echo "$as_me:3 802: error: Cross-build requires two compilers.3379 + { { echo "$as_me:3636: error: Cross-build requires two compilers. 2955 3380 Use --with-build-cc to specify the native compiler." >&5 2956 3381 echo "$as_me: error: Cross-build requires two compilers. 2957 3382 Use --with-build-cc to specify the native compiler." >&2;} 2958 @@ -3682,7 +3 824,7 @@3383 @@ -3682,7 +3658,7 @@ 2959 3384 ### shared, for example. 2960 3385 cf_list_models="" 2961 3386 2962 3387 -echo "$as_me:3685: checking if you want to build shared C-objects" >&5 2963 +echo "$as_me:3 827: checking if you want to build shared C-objects" >&53388 +echo "$as_me:3661: checking if you want to build shared C-objects" >&5 2964 3389 echo $ECHO_N "checking if you want to build shared C-objects... $ECHO_C" >&6 2965 3390 2966 3391 # Check whether --with-shared or --without-shared was given. 2967 @@ -3692,27 +3 834,27 @@3392 @@ -3692,27 +3668,27 @@ 2968 3393 else 2969 3394 with_shared=no 2970 3395 fi; 2971 3396 -echo "$as_me:3695: result: $with_shared" >&5 2972 +echo "$as_me:3 837: result: $with_shared" >&53397 +echo "$as_me:3671: result: $with_shared" >&5 2973 3398 echo "${ECHO_T}$with_shared" >&6 2974 3399 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared" 2975 3400 2976 3401 -echo "$as_me:3699: checking for specified models" >&5 2977 +echo "$as_me:3 841: checking for specified models" >&53402 +echo "$as_me:3675: checking for specified models" >&5 2978 3403 echo $ECHO_N "checking for specified models... $ECHO_C" >&6 2979 3404 test -z "$cf_list_models" && cf_list_models=normal 2980 3405 -echo "$as_me:3702: result: $cf_list_models" >&5 2981 +echo "$as_me:3 844: result: $cf_list_models" >&53406 +echo "$as_me:3678: result: $cf_list_models" >&5 2982 3407 echo "${ECHO_T}$cf_list_models" >&6 2983 3408 … … 2985 3410 ### up test-applications. 2986 3411 -echo "$as_me:3707: checking for default model" >&5 2987 +echo "$as_me:3 849: checking for default model" >&53412 +echo "$as_me:3683: checking for default model" >&5 2988 3413 echo $ECHO_N "checking for default model... $ECHO_C" >&6 2989 3414 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'` 2990 3415 -echo "$as_me:3710: result: $DFT_LWR_MODEL" >&5 2991 +echo "$as_me:3 852: result: $DFT_LWR_MODEL" >&53416 +echo "$as_me:3686: result: $DFT_LWR_MODEL" >&5 2992 3417 echo "${ECHO_T}$DFT_LWR_MODEL" >&6 2993 3418 … … 2995 3420 2996 3421 -echo "$as_me:3715: checking for specific curses-directory" >&5 2997 +echo "$as_me:3 857: checking for specific curses-directory" >&53422 +echo "$as_me:3691: checking for specific curses-directory" >&5 2998 3423 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6 2999 3424 3000 3425 # Check whether --with-curses-dir or --without-curses-dir was given. 3001 @@ -3722,7 +3 864,7 @@3426 @@ -3722,7 +3698,7 @@ 3002 3427 else 3003 3428 cf_cv_curses_dir=no 3004 3429 fi; 3005 3430 -echo "$as_me:3725: result: $cf_cv_curses_dir" >&5 3006 +echo "$as_me:3 867: result: $cf_cv_curses_dir" >&53431 +echo "$as_me:3701: result: $cf_cv_curses_dir" >&5 3007 3432 echo "${ECHO_T}$cf_cv_curses_dir" >&6 3008 3433 3009 3434 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" ) 3010 @@ -3753,7 +3895,7 @@ 3435 @@ -3741,7 +3717,7 @@ 3436 ;; 3437 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 3438 ;; 3439 -.\${*prefix}*) #(vi 3440 +.\${*prefix}*|.\${*dir}*) #(vi 3441 eval withval="$withval" 3442 case ".$withval" in #(vi 3443 .NONE/*) 3444 @@ -3753,7 +3729,7 @@ 3011 3445 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 3012 3446 ;; 3013 3447 *) 3014 3448 - { { echo "$as_me:3756: error: expected a pathname, not \"$withval\"" >&5 3015 + { { echo "$as_me:3 898: error: expected a pathname, not \"$withval\"" >&53449 + { { echo "$as_me:3732: error: expected a pathname, not \"$withval\"" >&5 3016 3450 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 3017 3451 { (exit 1); exit 1; }; } 3018 3452 ;; 3019 @@ -3786,7 +3 928,7 @@3453 @@ -3786,7 +3762,7 @@ 3020 3454 cf_save_CPPFLAGS=$CPPFLAGS 3021 3455 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3022 3456 cat >conftest.$ac_ext <<_ACEOF 3023 3457 -#line 3789 "configure" 3024 +#line 3 931"configure"3458 +#line 3765 "configure" 3025 3459 #include "confdefs.h" 3026 3460 #include <stdio.h> 3027 3461 int 3028 @@ -3798,16 +3 940,16 @@3462 @@ -3798,16 +3774,16 @@ 3029 3463 } 3030 3464 _ACEOF 3031 3465 rm -f conftest.$ac_objext 3032 3466 -if { (eval echo "$as_me:3801: \"$ac_compile\"") >&5 3033 +if { (eval echo "$as_me:3 943: \"$ac_compile\"") >&53467 +if { (eval echo "$as_me:3777: \"$ac_compile\"") >&5 3034 3468 (eval $ac_compile) 2>&5 3035 3469 ac_status=$? 3036 3470 - echo "$as_me:3804: \$? = $ac_status" >&5 3037 + echo "$as_me:3 946: \$? = $ac_status" >&53471 + echo "$as_me:3780: \$? = $ac_status" >&5 3038 3472 (exit $ac_status); } && 3039 3473 { ac_try='test -s conftest.$ac_objext' 3040 3474 - { (eval echo "$as_me:3807: \"$ac_try\"") >&5 3041 + { (eval echo "$as_me:3 949: \"$ac_try\"") >&53475 + { (eval echo "$as_me:3783: \"$ac_try\"") >&5 3042 3476 (eval $ac_try) 2>&5 3043 3477 ac_status=$? 3044 3478 - echo "$as_me:3810: \$? = $ac_status" >&5 3045 + echo "$as_me:3 952: \$? = $ac_status" >&53479 + echo "$as_me:3786: \$? = $ac_status" >&5 3046 3480 (exit $ac_status); }; }; then 3047 3481 : 3048 3482 else 3049 @@ -3824,7 +3 966,7 @@3483 @@ -3824,7 +3800,7 @@ 3050 3484 if test "$cf_have_incdir" = no ; then 3051 3485 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 3052 3486 3053 3487 -echo "${as_me:-configure}:3827: testing adding $cf_add_incdir to include-path ..." 1>&5 3054 +echo "${as_me:-configure}:3 969: testing adding $cf_add_incdir to include-path ..." 1>&53488 +echo "${as_me:-configure}:3803: testing adding $cf_add_incdir to include-path ..." 1>&5 3055 3489 3056 3490 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3057 3491 3058 @@ -3858,7 + 4000,7 @@3492 @@ -3858,7 +3834,7 @@ 3059 3493 if test "$cf_have_libdir" = no ; then 3060 3494 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 3061 3495 3062 3496 -echo "${as_me:-configure}:3861: testing adding $cf_add_libdir to library-path ..." 1>&5 3063 +echo "${as_me:-configure}: 4003: testing adding $cf_add_libdir to library-path ..." 1>&53497 +echo "${as_me:-configure}:3837: testing adding $cf_add_libdir to library-path ..." 1>&5 3064 3498 3065 3499 LDFLAGS="-L$cf_add_libdir $LDFLAGS" 3066 3500 fi 3067 @@ -3869,7 + 4011,7 @@3501 @@ -3869,7 +3845,7 @@ 3068 3502 fi 3069 3503 fi 3070 3504 3071 3505 -echo "$as_me:3872: checking if you want wide-character code" >&5 3072 +echo "$as_me: 4014: checking if you want wide-character code" >&53506 +echo "$as_me:3848: checking if you want wide-character code" >&5 3073 3507 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6 3074 3508 3075 3509 # Check whether --enable-widec or --disable-widec was given. 3076 @@ -3879,11 + 4021,11 @@3510 @@ -3879,11 +3855,11 @@ 3077 3511 else 3078 3512 with_widec=no 3079 3513 fi; 3080 3514 -echo "$as_me:3882: result: $with_widec" >&5 3081 +echo "$as_me: 4024: result: $with_widec" >&53515 +echo "$as_me:3858: result: $with_widec" >&5 3082 3516 echo "${ECHO_T}$with_widec" >&6 3083 3517 if test "$with_widec" = yes ; then 3084 3518 3085 3519 -echo "$as_me:3886: checking for multibyte character support" >&5 3086 +echo "$as_me: 4028: checking for multibyte character support" >&53520 +echo "$as_me:3862: checking for multibyte character support" >&5 3087 3521 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 3088 3522 if test "${cf_cv_utf8_lib+set}" = set; then 3089 3523 echo $ECHO_N "(cached) $ECHO_C" >&6 3090 @@ -3891,7 + 4033,7 @@3524 @@ -3891,7 +3867,7 @@ 3091 3525 3092 3526 cf_save_LIBS="$LIBS" 3093 3527 cat >conftest.$ac_ext <<_ACEOF 3094 3528 -#line 3894 "configure" 3095 +#line 4036"configure"3529 +#line 3870 "configure" 3096 3530 #include "confdefs.h" 3097 3531 3098 3532 #include <stdlib.h> 3099 @@ -3904,16 + 4046,16 @@3533 @@ -3904,16 +3880,16 @@ 3100 3534 } 3101 3535 _ACEOF 3102 3536 rm -f conftest.$ac_objext conftest$ac_exeext 3103 3537 -if { (eval echo "$as_me:3907: \"$ac_link\"") >&5 3104 +if { (eval echo "$as_me: 4049: \"$ac_link\"") >&53538 +if { (eval echo "$as_me:3883: \"$ac_link\"") >&5 3105 3539 (eval $ac_link) 2>&5 3106 3540 ac_status=$? 3107 3541 - echo "$as_me:3910: \$? = $ac_status" >&5 3108 + echo "$as_me: 4052: \$? = $ac_status" >&53542 + echo "$as_me:3886: \$? = $ac_status" >&5 3109 3543 (exit $ac_status); } && 3110 3544 { ac_try='test -s conftest$ac_exeext' 3111 3545 - { (eval echo "$as_me:3913: \"$ac_try\"") >&5 3112 + { (eval echo "$as_me: 4055: \"$ac_try\"") >&53546 + { (eval echo "$as_me:3889: \"$ac_try\"") >&5 3113 3547 (eval $ac_try) 2>&5 3114 3548 ac_status=$? 3115 3549 - echo "$as_me:3916: \$? = $ac_status" >&5 3116 + echo "$as_me: 4058: \$? = $ac_status" >&53550 + echo "$as_me:3892: \$? = $ac_status" >&5 3117 3551 (exit $ac_status); }; }; then 3118 3552 cf_cv_utf8_lib=yes 3119 3553 else 3120 @@ -3925,12 + 4067,12 @@3554 @@ -3925,12 +3901,12 @@ 3121 3555 cf_cv_header_path_utf8= 3122 3556 cf_cv_library_path_utf8= 3123 3557 3124 3558 -echo "${as_me:-configure}:3928: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 3125 +echo "${as_me:-configure}: 4070: testing Starting FIND_LINKAGE(utf8,) ..." 1>&53559 +echo "${as_me:-configure}:3904: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 3126 3560 3127 3561 cf_save_LIBS="$LIBS" … … 3129 3563 cat >conftest.$ac_ext <<_ACEOF 3130 3564 -#line 3933 "configure" 3131 +#line 4075"configure"3565 +#line 3909 "configure" 3132 3566 #include "confdefs.h" 3133 3567 3134 3568 #include <libutf8.h> 3135 @@ -3943,16 + 4085,16 @@3569 @@ -3943,16 +3919,16 @@ 3136 3570 } 3137 3571 _ACEOF 3138 3572 rm -f conftest.$ac_objext conftest$ac_exeext 3139 3573 -if { (eval echo "$as_me:3946: \"$ac_link\"") >&5 3140 +if { (eval echo "$as_me: 4088: \"$ac_link\"") >&53574 +if { (eval echo "$as_me:3922: \"$ac_link\"") >&5 3141 3575 (eval $ac_link) 2>&5 3142 3576 ac_status=$? 3143 3577 - echo "$as_me:3949: \$? = $ac_status" >&5 3144 + echo "$as_me: 4091: \$? = $ac_status" >&53578 + echo "$as_me:3925: \$? = $ac_status" >&5 3145 3579 (exit $ac_status); } && 3146 3580 { ac_try='test -s conftest$ac_exeext' 3147 3581 - { (eval echo "$as_me:3952: \"$ac_try\"") >&5 3148 + { (eval echo "$as_me: 4094: \"$ac_try\"") >&53582 + { (eval echo "$as_me:3928: \"$ac_try\"") >&5 3149 3583 (eval $ac_try) 2>&5 3150 3584 ac_status=$? 3151 3585 - echo "$as_me:3955: \$? = $ac_status" >&5 3152 + echo "$as_me: 4097: \$? = $ac_status" >&53586 + echo "$as_me:3931: \$? = $ac_status" >&5 3153 3587 (exit $ac_status); }; }; then 3154 3588 3155 3589 cf_cv_find_linkage_utf8=yes 3156 @@ -3966,7 + 4108,7 @@3590 @@ -3966,7 +3942,7 @@ 3157 3591 LIBS="-lutf8 $cf_save_LIBS" 3158 3592 3159 3593 cat >conftest.$ac_ext <<_ACEOF 3160 3594 -#line 3969 "configure" 3161 +#line 4111"configure"3595 +#line 3945 "configure" 3162 3596 #include "confdefs.h" 3163 3597 3164 3598 #include <libutf8.h> 3165 @@ -3979,16 + 4121,16 @@3599 @@ -3979,16 +3955,16 @@ 3166 3600 } 3167 3601 _ACEOF 3168 3602 rm -f conftest.$ac_objext conftest$ac_exeext 3169 3603 -if { (eval echo "$as_me:3982: \"$ac_link\"") >&5 3170 +if { (eval echo "$as_me: 4124: \"$ac_link\"") >&53604 +if { (eval echo "$as_me:3958: \"$ac_link\"") >&5 3171 3605 (eval $ac_link) 2>&5 3172 3606 ac_status=$? 3173 3607 - echo "$as_me:3985: \$? = $ac_status" >&5 3174 + echo "$as_me: 4127: \$? = $ac_status" >&53608 + echo "$as_me:3961: \$? = $ac_status" >&5 3175 3609 (exit $ac_status); } && 3176 3610 { ac_try='test -s conftest$ac_exeext' 3177 3611 - { (eval echo "$as_me:3988: \"$ac_try\"") >&5 3178 + { (eval echo "$as_me: 4130: \"$ac_try\"") >&53612 + { (eval echo "$as_me:3964: \"$ac_try\"") >&5 3179 3613 (eval $ac_try) 2>&5 3180 3614 ac_status=$? 3181 3615 - echo "$as_me:3991: \$? = $ac_status" >&5 3182 + echo "$as_me: 4133: \$? = $ac_status" >&53616 + echo "$as_me:3967: \$? = $ac_status" >&5 3183 3617 (exit $ac_status); }; }; then 3184 3618 3185 3619 cf_cv_find_linkage_utf8=yes 3186 @@ -4005,9 + 4147,9 @@3620 @@ -4005,9 +3981,9 @@ 3187 3621 3188 3622 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 3189 3623 3190 3624 -echo "${as_me:-configure}:4008: testing find linkage for utf8 library ..." 1>&5 3191 +echo "${as_me:-configure}: 4150: testing find linkage for utf8 library ..." 1>&53625 +echo "${as_me:-configure}:3984: testing find linkage for utf8 library ..." 1>&5 3192 3626 3193 3627 -echo "${as_me:-configure}:4010: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 3194 +echo "${as_me:-configure}: 4152: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&53628 +echo "${as_me:-configure}:3986: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 3195 3629 3196 3630 cf_save_CPPFLAGS="$CPPFLAGS" 3197 3631 cf_test_CPPFLAGS="$CPPFLAGS" 3198 @@ -4120,11 +4 262,11 @@3632 @@ -4120,11 +4096,11 @@ 3199 3633 if test -d $cf_cv_header_path_utf8 ; then 3200 3634 test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 3201 3635 3202 3636 -echo "${as_me:-configure}:4123: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 3203 +echo "${as_me:-configure}:4 265: testing ... testing $cf_cv_header_path_utf8 ..." 1>&53637 +echo "${as_me:-configure}:4099: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 3204 3638 3205 3639 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" 3206 3640 cat >conftest.$ac_ext <<_ACEOF 3207 3641 -#line 4127 "configure" 3208 +#line 4 269"configure"3642 +#line 4103 "configure" 3209 3643 #include "confdefs.h" 3210 3644 3211 3645 #include <libutf8.h> 3212 @@ -4137,21 +4 279,21 @@3646 @@ -4137,21 +4113,21 @@ 3213 3647 } 3214 3648 _ACEOF 3215 3649 rm -f conftest.$ac_objext 3216 3650 -if { (eval echo "$as_me:4140: \"$ac_compile\"") >&5 3217 +if { (eval echo "$as_me:4 282: \"$ac_compile\"") >&53651 +if { (eval echo "$as_me:4116: \"$ac_compile\"") >&5 3218 3652 (eval $ac_compile) 2>&5 3219 3653 ac_status=$? 3220 3654 - echo "$as_me:4143: \$? = $ac_status" >&5 3221 + echo "$as_me:4 285: \$? = $ac_status" >&53655 + echo "$as_me:4119: \$? = $ac_status" >&5 3222 3656 (exit $ac_status); } && 3223 3657 { ac_try='test -s conftest.$ac_objext' 3224 3658 - { (eval echo "$as_me:4146: \"$ac_try\"") >&5 3225 + { (eval echo "$as_me:4 288: \"$ac_try\"") >&53659 + { (eval echo "$as_me:4122: \"$ac_try\"") >&5 3226 3660 (eval $ac_try) 2>&5 3227 3661 ac_status=$? 3228 3662 - echo "$as_me:4149: \$? = $ac_status" >&5 3229 + echo "$as_me:4 291: \$? = $ac_status" >&53663 + echo "$as_me:4125: \$? = $ac_status" >&5 3230 3664 (exit $ac_status); }; }; then 3231 3665 … … 3233 3667 3234 3668 -echo "${as_me:-configure}:4154: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 3235 +echo "${as_me:-configure}:4 296: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&53669 +echo "${as_me:-configure}:4130: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 3236 3670 3237 3671 cf_cv_find_linkage_utf8=maybe 3238 3672 cf_test_CPPFLAGS="$CPPFLAGS" 3239 @@ -4169,7 +4 311,7 @@3673 @@ -4169,7 +4145,7 @@ 3240 3674 3241 3675 if test "$cf_cv_find_linkage_utf8" = maybe ; then 3242 3676 3243 3677 -echo "${as_me:-configure}:4172: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 3244 +echo "${as_me:-configure}:4 314: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&53678 +echo "${as_me:-configure}:4148: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 3245 3679 3246 3680 cf_save_LIBS="$LIBS" 3247 3681 cf_save_LDFLAGS="$LDFLAGS" 3248 @@ -4266,13 +4 408,13 @@3682 @@ -4266,13 +4242,13 @@ 3249 3683 if test -d $cf_cv_library_path_utf8 ; then 3250 3684 test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 3251 3685 3252 3686 -echo "${as_me:-configure}:4269: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 3253 +echo "${as_me:-configure}:4 411: testing ... testing $cf_cv_library_path_utf8 ..." 1>&53687 +echo "${as_me:-configure}:4245: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 3254 3688 3255 3689 CPPFLAGS="$cf_test_CPPFLAGS" … … 3258 3692 cat >conftest.$ac_ext <<_ACEOF 3259 3693 -#line 4275 "configure" 3260 +#line 4 417"configure"3694 +#line 4251 "configure" 3261 3695 #include "confdefs.h" 3262 3696 3263 3697 #include <libutf8.h> 3264 @@ -4285,21 +4 427,21 @@3698 @@ -4285,21 +4261,21 @@ 3265 3699 } 3266 3700 _ACEOF 3267 3701 rm -f conftest.$ac_objext conftest$ac_exeext 3268 3702 -if { (eval echo "$as_me:4288: \"$ac_link\"") >&5 3269 +if { (eval echo "$as_me:4 430: \"$ac_link\"") >&53703 +if { (eval echo "$as_me:4264: \"$ac_link\"") >&5 3270 3704 (eval $ac_link) 2>&5 3271 3705 ac_status=$? 3272 3706 - echo "$as_me:4291: \$? = $ac_status" >&5 3273 + echo "$as_me:4 433: \$? = $ac_status" >&53707 + echo "$as_me:4267: \$? = $ac_status" >&5 3274 3708 (exit $ac_status); } && 3275 3709 { ac_try='test -s conftest$ac_exeext' 3276 3710 - { (eval echo "$as_me:4294: \"$ac_try\"") >&5 3277 + { (eval echo "$as_me:4 436: \"$ac_try\"") >&53711 + { (eval echo "$as_me:4270: \"$ac_try\"") >&5 3278 3712 (eval $ac_try) 2>&5 3279 3713 ac_status=$? 3280 3714 - echo "$as_me:4297: \$? = $ac_status" >&5 3281 + echo "$as_me:4 439: \$? = $ac_status" >&53715 + echo "$as_me:4273: \$? = $ac_status" >&5 3282 3716 (exit $ac_status); }; }; then 3283 3717 … … 3285 3719 3286 3720 -echo "${as_me:-configure}:4302: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 3287 +echo "${as_me:-configure}:4 444: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&53721 +echo "${as_me:-configure}:4278: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 3288 3722 3289 3723 cf_cv_find_linkage_utf8=yes 3290 3724 cf_cv_library_file_utf8="-lutf8" 3291 @@ -4341,7 +4 483,7 @@3725 @@ -4341,7 +4317,7 @@ 3292 3726 fi 3293 3727 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3294 3728 fi 3295 3729 -echo "$as_me:4344: result: $cf_cv_utf8_lib" >&5 3296 +echo "$as_me:4 486: result: $cf_cv_utf8_lib" >&53730 +echo "$as_me:4320: result: $cf_cv_utf8_lib" >&5 3297 3731 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 3298 3732 3299 3733 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between 3300 @@ -4375,7 +4 517,7 @@3734 @@ -4375,7 +4351,7 @@ 3301 3735 cf_save_CPPFLAGS=$CPPFLAGS 3302 3736 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3303 3737 cat >conftest.$ac_ext <<_ACEOF 3304 3738 -#line 4378 "configure" 3305 +#line 4 520"configure"3739 +#line 4354 "configure" 3306 3740 #include "confdefs.h" 3307 3741 #include <stdio.h> 3308 3742 int 3309 @@ -4387,16 +4 529,16 @@3743 @@ -4387,16 +4363,16 @@ 3310 3744 } 3311 3745 _ACEOF 3312 3746 rm -f conftest.$ac_objext 3313 3747 -if { (eval echo "$as_me:4390: \"$ac_compile\"") >&5 3314 +if { (eval echo "$as_me:4 532: \"$ac_compile\"") >&53748 +if { (eval echo "$as_me:4366: \"$ac_compile\"") >&5 3315 3749 (eval $ac_compile) 2>&5 3316 3750 ac_status=$? 3317 3751 - echo "$as_me:4393: \$? = $ac_status" >&5 3318 + echo "$as_me:4 535: \$? = $ac_status" >&53752 + echo "$as_me:4369: \$? = $ac_status" >&5 3319 3753 (exit $ac_status); } && 3320 3754 { ac_try='test -s conftest.$ac_objext' 3321 3755 - { (eval echo "$as_me:4396: \"$ac_try\"") >&5 3322 + { (eval echo "$as_me:4 538: \"$ac_try\"") >&53756 + { (eval echo "$as_me:4372: \"$ac_try\"") >&5 3323 3757 (eval $ac_try) 2>&5 3324 3758 ac_status=$? 3325 3759 - echo "$as_me:4399: \$? = $ac_status" >&5 3326 + echo "$as_me:4 541: \$? = $ac_status" >&53760 + echo "$as_me:4375: \$? = $ac_status" >&5 3327 3761 (exit $ac_status); }; }; then 3328 3762 : 3329 3763 else 3330 @@ -4413,7 +4 555,7 @@3764 @@ -4413,7 +4389,7 @@ 3331 3765 if test "$cf_have_incdir" = no ; then 3332 3766 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 3333 3767 3334 3768 -echo "${as_me:-configure}:4416: testing adding $cf_add_incdir to include-path ..." 1>&5 3335 +echo "${as_me:-configure}:4 558: testing adding $cf_add_incdir to include-path ..." 1>&53769 +echo "${as_me:-configure}:4392: testing adding $cf_add_incdir to include-path ..." 1>&5 3336 3770 3337 3771 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3338 3772 3339 @@ -4447,7 +4 589,7 @@3773 @@ -4447,7 +4423,7 @@ 3340 3774 if test "$cf_have_libdir" = no ; then 3341 3775 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 3342 3776 3343 3777 -echo "${as_me:-configure}:4450: testing adding $cf_add_libdir to library-path ..." 1>&5 3344 +echo "${as_me:-configure}:4 592: testing adding $cf_add_libdir to library-path ..." 1>&53778 +echo "${as_me:-configure}:4426: testing adding $cf_add_libdir to library-path ..." 1>&5 3345 3779 3346 3780 LDFLAGS="-L$cf_add_libdir $LDFLAGS" 3347 3781 fi 3348 @@ -4461,48 +4 603,87 @@3782 @@ -4461,48 +4437,87 @@ 3349 3783 cf_ncuconfig_root=ncursesw 3350 3784 … … 3357 3791 + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 3358 3792 +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 3359 +echo "$as_me:4 612: checking for $ac_word" >&53793 +echo "$as_me:4446: checking for $ac_word" >&5 3360 3794 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3361 3795 +if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then … … 3372 3806 + $as_executable_p "$ac_dir/$ac_word" || continue 3373 3807 +ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" 3374 +echo "$as_me:4 627: found $ac_dir/$ac_word" >&53808 +echo "$as_me:4461: found $ac_dir/$ac_word" >&5 3375 3809 +break 3376 3810 +done … … 3380 3814 +NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG 3381 3815 +if test -n "$NCURSES_CONFIG"; then 3382 + echo "$as_me:4 635: result: $NCURSES_CONFIG" >&53816 + echo "$as_me:4469: result: $NCURSES_CONFIG" >&5 3383 3817 +echo "${ECHO_T}$NCURSES_CONFIG" >&6 3384 3818 +else 3385 + echo "$as_me:4 638: result: no" >&53819 + echo "$as_me:4472: result: no" >&5 3386 3820 +echo "${ECHO_T}no" >&6 3387 3821 +fi … … 3397 3831 set dummy $ac_prog; ac_word=$2 3398 3832 -echo "$as_me:4468: checking for $ac_word" >&5 3399 +echo "$as_me:4 651: checking for $ac_word" >&53833 +echo "$as_me:4485: checking for $ac_word" >&5 3400 3834 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 3401 3835 -if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then … … 3423 3857 + $as_executable_p "$ac_dir/$ac_word" || continue 3424 3858 +ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" 3425 +echo "$as_me:4 666: found $ac_dir/$ac_word" >&53859 +echo "$as_me:4500: found $ac_dir/$ac_word" >&5 3426 3860 +break 3427 3861 done … … 3438 3872 +ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG 3439 3873 +if test -n "$ac_ct_NCURSES_CONFIG"; then 3440 + echo "$as_me:4 674: result: $ac_ct_NCURSES_CONFIG" >&53874 + echo "$as_me:4508: result: $ac_ct_NCURSES_CONFIG" >&5 3441 3875 +echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 3442 3876 else 3443 3877 - echo "$as_me:4499: result: no" >&5 3444 + echo "$as_me:4 677: result: no" >&53878 + echo "$as_me:4511: result: no" >&5 3445 3879 echo "${ECHO_T}no" >&6 3446 3880 fi … … 3457 3891 if test "$NCURSES_CONFIG" != none ; then 3458 3892 3459 @@ -4511,7 +4 692,7 @@3893 @@ -4511,7 +4526,7 @@ 3460 3894 3461 3895 # even with config script, some packages use no-override for curses.h 3462 3896 3463 3897 -echo "$as_me:4514: checking if we have identified curses headers" >&5 3464 +echo "$as_me:4 695: checking if we have identified curses headers" >&53898 +echo "$as_me:4529: checking if we have identified curses headers" >&5 3465 3899 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 3466 3900 if test "${cf_cv_ncurses_header+set}" = set; then 3467 3901 echo $ECHO_N "(cached) $ECHO_C" >&6 3468 @@ -4519,13 +4 700,13 @@3902 @@ -4519,13 +4534,13 @@ 3469 3903 3470 3904 cf_cv_ncurses_header=none … … 3481 3915 cat >conftest.$ac_ext <<_ACEOF 3482 3916 -#line 4528 "configure" 3483 +#line 4 709"configure"3917 +#line 4543 "configure" 3484 3918 #include "confdefs.h" 3485 3919 #include <${cf_header}> 3486 3920 int 3487 @@ -4537,16 +4 718,16 @@3921 @@ -4537,16 +4552,16 @@ 3488 3922 } 3489 3923 _ACEOF 3490 3924 rm -f conftest.$ac_objext 3491 3925 -if { (eval echo "$as_me:4540: \"$ac_compile\"") >&5 3492 +if { (eval echo "$as_me:4 721: \"$ac_compile\"") >&53926 +if { (eval echo "$as_me:4555: \"$ac_compile\"") >&5 3493 3927 (eval $ac_compile) 2>&5 3494 3928 ac_status=$? 3495 3929 - echo "$as_me:4543: \$? = $ac_status" >&5 3496 + echo "$as_me:4 724: \$? = $ac_status" >&53930 + echo "$as_me:4558: \$? = $ac_status" >&5 3497 3931 (exit $ac_status); } && 3498 3932 { ac_try='test -s conftest.$ac_objext' 3499 3933 - { (eval echo "$as_me:4546: \"$ac_try\"") >&5 3500 + { (eval echo "$as_me:4 727: \"$ac_try\"") >&53934 + { (eval echo "$as_me:4561: \"$ac_try\"") >&5 3501 3935 (eval $ac_try) 2>&5 3502 3936 ac_status=$? 3503 3937 - echo "$as_me:4549: \$? = $ac_status" >&5 3504 + echo "$as_me:4 730: \$? = $ac_status" >&53938 + echo "$as_me:4564: \$? = $ac_status" >&5 3505 3939 (exit $ac_status); }; }; then 3506 3940 cf_cv_ncurses_header=$cf_header; break 3507 3941 else 3508 @@ -4557,11 +4 738,11 @@3942 @@ -4557,11 +4572,11 @@ 3509 3943 done 3510 3944 3511 3945 fi 3512 3946 -echo "$as_me:4560: result: $cf_cv_ncurses_header" >&5 3513 +echo "$as_me:4 741: result: $cf_cv_ncurses_header" >&53947 +echo "$as_me:4575: result: $cf_cv_ncurses_header" >&5 3514 3948 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 3515 3949 3516 3950 if test "$cf_cv_ncurses_header" = none ; then 3517 3951 - { { echo "$as_me:4564: error: No curses header-files found" >&5 3518 + { { echo "$as_me:4 745: error: No curses header-files found" >&53952 + { { echo "$as_me:4579: error: No curses header-files found" >&5 3519 3953 echo "$as_me: error: No curses header-files found" >&2;} 3520 3954 { (exit 1); exit 1; }; } 3521 3955 fi 3522 @@ -4571,23 +4 752,23 @@3956 @@ -4571,23 +4586,23 @@ 3523 3957 for ac_header in $cf_cv_ncurses_header 3524 3958 do 3525 3959 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 3526 3960 -echo "$as_me:4574: checking for $ac_header" >&5 3527 +echo "$as_me:4 755: checking for $ac_header" >&53961 +echo "$as_me:4589: checking for $ac_header" >&5 3528 3962 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 3529 3963 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 3532 3966 cat >conftest.$ac_ext <<_ACEOF 3533 3967 -#line 4580 "configure" 3534 +#line 4 761"configure"3968 +#line 4595 "configure" 3535 3969 #include "confdefs.h" 3536 3970 #include <$ac_header> 3537 3971 _ACEOF 3538 3972 -if { (eval echo "$as_me:4584: \"$ac_cpp conftest.$ac_ext\"") >&5 3539 +if { (eval echo "$as_me:4 765: \"$ac_cpp conftest.$ac_ext\"") >&53973 +if { (eval echo "$as_me:4599: \"$ac_cpp conftest.$ac_ext\"") >&5 3540 3974 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 3541 3975 ac_status=$? … … 3544 3978 cat conftest.err >&5 3545 3979 - echo "$as_me:4590: \$? = $ac_status" >&5 3546 + echo "$as_me:4 771: \$? = $ac_status" >&53980 + echo "$as_me:4605: \$? = $ac_status" >&5 3547 3981 (exit $ac_status); } >/dev/null; then 3548 3982 if test -s conftest.err; then 3549 3983 ac_cpp_err=$ac_c_preproc_warn_flag 3550 @@ -4606,7 +4 787,7 @@3984 @@ -4606,7 +4621,7 @@ 3551 3985 fi 3552 3986 rm -f conftest.err conftest.$ac_ext 3553 3987 fi 3554 3988 -echo "$as_me:4609: result: `eval echo '${'$as_ac_Header'}'`" >&5 3555 +echo "$as_me:4 790: result: `eval echo '${'$as_ac_Header'}'`" >&53989 +echo "$as_me:4624: result: `eval echo '${'$as_ac_Header'}'`" >&5 3556 3990 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 3557 3991 if test `eval echo '${'$as_ac_Header'}'` = yes; then 3558 3992 cat >>confdefs.h <<EOF 3559 @@ -4659,7 +4 840,7 @@3993 @@ -4659,7 +4674,7 @@ 3560 3994 cf_save_CPPFLAGS=$CPPFLAGS 3561 3995 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3562 3996 cat >conftest.$ac_ext <<_ACEOF 3563 3997 -#line 4662 "configure" 3564 +#line 4 843"configure"3998 +#line 4677 "configure" 3565 3999 #include "confdefs.h" 3566 4000 #include <stdio.h> 3567 4001 int 3568 @@ -4671,16 +4 852,16 @@4002 @@ -4671,16 +4686,16 @@ 3569 4003 } 3570 4004 _ACEOF 3571 4005 rm -f conftest.$ac_objext 3572 4006 -if { (eval echo "$as_me:4674: \"$ac_compile\"") >&5 3573 +if { (eval echo "$as_me:4 855: \"$ac_compile\"") >&54007 +if { (eval echo "$as_me:4689: \"$ac_compile\"") >&5 3574 4008 (eval $ac_compile) 2>&5 3575 4009 ac_status=$? 3576 4010 - echo "$as_me:4677: \$? = $ac_status" >&5 3577 + echo "$as_me:4 858: \$? = $ac_status" >&54011 + echo "$as_me:4692: \$? = $ac_status" >&5 3578 4012 (exit $ac_status); } && 3579 4013 { ac_try='test -s conftest.$ac_objext' 3580 4014 - { (eval echo "$as_me:4680: \"$ac_try\"") >&5 3581 + { (eval echo "$as_me:4 861: \"$ac_try\"") >&54015 + { (eval echo "$as_me:4695: \"$ac_try\"") >&5 3582 4016 (eval $ac_try) 2>&5 3583 4017 ac_status=$? 3584 4018 - echo "$as_me:4683: \$? = $ac_status" >&5 3585 + echo "$as_me:4 864: \$? = $ac_status" >&54019 + echo "$as_me:4698: \$? = $ac_status" >&5 3586 4020 (exit $ac_status); }; }; then 3587 4021 : 3588 4022 else 3589 @@ -4697,7 +4 878,7 @@4023 @@ -4697,7 +4712,7 @@ 3590 4024 if test "$cf_have_incdir" = no ; then 3591 4025 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 3592 4026 3593 4027 -echo "${as_me:-configure}:4700: testing adding $cf_add_incdir to include-path ..." 1>&5 3594 +echo "${as_me:-configure}:4 881: testing adding $cf_add_incdir to include-path ..." 1>&54028 +echo "${as_me:-configure}:4715: testing adding $cf_add_incdir to include-path ..." 1>&5 3595 4029 3596 4030 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3597 4031 3598 @@ -4714,7 +4 895,7 @@4032 @@ -4714,7 +4729,7 @@ 3599 4033 3600 4034 } 3601 4035 3602 4036 -echo "$as_me:4717: checking for $cf_ncuhdr_root header in include-path" >&5 3603 +echo "$as_me:4 898: checking for $cf_ncuhdr_root header in include-path" >&54037 +echo "$as_me:4732: checking for $cf_ncuhdr_root header in include-path" >&5 3604 4038 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 3605 4039 if test "${cf_cv_ncurses_h+set}" = set; then 3606 4040 echo $ECHO_N "(cached) $ECHO_C" >&6 3607 @@ -4726,7 +4 907,7 @@4041 @@ -4726,7 +4741,7 @@ 3608 4042 do 3609 4043 3610 4044 cat >conftest.$ac_ext <<_ACEOF 3611 4045 -#line 4729 "configure" 3612 +#line 4 910"configure"4046 +#line 4744 "configure" 3613 4047 #include "confdefs.h" 3614 4048 3615 4049 #define _XOPEN_SOURCE_EXTENDED 3616 @@ -4758,16 +4 939,16 @@4050 @@ -4758,16 +4773,16 @@ 3617 4051 } 3618 4052 _ACEOF 3619 4053 rm -f conftest.$ac_objext 3620 4054 -if { (eval echo "$as_me:4761: \"$ac_compile\"") >&5 3621 +if { (eval echo "$as_me:4 942: \"$ac_compile\"") >&54055 +if { (eval echo "$as_me:4776: \"$ac_compile\"") >&5 3622 4056 (eval $ac_compile) 2>&5 3623 4057 ac_status=$? 3624 4058 - echo "$as_me:4764: \$? = $ac_status" >&5 3625 + echo "$as_me:4 945: \$? = $ac_status" >&54059 + echo "$as_me:4779: \$? = $ac_status" >&5 3626 4060 (exit $ac_status); } && 3627 4061 { ac_try='test -s conftest.$ac_objext' 3628 4062 - { (eval echo "$as_me:4767: \"$ac_try\"") >&5 3629 + { (eval echo "$as_me:4 948: \"$ac_try\"") >&54063 + { (eval echo "$as_me:4782: \"$ac_try\"") >&5 3630 4064 (eval $ac_try) 2>&5 3631 4065 ac_status=$? 3632 4066 - echo "$as_me:4770: \$? = $ac_status" >&5 3633 + echo "$as_me:4 951: \$? = $ac_status" >&54067 + echo "$as_me:4785: \$? = $ac_status" >&5 3634 4068 (exit $ac_status); }; }; then 3635 4069 cf_cv_ncurses_h=$cf_header 3636 4070 3637 @@ -4782,14 +4 963,14 @@4071 @@ -4782,14 +4797,14 @@ 3638 4072 done 3639 4073 3640 4074 fi 3641 4075 -echo "$as_me:4785: result: $cf_cv_ncurses_h" >&5 3642 +echo "$as_me:4 966: result: $cf_cv_ncurses_h" >&54076 +echo "$as_me:4800: result: $cf_cv_ncurses_h" >&5 3643 4077 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 3644 4078 … … 3648 4082 3649 4083 -echo "$as_me:4792: checking for $cf_ncuhdr_root include-path" >&5 3650 +echo "$as_me:4 973: checking for $cf_ncuhdr_root include-path" >&54084 +echo "$as_me:4807: checking for $cf_ncuhdr_root include-path" >&5 3651 4085 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 3652 4086 if test "${cf_cv_ncurses_h2+set}" = set; then 3653 4087 echo $ECHO_N "(cached) $ECHO_C" >&6 3654 @@ -4929,7 + 5110,7 @@4088 @@ -4929,7 +4944,7 @@ 3655 4089 cf_save_CPPFLAGS=$CPPFLAGS 3656 4090 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3657 4091 cat >conftest.$ac_ext <<_ACEOF 3658 4092 -#line 4932 "configure" 3659 +#line 5113"configure"4093 +#line 4947 "configure" 3660 4094 #include "confdefs.h" 3661 4095 #include <stdio.h> 3662 4096 int 3663 @@ -4941,16 + 5122,16 @@4097 @@ -4941,16 +4956,16 @@ 3664 4098 } 3665 4099 _ACEOF 3666 4100 rm -f conftest.$ac_objext 3667 4101 -if { (eval echo "$as_me:4944: \"$ac_compile\"") >&5 3668 +if { (eval echo "$as_me: 5125: \"$ac_compile\"") >&54102 +if { (eval echo "$as_me:4959: \"$ac_compile\"") >&5 3669 4103 (eval $ac_compile) 2>&5 3670 4104 ac_status=$? 3671 4105 - echo "$as_me:4947: \$? = $ac_status" >&5 3672 + echo "$as_me: 5128: \$? = $ac_status" >&54106 + echo "$as_me:4962: \$? = $ac_status" >&5 3673 4107 (exit $ac_status); } && 3674 4108 { ac_try='test -s conftest.$ac_objext' 3675 4109 - { (eval echo "$as_me:4950: \"$ac_try\"") >&5 3676 + { (eval echo "$as_me: 5131: \"$ac_try\"") >&54110 + { (eval echo "$as_me:4965: \"$ac_try\"") >&5 3677 4111 (eval $ac_try) 2>&5 3678 4112 ac_status=$? 3679 4113 - echo "$as_me:4953: \$? = $ac_status" >&5 3680 + echo "$as_me: 5134: \$? = $ac_status" >&54114 + echo "$as_me:4968: \$? = $ac_status" >&5 3681 4115 (exit $ac_status); }; }; then 3682 4116 : 3683 4117 else 3684 @@ -4967,7 + 5148,7 @@4118 @@ -4967,7 +4982,7 @@ 3685 4119 if test "$cf_have_incdir" = no ; then 3686 4120 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 3687 4121 3688 4122 -echo "${as_me:-configure}:4970: testing adding $cf_add_incdir to include-path ..." 1>&5 3689 +echo "${as_me:-configure}: 5151: testing adding $cf_add_incdir to include-path ..." 1>&54123 +echo "${as_me:-configure}:4985: testing adding $cf_add_incdir to include-path ..." 1>&5 3690 4124 3691 4125 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3692 4126 3693 @@ -4988,7 +5 169,7 @@4127 @@ -4988,7 +5003,7 @@ 3694 4128 do 3695 4129 3696 4130 cat >conftest.$ac_ext <<_ACEOF 3697 4131 -#line 4991 "configure" 3698 +#line 5 172"configure"4132 +#line 5006 "configure" 3699 4133 #include "confdefs.h" 3700 4134 3701 4135 #include <$cf_header> 3702 @@ -5012,16 +5 193,16 @@4136 @@ -5012,16 +5027,16 @@ 3703 4137 } 3704 4138 _ACEOF 3705 4139 rm -f conftest.$ac_objext 3706 4140 -if { (eval echo "$as_me:5015: \"$ac_compile\"") >&5 3707 +if { (eval echo "$as_me:5 196: \"$ac_compile\"") >&54141 +if { (eval echo "$as_me:5030: \"$ac_compile\"") >&5 3708 4142 (eval $ac_compile) 2>&5 3709 4143 ac_status=$? 3710 4144 - echo "$as_me:5018: \$? = $ac_status" >&5 3711 + echo "$as_me:5 199: \$? = $ac_status" >&54145 + echo "$as_me:5033: \$? = $ac_status" >&5 3712 4146 (exit $ac_status); } && 3713 4147 { ac_try='test -s conftest.$ac_objext' 3714 4148 - { (eval echo "$as_me:5021: \"$ac_try\"") >&5 3715 + { (eval echo "$as_me:5 202: \"$ac_try\"") >&54149 + { (eval echo "$as_me:5036: \"$ac_try\"") >&5 3716 4150 (eval $ac_try) 2>&5 3717 4151 ac_status=$? 3718 4152 - echo "$as_me:5024: \$? = $ac_status" >&5 3719 + echo "$as_me:5 205: \$? = $ac_status" >&54153 + echo "$as_me:5039: \$? = $ac_status" >&5 3720 4154 (exit $ac_status); }; }; then 3721 4155 cf_cv_ncurses_h2=$cf_header 3722 4156 3723 @@ -5042,12 +5 223,12 @@4157 @@ -5042,12 +5057,12 @@ 3724 4158 CPPFLAGS="$cf_save2_CPPFLAGS" 3725 4159 test "$cf_cv_ncurses_h2" != no && break 3726 4160 done 3727 4161 - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5045: error: not found" >&5 3728 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5 226: error: not found" >&54162 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5060: error: not found" >&5 3729 4163 echo "$as_me: error: not found" >&2;} 3730 4164 { (exit 1); exit 1; }; } … … 3732 4166 fi 3733 4167 -echo "$as_me:5050: result: $cf_cv_ncurses_h2" >&5 3734 +echo "$as_me:5 231: result: $cf_cv_ncurses_h2" >&54168 +echo "$as_me:5065: result: $cf_cv_ncurses_h2" >&5 3735 4169 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 3736 4170 3737 4171 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` 3738 @@ -5080,7 +5 261,7 @@4172 @@ -5080,7 +5095,7 @@ 3739 4173 cf_save_CPPFLAGS=$CPPFLAGS 3740 4174 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3741 4175 cat >conftest.$ac_ext <<_ACEOF 3742 4176 -#line 5083 "configure" 3743 +#line 5 264"configure"4177 +#line 5098 "configure" 3744 4178 #include "confdefs.h" 3745 4179 #include <stdio.h> 3746 4180 int 3747 @@ -5092,16 +5 273,16 @@4181 @@ -5092,16 +5107,16 @@ 3748 4182 } 3749 4183 _ACEOF 3750 4184 rm -f conftest.$ac_objext 3751 4185 -if { (eval echo "$as_me:5095: \"$ac_compile\"") >&5 3752 +if { (eval echo "$as_me:5 276: \"$ac_compile\"") >&54186 +if { (eval echo "$as_me:5110: \"$ac_compile\"") >&5 3753 4187 (eval $ac_compile) 2>&5 3754 4188 ac_status=$? 3755 4189 - echo "$as_me:5098: \$? = $ac_status" >&5 3756 + echo "$as_me:5 279: \$? = $ac_status" >&54190 + echo "$as_me:5113: \$? = $ac_status" >&5 3757 4191 (exit $ac_status); } && 3758 4192 { ac_try='test -s conftest.$ac_objext' 3759 4193 - { (eval echo "$as_me:5101: \"$ac_try\"") >&5 3760 + { (eval echo "$as_me:5 282: \"$ac_try\"") >&54194 + { (eval echo "$as_me:5116: \"$ac_try\"") >&5 3761 4195 (eval $ac_try) 2>&5 3762 4196 ac_status=$? 3763 4197 - echo "$as_me:5104: \$? = $ac_status" >&5 3764 + echo "$as_me:5 285: \$? = $ac_status" >&54198 + echo "$as_me:5119: \$? = $ac_status" >&5 3765 4199 (exit $ac_status); }; }; then 3766 4200 : 3767 4201 else 3768 @@ -5118,7 +5 299,7 @@4202 @@ -5118,7 +5133,7 @@ 3769 4203 if test "$cf_have_incdir" = no ; then 3770 4204 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 3771 4205 3772 4206 -echo "${as_me:-configure}:5121: testing adding $cf_add_incdir to include-path ..." 1>&5 3773 +echo "${as_me:-configure}:5 302: testing adding $cf_add_incdir to include-path ..." 1>&54207 +echo "${as_me:-configure}:5136: testing adding $cf_add_incdir to include-path ..." 1>&5 3774 4208 3775 4209 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 3776 4210 3777 @@ -5161,7 +5 342,7 @@4211 @@ -5161,7 +5176,7 @@ 3778 4212 ;; 3779 4213 esac 3780 4214 3781 4215 -echo "$as_me:5164: checking for terminfo header" >&5 3782 +echo "$as_me:5 345: checking for terminfo header" >&54216 +echo "$as_me:5179: checking for terminfo header" >&5 3783 4217 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 3784 4218 if test "${cf_cv_term_header+set}" = set; then 3785 4219 echo $ECHO_N "(cached) $ECHO_C" >&6 3786 @@ -5179,7 +5 360,7 @@4220 @@ -5179,7 +5194,7 @@ 3787 4221 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" 3788 4222 do 3789 4223 cat >conftest.$ac_ext <<_ACEOF 3790 4224 -#line 5182 "configure" 3791 +#line 5 363"configure"4225 +#line 5197 "configure" 3792 4226 #include "confdefs.h" 3793 4227 #include <stdio.h> 3794 4228 #include <${cf_cv_ncurses_header:-curses.h}> 3795 @@ -5194,16 +5 375,16 @@4229 @@ -5194,16 +5209,16 @@ 3796 4230 } 3797 4231 _ACEOF 3798 4232 rm -f conftest.$ac_objext 3799 4233 -if { (eval echo "$as_me:5197: \"$ac_compile\"") >&5 3800 +if { (eval echo "$as_me:5 378: \"$ac_compile\"") >&54234 +if { (eval echo "$as_me:5212: \"$ac_compile\"") >&5 3801 4235 (eval $ac_compile) 2>&5 3802 4236 ac_status=$? 3803 4237 - echo "$as_me:5200: \$? = $ac_status" >&5 3804 + echo "$as_me:5 381: \$? = $ac_status" >&54238 + echo "$as_me:5215: \$? = $ac_status" >&5 3805 4239 (exit $ac_status); } && 3806 4240 { ac_try='test -s conftest.$ac_objext' 3807 4241 - { (eval echo "$as_me:5203: \"$ac_try\"") >&5 3808 + { (eval echo "$as_me:5 384: \"$ac_try\"") >&54242 + { (eval echo "$as_me:5218: \"$ac_try\"") >&5 3809 4243 (eval $ac_try) 2>&5 3810 4244 ac_status=$? 3811 4245 - echo "$as_me:5206: \$? = $ac_status" >&5 3812 + echo "$as_me:5 387: \$? = $ac_status" >&54246 + echo "$as_me:5221: \$? = $ac_status" >&5 3813 4247 (exit $ac_status); }; }; then 3814 4248 3815 4249 cf_cv_term_header="$cf_test" 3816 @@ -5219,7 +5 400,7 @@4250 @@ -5219,7 +5234,7 @@ 3817 4251 done 3818 4252 3819 4253 fi 3820 4254 -echo "$as_me:5222: result: $cf_cv_term_header" >&5 3821 +echo "$as_me:5 403: result: $cf_cv_term_header" >&54255 +echo "$as_me:5237: result: $cf_cv_term_header" >&5 3822 4256 echo "${ECHO_T}$cf_cv_term_header" >&6 3823 4257 3824 4258 # Set definitions to allow ifdef'ing to accommodate subdirectories 3825 @@ -5253,7 +5 434,7 @@4259 @@ -5253,7 +5268,7 @@ 3826 4260 #define NCURSES 1 3827 4261 EOF 3828 4262 3829 4263 -echo "$as_me:5256: checking for ncurses version" >&5 3830 +echo "$as_me:5 437: checking for ncurses version" >&54264 +echo "$as_me:5271: checking for ncurses version" >&5 3831 4265 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 3832 4266 if test "${cf_cv_ncurses_version+set}" = set; then 3833 4267 echo $ECHO_N "(cached) $ECHO_C" >&6 3834 @@ -5279,10 +5 460,10 @@4268 @@ -5279,10 +5294,10 @@ 3835 4269 #endif 3836 4270 EOF 3837 4271 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" 3838 4272 - { (eval echo "$as_me:5282: \"$cf_try\"") >&5 3839 + { (eval echo "$as_me:5 463: \"$cf_try\"") >&54273 + { (eval echo "$as_me:5297: \"$cf_try\"") >&5 3840 4274 (eval $cf_try) 2>&5 3841 4275 ac_status=$? 3842 4276 - echo "$as_me:5285: \$? = $ac_status" >&5 3843 + echo "$as_me:5 466: \$? = $ac_status" >&54277 + echo "$as_me:5300: \$? = $ac_status" >&5 3844 4278 (exit $ac_status); } 3845 4279 if test -f conftest.out ; then 3846 4280 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` 3847 @@ -5292,7 +5 473,7 @@4281 @@ -5292,7 +5307,7 @@ 3848 4282 3849 4283 else 3850 4284 cat >conftest.$ac_ext <<_ACEOF 3851 4285 -#line 5295 "configure" 3852 +#line 5 476"configure"4286 +#line 5310 "configure" 3853 4287 #include "confdefs.h" 3854 4288 3855 4289 #include <${cf_cv_ncurses_header:-curses.h}> 3856 @@ -5317,15 +5 498,15 @@4290 @@ -5317,15 +5332,15 @@ 3857 4291 } 3858 4292 _ACEOF 3859 4293 rm -f conftest$ac_exeext 3860 4294 -if { (eval echo "$as_me:5320: \"$ac_link\"") >&5 3861 +if { (eval echo "$as_me:5 501: \"$ac_link\"") >&54295 +if { (eval echo "$as_me:5335: \"$ac_link\"") >&5 3862 4296 (eval $ac_link) 2>&5 3863 4297 ac_status=$? 3864 4298 - echo "$as_me:5323: \$? = $ac_status" >&5 3865 + echo "$as_me:5 504: \$? = $ac_status" >&54299 + echo "$as_me:5338: \$? = $ac_status" >&5 3866 4300 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 3867 4301 - { (eval echo "$as_me:5325: \"$ac_try\"") >&5 3868 + { (eval echo "$as_me:5 506: \"$ac_try\"") >&54302 + { (eval echo "$as_me:5340: \"$ac_try\"") >&5 3869 4303 (eval $ac_try) 2>&5 3870 4304 ac_status=$? 3871 4305 - echo "$as_me:5328: \$? = $ac_status" >&5 3872 + echo "$as_me:5 509: \$? = $ac_status" >&54306 + echo "$as_me:5343: \$? = $ac_status" >&5 3873 4307 (exit $ac_status); }; }; then 3874 4308 3875 4309 cf_cv_ncurses_version=`cat $cf_tempfile` 3876 @@ -5339,7 +5 520,7 @@4310 @@ -5339,7 +5354,7 @@ 3877 4311 rm -f $cf_tempfile 3878 4312 3879 4313 fi 3880 4314 -echo "$as_me:5342: result: $cf_cv_ncurses_version" >&5 3881 +echo "$as_me:5 523: result: $cf_cv_ncurses_version" >&54315 +echo "$as_me:5357: result: $cf_cv_ncurses_version" >&5 3882 4316 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 3883 4317 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF 3884 4318 #define NCURSES 1 3885 @@ -5351,7 +5 532,7 @@4319 @@ -5351,7 +5366,7 @@ 3886 4320 # to link gpm. 3887 4321 cf_ncurses_LIBS="" 3888 4322 cf_ncurses_SAVE="$LIBS" 3889 4323 -echo "$as_me:5354: checking for Gpm_Open in -lgpm" >&5 3890 +echo "$as_me:5 535: checking for Gpm_Open in -lgpm" >&54324 +echo "$as_me:5369: checking for Gpm_Open in -lgpm" >&5 3891 4325 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 3892 4326 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then 3893 4327 echo $ECHO_N "(cached) $ECHO_C" >&6 3894 @@ -5359,7 +5 540,7 @@4328 @@ -5359,7 +5374,7 @@ 3895 4329 ac_check_lib_save_LIBS=$LIBS 3896 4330 LIBS="-lgpm $LIBS" 3897 4331 cat >conftest.$ac_ext <<_ACEOF 3898 4332 -#line 5362 "configure" 3899 +#line 5 543"configure"4333 +#line 5377 "configure" 3900 4334 #include "confdefs.h" 3901 4335 3902 4336 /* Override any gcc2 internal prototype to avoid an error. */ 3903 @@ -5378,16 +5 559,16 @@4337 @@ -5378,16 +5393,16 @@ 3904 4338 } 3905 4339 _ACEOF 3906 4340 rm -f conftest.$ac_objext conftest$ac_exeext 3907 4341 -if { (eval echo "$as_me:5381: \"$ac_link\"") >&5 3908 +if { (eval echo "$as_me:5 562: \"$ac_link\"") >&54342 +if { (eval echo "$as_me:5396: \"$ac_link\"") >&5 3909 4343 (eval $ac_link) 2>&5 3910 4344 ac_status=$? 3911 4345 - echo "$as_me:5384: \$? = $ac_status" >&5 3912 + echo "$as_me:5 565: \$? = $ac_status" >&54346 + echo "$as_me:5399: \$? = $ac_status" >&5 3913 4347 (exit $ac_status); } && 3914 4348 { ac_try='test -s conftest$ac_exeext' 3915 4349 - { (eval echo "$as_me:5387: \"$ac_try\"") >&5 3916 + { (eval echo "$as_me:5 568: \"$ac_try\"") >&54350 + { (eval echo "$as_me:5402: \"$ac_try\"") >&5 3917 4351 (eval $ac_try) 2>&5 3918 4352 ac_status=$? 3919 4353 - echo "$as_me:5390: \$? = $ac_status" >&5 3920 + echo "$as_me:5 571: \$? = $ac_status" >&54354 + echo "$as_me:5405: \$? = $ac_status" >&5 3921 4355 (exit $ac_status); }; }; then 3922 4356 ac_cv_lib_gpm_Gpm_Open=yes 3923 4357 else 3924 @@ -5398,10 +5 579,10 @@4358 @@ -5398,10 +5413,10 @@ 3925 4359 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3926 4360 LIBS=$ac_check_lib_save_LIBS 3927 4361 fi 3928 4362 -echo "$as_me:5401: result: $ac_cv_lib_gpm_Gpm_Open" >&5 3929 +echo "$as_me:5 582: result: $ac_cv_lib_gpm_Gpm_Open" >&54363 +echo "$as_me:5416: result: $ac_cv_lib_gpm_Gpm_Open" >&5 3930 4364 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 3931 4365 if test $ac_cv_lib_gpm_Gpm_Open = yes; then 3932 4366 - echo "$as_me:5404: checking for initscr in -lgpm" >&5 3933 + echo "$as_me:5 585: checking for initscr in -lgpm" >&54367 + echo "$as_me:5419: checking for initscr in -lgpm" >&5 3934 4368 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 3935 4369 if test "${ac_cv_lib_gpm_initscr+set}" = set; then 3936 4370 echo $ECHO_N "(cached) $ECHO_C" >&6 3937 @@ -5409,7 +5 590,7 @@4371 @@ -5409,7 +5424,7 @@ 3938 4372 ac_check_lib_save_LIBS=$LIBS 3939 4373 LIBS="-lgpm $LIBS" 3940 4374 cat >conftest.$ac_ext <<_ACEOF 3941 4375 -#line 5412 "configure" 3942 +#line 5 593"configure"4376 +#line 5427 "configure" 3943 4377 #include "confdefs.h" 3944 4378 3945 4379 /* Override any gcc2 internal prototype to avoid an error. */ 3946 @@ -5428,16 +5 609,16 @@4380 @@ -5428,16 +5443,16 @@ 3947 4381 } 3948 4382 _ACEOF 3949 4383 rm -f conftest.$ac_objext conftest$ac_exeext 3950 4384 -if { (eval echo "$as_me:5431: \"$ac_link\"") >&5 3951 +if { (eval echo "$as_me:5 612: \"$ac_link\"") >&54385 +if { (eval echo "$as_me:5446: \"$ac_link\"") >&5 3952 4386 (eval $ac_link) 2>&5 3953 4387 ac_status=$? 3954 4388 - echo "$as_me:5434: \$? = $ac_status" >&5 3955 + echo "$as_me:5 615: \$? = $ac_status" >&54389 + echo "$as_me:5449: \$? = $ac_status" >&5 3956 4390 (exit $ac_status); } && 3957 4391 { ac_try='test -s conftest$ac_exeext' 3958 4392 - { (eval echo "$as_me:5437: \"$ac_try\"") >&5 3959 + { (eval echo "$as_me:5 618: \"$ac_try\"") >&54393 + { (eval echo "$as_me:5452: \"$ac_try\"") >&5 3960 4394 (eval $ac_try) 2>&5 3961 4395 ac_status=$? 3962 4396 - echo "$as_me:5440: \$? = $ac_status" >&5 3963 + echo "$as_me:5 621: \$? = $ac_status" >&54397 + echo "$as_me:5455: \$? = $ac_status" >&5 3964 4398 (exit $ac_status); }; }; then 3965 4399 ac_cv_lib_gpm_initscr=yes 3966 4400 else 3967 @@ -5448,7 +5 629,7 @@4401 @@ -5448,7 +5463,7 @@ 3968 4402 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 3969 4403 LIBS=$ac_check_lib_save_LIBS 3970 4404 fi 3971 4405 -echo "$as_me:5451: result: $ac_cv_lib_gpm_initscr" >&5 3972 +echo "$as_me:5 632: result: $ac_cv_lib_gpm_initscr" >&54406 +echo "$as_me:5466: result: $ac_cv_lib_gpm_initscr" >&5 3973 4407 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 3974 4408 if test $ac_cv_lib_gpm_initscr = yes; then 3975 4409 LIBS="$cf_ncurses_SAVE" 3976 @@ -5463,7 +5 644,7 @@4410 @@ -5463,7 +5478,7 @@ 3977 4411 # This is only necessary if you are linking against an obsolete 3978 4412 # version of ncurses (but it should do no harm, since it's static). 3979 4413 if test "$cf_nculib_root" = ncurses ; then 3980 4414 - echo "$as_me:5466: checking for tgoto in -lmytinfo" >&5 3981 + echo "$as_me:5 647: checking for tgoto in -lmytinfo" >&54415 + echo "$as_me:5481: checking for tgoto in -lmytinfo" >&5 3982 4416 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 3983 4417 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then 3984 4418 echo $ECHO_N "(cached) $ECHO_C" >&6 3985 @@ -5471,7 +5 652,7 @@4419 @@ -5471,7 +5486,7 @@ 3986 4420 ac_check_lib_save_LIBS=$LIBS 3987 4421 LIBS="-lmytinfo $LIBS" 3988 4422 cat >conftest.$ac_ext <<_ACEOF 3989 4423 -#line 5474 "configure" 3990 +#line 5 655"configure"4424 +#line 5489 "configure" 3991 4425 #include "confdefs.h" 3992 4426 3993 4427 /* Override any gcc2 internal prototype to avoid an error. */ 3994 @@ -5490,16 +5 671,16 @@4428 @@ -5490,16 +5505,16 @@ 3995 4429 } 3996 4430 _ACEOF 3997 4431 rm -f conftest.$ac_objext conftest$ac_exeext 3998 4432 -if { (eval echo "$as_me:5493: \"$ac_link\"") >&5 3999 +if { (eval echo "$as_me:5 674: \"$ac_link\"") >&54433 +if { (eval echo "$as_me:5508: \"$ac_link\"") >&5 4000 4434 (eval $ac_link) 2>&5 4001 4435 ac_status=$? 4002 4436 - echo "$as_me:5496: \$? = $ac_status" >&5 4003 + echo "$as_me:5 677: \$? = $ac_status" >&54437 + echo "$as_me:5511: \$? = $ac_status" >&5 4004 4438 (exit $ac_status); } && 4005 4439 { ac_try='test -s conftest$ac_exeext' 4006 4440 - { (eval echo "$as_me:5499: \"$ac_try\"") >&5 4007 + { (eval echo "$as_me:5 680: \"$ac_try\"") >&54441 + { (eval echo "$as_me:5514: \"$ac_try\"") >&5 4008 4442 (eval $ac_try) 2>&5 4009 4443 ac_status=$? 4010 4444 - echo "$as_me:5502: \$? = $ac_status" >&5 4011 + echo "$as_me:5 683: \$? = $ac_status" >&54445 + echo "$as_me:5517: \$? = $ac_status" >&5 4012 4446 (exit $ac_status); }; }; then 4013 4447 ac_cv_lib_mytinfo_tgoto=yes 4014 4448 else 4015 @@ -5510,7 +5 691,7 @@4449 @@ -5510,7 +5525,7 @@ 4016 4450 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4017 4451 LIBS=$ac_check_lib_save_LIBS 4018 4452 fi 4019 4453 -echo "$as_me:5513: result: $ac_cv_lib_mytinfo_tgoto" >&5 4020 +echo "$as_me:5 694: result: $ac_cv_lib_mytinfo_tgoto" >&54454 +echo "$as_me:5528: result: $ac_cv_lib_mytinfo_tgoto" >&5 4021 4455 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 4022 4456 if test $ac_cv_lib_mytinfo_tgoto = yes; then 4023 4457 cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" 4024 @@ -5529,13 +5 710,13 @@4458 @@ -5529,13 +5544,13 @@ 4025 4459 4026 4460 eval 'cf_cv_have_lib_'$cf_nculib_root'=no' 4027 4461 cf_libdir="" 4028 4462 - echo "$as_me:5532: checking for initscr" >&5 4029 + echo "$as_me:5 713: checking for initscr" >&54463 + echo "$as_me:5547: checking for initscr" >&5 4030 4464 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 4031 4465 if test "${ac_cv_func_initscr+set}" = set; then … … 4034 4468 cat >conftest.$ac_ext <<_ACEOF 4035 4469 -#line 5538 "configure" 4036 +#line 5 719"configure"4470 +#line 5553 "configure" 4037 4471 #include "confdefs.h" 4038 4472 /* System header to define __stub macros and hopefully few prototypes, 4039 4473 which can conflict with char initscr (); below. */ 4040 @@ -5566,16 +5747,16 @@ 4474 @@ -5558,7 +5573,7 @@ 4475 #if defined (__stub_initscr) || defined (__stub___initscr) 4476 choke me 4477 #else 4478 -f = initscr; 4479 +f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 4480 #endif 4481 4482 ; 4483 @@ -5566,16 +5581,16 @@ 4041 4484 } 4042 4485 _ACEOF 4043 4486 rm -f conftest.$ac_objext conftest$ac_exeext 4044 4487 -if { (eval echo "$as_me:5569: \"$ac_link\"") >&5 4045 +if { (eval echo "$as_me:5 750: \"$ac_link\"") >&54488 +if { (eval echo "$as_me:5584: \"$ac_link\"") >&5 4046 4489 (eval $ac_link) 2>&5 4047 4490 ac_status=$? 4048 4491 - echo "$as_me:5572: \$? = $ac_status" >&5 4049 + echo "$as_me:5 753: \$? = $ac_status" >&54492 + echo "$as_me:5587: \$? = $ac_status" >&5 4050 4493 (exit $ac_status); } && 4051 4494 { ac_try='test -s conftest$ac_exeext' 4052 4495 - { (eval echo "$as_me:5575: \"$ac_try\"") >&5 4053 + { (eval echo "$as_me:5 756: \"$ac_try\"") >&54496 + { (eval echo "$as_me:5590: \"$ac_try\"") >&5 4054 4497 (eval $ac_try) 2>&5 4055 4498 ac_status=$? 4056 4499 - echo "$as_me:5578: \$? = $ac_status" >&5 4057 + echo "$as_me:5 759: \$? = $ac_status" >&54500 + echo "$as_me:5593: \$? = $ac_status" >&5 4058 4501 (exit $ac_status); }; }; then 4059 4502 ac_cv_func_initscr=yes 4060 4503 else 4061 @@ -5585,18 +5 766,18 @@4504 @@ -5585,18 +5600,18 @@ 4062 4505 fi 4063 4506 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4064 4507 fi 4065 4508 -echo "$as_me:5588: result: $ac_cv_func_initscr" >&5 4066 +echo "$as_me:5 769: result: $ac_cv_func_initscr" >&54509 +echo "$as_me:5603: result: $ac_cv_func_initscr" >&5 4067 4510 echo "${ECHO_T}$ac_cv_func_initscr" >&6 4068 4511 if test $ac_cv_func_initscr = yes; then … … 4072 4515 cf_save_LIBS="$LIBS" 4073 4516 - echo "$as_me:5595: checking for initscr in -l$cf_nculib_root" >&5 4074 + echo "$as_me:5 776: checking for initscr in -l$cf_nculib_root" >&54517 + echo "$as_me:5610: checking for initscr in -l$cf_nculib_root" >&5 4075 4518 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 4076 4519 LIBS="-l$cf_nculib_root $LIBS" 4077 4520 cat >conftest.$ac_ext <<_ACEOF 4078 4521 -#line 5599 "configure" 4079 +#line 5 780"configure"4522 +#line 5614 "configure" 4080 4523 #include "confdefs.h" 4081 4524 #include <${cf_cv_ncurses_header:-curses.h}> 4082 4525 int 4083 @@ -5608,25 +5 789,25 @@4526 @@ -5608,25 +5623,25 @@ 4084 4527 } 4085 4528 _ACEOF 4086 4529 rm -f conftest.$ac_objext conftest$ac_exeext 4087 4530 -if { (eval echo "$as_me:5611: \"$ac_link\"") >&5 4088 +if { (eval echo "$as_me:5 792: \"$ac_link\"") >&54531 +if { (eval echo "$as_me:5626: \"$ac_link\"") >&5 4089 4532 (eval $ac_link) 2>&5 4090 4533 ac_status=$? 4091 4534 - echo "$as_me:5614: \$? = $ac_status" >&5 4092 + echo "$as_me:5 795: \$? = $ac_status" >&54535 + echo "$as_me:5629: \$? = $ac_status" >&5 4093 4536 (exit $ac_status); } && 4094 4537 { ac_try='test -s conftest$ac_exeext' 4095 4538 - { (eval echo "$as_me:5617: \"$ac_try\"") >&5 4096 + { (eval echo "$as_me:5 798: \"$ac_try\"") >&54539 + { (eval echo "$as_me:5632: \"$ac_try\"") >&5 4097 4540 (eval $ac_try) 2>&5 4098 4541 ac_status=$? 4099 4542 - echo "$as_me:5620: \$? = $ac_status" >&5 4100 + echo "$as_me:5 801: \$? = $ac_status" >&54543 + echo "$as_me:5635: \$? = $ac_status" >&5 4101 4544 (exit $ac_status); }; }; then 4102 4545 - echo "$as_me:5622: result: yes" >&5 4103 + echo "$as_me:5 803: result: yes" >&54546 + echo "$as_me:5637: result: yes" >&5 4104 4547 echo "${ECHO_T}yes" >&6 4105 4548 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' … … 4109 4552 cat conftest.$ac_ext >&5 4110 4553 -echo "$as_me:5629: result: no" >&5 4111 +echo "$as_me:5 810: result: no" >&54554 +echo "$as_me:5644: result: no" >&5 4112 4555 echo "${ECHO_T}no" >&6 4113 4556 4114 4557 cf_search= 4115 @@ -5716,11 +5 897,11 @@4558 @@ -5716,11 +5731,11 @@ 4116 4559 4117 4560 for cf_libdir in $cf_search 4118 4561 do 4119 4562 - echo "$as_me:5719: checking for -l$cf_nculib_root in $cf_libdir" >&5 4120 + echo "$as_me:5 900: checking for -l$cf_nculib_root in $cf_libdir" >&54563 + echo "$as_me:5734: checking for -l$cf_nculib_root in $cf_libdir" >&5 4121 4564 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 4122 4565 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" 4123 4566 cat >conftest.$ac_ext <<_ACEOF 4124 4567 -#line 5723 "configure" 4125 +#line 5 904"configure"4568 +#line 5738 "configure" 4126 4569 #include "confdefs.h" 4127 4570 #include <${cf_cv_ncurses_header:-curses.h}> 4128 4571 int 4129 @@ -5732,25 +5 913,25 @@4572 @@ -5732,25 +5747,25 @@ 4130 4573 } 4131 4574 _ACEOF 4132 4575 rm -f conftest.$ac_objext conftest$ac_exeext 4133 4576 -if { (eval echo "$as_me:5735: \"$ac_link\"") >&5 4134 +if { (eval echo "$as_me:5 916: \"$ac_link\"") >&54577 +if { (eval echo "$as_me:5750: \"$ac_link\"") >&5 4135 4578 (eval $ac_link) 2>&5 4136 4579 ac_status=$? 4137 4580 - echo "$as_me:5738: \$? = $ac_status" >&5 4138 + echo "$as_me:5 919: \$? = $ac_status" >&54581 + echo "$as_me:5753: \$? = $ac_status" >&5 4139 4582 (exit $ac_status); } && 4140 4583 { ac_try='test -s conftest$ac_exeext' 4141 4584 - { (eval echo "$as_me:5741: \"$ac_try\"") >&5 4142 + { (eval echo "$as_me:5 922: \"$ac_try\"") >&54585 + { (eval echo "$as_me:5756: \"$ac_try\"") >&5 4143 4586 (eval $ac_try) 2>&5 4144 4587 ac_status=$? 4145 4588 - echo "$as_me:5744: \$? = $ac_status" >&5 4146 + echo "$as_me:5 925: \$? = $ac_status" >&54589 + echo "$as_me:5759: \$? = $ac_status" >&5 4147 4590 (exit $ac_status); }; }; then 4148 4591 - echo "$as_me:5746: result: yes" >&5 4149 + echo "$as_me:5 927: result: yes" >&54592 + echo "$as_me:5761: result: yes" >&5 4150 4593 echo "${ECHO_T}yes" >&6 4151 4594 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' … … 4155 4598 cat conftest.$ac_ext >&5 4156 4599 -echo "$as_me:5753: result: no" >&5 4157 +echo "$as_me:5 934: result: no" >&54600 +echo "$as_me:5768: result: no" >&5 4158 4601 echo "${ECHO_T}no" >&6 4159 4602 LIBS="$cf_save_LIBS" 4160 4603 fi 4161 @@ -5765,7 +5 946,7 @@4604 @@ -5765,7 +5780,7 @@ 4162 4605 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root 4163 4606 4164 4607 if test $cf_found_library = no ; then 4165 4608 - { { echo "$as_me:5768: error: Cannot link $cf_nculib_root library" >&5 4166 + { { echo "$as_me:5 949: error: Cannot link $cf_nculib_root library" >&54609 + { { echo "$as_me:5783: error: Cannot link $cf_nculib_root library" >&5 4167 4610 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} 4168 4611 { (exit 1); exit 1; }; } 4169 4612 fi 4170 @@ -5773,7 +5 954,7 @@4613 @@ -5773,7 +5788,7 @@ 4171 4614 fi 4172 4615 4173 4616 if test -n "$cf_ncurses_LIBS" ; then 4174 4617 - echo "$as_me:5776: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 4175 + echo "$as_me:5 957: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&54618 + echo "$as_me:5791: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 4176 4619 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 4177 4620 cf_ncurses_SAVE="$LIBS" 4178 4621 for p in $cf_ncurses_LIBS ; do 4179 @@ -5783,7 +5 964,7 @@4622 @@ -5783,7 +5798,7 @@ 4180 4623 fi 4181 4624 done 4182 4625 cat >conftest.$ac_ext <<_ACEOF 4183 4626 -#line 5786 "configure" 4184 +#line 5 967"configure"4627 +#line 5801 "configure" 4185 4628 #include "confdefs.h" 4186 4629 #include <${cf_cv_ncurses_header:-curses.h}> 4187 4630 int 4188 @@ -5795,23 +5 976,23 @@4631 @@ -5795,23 +5810,23 @@ 4189 4632 } 4190 4633 _ACEOF 4191 4634 rm -f conftest.$ac_objext conftest$ac_exeext 4192 4635 -if { (eval echo "$as_me:5798: \"$ac_link\"") >&5 4193 +if { (eval echo "$as_me:5 979: \"$ac_link\"") >&54636 +if { (eval echo "$as_me:5813: \"$ac_link\"") >&5 4194 4637 (eval $ac_link) 2>&5 4195 4638 ac_status=$? 4196 4639 - echo "$as_me:5801: \$? = $ac_status" >&5 4197 + echo "$as_me:5 982: \$? = $ac_status" >&54640 + echo "$as_me:5816: \$? = $ac_status" >&5 4198 4641 (exit $ac_status); } && 4199 4642 { ac_try='test -s conftest$ac_exeext' 4200 4643 - { (eval echo "$as_me:5804: \"$ac_try\"") >&5 4201 + { (eval echo "$as_me:5 985: \"$ac_try\"") >&54644 + { (eval echo "$as_me:5819: \"$ac_try\"") >&5 4202 4645 (eval $ac_try) 2>&5 4203 4646 ac_status=$? 4204 4647 - echo "$as_me:5807: \$? = $ac_status" >&5 4205 + echo "$as_me:5 988: \$? = $ac_status" >&54648 + echo "$as_me:5822: \$? = $ac_status" >&5 4206 4649 (exit $ac_status); }; }; then 4207 4650 - echo "$as_me:5809: result: yes" >&5 4208 + echo "$as_me:5 990: result: yes" >&54651 + echo "$as_me:5824: result: yes" >&5 4209 4652 echo "${ECHO_T}yes" >&6 4210 4653 else … … 4212 4655 cat conftest.$ac_ext >&5 4213 4656 -echo "$as_me:5814: result: no" >&5 4214 +echo "$as_me:5 995: result: no" >&54657 +echo "$as_me:5829: result: no" >&5 4215 4658 echo "${ECHO_T}no" >&6 4216 4659 LIBS="$cf_ncurses_SAVE" 4217 4660 fi 4218 @@ -5831,48 + 6012,87 @@4661 @@ -5831,48 +5846,87 @@ 4219 4662 cf_ncuconfig_root=ncurses 4220 4663 … … 4227 4670 + # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 4228 4671 +set dummy $ac_tool_prefix$ac_prog; ac_word=$2 4229 +echo "$as_me: 6021: checking for $ac_word" >&54672 +echo "$as_me:5855: checking for $ac_word" >&5 4230 4673 +echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 4231 4674 +if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then … … 4242 4685 + $as_executable_p "$ac_dir/$ac_word" || continue 4243 4686 +ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog" 4244 +echo "$as_me: 6036: found $ac_dir/$ac_word" >&54687 +echo "$as_me:5870: found $ac_dir/$ac_word" >&5 4245 4688 +break 4246 4689 +done … … 4250 4693 +NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG 4251 4694 +if test -n "$NCURSES_CONFIG"; then 4252 + echo "$as_me: 6044: result: $NCURSES_CONFIG" >&54695 + echo "$as_me:5878: result: $NCURSES_CONFIG" >&5 4253 4696 +echo "${ECHO_T}$NCURSES_CONFIG" >&6 4254 4697 +else 4255 + echo "$as_me: 6047: result: no" >&54698 + echo "$as_me:5881: result: no" >&5 4256 4699 +echo "${ECHO_T}no" >&6 4257 4700 +fi … … 4267 4710 set dummy $ac_prog; ac_word=$2 4268 4711 -echo "$as_me:5838: checking for $ac_word" >&5 4269 +echo "$as_me: 6060: checking for $ac_word" >&54712 +echo "$as_me:5894: checking for $ac_word" >&5 4270 4713 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 4271 4714 -if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then … … 4293 4736 + $as_executable_p "$ac_dir/$ac_word" || continue 4294 4737 +ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog" 4295 +echo "$as_me: 6075: found $ac_dir/$ac_word" >&54738 +echo "$as_me:5909: found $ac_dir/$ac_word" >&5 4296 4739 +break 4297 4740 done … … 4308 4751 +ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG 4309 4752 +if test -n "$ac_ct_NCURSES_CONFIG"; then 4310 + echo "$as_me: 6083: result: $ac_ct_NCURSES_CONFIG" >&54753 + echo "$as_me:5917: result: $ac_ct_NCURSES_CONFIG" >&5 4311 4754 +echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6 4312 4755 else 4313 4756 - echo "$as_me:5869: result: no" >&5 4314 + echo "$as_me: 6086: result: no" >&54757 + echo "$as_me:5920: result: no" >&5 4315 4758 echo "${ECHO_T}no" >&6 4316 4759 fi … … 4327 4770 if test "$NCURSES_CONFIG" != none ; then 4328 4771 4329 @@ -5881,7 + 6101,7 @@4772 @@ -5881,7 +5935,7 @@ 4330 4773 4331 4774 # even with config script, some packages use no-override for curses.h 4332 4775 4333 4776 -echo "$as_me:5884: checking if we have identified curses headers" >&5 4334 +echo "$as_me: 6104: checking if we have identified curses headers" >&54777 +echo "$as_me:5938: checking if we have identified curses headers" >&5 4335 4778 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 4336 4779 if test "${cf_cv_ncurses_header+set}" = set; then 4337 4780 echo $ECHO_N "(cached) $ECHO_C" >&6 4338 @@ -5889,13 + 6109,13 @@4781 @@ -5889,13 +5943,13 @@ 4339 4782 4340 4783 cf_cv_ncurses_header=none … … 4351 4794 cat >conftest.$ac_ext <<_ACEOF 4352 4795 -#line 5898 "configure" 4353 +#line 6118"configure"4796 +#line 5952 "configure" 4354 4797 #include "confdefs.h" 4355 4798 #include <${cf_header}> 4356 4799 int 4357 @@ -5907,16 + 6127,16 @@4800 @@ -5907,16 +5961,16 @@ 4358 4801 } 4359 4802 _ACEOF 4360 4803 rm -f conftest.$ac_objext 4361 4804 -if { (eval echo "$as_me:5910: \"$ac_compile\"") >&5 4362 +if { (eval echo "$as_me: 6130: \"$ac_compile\"") >&54805 +if { (eval echo "$as_me:5964: \"$ac_compile\"") >&5 4363 4806 (eval $ac_compile) 2>&5 4364 4807 ac_status=$? 4365 4808 - echo "$as_me:5913: \$? = $ac_status" >&5 4366 + echo "$as_me: 6133: \$? = $ac_status" >&54809 + echo "$as_me:5967: \$? = $ac_status" >&5 4367 4810 (exit $ac_status); } && 4368 4811 { ac_try='test -s conftest.$ac_objext' 4369 4812 - { (eval echo "$as_me:5916: \"$ac_try\"") >&5 4370 + { (eval echo "$as_me: 6136: \"$ac_try\"") >&54813 + { (eval echo "$as_me:5970: \"$ac_try\"") >&5 4371 4814 (eval $ac_try) 2>&5 4372 4815 ac_status=$? 4373 4816 - echo "$as_me:5919: \$? = $ac_status" >&5 4374 + echo "$as_me: 6139: \$? = $ac_status" >&54817 + echo "$as_me:5973: \$? = $ac_status" >&5 4375 4818 (exit $ac_status); }; }; then 4376 4819 cf_cv_ncurses_header=$cf_header; break 4377 4820 else 4378 @@ -5927,11 + 6147,11 @@4821 @@ -5927,11 +5981,11 @@ 4379 4822 done 4380 4823 4381 4824 fi 4382 4825 -echo "$as_me:5930: result: $cf_cv_ncurses_header" >&5 4383 +echo "$as_me: 6150: result: $cf_cv_ncurses_header" >&54826 +echo "$as_me:5984: result: $cf_cv_ncurses_header" >&5 4384 4827 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 4385 4828 4386 4829 if test "$cf_cv_ncurses_header" = none ; then 4387 4830 - { { echo "$as_me:5934: error: No curses header-files found" >&5 4388 + { { echo "$as_me: 6154: error: No curses header-files found" >&54831 + { { echo "$as_me:5988: error: No curses header-files found" >&5 4389 4832 echo "$as_me: error: No curses header-files found" >&2;} 4390 4833 { (exit 1); exit 1; }; } 4391 4834 fi 4392 @@ -5941,23 + 6161,23 @@4835 @@ -5941,23 +5995,23 @@ 4393 4836 for ac_header in $cf_cv_ncurses_header 4394 4837 do 4395 4838 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 4396 4839 -echo "$as_me:5944: checking for $ac_header" >&5 4397 +echo "$as_me: 6164: checking for $ac_header" >&54840 +echo "$as_me:5998: checking for $ac_header" >&5 4398 4841 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 4399 4842 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 4402 4845 cat >conftest.$ac_ext <<_ACEOF 4403 4846 -#line 5950 "configure" 4404 +#line 6 170"configure"4847 +#line 6004 "configure" 4405 4848 #include "confdefs.h" 4406 4849 #include <$ac_header> 4407 4850 _ACEOF 4408 4851 -if { (eval echo "$as_me:5954: \"$ac_cpp conftest.$ac_ext\"") >&5 4409 +if { (eval echo "$as_me:6 174: \"$ac_cpp conftest.$ac_ext\"") >&54852 +if { (eval echo "$as_me:6008: \"$ac_cpp conftest.$ac_ext\"") >&5 4410 4853 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 4411 4854 ac_status=$? … … 4414 4857 cat conftest.err >&5 4415 4858 - echo "$as_me:5960: \$? = $ac_status" >&5 4416 + echo "$as_me:6 180: \$? = $ac_status" >&54859 + echo "$as_me:6014: \$? = $ac_status" >&5 4417 4860 (exit $ac_status); } >/dev/null; then 4418 4861 if test -s conftest.err; then 4419 4862 ac_cpp_err=$ac_c_preproc_warn_flag 4420 @@ -5976,7 +6 196,7 @@4863 @@ -5976,7 +6030,7 @@ 4421 4864 fi 4422 4865 rm -f conftest.err conftest.$ac_ext 4423 4866 fi 4424 4867 -echo "$as_me:5979: result: `eval echo '${'$as_ac_Header'}'`" >&5 4425 +echo "$as_me:6 199: result: `eval echo '${'$as_ac_Header'}'`" >&54868 +echo "$as_me:6033: result: `eval echo '${'$as_ac_Header'}'`" >&5 4426 4869 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 4427 4870 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4428 4871 cat >>confdefs.h <<EOF 4429 @@ -6029,7 +6 249,7 @@4872 @@ -6029,7 +6083,7 @@ 4430 4873 cf_save_CPPFLAGS=$CPPFLAGS 4431 4874 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4432 4875 cat >conftest.$ac_ext <<_ACEOF 4433 4876 -#line 6032 "configure" 4434 +#line 6 252"configure"4877 +#line 6086 "configure" 4435 4878 #include "confdefs.h" 4436 4879 #include <stdio.h> 4437 4880 int 4438 @@ -6041,16 +6 261,16 @@4881 @@ -6041,16 +6095,16 @@ 4439 4882 } 4440 4883 _ACEOF 4441 4884 rm -f conftest.$ac_objext 4442 4885 -if { (eval echo "$as_me:6044: \"$ac_compile\"") >&5 4443 +if { (eval echo "$as_me:6 264: \"$ac_compile\"") >&54886 +if { (eval echo "$as_me:6098: \"$ac_compile\"") >&5 4444 4887 (eval $ac_compile) 2>&5 4445 4888 ac_status=$? 4446 4889 - echo "$as_me:6047: \$? = $ac_status" >&5 4447 + echo "$as_me:6 267: \$? = $ac_status" >&54890 + echo "$as_me:6101: \$? = $ac_status" >&5 4448 4891 (exit $ac_status); } && 4449 4892 { ac_try='test -s conftest.$ac_objext' 4450 4893 - { (eval echo "$as_me:6050: \"$ac_try\"") >&5 4451 + { (eval echo "$as_me:6 270: \"$ac_try\"") >&54894 + { (eval echo "$as_me:6104: \"$ac_try\"") >&5 4452 4895 (eval $ac_try) 2>&5 4453 4896 ac_status=$? 4454 4897 - echo "$as_me:6053: \$? = $ac_status" >&5 4455 + echo "$as_me:6 273: \$? = $ac_status" >&54898 + echo "$as_me:6107: \$? = $ac_status" >&5 4456 4899 (exit $ac_status); }; }; then 4457 4900 : 4458 4901 else 4459 @@ -6067,7 +6 287,7 @@4902 @@ -6067,7 +6121,7 @@ 4460 4903 if test "$cf_have_incdir" = no ; then 4461 4904 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 4462 4905 4463 4906 -echo "${as_me:-configure}:6070: testing adding $cf_add_incdir to include-path ..." 1>&5 4464 +echo "${as_me:-configure}:6 290: testing adding $cf_add_incdir to include-path ..." 1>&54907 +echo "${as_me:-configure}:6124: testing adding $cf_add_incdir to include-path ..." 1>&5 4465 4908 4466 4909 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4467 4910 4468 @@ -6084,7 +6 304,7 @@4911 @@ -6084,7 +6138,7 @@ 4469 4912 4470 4913 } 4471 4914 4472 4915 -echo "$as_me:6087: checking for $cf_ncuhdr_root header in include-path" >&5 4473 +echo "$as_me:6 307: checking for $cf_ncuhdr_root header in include-path" >&54916 +echo "$as_me:6141: checking for $cf_ncuhdr_root header in include-path" >&5 4474 4917 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 4475 4918 if test "${cf_cv_ncurses_h+set}" = set; then 4476 4919 echo $ECHO_N "(cached) $ECHO_C" >&6 4477 @@ -6096,7 +6 316,7 @@4920 @@ -6096,7 +6150,7 @@ 4478 4921 do 4479 4922 4480 4923 cat >conftest.$ac_ext <<_ACEOF 4481 4924 -#line 6099 "configure" 4482 +#line 6 319"configure"4925 +#line 6153 "configure" 4483 4926 #include "confdefs.h" 4484 4927 4485 4928 #include <$cf_header> 4486 @@ -6120,16 +6 340,16 @@4929 @@ -6120,16 +6174,16 @@ 4487 4930 } 4488 4931 _ACEOF 4489 4932 rm -f conftest.$ac_objext 4490 4933 -if { (eval echo "$as_me:6123: \"$ac_compile\"") >&5 4491 +if { (eval echo "$as_me:6 343: \"$ac_compile\"") >&54934 +if { (eval echo "$as_me:6177: \"$ac_compile\"") >&5 4492 4935 (eval $ac_compile) 2>&5 4493 4936 ac_status=$? 4494 4937 - echo "$as_me:6126: \$? = $ac_status" >&5 4495 + echo "$as_me:6 346: \$? = $ac_status" >&54938 + echo "$as_me:6180: \$? = $ac_status" >&5 4496 4939 (exit $ac_status); } && 4497 4940 { ac_try='test -s conftest.$ac_objext' 4498 4941 - { (eval echo "$as_me:6129: \"$ac_try\"") >&5 4499 + { (eval echo "$as_me:6 349: \"$ac_try\"") >&54942 + { (eval echo "$as_me:6183: \"$ac_try\"") >&5 4500 4943 (eval $ac_try) 2>&5 4501 4944 ac_status=$? 4502 4945 - echo "$as_me:6132: \$? = $ac_status" >&5 4503 + echo "$as_me:6 352: \$? = $ac_status" >&54946 + echo "$as_me:6186: \$? = $ac_status" >&5 4504 4947 (exit $ac_status); }; }; then 4505 4948 cf_cv_ncurses_h=$cf_header 4506 4949 4507 @@ -6144,14 +6 364,14 @@4950 @@ -6144,14 +6198,14 @@ 4508 4951 done 4509 4952 4510 4953 fi 4511 4954 -echo "$as_me:6147: result: $cf_cv_ncurses_h" >&5 4512 +echo "$as_me:6 367: result: $cf_cv_ncurses_h" >&54955 +echo "$as_me:6201: result: $cf_cv_ncurses_h" >&5 4513 4956 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 4514 4957 … … 4518 4961 4519 4962 -echo "$as_me:6154: checking for $cf_ncuhdr_root include-path" >&5 4520 +echo "$as_me:6 374: checking for $cf_ncuhdr_root include-path" >&54963 +echo "$as_me:6208: checking for $cf_ncuhdr_root include-path" >&5 4521 4964 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 4522 4965 if test "${cf_cv_ncurses_h2+set}" = set; then 4523 4966 echo $ECHO_N "(cached) $ECHO_C" >&6 4524 @@ -6291,7 +6 511,7 @@4967 @@ -6291,7 +6345,7 @@ 4525 4968 cf_save_CPPFLAGS=$CPPFLAGS 4526 4969 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4527 4970 cat >conftest.$ac_ext <<_ACEOF 4528 4971 -#line 6294 "configure" 4529 +#line 6 514"configure"4972 +#line 6348 "configure" 4530 4973 #include "confdefs.h" 4531 4974 #include <stdio.h> 4532 4975 int 4533 @@ -6303,16 +6 523,16 @@4976 @@ -6303,16 +6357,16 @@ 4534 4977 } 4535 4978 _ACEOF 4536 4979 rm -f conftest.$ac_objext 4537 4980 -if { (eval echo "$as_me:6306: \"$ac_compile\"") >&5 4538 +if { (eval echo "$as_me:6 526: \"$ac_compile\"") >&54981 +if { (eval echo "$as_me:6360: \"$ac_compile\"") >&5 4539 4982 (eval $ac_compile) 2>&5 4540 4983 ac_status=$? 4541 4984 - echo "$as_me:6309: \$? = $ac_status" >&5 4542 + echo "$as_me:6 529: \$? = $ac_status" >&54985 + echo "$as_me:6363: \$? = $ac_status" >&5 4543 4986 (exit $ac_status); } && 4544 4987 { ac_try='test -s conftest.$ac_objext' 4545 4988 - { (eval echo "$as_me:6312: \"$ac_try\"") >&5 4546 + { (eval echo "$as_me:6 532: \"$ac_try\"") >&54989 + { (eval echo "$as_me:6366: \"$ac_try\"") >&5 4547 4990 (eval $ac_try) 2>&5 4548 4991 ac_status=$? 4549 4992 - echo "$as_me:6315: \$? = $ac_status" >&5 4550 + echo "$as_me:6 535: \$? = $ac_status" >&54993 + echo "$as_me:6369: \$? = $ac_status" >&5 4551 4994 (exit $ac_status); }; }; then 4552 4995 : 4553 4996 else 4554 @@ -6329,7 +6 549,7 @@4997 @@ -6329,7 +6383,7 @@ 4555 4998 if test "$cf_have_incdir" = no ; then 4556 4999 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 4557 5000 4558 5001 -echo "${as_me:-configure}:6332: testing adding $cf_add_incdir to include-path ..." 1>&5 4559 +echo "${as_me:-configure}:6 552: testing adding $cf_add_incdir to include-path ..." 1>&55002 +echo "${as_me:-configure}:6386: testing adding $cf_add_incdir to include-path ..." 1>&5 4560 5003 4561 5004 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4562 5005 4563 @@ -6350,7 +6 570,7 @@5006 @@ -6350,7 +6404,7 @@ 4564 5007 do 4565 5008 4566 5009 cat >conftest.$ac_ext <<_ACEOF 4567 5010 -#line 6353 "configure" 4568 +#line 6 573"configure"5011 +#line 6407 "configure" 4569 5012 #include "confdefs.h" 4570 5013 4571 5014 #include <$cf_header> 4572 @@ -6374,16 +6 594,16 @@5015 @@ -6374,16 +6428,16 @@ 4573 5016 } 4574 5017 _ACEOF 4575 5018 rm -f conftest.$ac_objext 4576 5019 -if { (eval echo "$as_me:6377: \"$ac_compile\"") >&5 4577 +if { (eval echo "$as_me:6 597: \"$ac_compile\"") >&55020 +if { (eval echo "$as_me:6431: \"$ac_compile\"") >&5 4578 5021 (eval $ac_compile) 2>&5 4579 5022 ac_status=$? 4580 5023 - echo "$as_me:6380: \$? = $ac_status" >&5 4581 + echo "$as_me:6 600: \$? = $ac_status" >&55024 + echo "$as_me:6434: \$? = $ac_status" >&5 4582 5025 (exit $ac_status); } && 4583 5026 { ac_try='test -s conftest.$ac_objext' 4584 5027 - { (eval echo "$as_me:6383: \"$ac_try\"") >&5 4585 + { (eval echo "$as_me:6 603: \"$ac_try\"") >&55028 + { (eval echo "$as_me:6437: \"$ac_try\"") >&5 4586 5029 (eval $ac_try) 2>&5 4587 5030 ac_status=$? 4588 5031 - echo "$as_me:6386: \$? = $ac_status" >&5 4589 + echo "$as_me:6 606: \$? = $ac_status" >&55032 + echo "$as_me:6440: \$? = $ac_status" >&5 4590 5033 (exit $ac_status); }; }; then 4591 5034 cf_cv_ncurses_h2=$cf_header 4592 5035 4593 @@ -6404,12 +6 624,12 @@5036 @@ -6404,12 +6458,12 @@ 4594 5037 CPPFLAGS="$cf_save2_CPPFLAGS" 4595 5038 test "$cf_cv_ncurses_h2" != no && break 4596 5039 done 4597 5040 - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6407: error: not found" >&5 4598 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6 627: error: not found" >&55041 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6461: error: not found" >&5 4599 5042 echo "$as_me: error: not found" >&2;} 4600 5043 { (exit 1); exit 1; }; } … … 4602 5045 fi 4603 5046 -echo "$as_me:6412: result: $cf_cv_ncurses_h2" >&5 4604 +echo "$as_me:6 632: result: $cf_cv_ncurses_h2" >&55047 +echo "$as_me:6466: result: $cf_cv_ncurses_h2" >&5 4605 5048 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 4606 5049 4607 5050 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` 4608 @@ -6442,7 +6 662,7 @@5051 @@ -6442,7 +6496,7 @@ 4609 5052 cf_save_CPPFLAGS=$CPPFLAGS 4610 5053 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4611 5054 cat >conftest.$ac_ext <<_ACEOF 4612 5055 -#line 6445 "configure" 4613 +#line 6 665"configure"5056 +#line 6499 "configure" 4614 5057 #include "confdefs.h" 4615 5058 #include <stdio.h> 4616 5059 int 4617 @@ -6454,16 +6 674,16 @@5060 @@ -6454,16 +6508,16 @@ 4618 5061 } 4619 5062 _ACEOF 4620 5063 rm -f conftest.$ac_objext 4621 5064 -if { (eval echo "$as_me:6457: \"$ac_compile\"") >&5 4622 +if { (eval echo "$as_me:6 677: \"$ac_compile\"") >&55065 +if { (eval echo "$as_me:6511: \"$ac_compile\"") >&5 4623 5066 (eval $ac_compile) 2>&5 4624 5067 ac_status=$? 4625 5068 - echo "$as_me:6460: \$? = $ac_status" >&5 4626 + echo "$as_me:6 680: \$? = $ac_status" >&55069 + echo "$as_me:6514: \$? = $ac_status" >&5 4627 5070 (exit $ac_status); } && 4628 5071 { ac_try='test -s conftest.$ac_objext' 4629 5072 - { (eval echo "$as_me:6463: \"$ac_try\"") >&5 4630 + { (eval echo "$as_me:6 683: \"$ac_try\"") >&55073 + { (eval echo "$as_me:6517: \"$ac_try\"") >&5 4631 5074 (eval $ac_try) 2>&5 4632 5075 ac_status=$? 4633 5076 - echo "$as_me:6466: \$? = $ac_status" >&5 4634 + echo "$as_me:6 686: \$? = $ac_status" >&55077 + echo "$as_me:6520: \$? = $ac_status" >&5 4635 5078 (exit $ac_status); }; }; then 4636 5079 : 4637 5080 else 4638 @@ -6480,7 +6 700,7 @@5081 @@ -6480,7 +6534,7 @@ 4639 5082 if test "$cf_have_incdir" = no ; then 4640 5083 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 4641 5084 4642 5085 -echo "${as_me:-configure}:6483: testing adding $cf_add_incdir to include-path ..." 1>&5 4643 +echo "${as_me:-configure}:6 703: testing adding $cf_add_incdir to include-path ..." 1>&55086 +echo "${as_me:-configure}:6537: testing adding $cf_add_incdir to include-path ..." 1>&5 4644 5087 4645 5088 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 4646 5089 4647 @@ -6523,7 +6 743,7 @@5090 @@ -6523,7 +6577,7 @@ 4648 5091 ;; 4649 5092 esac 4650 5093 4651 5094 -echo "$as_me:6526: checking for terminfo header" >&5 4652 +echo "$as_me:6 746: checking for terminfo header" >&55095 +echo "$as_me:6580: checking for terminfo header" >&5 4653 5096 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 4654 5097 if test "${cf_cv_term_header+set}" = set; then 4655 5098 echo $ECHO_N "(cached) $ECHO_C" >&6 4656 @@ -6541,7 +6 761,7 @@5099 @@ -6541,7 +6595,7 @@ 4657 5100 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" 4658 5101 do 4659 5102 cat >conftest.$ac_ext <<_ACEOF 4660 5103 -#line 6544 "configure" 4661 +#line 6 764"configure"5104 +#line 6598 "configure" 4662 5105 #include "confdefs.h" 4663 5106 #include <stdio.h> 4664 5107 #include <${cf_cv_ncurses_header:-curses.h}> 4665 @@ -6556,16 +6 776,16 @@5108 @@ -6556,16 +6610,16 @@ 4666 5109 } 4667 5110 _ACEOF 4668 5111 rm -f conftest.$ac_objext 4669 5112 -if { (eval echo "$as_me:6559: \"$ac_compile\"") >&5 4670 +if { (eval echo "$as_me:6 779: \"$ac_compile\"") >&55113 +if { (eval echo "$as_me:6613: \"$ac_compile\"") >&5 4671 5114 (eval $ac_compile) 2>&5 4672 5115 ac_status=$? 4673 5116 - echo "$as_me:6562: \$? = $ac_status" >&5 4674 + echo "$as_me:6 782: \$? = $ac_status" >&55117 + echo "$as_me:6616: \$? = $ac_status" >&5 4675 5118 (exit $ac_status); } && 4676 5119 { ac_try='test -s conftest.$ac_objext' 4677 5120 - { (eval echo "$as_me:6565: \"$ac_try\"") >&5 4678 + { (eval echo "$as_me:6 785: \"$ac_try\"") >&55121 + { (eval echo "$as_me:6619: \"$ac_try\"") >&5 4679 5122 (eval $ac_try) 2>&5 4680 5123 ac_status=$? 4681 5124 - echo "$as_me:6568: \$? = $ac_status" >&5 4682 + echo "$as_me:6 788: \$? = $ac_status" >&55125 + echo "$as_me:6622: \$? = $ac_status" >&5 4683 5126 (exit $ac_status); }; }; then 4684 5127 4685 5128 cf_cv_term_header="$cf_test" 4686 @@ -6581,7 +6 801,7 @@5129 @@ -6581,7 +6635,7 @@ 4687 5130 done 4688 5131 4689 5132 fi 4690 5133 -echo "$as_me:6584: result: $cf_cv_term_header" >&5 4691 +echo "$as_me:6 804: result: $cf_cv_term_header" >&55134 +echo "$as_me:6638: result: $cf_cv_term_header" >&5 4692 5135 echo "${ECHO_T}$cf_cv_term_header" >&6 4693 5136 4694 5137 # Set definitions to allow ifdef'ing to accommodate subdirectories 4695 @@ -6615,7 +6 835,7 @@5138 @@ -6615,7 +6669,7 @@ 4696 5139 #define NCURSES 1 4697 5140 EOF 4698 5141 4699 5142 -echo "$as_me:6618: checking for ncurses version" >&5 4700 +echo "$as_me:6 838: checking for ncurses version" >&55143 +echo "$as_me:6672: checking for ncurses version" >&5 4701 5144 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 4702 5145 if test "${cf_cv_ncurses_version+set}" = set; then 4703 5146 echo $ECHO_N "(cached) $ECHO_C" >&6 4704 @@ -6641,10 +6 861,10 @@5147 @@ -6641,10 +6695,10 @@ 4705 5148 #endif 4706 5149 EOF 4707 5150 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" 4708 5151 - { (eval echo "$as_me:6644: \"$cf_try\"") >&5 4709 + { (eval echo "$as_me:6 864: \"$cf_try\"") >&55152 + { (eval echo "$as_me:6698: \"$cf_try\"") >&5 4710 5153 (eval $cf_try) 2>&5 4711 5154 ac_status=$? 4712 5155 - echo "$as_me:6647: \$? = $ac_status" >&5 4713 + echo "$as_me:6 867: \$? = $ac_status" >&55156 + echo "$as_me:6701: \$? = $ac_status" >&5 4714 5157 (exit $ac_status); } 4715 5158 if test -f conftest.out ; then 4716 5159 cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` 4717 @@ -6654,7 +6 874,7 @@5160 @@ -6654,7 +6708,7 @@ 4718 5161 4719 5162 else 4720 5163 cat >conftest.$ac_ext <<_ACEOF 4721 5164 -#line 6657 "configure" 4722 +#line 6 877"configure"5165 +#line 6711 "configure" 4723 5166 #include "confdefs.h" 4724 5167 4725 5168 #include <${cf_cv_ncurses_header:-curses.h}> 4726 @@ -6679,15 +6 899,15 @@5169 @@ -6679,15 +6733,15 @@ 4727 5170 } 4728 5171 _ACEOF 4729 5172 rm -f conftest$ac_exeext 4730 5173 -if { (eval echo "$as_me:6682: \"$ac_link\"") >&5 4731 +if { (eval echo "$as_me:6 902: \"$ac_link\"") >&55174 +if { (eval echo "$as_me:6736: \"$ac_link\"") >&5 4732 5175 (eval $ac_link) 2>&5 4733 5176 ac_status=$? 4734 5177 - echo "$as_me:6685: \$? = $ac_status" >&5 4735 + echo "$as_me:6 905: \$? = $ac_status" >&55178 + echo "$as_me:6739: \$? = $ac_status" >&5 4736 5179 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 4737 5180 - { (eval echo "$as_me:6687: \"$ac_try\"") >&5 4738 + { (eval echo "$as_me:6 907: \"$ac_try\"") >&55181 + { (eval echo "$as_me:6741: \"$ac_try\"") >&5 4739 5182 (eval $ac_try) 2>&5 4740 5183 ac_status=$? 4741 5184 - echo "$as_me:6690: \$? = $ac_status" >&5 4742 + echo "$as_me:6 910: \$? = $ac_status" >&55185 + echo "$as_me:6744: \$? = $ac_status" >&5 4743 5186 (exit $ac_status); }; }; then 4744 5187 4745 5188 cf_cv_ncurses_version=`cat $cf_tempfile` 4746 @@ -6701,7 +6 921,7 @@5189 @@ -6701,7 +6755,7 @@ 4747 5190 rm -f $cf_tempfile 4748 5191 4749 5192 fi 4750 5193 -echo "$as_me:6704: result: $cf_cv_ncurses_version" >&5 4751 +echo "$as_me:6 924: result: $cf_cv_ncurses_version" >&55194 +echo "$as_me:6758: result: $cf_cv_ncurses_version" >&5 4752 5195 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 4753 5196 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF 4754 5197 #define NCURSES 1 4755 @@ -6713,7 +6 933,7 @@5198 @@ -6713,7 +6767,7 @@ 4756 5199 # to link gpm. 4757 5200 cf_ncurses_LIBS="" 4758 5201 cf_ncurses_SAVE="$LIBS" 4759 5202 -echo "$as_me:6716: checking for Gpm_Open in -lgpm" >&5 4760 +echo "$as_me:6 936: checking for Gpm_Open in -lgpm" >&55203 +echo "$as_me:6770: checking for Gpm_Open in -lgpm" >&5 4761 5204 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 4762 5205 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then 4763 5206 echo $ECHO_N "(cached) $ECHO_C" >&6 4764 @@ -6721,7 +6 941,7 @@5207 @@ -6721,7 +6775,7 @@ 4765 5208 ac_check_lib_save_LIBS=$LIBS 4766 5209 LIBS="-lgpm $LIBS" 4767 5210 cat >conftest.$ac_ext <<_ACEOF 4768 5211 -#line 6724 "configure" 4769 +#line 6 944"configure"5212 +#line 6778 "configure" 4770 5213 #include "confdefs.h" 4771 5214 4772 5215 /* Override any gcc2 internal prototype to avoid an error. */ 4773 @@ -6740,16 +6 960,16 @@5216 @@ -6740,16 +6794,16 @@ 4774 5217 } 4775 5218 _ACEOF 4776 5219 rm -f conftest.$ac_objext conftest$ac_exeext 4777 5220 -if { (eval echo "$as_me:6743: \"$ac_link\"") >&5 4778 +if { (eval echo "$as_me:6 963: \"$ac_link\"") >&55221 +if { (eval echo "$as_me:6797: \"$ac_link\"") >&5 4779 5222 (eval $ac_link) 2>&5 4780 5223 ac_status=$? 4781 5224 - echo "$as_me:6746: \$? = $ac_status" >&5 4782 + echo "$as_me:6 966: \$? = $ac_status" >&55225 + echo "$as_me:6800: \$? = $ac_status" >&5 4783 5226 (exit $ac_status); } && 4784 5227 { ac_try='test -s conftest$ac_exeext' 4785 5228 - { (eval echo "$as_me:6749: \"$ac_try\"") >&5 4786 + { (eval echo "$as_me:6 969: \"$ac_try\"") >&55229 + { (eval echo "$as_me:6803: \"$ac_try\"") >&5 4787 5230 (eval $ac_try) 2>&5 4788 5231 ac_status=$? 4789 5232 - echo "$as_me:6752: \$? = $ac_status" >&5 4790 + echo "$as_me:6 972: \$? = $ac_status" >&55233 + echo "$as_me:6806: \$? = $ac_status" >&5 4791 5234 (exit $ac_status); }; }; then 4792 5235 ac_cv_lib_gpm_Gpm_Open=yes 4793 5236 else 4794 @@ -6760,10 +6 980,10 @@5237 @@ -6760,10 +6814,10 @@ 4795 5238 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4796 5239 LIBS=$ac_check_lib_save_LIBS 4797 5240 fi 4798 5241 -echo "$as_me:6763: result: $ac_cv_lib_gpm_Gpm_Open" >&5 4799 +echo "$as_me:6 983: result: $ac_cv_lib_gpm_Gpm_Open" >&55242 +echo "$as_me:6817: result: $ac_cv_lib_gpm_Gpm_Open" >&5 4800 5243 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 4801 5244 if test $ac_cv_lib_gpm_Gpm_Open = yes; then 4802 5245 - echo "$as_me:6766: checking for initscr in -lgpm" >&5 4803 + echo "$as_me:6 986: checking for initscr in -lgpm" >&55246 + echo "$as_me:6820: checking for initscr in -lgpm" >&5 4804 5247 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 4805 5248 if test "${ac_cv_lib_gpm_initscr+set}" = set; then 4806 5249 echo $ECHO_N "(cached) $ECHO_C" >&6 4807 @@ -6771,7 +6 991,7 @@5250 @@ -6771,7 +6825,7 @@ 4808 5251 ac_check_lib_save_LIBS=$LIBS 4809 5252 LIBS="-lgpm $LIBS" 4810 5253 cat >conftest.$ac_ext <<_ACEOF 4811 5254 -#line 6774 "configure" 4812 +#line 6 994"configure"5255 +#line 6828 "configure" 4813 5256 #include "confdefs.h" 4814 5257 4815 5258 /* Override any gcc2 internal prototype to avoid an error. */ 4816 @@ -6790,16 + 7010,16 @@5259 @@ -6790,16 +6844,16 @@ 4817 5260 } 4818 5261 _ACEOF 4819 5262 rm -f conftest.$ac_objext conftest$ac_exeext 4820 5263 -if { (eval echo "$as_me:6793: \"$ac_link\"") >&5 4821 +if { (eval echo "$as_me: 7013: \"$ac_link\"") >&55264 +if { (eval echo "$as_me:6847: \"$ac_link\"") >&5 4822 5265 (eval $ac_link) 2>&5 4823 5266 ac_status=$? 4824 5267 - echo "$as_me:6796: \$? = $ac_status" >&5 4825 + echo "$as_me: 7016: \$? = $ac_status" >&55268 + echo "$as_me:6850: \$? = $ac_status" >&5 4826 5269 (exit $ac_status); } && 4827 5270 { ac_try='test -s conftest$ac_exeext' 4828 5271 - { (eval echo "$as_me:6799: \"$ac_try\"") >&5 4829 + { (eval echo "$as_me: 7019: \"$ac_try\"") >&55272 + { (eval echo "$as_me:6853: \"$ac_try\"") >&5 4830 5273 (eval $ac_try) 2>&5 4831 5274 ac_status=$? 4832 5275 - echo "$as_me:6802: \$? = $ac_status" >&5 4833 + echo "$as_me: 7022: \$? = $ac_status" >&55276 + echo "$as_me:6856: \$? = $ac_status" >&5 4834 5277 (exit $ac_status); }; }; then 4835 5278 ac_cv_lib_gpm_initscr=yes 4836 5279 else 4837 @@ -6810,7 + 7030,7 @@5280 @@ -6810,7 +6864,7 @@ 4838 5281 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4839 5282 LIBS=$ac_check_lib_save_LIBS 4840 5283 fi 4841 5284 -echo "$as_me:6813: result: $ac_cv_lib_gpm_initscr" >&5 4842 +echo "$as_me: 7033: result: $ac_cv_lib_gpm_initscr" >&55285 +echo "$as_me:6867: result: $ac_cv_lib_gpm_initscr" >&5 4843 5286 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 4844 5287 if test $ac_cv_lib_gpm_initscr = yes; then 4845 5288 LIBS="$cf_ncurses_SAVE" 4846 @@ -6825,7 + 7045,7 @@5289 @@ -6825,7 +6879,7 @@ 4847 5290 # This is only necessary if you are linking against an obsolete 4848 5291 # version of ncurses (but it should do no harm, since it's static). 4849 5292 if test "$cf_nculib_root" = ncurses ; then 4850 5293 - echo "$as_me:6828: checking for tgoto in -lmytinfo" >&5 4851 + echo "$as_me: 7048: checking for tgoto in -lmytinfo" >&55294 + echo "$as_me:6882: checking for tgoto in -lmytinfo" >&5 4852 5295 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 4853 5296 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then 4854 5297 echo $ECHO_N "(cached) $ECHO_C" >&6 4855 @@ -6833,7 + 7053,7 @@5298 @@ -6833,7 +6887,7 @@ 4856 5299 ac_check_lib_save_LIBS=$LIBS 4857 5300 LIBS="-lmytinfo $LIBS" 4858 5301 cat >conftest.$ac_ext <<_ACEOF 4859 5302 -#line 6836 "configure" 4860 +#line 7056"configure"5303 +#line 6890 "configure" 4861 5304 #include "confdefs.h" 4862 5305 4863 5306 /* Override any gcc2 internal prototype to avoid an error. */ 4864 @@ -6852,16 + 7072,16 @@5307 @@ -6852,16 +6906,16 @@ 4865 5308 } 4866 5309 _ACEOF 4867 5310 rm -f conftest.$ac_objext conftest$ac_exeext 4868 5311 -if { (eval echo "$as_me:6855: \"$ac_link\"") >&5 4869 +if { (eval echo "$as_me: 7075: \"$ac_link\"") >&55312 +if { (eval echo "$as_me:6909: \"$ac_link\"") >&5 4870 5313 (eval $ac_link) 2>&5 4871 5314 ac_status=$? 4872 5315 - echo "$as_me:6858: \$? = $ac_status" >&5 4873 + echo "$as_me: 7078: \$? = $ac_status" >&55316 + echo "$as_me:6912: \$? = $ac_status" >&5 4874 5317 (exit $ac_status); } && 4875 5318 { ac_try='test -s conftest$ac_exeext' 4876 5319 - { (eval echo "$as_me:6861: \"$ac_try\"") >&5 4877 + { (eval echo "$as_me: 7081: \"$ac_try\"") >&55320 + { (eval echo "$as_me:6915: \"$ac_try\"") >&5 4878 5321 (eval $ac_try) 2>&5 4879 5322 ac_status=$? 4880 5323 - echo "$as_me:6864: \$? = $ac_status" >&5 4881 + echo "$as_me: 7084: \$? = $ac_status" >&55324 + echo "$as_me:6918: \$? = $ac_status" >&5 4882 5325 (exit $ac_status); }; }; then 4883 5326 ac_cv_lib_mytinfo_tgoto=yes 4884 5327 else 4885 @@ -6872,7 + 7092,7 @@5328 @@ -6872,7 +6926,7 @@ 4886 5329 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4887 5330 LIBS=$ac_check_lib_save_LIBS 4888 5331 fi 4889 5332 -echo "$as_me:6875: result: $ac_cv_lib_mytinfo_tgoto" >&5 4890 +echo "$as_me: 7095: result: $ac_cv_lib_mytinfo_tgoto" >&55333 +echo "$as_me:6929: result: $ac_cv_lib_mytinfo_tgoto" >&5 4891 5334 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 4892 5335 if test $ac_cv_lib_mytinfo_tgoto = yes; then 4893 5336 cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" 4894 @@ -6891,13 + 7111,13 @@5337 @@ -6891,13 +6945,13 @@ 4895 5338 4896 5339 eval 'cf_cv_have_lib_'$cf_nculib_root'=no' 4897 5340 cf_libdir="" 4898 5341 - echo "$as_me:6894: checking for initscr" >&5 4899 + echo "$as_me: 7114: checking for initscr" >&55342 + echo "$as_me:6948: checking for initscr" >&5 4900 5343 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 4901 5344 if test "${ac_cv_func_initscr+set}" = set; then … … 4904 5347 cat >conftest.$ac_ext <<_ACEOF 4905 5348 -#line 6900 "configure" 4906 +#line 7120"configure"5349 +#line 6954 "configure" 4907 5350 #include "confdefs.h" 4908 5351 /* System header to define __stub macros and hopefully few prototypes, 4909 5352 which can conflict with char initscr (); below. */ 4910 @@ -6928,16 +7148,16 @@ 5353 @@ -6920,7 +6974,7 @@ 5354 #if defined (__stub_initscr) || defined (__stub___initscr) 5355 choke me 5356 #else 5357 -f = initscr; 5358 +f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 5359 #endif 5360 5361 ; 5362 @@ -6928,16 +6982,16 @@ 4911 5363 } 4912 5364 _ACEOF 4913 5365 rm -f conftest.$ac_objext conftest$ac_exeext 4914 5366 -if { (eval echo "$as_me:6931: \"$ac_link\"") >&5 4915 +if { (eval echo "$as_me: 7151: \"$ac_link\"") >&55367 +if { (eval echo "$as_me:6985: \"$ac_link\"") >&5 4916 5368 (eval $ac_link) 2>&5 4917 5369 ac_status=$? 4918 5370 - echo "$as_me:6934: \$? = $ac_status" >&5 4919 + echo "$as_me: 7154: \$? = $ac_status" >&55371 + echo "$as_me:6988: \$? = $ac_status" >&5 4920 5372 (exit $ac_status); } && 4921 5373 { ac_try='test -s conftest$ac_exeext' 4922 5374 - { (eval echo "$as_me:6937: \"$ac_try\"") >&5 4923 + { (eval echo "$as_me: 7157: \"$ac_try\"") >&55375 + { (eval echo "$as_me:6991: \"$ac_try\"") >&5 4924 5376 (eval $ac_try) 2>&5 4925 5377 ac_status=$? 4926 5378 - echo "$as_me:6940: \$? = $ac_status" >&5 4927 + echo "$as_me: 7160: \$? = $ac_status" >&55379 + echo "$as_me:6994: \$? = $ac_status" >&5 4928 5380 (exit $ac_status); }; }; then 4929 5381 ac_cv_func_initscr=yes 4930 5382 else 4931 @@ -6947,18 +7 167,18 @@5383 @@ -6947,18 +7001,18 @@ 4932 5384 fi 4933 5385 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 4934 5386 fi 4935 5387 -echo "$as_me:6950: result: $ac_cv_func_initscr" >&5 4936 +echo "$as_me:7 170: result: $ac_cv_func_initscr" >&55388 +echo "$as_me:7004: result: $ac_cv_func_initscr" >&5 4937 5389 echo "${ECHO_T}$ac_cv_func_initscr" >&6 4938 5390 if test $ac_cv_func_initscr = yes; then … … 4942 5394 cf_save_LIBS="$LIBS" 4943 5395 - echo "$as_me:6957: checking for initscr in -l$cf_nculib_root" >&5 4944 + echo "$as_me:7 177: checking for initscr in -l$cf_nculib_root" >&55396 + echo "$as_me:7011: checking for initscr in -l$cf_nculib_root" >&5 4945 5397 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 4946 5398 LIBS="-l$cf_nculib_root $LIBS" 4947 5399 cat >conftest.$ac_ext <<_ACEOF 4948 5400 -#line 6961 "configure" 4949 +#line 7 181"configure"5401 +#line 7015 "configure" 4950 5402 #include "confdefs.h" 4951 5403 #include <${cf_cv_ncurses_header:-curses.h}> 4952 5404 int 4953 @@ -6970,25 +7 190,25 @@5405 @@ -6970,25 +7024,25 @@ 4954 5406 } 4955 5407 _ACEOF 4956 5408 rm -f conftest.$ac_objext conftest$ac_exeext 4957 5409 -if { (eval echo "$as_me:6973: \"$ac_link\"") >&5 4958 +if { (eval echo "$as_me:7 193: \"$ac_link\"") >&55410 +if { (eval echo "$as_me:7027: \"$ac_link\"") >&5 4959 5411 (eval $ac_link) 2>&5 4960 5412 ac_status=$? 4961 5413 - echo "$as_me:6976: \$? = $ac_status" >&5 4962 + echo "$as_me:7 196: \$? = $ac_status" >&55414 + echo "$as_me:7030: \$? = $ac_status" >&5 4963 5415 (exit $ac_status); } && 4964 5416 { ac_try='test -s conftest$ac_exeext' 4965 5417 - { (eval echo "$as_me:6979: \"$ac_try\"") >&5 4966 + { (eval echo "$as_me:7 199: \"$ac_try\"") >&55418 + { (eval echo "$as_me:7033: \"$ac_try\"") >&5 4967 5419 (eval $ac_try) 2>&5 4968 5420 ac_status=$? 4969 5421 - echo "$as_me:6982: \$? = $ac_status" >&5 4970 + echo "$as_me:7 202: \$? = $ac_status" >&55422 + echo "$as_me:7036: \$? = $ac_status" >&5 4971 5423 (exit $ac_status); }; }; then 4972 5424 - echo "$as_me:6984: result: yes" >&5 4973 + echo "$as_me:7 204: result: yes" >&55425 + echo "$as_me:7038: result: yes" >&5 4974 5426 echo "${ECHO_T}yes" >&6 4975 5427 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' … … 4979 5431 cat conftest.$ac_ext >&5 4980 5432 -echo "$as_me:6991: result: no" >&5 4981 +echo "$as_me:7 211: result: no" >&55433 +echo "$as_me:7045: result: no" >&5 4982 5434 echo "${ECHO_T}no" >&6 4983 5435 4984 5436 cf_search= 4985 @@ -7078,11 +7 298,11 @@5437 @@ -7078,11 +7132,11 @@ 4986 5438 4987 5439 for cf_libdir in $cf_search 4988 5440 do 4989 5441 - echo "$as_me:7081: checking for -l$cf_nculib_root in $cf_libdir" >&5 4990 + echo "$as_me:7 301: checking for -l$cf_nculib_root in $cf_libdir" >&55442 + echo "$as_me:7135: checking for -l$cf_nculib_root in $cf_libdir" >&5 4991 5443 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 4992 5444 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" 4993 5445 cat >conftest.$ac_ext <<_ACEOF 4994 5446 -#line 7085 "configure" 4995 +#line 7 305"configure"5447 +#line 7139 "configure" 4996 5448 #include "confdefs.h" 4997 5449 #include <${cf_cv_ncurses_header:-curses.h}> 4998 5450 int 4999 @@ -7094,25 +7 314,25 @@5451 @@ -7094,25 +7148,25 @@ 5000 5452 } 5001 5453 _ACEOF 5002 5454 rm -f conftest.$ac_objext conftest$ac_exeext 5003 5455 -if { (eval echo "$as_me:7097: \"$ac_link\"") >&5 5004 +if { (eval echo "$as_me:7 317: \"$ac_link\"") >&55456 +if { (eval echo "$as_me:7151: \"$ac_link\"") >&5 5005 5457 (eval $ac_link) 2>&5 5006 5458 ac_status=$? 5007 5459 - echo "$as_me:7100: \$? = $ac_status" >&5 5008 + echo "$as_me:7 320: \$? = $ac_status" >&55460 + echo "$as_me:7154: \$? = $ac_status" >&5 5009 5461 (exit $ac_status); } && 5010 5462 { ac_try='test -s conftest$ac_exeext' 5011 5463 - { (eval echo "$as_me:7103: \"$ac_try\"") >&5 5012 + { (eval echo "$as_me:7 323: \"$ac_try\"") >&55464 + { (eval echo "$as_me:7157: \"$ac_try\"") >&5 5013 5465 (eval $ac_try) 2>&5 5014 5466 ac_status=$? 5015 5467 - echo "$as_me:7106: \$? = $ac_status" >&5 5016 + echo "$as_me:7 326: \$? = $ac_status" >&55468 + echo "$as_me:7160: \$? = $ac_status" >&5 5017 5469 (exit $ac_status); }; }; then 5018 5470 - echo "$as_me:7108: result: yes" >&5 5019 + echo "$as_me:7 328: result: yes" >&55471 + echo "$as_me:7162: result: yes" >&5 5020 5472 echo "${ECHO_T}yes" >&6 5021 5473 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' … … 5025 5477 cat conftest.$ac_ext >&5 5026 5478 -echo "$as_me:7115: result: no" >&5 5027 +echo "$as_me:7 335: result: no" >&55479 +echo "$as_me:7169: result: no" >&5 5028 5480 echo "${ECHO_T}no" >&6 5029 5481 LIBS="$cf_save_LIBS" 5030 5482 fi 5031 @@ -7127,7 +7 347,7 @@5483 @@ -7127,7 +7181,7 @@ 5032 5484 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root 5033 5485 5034 5486 if test $cf_found_library = no ; then 5035 5487 - { { echo "$as_me:7130: error: Cannot link $cf_nculib_root library" >&5 5036 + { { echo "$as_me:7 350: error: Cannot link $cf_nculib_root library" >&55488 + { { echo "$as_me:7184: error: Cannot link $cf_nculib_root library" >&5 5037 5489 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} 5038 5490 { (exit 1); exit 1; }; } 5039 5491 fi 5040 @@ -7135,7 +7 355,7 @@5492 @@ -7135,7 +7189,7 @@ 5041 5493 fi 5042 5494 5043 5495 if test -n "$cf_ncurses_LIBS" ; then 5044 5496 - echo "$as_me:7138: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 5045 + echo "$as_me:7 358: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&55497 + echo "$as_me:7192: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 5046 5498 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 5047 5499 cf_ncurses_SAVE="$LIBS" 5048 5500 for p in $cf_ncurses_LIBS ; do 5049 @@ -7145,7 +7 365,7 @@5501 @@ -7145,7 +7199,7 @@ 5050 5502 fi 5051 5503 done 5052 5504 cat >conftest.$ac_ext <<_ACEOF 5053 5505 -#line 7148 "configure" 5054 +#line 7 368"configure"5506 +#line 7202 "configure" 5055 5507 #include "confdefs.h" 5056 5508 #include <${cf_cv_ncurses_header:-curses.h}> 5057 5509 int 5058 @@ -7157,23 +7 377,23 @@5510 @@ -7157,23 +7211,23 @@ 5059 5511 } 5060 5512 _ACEOF 5061 5513 rm -f conftest.$ac_objext conftest$ac_exeext 5062 5514 -if { (eval echo "$as_me:7160: \"$ac_link\"") >&5 5063 +if { (eval echo "$as_me:7 380: \"$ac_link\"") >&55515 +if { (eval echo "$as_me:7214: \"$ac_link\"") >&5 5064 5516 (eval $ac_link) 2>&5 5065 5517 ac_status=$? 5066 5518 - echo "$as_me:7163: \$? = $ac_status" >&5 5067 + echo "$as_me:7 383: \$? = $ac_status" >&55519 + echo "$as_me:7217: \$? = $ac_status" >&5 5068 5520 (exit $ac_status); } && 5069 5521 { ac_try='test -s conftest$ac_exeext' 5070 5522 - { (eval echo "$as_me:7166: \"$ac_try\"") >&5 5071 + { (eval echo "$as_me:7 386: \"$ac_try\"") >&55523 + { (eval echo "$as_me:7220: \"$ac_try\"") >&5 5072 5524 (eval $ac_try) 2>&5 5073 5525 ac_status=$? 5074 5526 - echo "$as_me:7169: \$? = $ac_status" >&5 5075 + echo "$as_me:7 389: \$? = $ac_status" >&55527 + echo "$as_me:7223: \$? = $ac_status" >&5 5076 5528 (exit $ac_status); }; }; then 5077 5529 - echo "$as_me:7171: result: yes" >&5 5078 + echo "$as_me:7 391: result: yes" >&55530 + echo "$as_me:7225: result: yes" >&5 5079 5531 echo "${ECHO_T}yes" >&6 5080 5532 else … … 5082 5534 cat conftest.$ac_ext >&5 5083 5535 -echo "$as_me:7176: result: no" >&5 5084 +echo "$as_me:7 396: result: no" >&55536 +echo "$as_me:7230: result: no" >&5 5085 5537 echo "${ECHO_T}no" >&6 5086 5538 LIBS="$cf_ncurses_SAVE" 5087 5539 fi 5088 @@ -7210,10 +7 430,10 @@5540 @@ -7210,10 +7264,10 @@ 5089 5541 AUTOCONF_$cf_name NCURSES_VERSION_$cf_name 5090 5542 CF_EOF 5091 5543 cf_try="$ac_cpp conftest.$ac_ext 2>&5 | fgrep AUTOCONF_$cf_name >conftest.out" 5092 5544 - { (eval echo "$as_me:7213: \"$cf_try\"") >&5 5093 + { (eval echo "$as_me:7 433: \"$cf_try\"") >&55545 + { (eval echo "$as_me:7267: \"$cf_try\"") >&5 5094 5546 (eval $cf_try) 2>&5 5095 5547 ac_status=$? 5096 5548 - echo "$as_me:7216: \$? = $ac_status" >&5 5097 + echo "$as_me:7 436: \$? = $ac_status" >&55549 + echo "$as_me:7270: \$? = $ac_status" >&5 5098 5550 (exit $ac_status); } 5099 5551 if test -f conftest.out ; then 5100 5552 cf_result=`cat conftest.out | sed -e "s/^.*AUTOCONF_$cf_name[ ][ ]*//"` 5101 @@ -7231,9 +7 451,25 @@5553 @@ -7231,9 +7285,25 @@ 5102 5554 5103 5555 cf_cv_timestamp=`date` 5104 5556 5105 5557 -echo "$as_me:7234: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5 5106 +echo "$as_me:7 454: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&55558 +echo "$as_me:7288: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5 5107 5559 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6 5108 5560 5109 +echo "$as_me:7 457: checking if you want to have a library-prefix" >&55561 +echo "$as_me:7291: checking if you want to have a library-prefix" >&5 5110 5562 +echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6 5111 5563 + … … 5117 5569 + with_lib_prefix=auto 5118 5570 +fi; 5119 +echo "$as_me:7 467: result: $with_lib_prefix" >&55571 +echo "$as_me:7301: result: $with_lib_prefix" >&5 5120 5572 +echo "${ECHO_T}$with_lib_prefix" >&6 5121 5573 + … … 5126 5578 OS/2*|os2*) #(vi 5127 5579 LIB_PREFIX='' 5128 @@ -7243,7 +7 479,12 @@5580 @@ -7243,7 +7313,12 @@ 5129 5581 esac 5130 5582 cf_prefix=$LIB_PREFIX … … 5140 5592 LIB_SUFFIX= 5141 5593 5142 @@ -7254,7 +7 495,7 @@5594 @@ -7254,7 +7329,7 @@ 5143 5595 test -n "$GCC" && test "${ac_cv_prog_cc_g}" != yes && CC_G_OPT='' 5144 5596 fi 5145 5597 5146 5598 -echo "$as_me:7257: checking for default loader flags" >&5 5147 +echo "$as_me:7 498: checking for default loader flags" >&55599 +echo "$as_me:7332: checking for default loader flags" >&5 5148 5600 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6 5149 5601 case $DFT_LWR_MODEL in 5150 5602 normal) LD_MODEL='' ;; 5151 @@ -7262,11 +7 503,11 @@5603 @@ -7262,11 +7337,11 @@ 5152 5604 profile) LD_MODEL='-pg';; 5153 5605 shared) LD_MODEL='' ;; 5154 5606 esac 5155 5607 -echo "$as_me:7265: result: $LD_MODEL" >&5 5156 +echo "$as_me:7 506: result: $LD_MODEL" >&55608 +echo "$as_me:7340: result: $LD_MODEL" >&5 5157 5609 echo "${ECHO_T}$LD_MODEL" >&6 5158 5610 5159 5611 LD_RPATH_OPT= 5160 5612 -echo "$as_me:7269: checking for an rpath option" >&5 5161 +echo "$as_me:7 510: checking for an rpath option" >&55613 +echo "$as_me:7344: checking for an rpath option" >&5 5162 5614 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 5163 5615 case $cf_cv_system_name in #(vi 5164 5616 irix*) #(vi 5165 @@ -7279,10 +7 520,10 @@5617 @@ -7279,10 +7354,10 @@ 5166 5618 linux*|gnu*|k*bsd*-gnu) #(vi 5167 5619 LD_RPATH_OPT="-Wl,-rpath," … … 5176 5628 ;; 5177 5629 netbsd*) #(vi 5178 @@ -7297,17 +7 538,17 @@5630 @@ -7297,17 +7372,17 @@ 5179 5631 *) 5180 5632 ;; 5181 5633 esac 5182 5634 -echo "$as_me:7300: result: $LD_RPATH_OPT" >&5 5183 +echo "$as_me:7 541: result: $LD_RPATH_OPT" >&55635 +echo "$as_me:7375: result: $LD_RPATH_OPT" >&5 5184 5636 echo "${ECHO_T}$LD_RPATH_OPT" >&6 5185 5637 … … 5187 5639 x-R*) 5188 5640 - echo "$as_me:7305: checking if we need a space after rpath option" >&5 5189 + echo "$as_me:7 546: checking if we need a space after rpath option" >&55641 + echo "$as_me:7380: checking if we need a space after rpath option" >&5 5190 5642 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 5191 5643 cf_save_LIBS="$LIBS" … … 5193 5645 cat >conftest.$ac_ext <<_ACEOF 5194 5646 -#line 7310 "configure" 5195 +#line 7 551"configure"5647 +#line 7385 "configure" 5196 5648 #include "confdefs.h" 5197 5649 5198 5650 int 5199 @@ -7319,16 +7 560,16 @@5651 @@ -7319,16 +7394,16 @@ 5200 5652 } 5201 5653 _ACEOF 5202 5654 rm -f conftest.$ac_objext conftest$ac_exeext 5203 5655 -if { (eval echo "$as_me:7322: \"$ac_link\"") >&5 5204 +if { (eval echo "$as_me:7 563: \"$ac_link\"") >&55656 +if { (eval echo "$as_me:7397: \"$ac_link\"") >&5 5205 5657 (eval $ac_link) 2>&5 5206 5658 ac_status=$? 5207 5659 - echo "$as_me:7325: \$? = $ac_status" >&5 5208 + echo "$as_me:7 566: \$? = $ac_status" >&55660 + echo "$as_me:7400: \$? = $ac_status" >&5 5209 5661 (exit $ac_status); } && 5210 5662 { ac_try='test -s conftest$ac_exeext' 5211 5663 - { (eval echo "$as_me:7328: \"$ac_try\"") >&5 5212 + { (eval echo "$as_me:7 569: \"$ac_try\"") >&55664 + { (eval echo "$as_me:7403: \"$ac_try\"") >&5 5213 5665 (eval $ac_try) 2>&5 5214 5666 ac_status=$? 5215 5667 - echo "$as_me:7331: \$? = $ac_status" >&5 5216 + echo "$as_me:7 572: \$? = $ac_status" >&55668 + echo "$as_me:7406: \$? = $ac_status" >&5 5217 5669 (exit $ac_status); }; }; then 5218 5670 cf_rpath_space=no 5219 5671 else 5220 @@ -7338,7 +7 579,7 @@5672 @@ -7338,7 +7413,7 @@ 5221 5673 fi 5222 5674 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5223 5675 LIBS="$cf_save_LIBS" 5224 5676 - echo "$as_me:7341: result: $cf_rpath_space" >&5 5225 + echo "$as_me:7 582: result: $cf_rpath_space" >&55677 + echo "$as_me:7416: result: $cf_rpath_space" >&5 5226 5678 echo "${ECHO_T}$cf_rpath_space" >&6 5227 5679 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " 5228 5680 ;; 5229 @@ -7353,7 +7 594,7 @@5681 @@ -7353,7 +7428,7 @@ 5230 5682 cf_ld_rpath_opt= 5231 5683 test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT" 5232 5684 5233 5685 - echo "$as_me:7356: checking if release/abi version should be used for shared libs" >&5 5234 + echo "$as_me:7 597: checking if release/abi version should be used for shared libs" >&55686 + echo "$as_me:7431: checking if release/abi version should be used for shared libs" >&5 5235 5687 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6 5236 5688 5237 5689 # Check whether --with-shlib-version or --without-shlib-version was given. 5238 @@ -7368,7 +7 609,7 @@5690 @@ -7368,7 +7443,7 @@ 5239 5691 cf_cv_shlib_version=$withval 5240 5692 ;; 5241 5693 *) 5242 5694 - { { echo "$as_me:7371: error: option value must be one of: rel, abi, auto or no" >&5 5243 + { { echo "$as_me:7 612: error: option value must be one of: rel, abi, auto or no" >&55695 + { { echo "$as_me:7446: error: option value must be one of: rel, abi, auto or no" >&5 5244 5696 echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;} 5245 5697 { (exit 1); exit 1; }; } 5246 5698 ;; 5247 @@ -7377,7 +7 618,7 @@5699 @@ -7377,7 +7452,7 @@ 5248 5700 else 5249 5701 cf_cv_shlib_version=auto 5250 5702 fi; 5251 5703 - echo "$as_me:7380: result: $cf_cv_shlib_version" >&5 5252 + echo "$as_me:7 621: result: $cf_cv_shlib_version" >&55704 + echo "$as_me:7455: result: $cf_cv_shlib_version" >&5 5253 5705 echo "${ECHO_T}$cf_cv_shlib_version" >&6 5254 5706 5255 5707 cf_cv_rm_so_locs=no 5256 @@ -7386,14 +7 627,14 @@5708 @@ -7386,14 +7461,14 @@ 5257 5709 CC_SHARED_OPTS= 5258 5710 if test "$GCC" = yes 5259 5711 then 5260 5712 - echo "$as_me:7389: checking which $CC option to use" >&5 5261 + echo "$as_me:7 630: checking which $CC option to use" >&55713 + echo "$as_me:7464: checking which $CC option to use" >&5 5262 5714 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6 5263 5715 cf_save_CFLAGS="$CFLAGS" … … 5267 5719 cat >conftest.$ac_ext <<_ACEOF 5268 5720 -#line 7396 "configure" 5269 +#line 7 637"configure"5721 +#line 7471 "configure" 5270 5722 #include "confdefs.h" 5271 5723 #include <stdio.h> 5272 5724 int 5273 @@ -7405,16 +7 646,16 @@5725 @@ -7405,16 +7480,16 @@ 5274 5726 } 5275 5727 _ACEOF 5276 5728 rm -f conftest.$ac_objext 5277 5729 -if { (eval echo "$as_me:7408: \"$ac_compile\"") >&5 5278 +if { (eval echo "$as_me:7 649: \"$ac_compile\"") >&55730 +if { (eval echo "$as_me:7483: \"$ac_compile\"") >&5 5279 5731 (eval $ac_compile) 2>&5 5280 5732 ac_status=$? 5281 5733 - echo "$as_me:7411: \$? = $ac_status" >&5 5282 + echo "$as_me:7 652: \$? = $ac_status" >&55734 + echo "$as_me:7486: \$? = $ac_status" >&5 5283 5735 (exit $ac_status); } && 5284 5736 { ac_try='test -s conftest.$ac_objext' 5285 5737 - { (eval echo "$as_me:7414: \"$ac_try\"") >&5 5286 + { (eval echo "$as_me:7 655: \"$ac_try\"") >&55738 + { (eval echo "$as_me:7489: \"$ac_try\"") >&5 5287 5739 (eval $ac_try) 2>&5 5288 5740 ac_status=$? 5289 5741 - echo "$as_me:7417: \$? = $ac_status" >&5 5290 + echo "$as_me:7 658: \$? = $ac_status" >&55742 + echo "$as_me:7492: \$? = $ac_status" >&5 5291 5743 (exit $ac_status); }; }; then 5292 5744 break 5293 5745 else 5294 @@ -7423,7 +7 664,7 @@5746 @@ -7423,7 +7498,7 @@ 5295 5747 fi 5296 5748 rm -f conftest.$ac_objext conftest.$ac_ext 5297 5749 done 5298 5750 - echo "$as_me:7426: result: $CC_SHARED_OPTS" >&5 5299 + echo "$as_me:7 667: result: $CC_SHARED_OPTS" >&55751 + echo "$as_me:7501: result: $CC_SHARED_OPTS" >&5 5300 5752 echo "${ECHO_T}$CC_SHARED_OPTS" >&6 5301 5753 CFLAGS="$cf_save_CFLAGS" 5302 5754 fi 5303 @@ -7431,10 +7 672,14 @@5755 @@ -7431,10 +7506,14 @@ 5304 5756 cf_cv_shlib_version_infix=no 5305 5757 … … 5318 5770 ;; 5319 5771 beos*) #(vi 5320 @@ -7465,7 +7 710,7 @@5772 @@ -7465,7 +7544,7 @@ 5321 5773 MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@' 5322 5774 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi 5323 5775 cf_cv_shlib_version_infix=yes 5324 5776 - echo "$as_me:7468: checking if ld -search_paths_first works" >&5 5325 + echo "$as_me:7 713: checking if ld -search_paths_first works" >&55777 + echo "$as_me:7547: checking if ld -search_paths_first works" >&5 5326 5778 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6 5327 5779 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then 5328 5780 echo $ECHO_N "(cached) $ECHO_C" >&6 5329 @@ -7474,7 +7 719,7 @@5781 @@ -7474,7 +7553,7 @@ 5330 5782 cf_save_LDFLAGS=$LDFLAGS 5331 5783 LDFLAGS="$LDFLAGS -Wl,-search_paths_first" 5332 5784 cat >conftest.$ac_ext <<_ACEOF 5333 5785 -#line 7477 "configure" 5334 +#line 7 722"configure"5786 +#line 7556 "configure" 5335 5787 #include "confdefs.h" 5336 5788 5337 5789 int 5338 @@ -7486,16 +7 731,16 @@5790 @@ -7486,16 +7565,16 @@ 5339 5791 } 5340 5792 _ACEOF 5341 5793 rm -f conftest.$ac_objext conftest$ac_exeext 5342 5794 -if { (eval echo "$as_me:7489: \"$ac_link\"") >&5 5343 +if { (eval echo "$as_me:7 734: \"$ac_link\"") >&55795 +if { (eval echo "$as_me:7568: \"$ac_link\"") >&5 5344 5796 (eval $ac_link) 2>&5 5345 5797 ac_status=$? 5346 5798 - echo "$as_me:7492: \$? = $ac_status" >&5 5347 + echo "$as_me:7 737: \$? = $ac_status" >&55799 + echo "$as_me:7571: \$? = $ac_status" >&5 5348 5800 (exit $ac_status); } && 5349 5801 { ac_try='test -s conftest$ac_exeext' 5350 5802 - { (eval echo "$as_me:7495: \"$ac_try\"") >&5 5351 + { (eval echo "$as_me:7 740: \"$ac_try\"") >&55803 + { (eval echo "$as_me:7574: \"$ac_try\"") >&5 5352 5804 (eval $ac_try) 2>&5 5353 5805 ac_status=$? 5354 5806 - echo "$as_me:7498: \$? = $ac_status" >&5 5355 + echo "$as_me:7 743: \$? = $ac_status" >&55807 + echo "$as_me:7577: \$? = $ac_status" >&5 5356 5808 (exit $ac_status); }; }; then 5357 5809 cf_cv_ldflags_search_paths_first=yes 5358 5810 else 5359 @@ -7506,7 +7 751,7 @@5811 @@ -7506,7 +7585,7 @@ 5360 5812 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 5361 5813 LDFLAGS=$cf_save_LDFLAGS 5362 5814 fi 5363 5815 -echo "$as_me:7509: result: $cf_cv_ldflags_search_paths_first" >&5 5364 +echo "$as_me:7 754: result: $cf_cv_ldflags_search_paths_first" >&55816 +echo "$as_me:7588: result: $cf_cv_ldflags_search_paths_first" >&5 5365 5817 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6 5366 5818 if test $cf_cv_ldflags_search_paths_first = yes; then 5367 5819 LDFLAGS="$LDFLAGS -Wl,-search_paths_first" 5368 @@ -7525,9 +7 770,19 @@5820 @@ -7525,9 +7604,19 @@ 5369 5821 # readonly to exploit a quirk in the memory manager. 5370 5822 INSTALL_LIB="-m 555" … … 5387 5839 # tested with IRIX 5.2 and 'cc'. 5388 5840 if test "$GCC" != yes; then 5389 @@ -7544,7 +7 799,7 @@5841 @@ -7544,7 +7633,7 @@ 5390 5842 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 5391 5843 fi … … 5396 5848 5397 5849 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel 5398 @@ -7556,13 +7 811,13@@5850 @@ -7556,13 +7645,34 @@ 5399 5851 5400 5852 MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@' 5401 5853 ;; 5402 5854 - openbsd[2-9].*) #(vi 5855 + mingw*) #(vi 5856 + cf_cv_shlib_version=mingw 5857 + cf_cv_shlib_version_infix=mingw 5858 + CC_SHARED_OPTS= 5859 + MK_SHARED_LIB='sh ../mk_shared_lib.sh $@ ${CC} ${CFLAGS}' 5860 + #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]' 5861 + #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]' 5862 + cat >mk_shared_lib.sh <<-CF_EOF 5863 + #!/bin/sh 5864 + SHARED_LIB=\$1 5865 + IMPORT_LIB=\`echo "\$1" | sed -e 's/[0-9]*\.dll$/.dll.a/'\` 5866 + shift 5867 + cat <<-EOF 5868 + Linking shared library 5869 + ** SHARED_LIB \$SHARED_LIB 5870 + ** IMPORT_LIB \$IMPORT_LIB 5871 +EOF 5872 + exec \$* -shared -Wl,--out-implib=../lib/\${IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\${SHARED_LIB} 5873 +CF_EOF 5874 + chmod +x mk_shared_lib.sh 5875 + ;; 5403 5876 + openbsd[2-9].*|mirbsd*) #(vi 5404 5877 if test "$DFT_LWR_MODEL" = "shared" ; then … … 5412 5885 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 5413 5886 5414 @@ -7580,12 +7 835,12 @@5887 @@ -7580,12 +7690,12 @@ 5415 5888 MK_SHARED_LIB='${LD} -Bshareable -o $@' 5416 5889 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel … … 5428 5901 5429 5902 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel 5430 @@ -7602,7 +7 857,7 @@5903 @@ -7602,7 +7712,7 @@ 5431 5904 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then 5432 5905 LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)" … … 5437 5910 if test -f /usr/libexec/ld.elf_so; then 5438 5911 cf_cv_shlib_version=abi 5439 @@ -7686,7 +7 941,7 @@5912 @@ -7686,7 +7796,7 @@ 5440 5913 do 5441 5914 CFLAGS="$cf_shared_opts $cf_save_CFLAGS" 5442 5915 cat >conftest.$ac_ext <<_ACEOF 5443 5916 -#line 7689 "configure" 5444 +#line 7 944"configure"5917 +#line 7799 "configure" 5445 5918 #include "confdefs.h" 5446 5919 #include <stdio.h> 5447 5920 int 5448 @@ -7698,16 +7 953,16 @@5921 @@ -7698,16 +7808,16 @@ 5449 5922 } 5450 5923 _ACEOF 5451 5924 rm -f conftest.$ac_objext 5452 5925 -if { (eval echo "$as_me:7701: \"$ac_compile\"") >&5 5453 +if { (eval echo "$as_me:7 956: \"$ac_compile\"") >&55926 +if { (eval echo "$as_me:7811: \"$ac_compile\"") >&5 5454 5927 (eval $ac_compile) 2>&5 5455 5928 ac_status=$? 5456 5929 - echo "$as_me:7704: \$? = $ac_status" >&5 5457 + echo "$as_me:7 959: \$? = $ac_status" >&55930 + echo "$as_me:7814: \$? = $ac_status" >&5 5458 5931 (exit $ac_status); } && 5459 5932 { ac_try='test -s conftest.$ac_objext' 5460 5933 - { (eval echo "$as_me:7707: \"$ac_try\"") >&5 5461 + { (eval echo "$as_me:7 962: \"$ac_try\"") >&55934 + { (eval echo "$as_me:7817: \"$ac_try\"") >&5 5462 5935 (eval $ac_try) 2>&5 5463 5936 ac_status=$? 5464 5937 - echo "$as_me:7710: \$? = $ac_status" >&5 5465 + echo "$as_me:7 965: \$? = $ac_status" >&55938 + echo "$as_me:7820: \$? = $ac_status" >&5 5466 5939 (exit $ac_status); }; }; then 5467 5940 break 5468 5941 else 5469 @@ -7744,22 +7 999,22@@5942 @@ -7744,22 +7854,30 @@ 5470 5943 test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes 5471 5944 ;; 5472 5945 *) 5473 5946 - { echo "$as_me:7747: WARNING: ignored --with-shlib-version" >&5 5474 + { echo "$as_me: 8002: WARNING: ignored --with-shlib-version" >&55947 + { echo "$as_me:7857: WARNING: ignored --with-shlib-version" >&5 5475 5948 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;} 5476 5949 ;; … … 5485 5958 + test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}" 5486 5959 + test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}" 5960 + 5961 + test -n "$verbose" && echo " CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6 5962 + 5963 +echo "${as_me:-configure}:7870: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5 5964 + 5965 + test -n "$verbose" && echo " MK_SHARED_LIB: $MK_SHARED_LIB" 1>&6 5966 + 5967 +echo "${as_me:-configure}:7874: testing MK_SHARED_LIB: $MK_SHARED_LIB ..." 1>&5 5487 5968 5488 5969 # The test/sample programs in the original tree link using rpath option. … … 5491 5972 then 5492 5973 - echo "$as_me:7762: checking if you want to link sample programs with rpath option" >&5 5493 + echo "$as_me: 8017: checking if you want to link sample programs with rpath option" >&55974 + echo "$as_me:7880: checking if you want to link sample programs with rpath option" >&5 5494 5975 echo $ECHO_N "checking if you want to link sample programs with rpath option... $ECHO_C" >&6 5495 5976 5496 5977 # Check whether --enable-rpath-link or --disable-rpath-link was given. 5497 @@ -7769,7 + 8024,7 @@5978 @@ -7769,7 +7887,7 @@ 5498 5979 else 5499 5980 with_rpath_link=yes 5500 5981 fi; 5501 5982 - echo "$as_me:7772: result: $with_rpath_link" >&5 5502 + echo "$as_me: 8027: result: $with_rpath_link" >&55983 + echo "$as_me:7890: result: $with_rpath_link" >&5 5503 5984 echo "${ECHO_T}$with_rpath_link" >&6 5504 5985 if test "$with_rpath_link" = no 5505 5986 then 5506 @@ -7780,13 + 8035,8 @@5987 @@ -7780,13 +7898,8 @@ 5507 5988 5508 5989 ############################################################################### … … 5515 5996 ### use option --enable-broken-linker to force on use of broken-linker support 5516 5997 -echo "$as_me:7789: checking if you want broken-linker support code" >&5 5517 +echo "$as_me: 8039: checking if you want broken-linker support code" >&55998 +echo "$as_me:7902: checking if you want broken-linker support code" >&5 5518 5999 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6 5519 6000 5520 6001 # Check whether --enable-broken_linker or --disable-broken_linker was given. 5521 @@ -7796,7 + 8046,7 @@6002 @@ -7796,7 +7909,7 @@ 5522 6003 else 5523 6004 with_broken_linker=${BROKEN_LINKER:-no} 5524 6005 fi; 5525 6006 -echo "$as_me:7799: result: $with_broken_linker" >&5 5526 +echo "$as_me: 8049: result: $with_broken_linker" >&56007 +echo "$as_me:7912: result: $with_broken_linker" >&5 5527 6008 echo "${ECHO_T}$with_broken_linker" >&6 5528 6009 5529 6010 BROKEN_LINKER=0 5530 @@ -7816,7 + 8066,7 @@6011 @@ -7816,7 +7929,7 @@ 5531 6012 BROKEN_LINKER=1 5532 6013 test -n "$verbose" && echo " cygwin linker is broken anyway" 1>&6 5533 6014 5534 6015 -echo "${as_me:-configure}:7819: testing cygwin linker is broken anyway ..." 1>&5 5535 +echo "${as_me:-configure}: 8069: testing cygwin linker is broken anyway ..." 1>&56016 +echo "${as_me:-configure}:7932: testing cygwin linker is broken anyway ..." 1>&5 5536 6017 5537 6018 ;; 5538 6019 esac 5539 @@ -7829,7 + 8079,7 @@6020 @@ -7829,7 +7942,7 @@ 5540 6021 cf_xopen_source= 5541 6022 … … 5546 6027 ;; 5547 6028 cygwin) #(vi 5548 @@ -7840,6 + 8090,7 @@6029 @@ -7840,6 +7953,7 @@ 5549 6030 ;; 5550 6031 darwin*) #(vi … … 5554 6035 freebsd*|dragonfly*) #(vi 5555 6036 # 5.x headers associate 5556 @@ -7857,17 + 8108,18 @@6037 @@ -7857,17 +7971,18 @@ 5557 6038 ;; 5558 6039 irix[56].*) #(vi … … 5563 6044 5564 6045 -echo "$as_me:7863: checking if we must define _GNU_SOURCE" >&5 5565 +echo "$as_me: 8115: checking if we must define _GNU_SOURCE" >&56046 +echo "$as_me:7978: checking if we must define _GNU_SOURCE" >&5 5566 6047 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 5567 6048 if test "${cf_cv_gnu_source+set}" = set; then … … 5571 6052 cat >conftest.$ac_ext <<_ACEOF 5572 6053 -#line 7870 "configure" 5573 +#line 8122"configure"6054 +#line 7985 "configure" 5574 6055 #include "confdefs.h" 5575 6056 #include <sys/types.h> 5576 6057 int 5577 @@ -7882,16 + 8134,16 @@6058 @@ -7882,16 +7997,16 @@ 5578 6059 } 5579 6060 _ACEOF 5580 6061 rm -f conftest.$ac_objext 5581 6062 -if { (eval echo "$as_me:7885: \"$ac_compile\"") >&5 5582 +if { (eval echo "$as_me:8 137: \"$ac_compile\"") >&56063 +if { (eval echo "$as_me:8000: \"$ac_compile\"") >&5 5583 6064 (eval $ac_compile) 2>&5 5584 6065 ac_status=$? 5585 6066 - echo "$as_me:7888: \$? = $ac_status" >&5 5586 + echo "$as_me:8 140: \$? = $ac_status" >&56067 + echo "$as_me:8003: \$? = $ac_status" >&5 5587 6068 (exit $ac_status); } && 5588 6069 { ac_try='test -s conftest.$ac_objext' 5589 6070 - { (eval echo "$as_me:7891: \"$ac_try\"") >&5 5590 + { (eval echo "$as_me:8 143: \"$ac_try\"") >&56071 + { (eval echo "$as_me:8006: \"$ac_try\"") >&5 5591 6072 (eval $ac_try) 2>&5 5592 6073 ac_status=$? 5593 6074 - echo "$as_me:7894: \$? = $ac_status" >&5 5594 + echo "$as_me:8 146: \$? = $ac_status" >&56075 + echo "$as_me:8009: \$? = $ac_status" >&5 5595 6076 (exit $ac_status); }; }; then 5596 6077 cf_cv_gnu_source=no 5597 6078 else 5598 @@ -7900,7 +8 152,7 @@6079 @@ -7900,7 +8015,7 @@ 5599 6080 cf_save="$CPPFLAGS" 5600 6081 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" 5601 6082 cat >conftest.$ac_ext <<_ACEOF 5602 6083 -#line 7903 "configure" 5603 +#line 8 155"configure"6084 +#line 8018 "configure" 5604 6085 #include "confdefs.h" 5605 6086 #include <sys/types.h> 5606 6087 int 5607 @@ -7915,16 +8 167,16 @@6088 @@ -7915,16 +8030,16 @@ 5608 6089 } 5609 6090 _ACEOF 5610 6091 rm -f conftest.$ac_objext 5611 6092 -if { (eval echo "$as_me:7918: \"$ac_compile\"") >&5 5612 +if { (eval echo "$as_me:8 170: \"$ac_compile\"") >&56093 +if { (eval echo "$as_me:8033: \"$ac_compile\"") >&5 5613 6094 (eval $ac_compile) 2>&5 5614 6095 ac_status=$? 5615 6096 - echo "$as_me:7921: \$? = $ac_status" >&5 5616 + echo "$as_me:8 173: \$? = $ac_status" >&56097 + echo "$as_me:8036: \$? = $ac_status" >&5 5617 6098 (exit $ac_status); } && 5618 6099 { ac_try='test -s conftest.$ac_objext' 5619 6100 - { (eval echo "$as_me:7924: \"$ac_try\"") >&5 5620 + { (eval echo "$as_me:8 176: \"$ac_try\"") >&56101 + { (eval echo "$as_me:8039: \"$ac_try\"") >&5 5621 6102 (eval $ac_try) 2>&5 5622 6103 ac_status=$? 5623 6104 - echo "$as_me:7927: \$? = $ac_status" >&5 5624 + echo "$as_me:8 179: \$? = $ac_status" >&56105 + echo "$as_me:8042: \$? = $ac_status" >&5 5625 6106 (exit $ac_status); }; }; then 5626 6107 cf_cv_gnu_source=no 5627 6108 else 5628 @@ -7939, 47 +8191,293@@6109 @@ -7939,51 +8054,45 @@ 5629 6110 rm -f conftest.$ac_objext conftest.$ac_ext 5630 6111 5631 6112 fi 5632 6113 -echo "$as_me:7942: result: $cf_cv_gnu_source" >&5 5633 +echo "$as_me:8 194: result: $cf_cv_gnu_source" >&56114 +echo "$as_me:8057: result: $cf_cv_gnu_source" >&5 5634 6115 echo "${ECHO_T}$cf_cv_gnu_source" >&6 5635 6116 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" … … 5664 6145 -echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 5665 6146 -if test "${cf_cv_xopen_source+set}" = set; then 5666 - echo $ECHO_N "(cached) $ECHO_C" >&65667 -else5668 6147 + # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types 5669 6148 + cf_XOPEN_SOURCE= 5670 5671 - cat >conftest.$ac_ext <<_ACEOF 5672 -#line 7979 "configure" 5673 -#include "confdefs.h" 5674 -#include <sys/types.h> 5675 -int 6149 + 5676 6150 +cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE 5677 6151 + … … 5687 6161 + -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` 5688 6162 + 5689 +echo "$as_me:8 216: checking if we should define _POSIX_C_SOURCE" >&56163 +echo "$as_me:8079: checking if we should define _POSIX_C_SOURCE" >&5 5690 6164 +echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 5691 6165 +if test "${cf_cv_posix_c_source+set}" = set; then 5692 + echo $ECHO_N "(cached) $ECHO_C" >&6 5693 +else 5694 + 5695 +echo "${as_me:-configure}:8222: testing if the symbol is already defined go no further ..." 1>&5 5696 + 5697 + cat >conftest.$ac_ext <<_ACEOF 5698 +#line 8225 "configure" 5699 +#include "confdefs.h" 5700 +#include <sys/types.h> 5701 +int 5702 +main () 5703 +{ 5704 + 6166 echo $ECHO_N "(cached) $ECHO_C" >&6 6167 else 6168 6169 +echo "${as_me:-configure}:8085: testing if the symbol is already defined go no further ..." 1>&5 6170 + 6171 cat >conftest.$ac_ext <<_ACEOF 6172 -#line 7979 "configure" 6173 +#line 8088 "configure" 6174 #include "confdefs.h" 6175 #include <sys/types.h> 6176 int 6177 main () 6178 { 6179 6180 -#ifndef _XOPEN_SOURCE 5705 6181 +#ifndef _POSIX_C_SOURCE 5706 +make an error 5707 +#endif 5708 + ; 5709 + return 0; 5710 +} 5711 +_ACEOF 5712 +rm -f conftest.$ac_objext 5713 +if { (eval echo "$as_me:8240: \"$ac_compile\"") >&5 5714 + (eval $ac_compile) 2>&5 5715 + ac_status=$? 5716 + echo "$as_me:8243: \$? = $ac_status" >&5 5717 + (exit $ac_status); } && 5718 + { ac_try='test -s conftest.$ac_objext' 5719 + { (eval echo "$as_me:8246: \"$ac_try\"") >&5 5720 + (eval $ac_try) 2>&5 5721 + ac_status=$? 5722 + echo "$as_me:8249: \$? = $ac_status" >&5 5723 + (exit $ac_status); }; }; then 6182 make an error 6183 #endif 6184 ; 6185 @@ -7991,32 +8100,44 @@ 6186 } 6187 _ACEOF 6188 rm -f conftest.$ac_objext 6189 -if { (eval echo "$as_me:7994: \"$ac_compile\"") >&5 6190 +if { (eval echo "$as_me:8103: \"$ac_compile\"") >&5 6191 (eval $ac_compile) 2>&5 6192 ac_status=$? 6193 - echo "$as_me:7997: \$? = $ac_status" >&5 6194 + echo "$as_me:8106: \$? = $ac_status" >&5 6195 (exit $ac_status); } && 6196 { ac_try='test -s conftest.$ac_objext' 6197 - { (eval echo "$as_me:8000: \"$ac_try\"") >&5 6198 + { (eval echo "$as_me:8109: \"$ac_try\"") >&5 6199 (eval $ac_try) 2>&5 6200 ac_status=$? 6201 - echo "$as_me:8003: \$? = $ac_status" >&5 6202 + echo "$as_me:8112: \$? = $ac_status" >&5 6203 (exit $ac_status); }; }; then 6204 - cf_cv_xopen_source=no 5724 6205 + cf_cv_posix_c_source=no 5725 +else 5726 + echo "$as_me: failed program was:" >&5 5727 +cat conftest.$ac_ext >&5 6206 else 6207 echo "$as_me: failed program was:" >&5 6208 cat conftest.$ac_ext >&5 6209 -cf_save="$CPPFLAGS" 6210 - CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" 6211 - cat >conftest.$ac_ext <<_ACEOF 6212 -#line 8012 "configure" 5728 6213 +cf_want_posix_source=no 5729 6214 + case .$cf_POSIX_C_SOURCE in #(vi … … 5741 6226 + if test "$cf_want_posix_source" = yes ; then 5742 6227 + cat >conftest.$ac_ext <<_ACEOF 5743 +#line 8270 "configure" 5744 +#include "confdefs.h" 5745 +#include <sys/types.h> 5746 +int 5747 +main () 5748 +{ 5749 + 6228 +#line 8133 "configure" 6229 #include "confdefs.h" 6230 #include <sys/types.h> 6231 int 6232 main () 6233 { 6234 6235 -#ifdef _XOPEN_SOURCE 5750 6236 +#ifdef _POSIX_SOURCE 5751 +make an error 5752 +#endif 5753 + ; 5754 + return 0; 5755 +} 5756 +_ACEOF 5757 +rm -f conftest.$ac_objext 5758 +if { (eval echo "$as_me:8285: \"$ac_compile\"") >&5 5759 + (eval $ac_compile) 2>&5 5760 + ac_status=$? 5761 + echo "$as_me:8288: \$? = $ac_status" >&5 5762 + (exit $ac_status); } && 5763 + { ac_try='test -s conftest.$ac_objext' 5764 + { (eval echo "$as_me:8291: \"$ac_try\"") >&5 5765 + (eval $ac_try) 2>&5 5766 + ac_status=$? 5767 + echo "$as_me:8294: \$? = $ac_status" >&5 5768 + (exit $ac_status); }; }; then 6237 make an error 6238 #endif 6239 ; 6240 @@ -8024,33 +8145,278 @@ 6241 } 6242 _ACEOF 6243 rm -f conftest.$ac_objext 6244 -if { (eval echo "$as_me:8027: \"$ac_compile\"") >&5 6245 +if { (eval echo "$as_me:8148: \"$ac_compile\"") >&5 6246 (eval $ac_compile) 2>&5 6247 ac_status=$? 6248 - echo "$as_me:8030: \$? = $ac_status" >&5 6249 + echo "$as_me:8151: \$? = $ac_status" >&5 6250 (exit $ac_status); } && 6251 { ac_try='test -s conftest.$ac_objext' 6252 - { (eval echo "$as_me:8033: \"$ac_try\"") >&5 6253 + { (eval echo "$as_me:8154: \"$ac_try\"") >&5 6254 (eval $ac_try) 2>&5 6255 ac_status=$? 6256 - echo "$as_me:8036: \$? = $ac_status" >&5 6257 + echo "$as_me:8157: \$? = $ac_status" >&5 6258 (exit $ac_status); }; }; then 6259 - cf_cv_xopen_source=no 5769 6260 + : 5770 +else 5771 + echo "$as_me: failed program was:" >&5 5772 +cat conftest.$ac_ext >&5 6261 else 6262 echo "$as_me: failed program was:" >&5 6263 cat conftest.$ac_ext >&5 6264 -cf_cv_xopen_source=$cf_XOPEN_SOURCE 5773 6265 +cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE" 5774 +fi 5775 +rm -f conftest.$ac_objext conftest.$ac_ext 6266 fi 6267 rm -f conftest.$ac_objext conftest.$ac_ext 6268 - CPPFLAGS="$cf_save" 5776 6269 + fi 5777 6270 + 5778 +echo "${as_me:-configure}:8 305: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&56271 +echo "${as_me:-configure}:8168: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 5779 6272 + 5780 6273 + CFLAGS="$cf_trim_CFLAGS" 5781 6274 + CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 5782 6275 + 5783 +echo "${as_me:-configure}:8 310: testing if the second compile does not leave our definition intact error ..." 1>&56276 +echo "${as_me:-configure}:8173: testing if the second compile does not leave our definition intact error ..." 1>&5 5784 6277 + 5785 6278 + cat >conftest.$ac_ext <<_ACEOF 5786 +#line 8 313"configure"6279 +#line 8176 "configure" 5787 6280 +#include "confdefs.h" 5788 6281 +#include <sys/types.h> … … 5799 6292 +_ACEOF 5800 6293 +rm -f conftest.$ac_objext 5801 +if { (eval echo "$as_me:8 328: \"$ac_compile\"") >&56294 +if { (eval echo "$as_me:8191: \"$ac_compile\"") >&5 5802 6295 + (eval $ac_compile) 2>&5 5803 6296 + ac_status=$? 5804 + echo "$as_me:8 331: \$? = $ac_status" >&56297 + echo "$as_me:8194: \$? = $ac_status" >&5 5805 6298 + (exit $ac_status); } && 5806 6299 + { ac_try='test -s conftest.$ac_objext' 5807 + { (eval echo "$as_me:8 334: \"$ac_try\"") >&56300 + { (eval echo "$as_me:8197: \"$ac_try\"") >&5 5808 6301 + (eval $ac_try) 2>&5 5809 6302 + ac_status=$? 5810 + echo "$as_me:8 337: \$? = $ac_status" >&56303 + echo "$as_me:8200: \$? = $ac_status" >&5 5811 6304 + (exit $ac_status); }; }; then 5812 6305 + : … … 5824 6317 + 5825 6318 +fi 5826 +echo "$as_me:8 353: result: $cf_cv_posix_c_source" >&56319 +echo "$as_me:8216: result: $cf_cv_posix_c_source" >&5 5827 6320 +echo "${ECHO_T}$cf_cv_posix_c_source" >&6 5828 6321 + … … 5937 6430 +*) 5938 6431 + 5939 +echo "$as_me:8 466: checking if we should define _XOPEN_SOURCE" >&56432 +echo "$as_me:8329: checking if we should define _XOPEN_SOURCE" >&5 5940 6433 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 5941 6434 +if test "${cf_cv_xopen_source+set}" = set; then … … 5944 6437 + 5945 6438 + cat >conftest.$ac_ext <<_ACEOF 5946 +#line 8 473"configure"6439 +#line 8336 "configure" 5947 6440 +#include "confdefs.h" 5948 6441 + … … 5951 6444 +#include <sys/types.h> 5952 6445 + 5953 +int5954 main ()5955 {5956 5957 @@ -7991,16 +8489,16 @@5958 }5959 _ACEOF5960 rm -f conftest.$ac_objext5961 -if { (eval echo "$as_me:7994: \"$ac_compile\"") >&55962 +if { (eval echo "$as_me:8492: \"$ac_compile\"") >&55963 (eval $ac_compile) 2>&55964 ac_status=$?5965 - echo "$as_me:7997: \$? = $ac_status" >&55966 + echo "$as_me:8495: \$? = $ac_status" >&55967 (exit $ac_status); } &&5968 { ac_try='test -s conftest.$ac_objext'5969 - { (eval echo "$as_me:8000: \"$ac_try\"") >&55970 + { (eval echo "$as_me:8498: \"$ac_try\"") >&55971 (eval $ac_try) 2>&55972 ac_status=$?5973 - echo "$as_me:8003: \$? = $ac_status" >&55974 + echo "$as_me:8501: \$? = $ac_status" >&55975 (exit $ac_status); }; }; then5976 cf_cv_xopen_source=no5977 else5978 @@ -8009,9 +8507,13 @@5979 cf_save="$CPPFLAGS"5980 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"5981 cat >conftest.$ac_ext <<_ACEOF5982 -#line 8012 "configure"5983 +#line 8510 "configure"5984 #include "confdefs.h"5985 +5986 +#include <stdlib.h>5987 +#include <string.h>5988 #include <sys/types.h>5989 +5990 int5991 main ()5992 {5993 @@ -8024,16 +8526,16 @@5994 }5995 _ACEOF5996 rm -f conftest.$ac_objext5997 -if { (eval echo "$as_me:8027: \"$ac_compile\"") >&55998 +if { (eval echo "$as_me:8529: \"$ac_compile\"") >&55999 (eval $ac_compile) 2>&56000 ac_status=$?6001 - echo "$as_me:8030: \$? = $ac_status" >&56002 + echo "$as_me:8532: \$? = $ac_status" >&56003 (exit $ac_status); } &&6004 { ac_try='test -s conftest.$ac_objext'6005 - { (eval echo "$as_me:8033: \"$ac_try\"") >&56006 + { (eval echo "$as_me:8535: \"$ac_try\"") >&56007 (eval $ac_try) 2>&56008 ac_status=$?6009 - echo "$as_me:8036: \$? = $ac_status" >&56010 + echo "$as_me:8538: \$? = $ac_status" >&56011 (exit $ac_status); }; }; then6012 cf_cv_xopen_source=no6013 else6014 @@ -8048,9 +8550,10 @@6015 rm -f conftest.$ac_objext conftest.$ac_ext6016 6017 fi6018 -echo "$as_me:8051: result: $cf_cv_xopen_source" >&56019 +echo "$as_me:8553: result: $cf_cv_xopen_source" >&56020 echo "${ECHO_T}$cf_cv_xopen_source" >&66021 - if test "$cf_cv_xopen_source" != no ; then6022 +6023 +if test "$cf_cv_xopen_source" != no ; then6024 6025 CFLAGS=`echo "$CFLAGS" | \6026 sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \6027 @@ -8060,7 +8563,7 @@6028 sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \6029 -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'`6030 6031 - cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"6032 + cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"6033 6034 cf_fix_cppflags=no6035 cf_new_cflags=6036 @@ -8140,7 +8643,7 @@6037 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"6038 fi6039 6040 - fi6041 +fi6042 6043 cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE6044 6045 @@ -8155,16 +8658,16 @@6046 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \6047 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'`6048 6049 -echo "$as_me:8158: checking if we should define _POSIX_C_SOURCE" >&56050 +echo "$as_me:8661: checking if we should define _POSIX_C_SOURCE" >&56051 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&66052 if test "${cf_cv_posix_c_source+set}" = set; then6053 echo $ECHO_N "(cached) $ECHO_C" >&66054 else6055 6056 -echo "${as_me:-configure}:8164: testing if the symbol is already defined go no further ..." 1>&56057 +echo "${as_me:-configure}:8667: testing if the symbol is already defined go no further ..." 1>&56058 6059 cat >conftest.$ac_ext <<_ACEOF6060 -#line 8167 "configure"6061 +#line 8670 "configure"6062 #include "confdefs.h"6063 #include <sys/types.h>6064 int6065 @@ -8179,16 +8682,16 @@6066 }6067 _ACEOF6068 rm -f conftest.$ac_objext6069 -if { (eval echo "$as_me:8182: \"$ac_compile\"") >&56070 +if { (eval echo "$as_me:8685: \"$ac_compile\"") >&56071 (eval $ac_compile) 2>&56072 ac_status=$?6073 - echo "$as_me:8185: \$? = $ac_status" >&56074 + echo "$as_me:8688: \$? = $ac_status" >&56075 (exit $ac_status); } &&6076 { ac_try='test -s conftest.$ac_objext'6077 - { (eval echo "$as_me:8188: \"$ac_try\"") >&56078 + { (eval echo "$as_me:8691: \"$ac_try\"") >&56079 (eval $ac_try) 2>&56080 ac_status=$?6081 - echo "$as_me:8191: \$? = $ac_status" >&56082 + echo "$as_me:8694: \$? = $ac_status" >&56083 (exit $ac_status); }; }; then6084 cf_cv_posix_c_source=no6085 else6086 @@ -8209,7 +8712,7 @@6087 esac6088 if test "$cf_want_posix_source" = yes ; then6089 cat >conftest.$ac_ext <<_ACEOF6090 -#line 8212 "configure"6091 +#line 8715 "configure"6092 #include "confdefs.h"6093 #include <sys/types.h>6094 int6095 @@ -8224,16 +8727,16 @@6096 }6097 _ACEOF6098 rm -f conftest.$ac_objext6099 -if { (eval echo "$as_me:8227: \"$ac_compile\"") >&56100 +if { (eval echo "$as_me:8730: \"$ac_compile\"") >&56101 (eval $ac_compile) 2>&56102 ac_status=$?6103 - echo "$as_me:8230: \$? = $ac_status" >&56104 + echo "$as_me:8733: \$? = $ac_status" >&56105 (exit $ac_status); } &&6106 { ac_try='test -s conftest.$ac_objext'6107 - { (eval echo "$as_me:8233: \"$ac_try\"") >&56108 + { (eval echo "$as_me:8736: \"$ac_try\"") >&56109 (eval $ac_try) 2>&56110 ac_status=$?6111 - echo "$as_me:8236: \$? = $ac_status" >&56112 + echo "$as_me:8739: \$? = $ac_status" >&56113 (exit $ac_status); }; }; then6114 :6115 else6116 @@ -8244,15 +8747,15 @@6117 rm -f conftest.$ac_objext conftest.$ac_ext6118 fi6119 6120 -echo "${as_me:-configure}:8247: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&56121 +echo "${as_me:-configure}:8750: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&56122 6123 CFLAGS="$cf_trim_CFLAGS"6124 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"6125 6126 -echo "${as_me:-configure}:8252: testing if the second compile does not leave our definition intact error ..." 1>&56127 +echo "${as_me:-configure}:8755: testing if the second compile does not leave our definition intact error ..." 1>&56128 6129 cat >conftest.$ac_ext <<_ACEOF6130 -#line 8255 "configure"6131 +#line 8758 "configure"6132 #include "confdefs.h"6133 #include <sys/types.h>6134 int6135 @@ -8267,16 +8770,16 @@6136 }6137 _ACEOF6138 rm -f conftest.$ac_objext6139 -if { (eval echo "$as_me:8270: \"$ac_compile\"") >&56140 +if { (eval echo "$as_me:8773: \"$ac_compile\"") >&56141 (eval $ac_compile) 2>&56142 ac_status=$?6143 - echo "$as_me:8273: \$? = $ac_status" >&56144 + echo "$as_me:8776: \$? = $ac_status" >&56145 (exit $ac_status); } &&6146 { ac_try='test -s conftest.$ac_objext'6147 - { (eval echo "$as_me:8276: \"$ac_try\"") >&56148 + { (eval echo "$as_me:8779: \"$ac_try\"") >&56149 (eval $ac_try) 2>&56150 ac_status=$?6151 - echo "$as_me:8279: \$? = $ac_status" >&56152 + echo "$as_me:8782: \$? = $ac_status" >&56153 (exit $ac_status); }; }; then6154 :6155 else6156 @@ -8292,7 +8795,7 @@6157 rm -f conftest.$ac_objext conftest.$ac_ext6158 6159 fi6160 -echo "$as_me:8295: result: $cf_cv_posix_c_source" >&56161 +echo "$as_me:8798: result: $cf_cv_posix_c_source" >&56162 echo "${ECHO_T}$cf_cv_posix_c_source" >&66163 6164 if test "$cf_cv_posix_c_source" != no ; then6165 @@ -8464,6 +8967,273 @@6166 6167 fi6168 6169 +if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then6170 + echo "$as_me:8971: checking if _XOPEN_SOURCE really is set" >&56171 +echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&66172 + cat >conftest.$ac_ext <<_ACEOF6173 +#line 8974 "configure"6174 +#include "confdefs.h"6175 +#include <stdlib.h>6176 6446 +int 6177 6447 +main () … … 6186 6456 +_ACEOF 6187 6457 +rm -f conftest.$ac_objext 6188 +if { (eval echo "$as_me:8 989: \"$ac_compile\"") >&56458 +if { (eval echo "$as_me:8355: \"$ac_compile\"") >&5 6189 6459 + (eval $ac_compile) 2>&5 6190 6460 + ac_status=$? 6191 + echo "$as_me:8 992: \$? = $ac_status" >&56461 + echo "$as_me:8358: \$? = $ac_status" >&5 6192 6462 + (exit $ac_status); } && 6193 6463 + { ac_try='test -s conftest.$ac_objext' 6194 + { (eval echo "$as_me:8 995: \"$ac_try\"") >&56464 + { (eval echo "$as_me:8361: \"$ac_try\"") >&5 6195 6465 + (eval $ac_try) 2>&5 6196 6466 + ac_status=$? 6197 + echo "$as_me:8998: \$? = $ac_status" >&5 6198 + (exit $ac_status); }; }; then 6199 + cf_XOPEN_SOURCE_set=yes 6200 +else 6201 + echo "$as_me: failed program was:" >&5 6202 +cat conftest.$ac_ext >&5 6203 +cf_XOPEN_SOURCE_set=no 6204 +fi 6205 +rm -f conftest.$ac_objext conftest.$ac_ext 6206 + echo "$as_me:9007: result: $cf_XOPEN_SOURCE_set" >&5 6207 +echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 6208 + if test $cf_XOPEN_SOURCE_set = yes 6209 + then 6210 + cat >conftest.$ac_ext <<_ACEOF 6211 +#line 9012 "configure" 6212 +#include "confdefs.h" 6213 +#include <stdlib.h> 6214 +int 6215 +main () 6216 +{ 6217 + 6218 +#if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE 6219 +make an error 6220 +#endif 6221 + ; 6222 + return 0; 6223 +} 6224 +_ACEOF 6225 +rm -f conftest.$ac_objext 6226 +if { (eval echo "$as_me:9027: \"$ac_compile\"") >&5 6227 + (eval $ac_compile) 2>&5 6228 + ac_status=$? 6229 + echo "$as_me:9030: \$? = $ac_status" >&5 6230 + (exit $ac_status); } && 6231 + { ac_try='test -s conftest.$ac_objext' 6232 + { (eval echo "$as_me:9033: \"$ac_try\"") >&5 6233 + (eval $ac_try) 2>&5 6234 + ac_status=$? 6235 + echo "$as_me:9036: \$? = $ac_status" >&5 6236 + (exit $ac_status); }; }; then 6237 + cf_XOPEN_SOURCE_set_ok=yes 6238 +else 6239 + echo "$as_me: failed program was:" >&5 6240 +cat conftest.$ac_ext >&5 6241 +cf_XOPEN_SOURCE_set_ok=no 6242 +fi 6243 +rm -f conftest.$ac_objext conftest.$ac_ext 6244 + if test $cf_XOPEN_SOURCE_set_ok = no 6245 + then 6246 + { echo "$as_me:9047: WARNING: _XOPEN_SOURCE is lower than requested" >&5 6247 +echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} 6248 + fi 6249 + else 6250 + 6251 +echo "$as_me:9052: checking if we should define _XOPEN_SOURCE" >&5 6252 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 6253 +if test "${cf_cv_xopen_source+set}" = set; then 6254 + echo $ECHO_N "(cached) $ECHO_C" >&6 6255 +else 6256 + 6257 + cat >conftest.$ac_ext <<_ACEOF 6258 +#line 9059 "configure" 6259 +#include "confdefs.h" 6260 + 6261 +#include <stdlib.h> 6262 +#include <string.h> 6263 +#include <sys/types.h> 6264 + 6265 +int 6266 +main () 6267 +{ 6268 + 6269 +#ifndef _XOPEN_SOURCE 6270 +make an error 6271 +#endif 6272 + ; 6273 + return 0; 6274 +} 6275 +_ACEOF 6276 +rm -f conftest.$ac_objext 6277 +if { (eval echo "$as_me:9078: \"$ac_compile\"") >&5 6278 + (eval $ac_compile) 2>&5 6279 + ac_status=$? 6280 + echo "$as_me:9081: \$? = $ac_status" >&5 6281 + (exit $ac_status); } && 6282 + { ac_try='test -s conftest.$ac_objext' 6283 + { (eval echo "$as_me:9084: \"$ac_try\"") >&5 6284 + (eval $ac_try) 2>&5 6285 + ac_status=$? 6286 + echo "$as_me:9087: \$? = $ac_status" >&5 6467 + echo "$as_me:8364: \$? = $ac_status" >&5 6287 6468 + (exit $ac_status); }; }; then 6288 6469 + cf_cv_xopen_source=no … … 6293 6474 + CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" 6294 6475 + cat >conftest.$ac_ext <<_ACEOF 6295 +#line 9096"configure"6476 +#line 8373 "configure" 6296 6477 +#include "confdefs.h" 6297 6478 + … … 6312 6493 +_ACEOF 6313 6494 +rm -f conftest.$ac_objext 6314 +if { (eval echo "$as_me: 9115: \"$ac_compile\"") >&56495 +if { (eval echo "$as_me:8392: \"$ac_compile\"") >&5 6315 6496 + (eval $ac_compile) 2>&5 6316 6497 + ac_status=$? 6317 + echo "$as_me: 9118: \$? = $ac_status" >&56498 + echo "$as_me:8395: \$? = $ac_status" >&5 6318 6499 + (exit $ac_status); } && 6319 6500 + { ac_try='test -s conftest.$ac_objext' 6320 + { (eval echo "$as_me: 9121: \"$ac_try\"") >&56501 + { (eval echo "$as_me:8398: \"$ac_try\"") >&5 6321 6502 + (eval $ac_try) 2>&5 6322 6503 + ac_status=$? 6323 + echo "$as_me: 9124: \$? = $ac_status" >&56504 + echo "$as_me:8401: \$? = $ac_status" >&5 6324 6505 + (exit $ac_status); }; }; then 6325 6506 + cf_cv_xopen_source=no … … 6331 6512 +rm -f conftest.$ac_objext conftest.$ac_ext 6332 6513 + CPPFLAGS="$cf_save" 6333 + 6514 6515 fi 6516 rm -f conftest.$ac_objext conftest.$ac_ext 6517 6518 fi 6519 -echo "$as_me:8051: result: $cf_cv_xopen_source" >&5 6520 +echo "$as_me:8416: result: $cf_cv_xopen_source" >&5 6521 echo "${ECHO_T}$cf_cv_xopen_source" >&6 6522 - if test "$cf_cv_xopen_source" != no ; then 6523 + 6524 +if test "$cf_cv_xopen_source" != no ; then 6525 6526 CFLAGS=`echo "$CFLAGS" | \ 6527 sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6528 @@ -8060,7 +8426,7 @@ 6529 sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6530 -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 6531 6532 - cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 6533 + cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 6534 6535 cf_fix_cppflags=no 6536 cf_new_cflags= 6537 @@ -8140,7 +8506,7 @@ 6538 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 6539 fi 6540 6541 - fi 6334 6542 +fi 6335 +rm -f conftest.$ac_objext conftest.$ac_ext 6336 + 6543 6544 cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE 6545 6546 @@ -8155,16 +8521,16 @@ 6547 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6548 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` 6549 6550 -echo "$as_me:8158: checking if we should define _POSIX_C_SOURCE" >&5 6551 +echo "$as_me:8524: checking if we should define _POSIX_C_SOURCE" >&5 6552 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 6553 if test "${cf_cv_posix_c_source+set}" = set; then 6554 echo $ECHO_N "(cached) $ECHO_C" >&6 6555 else 6556 6557 -echo "${as_me:-configure}:8164: testing if the symbol is already defined go no further ..." 1>&5 6558 +echo "${as_me:-configure}:8530: testing if the symbol is already defined go no further ..." 1>&5 6559 6560 cat >conftest.$ac_ext <<_ACEOF 6561 -#line 8167 "configure" 6562 +#line 8533 "configure" 6563 #include "confdefs.h" 6564 #include <sys/types.h> 6565 int 6566 @@ -8179,16 +8545,16 @@ 6567 } 6568 _ACEOF 6569 rm -f conftest.$ac_objext 6570 -if { (eval echo "$as_me:8182: \"$ac_compile\"") >&5 6571 +if { (eval echo "$as_me:8548: \"$ac_compile\"") >&5 6572 (eval $ac_compile) 2>&5 6573 ac_status=$? 6574 - echo "$as_me:8185: \$? = $ac_status" >&5 6575 + echo "$as_me:8551: \$? = $ac_status" >&5 6576 (exit $ac_status); } && 6577 { ac_try='test -s conftest.$ac_objext' 6578 - { (eval echo "$as_me:8188: \"$ac_try\"") >&5 6579 + { (eval echo "$as_me:8554: \"$ac_try\"") >&5 6580 (eval $ac_try) 2>&5 6581 ac_status=$? 6582 - echo "$as_me:8191: \$? = $ac_status" >&5 6583 + echo "$as_me:8557: \$? = $ac_status" >&5 6584 (exit $ac_status); }; }; then 6585 cf_cv_posix_c_source=no 6586 else 6587 @@ -8209,7 +8575,7 @@ 6588 esac 6589 if test "$cf_want_posix_source" = yes ; then 6590 cat >conftest.$ac_ext <<_ACEOF 6591 -#line 8212 "configure" 6592 +#line 8578 "configure" 6593 #include "confdefs.h" 6594 #include <sys/types.h> 6595 int 6596 @@ -8224,16 +8590,16 @@ 6597 } 6598 _ACEOF 6599 rm -f conftest.$ac_objext 6600 -if { (eval echo "$as_me:8227: \"$ac_compile\"") >&5 6601 +if { (eval echo "$as_me:8593: \"$ac_compile\"") >&5 6602 (eval $ac_compile) 2>&5 6603 ac_status=$? 6604 - echo "$as_me:8230: \$? = $ac_status" >&5 6605 + echo "$as_me:8596: \$? = $ac_status" >&5 6606 (exit $ac_status); } && 6607 { ac_try='test -s conftest.$ac_objext' 6608 - { (eval echo "$as_me:8233: \"$ac_try\"") >&5 6609 + { (eval echo "$as_me:8599: \"$ac_try\"") >&5 6610 (eval $ac_try) 2>&5 6611 ac_status=$? 6612 - echo "$as_me:8236: \$? = $ac_status" >&5 6613 + echo "$as_me:8602: \$? = $ac_status" >&5 6614 (exit $ac_status); }; }; then 6615 : 6616 else 6617 @@ -8244,15 +8610,15 @@ 6618 rm -f conftest.$ac_objext conftest.$ac_ext 6619 fi 6620 6621 -echo "${as_me:-configure}:8247: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 6622 +echo "${as_me:-configure}:8613: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 6623 6624 CFLAGS="$cf_trim_CFLAGS" 6625 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 6626 6627 -echo "${as_me:-configure}:8252: testing if the second compile does not leave our definition intact error ..." 1>&5 6628 +echo "${as_me:-configure}:8618: testing if the second compile does not leave our definition intact error ..." 1>&5 6629 6630 cat >conftest.$ac_ext <<_ACEOF 6631 -#line 8255 "configure" 6632 +#line 8621 "configure" 6633 #include "confdefs.h" 6634 #include <sys/types.h> 6635 int 6636 @@ -8267,16 +8633,16 @@ 6637 } 6638 _ACEOF 6639 rm -f conftest.$ac_objext 6640 -if { (eval echo "$as_me:8270: \"$ac_compile\"") >&5 6641 +if { (eval echo "$as_me:8636: \"$ac_compile\"") >&5 6642 (eval $ac_compile) 2>&5 6643 ac_status=$? 6644 - echo "$as_me:8273: \$? = $ac_status" >&5 6645 + echo "$as_me:8639: \$? = $ac_status" >&5 6646 (exit $ac_status); } && 6647 { ac_try='test -s conftest.$ac_objext' 6648 - { (eval echo "$as_me:8276: \"$ac_try\"") >&5 6649 + { (eval echo "$as_me:8642: \"$ac_try\"") >&5 6650 (eval $ac_try) 2>&5 6651 ac_status=$? 6652 - echo "$as_me:8279: \$? = $ac_status" >&5 6653 + echo "$as_me:8645: \$? = $ac_status" >&5 6654 (exit $ac_status); }; }; then 6655 : 6656 else 6657 @@ -8292,7 +8658,7 @@ 6658 rm -f conftest.$ac_objext conftest.$ac_ext 6659 6660 fi 6661 -echo "$as_me:8295: result: $cf_cv_posix_c_source" >&5 6662 +echo "$as_me:8661: result: $cf_cv_posix_c_source" >&5 6663 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 6664 6665 if test "$cf_cv_posix_c_source" != no ; then 6666 @@ -8362,34 +8728,298 @@ 6667 esac 6668 done 6669 6670 -if test -n "$cf_new_cflags" ; then 6671 +if test -n "$cf_new_cflags" ; then 6672 + 6673 + CFLAGS="$CFLAGS $cf_new_cflags" 6337 6674 +fi 6338 +echo "$as_me:9139: result: $cf_cv_xopen_source" >&5 6339 +echo "${ECHO_T}$cf_cv_xopen_source" >&6 6340 + 6341 +if test "$cf_cv_xopen_source" != no ; then 6342 + 6343 +CFLAGS=`echo "$CFLAGS" | \ 6344 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6345 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 6346 + 6347 +CPPFLAGS=`echo "$CPPFLAGS" | \ 6348 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6349 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 6350 + 6351 + cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 6675 + 6676 +if test -n "$cf_new_cppflags" ; then 6677 + 6678 + CPPFLAGS="$CPPFLAGS $cf_new_cppflags" 6679 +fi 6680 + 6681 +if test -n "$cf_new_extra_cppflags" ; then 6682 + 6683 + EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 6684 +fi 6685 + 6686 +fi 6687 + 6688 + ;; 6689 +esac 6690 + 6691 +if test -n "$cf_xopen_source" ; then 6352 6692 + 6353 6693 +cf_fix_cppflags=no … … 6356 6696 +cf_new_extra_cppflags= 6357 6697 + 6358 +for cf_add_cflags in $cf_ temp_xopen_source6698 +for cf_add_cflags in $cf_xopen_source 6359 6699 +do 6360 6700 +case $cf_fix_cppflags in … … 6431 6771 +fi 6432 6772 + 6773 +if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then 6774 + echo "$as_me:8834: checking if _XOPEN_SOURCE really is set" >&5 6775 +echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 6776 + cat >conftest.$ac_ext <<_ACEOF 6777 +#line 8837 "configure" 6778 +#include "confdefs.h" 6779 +#include <stdlib.h> 6780 +int 6781 +main () 6782 +{ 6783 + 6784 +#ifndef _XOPEN_SOURCE 6785 +make an error 6786 +#endif 6787 + ; 6788 + return 0; 6789 +} 6790 +_ACEOF 6791 +rm -f conftest.$ac_objext 6792 +if { (eval echo "$as_me:8852: \"$ac_compile\"") >&5 6793 + (eval $ac_compile) 2>&5 6794 + ac_status=$? 6795 + echo "$as_me:8855: \$? = $ac_status" >&5 6796 + (exit $ac_status); } && 6797 + { ac_try='test -s conftest.$ac_objext' 6798 + { (eval echo "$as_me:8858: \"$ac_try\"") >&5 6799 + (eval $ac_try) 2>&5 6800 + ac_status=$? 6801 + echo "$as_me:8861: \$? = $ac_status" >&5 6802 + (exit $ac_status); }; }; then 6803 + cf_XOPEN_SOURCE_set=yes 6804 +else 6805 + echo "$as_me: failed program was:" >&5 6806 +cat conftest.$ac_ext >&5 6807 +cf_XOPEN_SOURCE_set=no 6808 +fi 6809 +rm -f conftest.$ac_objext conftest.$ac_ext 6810 + echo "$as_me:8870: result: $cf_XOPEN_SOURCE_set" >&5 6811 +echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 6812 + if test $cf_XOPEN_SOURCE_set = yes 6813 + then 6814 + cat >conftest.$ac_ext <<_ACEOF 6815 +#line 8875 "configure" 6816 +#include "confdefs.h" 6817 +#include <stdlib.h> 6818 +int 6819 +main () 6820 +{ 6821 + 6822 +#if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE 6823 +make an error 6824 +#endif 6825 + ; 6826 + return 0; 6827 +} 6828 +_ACEOF 6829 +rm -f conftest.$ac_objext 6830 +if { (eval echo "$as_me:8890: \"$ac_compile\"") >&5 6831 + (eval $ac_compile) 2>&5 6832 + ac_status=$? 6833 + echo "$as_me:8893: \$? = $ac_status" >&5 6834 + (exit $ac_status); } && 6835 + { ac_try='test -s conftest.$ac_objext' 6836 + { (eval echo "$as_me:8896: \"$ac_try\"") >&5 6837 + (eval $ac_try) 2>&5 6838 + ac_status=$? 6839 + echo "$as_me:8899: \$? = $ac_status" >&5 6840 + (exit $ac_status); }; }; then 6841 + cf_XOPEN_SOURCE_set_ok=yes 6842 +else 6843 + echo "$as_me: failed program was:" >&5 6844 +cat conftest.$ac_ext >&5 6845 +cf_XOPEN_SOURCE_set_ok=no 6846 +fi 6847 +rm -f conftest.$ac_objext conftest.$ac_ext 6848 + if test $cf_XOPEN_SOURCE_set_ok = no 6849 + then 6850 + { echo "$as_me:8910: WARNING: _XOPEN_SOURCE is lower than requested" >&5 6851 +echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} 6852 + fi 6853 + else 6854 + 6855 +echo "$as_me:8915: checking if we should define _XOPEN_SOURCE" >&5 6856 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 6857 +if test "${cf_cv_xopen_source+set}" = set; then 6858 + echo $ECHO_N "(cached) $ECHO_C" >&6 6859 +else 6860 + 6861 + cat >conftest.$ac_ext <<_ACEOF 6862 +#line 8922 "configure" 6863 +#include "confdefs.h" 6864 + 6865 +#include <stdlib.h> 6866 +#include <string.h> 6867 +#include <sys/types.h> 6868 + 6869 +int 6870 +main () 6871 +{ 6872 + 6873 +#ifndef _XOPEN_SOURCE 6874 +make an error 6875 +#endif 6876 + ; 6877 + return 0; 6878 +} 6879 +_ACEOF 6880 +rm -f conftest.$ac_objext 6881 +if { (eval echo "$as_me:8941: \"$ac_compile\"") >&5 6882 + (eval $ac_compile) 2>&5 6883 + ac_status=$? 6884 + echo "$as_me:8944: \$? = $ac_status" >&5 6885 + (exit $ac_status); } && 6886 + { ac_try='test -s conftest.$ac_objext' 6887 + { (eval echo "$as_me:8947: \"$ac_try\"") >&5 6888 + (eval $ac_try) 2>&5 6889 + ac_status=$? 6890 + echo "$as_me:8950: \$? = $ac_status" >&5 6891 + (exit $ac_status); }; }; then 6892 + cf_cv_xopen_source=no 6893 +else 6894 + echo "$as_me: failed program was:" >&5 6895 +cat conftest.$ac_ext >&5 6896 +cf_save="$CPPFLAGS" 6897 + CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" 6898 + cat >conftest.$ac_ext <<_ACEOF 6899 +#line 8959 "configure" 6900 +#include "confdefs.h" 6901 6902 - CFLAGS="$CFLAGS $cf_new_cflags" 6903 -fi 6904 +#include <stdlib.h> 6905 +#include <string.h> 6906 +#include <sys/types.h> 6907 6908 -if test -n "$cf_new_cppflags" ; then 6909 +int 6910 +main () 6911 +{ 6912 6913 - CPPFLAGS="$CPPFLAGS $cf_new_cppflags" 6914 +#ifdef _XOPEN_SOURCE 6915 +make an error 6916 +#endif 6917 + ; 6918 + return 0; 6919 +} 6920 +_ACEOF 6921 +rm -f conftest.$ac_objext 6922 +if { (eval echo "$as_me:8978: \"$ac_compile\"") >&5 6923 + (eval $ac_compile) 2>&5 6924 + ac_status=$? 6925 + echo "$as_me:8981: \$? = $ac_status" >&5 6926 + (exit $ac_status); } && 6927 + { ac_try='test -s conftest.$ac_objext' 6928 + { (eval echo "$as_me:8984: \"$ac_try\"") >&5 6929 + (eval $ac_try) 2>&5 6930 + ac_status=$? 6931 + echo "$as_me:8987: \$? = $ac_status" >&5 6932 + (exit $ac_status); }; }; then 6933 + cf_cv_xopen_source=no 6934 +else 6935 + echo "$as_me: failed program was:" >&5 6936 +cat conftest.$ac_ext >&5 6937 +cf_cv_xopen_source=$cf_XOPEN_SOURCE 6938 fi 6939 +rm -f conftest.$ac_objext conftest.$ac_ext 6940 + CPPFLAGS="$cf_save" 6941 6942 -if test -n "$cf_new_extra_cppflags" ; then 6943 - 6944 - EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 6945 fi 6946 +rm -f conftest.$ac_objext conftest.$ac_ext 6947 6948 fi 6949 +echo "$as_me:9002: result: $cf_cv_xopen_source" >&5 6950 +echo "${ECHO_T}$cf_cv_xopen_source" >&6 6951 6952 - ;; 6953 -esac 6954 +if test "$cf_cv_xopen_source" != no ; then 6955 6956 -if test -n "$cf_xopen_source" ; then 6957 +CFLAGS=`echo "$CFLAGS" | \ 6958 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6959 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 6960 + 6961 +CPPFLAGS=`echo "$CPPFLAGS" | \ 6962 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 6963 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 6964 + 6965 + cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 6966 6967 cf_fix_cppflags=no 6968 cf_new_cflags= 6969 cf_new_cppflags= 6970 cf_new_extra_cppflags= 6971 6972 -for cf_add_cflags in $cf_xopen_source 6973 +for cf_add_cflags in $cf_temp_xopen_source 6974 do 6975 case $cf_fix_cppflags in 6976 no) 6977 @@ -8464,6 +9094,9 @@ 6978 6979 fi 6980 6433 6981 + fi 6434 6982 +fi … … 6437 6985 if test "${enable_largefile+set}" = set; then 6438 6986 enableval="$enable_largefile" 6439 @@ -8471,7 +9 241,7 @@6987 @@ -8471,7 +9104,7 @@ 6440 6988 fi; 6441 6989 if test "$enable_largefile" != no; then 6442 6990 6443 6991 - echo "$as_me:8474: checking for special C compiler options needed for large files" >&5 6444 + echo "$as_me:9 244: checking for special C compiler options needed for large files" >&56992 + echo "$as_me:9107: checking for special C compiler options needed for large files" >&5 6445 6993 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 6446 6994 if test "${ac_cv_sys_largefile_CC+set}" = set; then 6447 6995 echo $ECHO_N "(cached) $ECHO_C" >&6 6448 @@ -8483,7 +9 253,7 @@6996 @@ -8483,7 +9116,7 @@ 6449 6997 # IRIX 6.2 and later do not support large files by default, 6450 6998 # so use the C compiler's -n32 option if that helps. 6451 6999 cat >conftest.$ac_ext <<_ACEOF 6452 7000 -#line 8486 "configure" 6453 +#line 9 256"configure"7001 +#line 9119 "configure" 6454 7002 #include "confdefs.h" 6455 7003 #include <sys/types.h> 6456 7004 /* Check that off_t can represent 2**63 - 1 correctly. 6457 @@ -8503,16 +9 273,16 @@7005 @@ -8503,16 +9136,16 @@ 6458 7006 } 6459 7007 _ACEOF 6460 7008 rm -f conftest.$ac_objext 6461 7009 -if { (eval echo "$as_me:8506: \"$ac_compile\"") >&5 6462 +if { (eval echo "$as_me:9 276: \"$ac_compile\"") >&57010 +if { (eval echo "$as_me:9139: \"$ac_compile\"") >&5 6463 7011 (eval $ac_compile) 2>&5 6464 7012 ac_status=$? 6465 7013 - echo "$as_me:8509: \$? = $ac_status" >&5 6466 + echo "$as_me:9 279: \$? = $ac_status" >&57014 + echo "$as_me:9142: \$? = $ac_status" >&5 6467 7015 (exit $ac_status); } && 6468 7016 { ac_try='test -s conftest.$ac_objext' 6469 7017 - { (eval echo "$as_me:8512: \"$ac_try\"") >&5 6470 + { (eval echo "$as_me:9 282: \"$ac_try\"") >&57018 + { (eval echo "$as_me:9145: \"$ac_try\"") >&5 6471 7019 (eval $ac_try) 2>&5 6472 7020 ac_status=$? 6473 7021 - echo "$as_me:8515: \$? = $ac_status" >&5 6474 + echo "$as_me:9 285: \$? = $ac_status" >&57022 + echo "$as_me:9148: \$? = $ac_status" >&5 6475 7023 (exit $ac_status); }; }; then 6476 7024 break 6477 7025 else 6478 @@ -8522,16 +9 292,16 @@7026 @@ -8522,16 +9155,16 @@ 6479 7027 rm -f conftest.$ac_objext 6480 7028 CC="$CC -n32" 6481 7029 rm -f conftest.$ac_objext 6482 7030 -if { (eval echo "$as_me:8525: \"$ac_compile\"") >&5 6483 +if { (eval echo "$as_me:9 295: \"$ac_compile\"") >&57031 +if { (eval echo "$as_me:9158: \"$ac_compile\"") >&5 6484 7032 (eval $ac_compile) 2>&5 6485 7033 ac_status=$? 6486 7034 - echo "$as_me:8528: \$? = $ac_status" >&5 6487 + echo "$as_me:9 298: \$? = $ac_status" >&57035 + echo "$as_me:9161: \$? = $ac_status" >&5 6488 7036 (exit $ac_status); } && 6489 7037 { ac_try='test -s conftest.$ac_objext' 6490 7038 - { (eval echo "$as_me:8531: \"$ac_try\"") >&5 6491 + { (eval echo "$as_me:9 301: \"$ac_try\"") >&57039 + { (eval echo "$as_me:9164: \"$ac_try\"") >&5 6492 7040 (eval $ac_try) 2>&5 6493 7041 ac_status=$? 6494 7042 - echo "$as_me:8534: \$? = $ac_status" >&5 6495 + echo "$as_me:9 304: \$? = $ac_status" >&57043 + echo "$as_me:9167: \$? = $ac_status" >&5 6496 7044 (exit $ac_status); }; }; then 6497 7045 ac_cv_sys_largefile_CC=' -n32'; break 6498 7046 else 6499 @@ -8545,13 +9 315,13 @@7047 @@ -8545,13 +9178,13 @@ 6500 7048 rm -f conftest.$ac_ext 6501 7049 fi 6502 7050 fi 6503 7051 -echo "$as_me:8548: result: $ac_cv_sys_largefile_CC" >&5 6504 +echo "$as_me:9 318: result: $ac_cv_sys_largefile_CC" >&57052 +echo "$as_me:9181: result: $ac_cv_sys_largefile_CC" >&5 6505 7053 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 6506 7054 if test "$ac_cv_sys_largefile_CC" != no; then … … 6509 7057 6510 7058 - echo "$as_me:8554: checking for _FILE_OFFSET_BITS value needed for large files" >&5 6511 + echo "$as_me:9 324: checking for _FILE_OFFSET_BITS value needed for large files" >&57059 + echo "$as_me:9187: checking for _FILE_OFFSET_BITS value needed for large files" >&5 6512 7060 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 6513 7061 if test "${ac_cv_sys_file_offset_bits+set}" = set; then 6514 7062 echo $ECHO_N "(cached) $ECHO_C" >&6 6515 @@ -8559,7 +9 329,7 @@7063 @@ -8559,7 +9192,7 @@ 6516 7064 while :; do 6517 7065 ac_cv_sys_file_offset_bits=no 6518 7066 cat >conftest.$ac_ext <<_ACEOF 6519 7067 -#line 8562 "configure" 6520 +#line 9 332"configure"7068 +#line 9195 "configure" 6521 7069 #include "confdefs.h" 6522 7070 #include <sys/types.h> 6523 7071 /* Check that off_t can represent 2**63 - 1 correctly. 6524 @@ -8579,16 +9 349,16 @@7072 @@ -8579,16 +9212,16 @@ 6525 7073 } 6526 7074 _ACEOF 6527 7075 rm -f conftest.$ac_objext 6528 7076 -if { (eval echo "$as_me:8582: \"$ac_compile\"") >&5 6529 +if { (eval echo "$as_me:9 352: \"$ac_compile\"") >&57077 +if { (eval echo "$as_me:9215: \"$ac_compile\"") >&5 6530 7078 (eval $ac_compile) 2>&5 6531 7079 ac_status=$? 6532 7080 - echo "$as_me:8585: \$? = $ac_status" >&5 6533 + echo "$as_me:9 355: \$? = $ac_status" >&57081 + echo "$as_me:9218: \$? = $ac_status" >&5 6534 7082 (exit $ac_status); } && 6535 7083 { ac_try='test -s conftest.$ac_objext' 6536 7084 - { (eval echo "$as_me:8588: \"$ac_try\"") >&5 6537 + { (eval echo "$as_me:9 358: \"$ac_try\"") >&57085 + { (eval echo "$as_me:9221: \"$ac_try\"") >&5 6538 7086 (eval $ac_try) 2>&5 6539 7087 ac_status=$? 6540 7088 - echo "$as_me:8591: \$? = $ac_status" >&5 6541 + echo "$as_me:9 361: \$? = $ac_status" >&57089 + echo "$as_me:9224: \$? = $ac_status" >&5 6542 7090 (exit $ac_status); }; }; then 6543 7091 break 6544 7092 else 6545 @@ -8597,7 +9 367,7 @@7093 @@ -8597,7 +9230,7 @@ 6546 7094 fi 6547 7095 rm -f conftest.$ac_objext conftest.$ac_ext 6548 7096 cat >conftest.$ac_ext <<_ACEOF 6549 7097 -#line 8600 "configure" 6550 +#line 9 370"configure"7098 +#line 9233 "configure" 6551 7099 #include "confdefs.h" 6552 7100 #define _FILE_OFFSET_BITS 64 6553 7101 #include <sys/types.h> 6554 @@ -8618,16 +9 388,16 @@7102 @@ -8618,16 +9251,16 @@ 6555 7103 } 6556 7104 _ACEOF 6557 7105 rm -f conftest.$ac_objext 6558 7106 -if { (eval echo "$as_me:8621: \"$ac_compile\"") >&5 6559 +if { (eval echo "$as_me:9 391: \"$ac_compile\"") >&57107 +if { (eval echo "$as_me:9254: \"$ac_compile\"") >&5 6560 7108 (eval $ac_compile) 2>&5 6561 7109 ac_status=$? 6562 7110 - echo "$as_me:8624: \$? = $ac_status" >&5 6563 + echo "$as_me:9 394: \$? = $ac_status" >&57111 + echo "$as_me:9257: \$? = $ac_status" >&5 6564 7112 (exit $ac_status); } && 6565 7113 { ac_try='test -s conftest.$ac_objext' 6566 7114 - { (eval echo "$as_me:8627: \"$ac_try\"") >&5 6567 + { (eval echo "$as_me:9 397: \"$ac_try\"") >&57115 + { (eval echo "$as_me:9260: \"$ac_try\"") >&5 6568 7116 (eval $ac_try) 2>&5 6569 7117 ac_status=$? 6570 7118 - echo "$as_me:8630: \$? = $ac_status" >&5 6571 + echo "$as_me:9 400: \$? = $ac_status" >&57119 + echo "$as_me:9263: \$? = $ac_status" >&5 6572 7120 (exit $ac_status); }; }; then 6573 7121 ac_cv_sys_file_offset_bits=64; break 6574 7122 else 6575 @@ -8638,7 +9 408,7 @@7123 @@ -8638,7 +9271,7 @@ 6576 7124 break 6577 7125 done 6578 7126 fi 6579 7127 -echo "$as_me:8641: result: $ac_cv_sys_file_offset_bits" >&5 6580 +echo "$as_me:9 411: result: $ac_cv_sys_file_offset_bits" >&57128 +echo "$as_me:9274: result: $ac_cv_sys_file_offset_bits" >&5 6581 7129 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 6582 7130 if test "$ac_cv_sys_file_offset_bits" != no; then 6583 7131 6584 @@ -8648,7 +9 418,7 @@7132 @@ -8648,7 +9281,7 @@ 6585 7133 6586 7134 fi 6587 7135 rm -rf conftest* 6588 7136 - echo "$as_me:8651: checking for _LARGE_FILES value needed for large files" >&5 6589 + echo "$as_me:9 421: checking for _LARGE_FILES value needed for large files" >&57137 + echo "$as_me:9284: checking for _LARGE_FILES value needed for large files" >&5 6590 7138 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 6591 7139 if test "${ac_cv_sys_large_files+set}" = set; then 6592 7140 echo $ECHO_N "(cached) $ECHO_C" >&6 6593 @@ -8656,7 +9 426,7 @@7141 @@ -8656,7 +9289,7 @@ 6594 7142 while :; do 6595 7143 ac_cv_sys_large_files=no 6596 7144 cat >conftest.$ac_ext <<_ACEOF 6597 7145 -#line 8659 "configure" 6598 +#line 9 429"configure"7146 +#line 9292 "configure" 6599 7147 #include "confdefs.h" 6600 7148 #include <sys/types.h> 6601 7149 /* Check that off_t can represent 2**63 - 1 correctly. 6602 @@ -8676,16 +9 446,16 @@7150 @@ -8676,16 +9309,16 @@ 6603 7151 } 6604 7152 _ACEOF 6605 7153 rm -f conftest.$ac_objext 6606 7154 -if { (eval echo "$as_me:8679: \"$ac_compile\"") >&5 6607 +if { (eval echo "$as_me:9 449: \"$ac_compile\"") >&57155 +if { (eval echo "$as_me:9312: \"$ac_compile\"") >&5 6608 7156 (eval $ac_compile) 2>&5 6609 7157 ac_status=$? 6610 7158 - echo "$as_me:8682: \$? = $ac_status" >&5 6611 + echo "$as_me:9 452: \$? = $ac_status" >&57159 + echo "$as_me:9315: \$? = $ac_status" >&5 6612 7160 (exit $ac_status); } && 6613 7161 { ac_try='test -s conftest.$ac_objext' 6614 7162 - { (eval echo "$as_me:8685: \"$ac_try\"") >&5 6615 + { (eval echo "$as_me:9 455: \"$ac_try\"") >&57163 + { (eval echo "$as_me:9318: \"$ac_try\"") >&5 6616 7164 (eval $ac_try) 2>&5 6617 7165 ac_status=$? 6618 7166 - echo "$as_me:8688: \$? = $ac_status" >&5 6619 + echo "$as_me:9 458: \$? = $ac_status" >&57167 + echo "$as_me:9321: \$? = $ac_status" >&5 6620 7168 (exit $ac_status); }; }; then 6621 7169 break 6622 7170 else 6623 @@ -8694,7 +9 464,7 @@7171 @@ -8694,7 +9327,7 @@ 6624 7172 fi 6625 7173 rm -f conftest.$ac_objext conftest.$ac_ext 6626 7174 cat >conftest.$ac_ext <<_ACEOF 6627 7175 -#line 8697 "configure" 6628 +#line 9 467"configure"7176 +#line 9330 "configure" 6629 7177 #include "confdefs.h" 6630 7178 #define _LARGE_FILES 1 6631 7179 #include <sys/types.h> 6632 @@ -8715,16 +9 485,16 @@7180 @@ -8715,16 +9348,16 @@ 6633 7181 } 6634 7182 _ACEOF 6635 7183 rm -f conftest.$ac_objext 6636 7184 -if { (eval echo "$as_me:8718: \"$ac_compile\"") >&5 6637 +if { (eval echo "$as_me:9 488: \"$ac_compile\"") >&57185 +if { (eval echo "$as_me:9351: \"$ac_compile\"") >&5 6638 7186 (eval $ac_compile) 2>&5 6639 7187 ac_status=$? 6640 7188 - echo "$as_me:8721: \$? = $ac_status" >&5 6641 + echo "$as_me:9 491: \$? = $ac_status" >&57189 + echo "$as_me:9354: \$? = $ac_status" >&5 6642 7190 (exit $ac_status); } && 6643 7191 { ac_try='test -s conftest.$ac_objext' 6644 7192 - { (eval echo "$as_me:8724: \"$ac_try\"") >&5 6645 + { (eval echo "$as_me:9 494: \"$ac_try\"") >&57193 + { (eval echo "$as_me:9357: \"$ac_try\"") >&5 6646 7194 (eval $ac_try) 2>&5 6647 7195 ac_status=$? 6648 7196 - echo "$as_me:8727: \$? = $ac_status" >&5 6649 + echo "$as_me:9 497: \$? = $ac_status" >&57197 + echo "$as_me:9360: \$? = $ac_status" >&5 6650 7198 (exit $ac_status); }; }; then 6651 7199 ac_cv_sys_large_files=1; break 6652 7200 else 6653 @@ -8735,7 +9 505,7 @@7201 @@ -8735,7 +9368,7 @@ 6654 7202 break 6655 7203 done 6656 7204 fi 6657 7205 -echo "$as_me:8738: result: $ac_cv_sys_large_files" >&5 6658 +echo "$as_me:9 508: result: $ac_cv_sys_large_files" >&57206 +echo "$as_me:9371: result: $ac_cv_sys_large_files" >&5 6659 7207 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 6660 7208 if test "$ac_cv_sys_large_files" != no; then 6661 7209 6662 @@ -8748,7 +9 518,7 @@7210 @@ -8748,7 +9381,7 @@ 6663 7211 fi 6664 7212 6665 7213 if test "$enable_largefile" != no ; then 6666 7214 - echo "$as_me:8751: checking for _LARGEFILE_SOURCE value needed for large files" >&5 6667 + echo "$as_me:9 521: checking for _LARGEFILE_SOURCE value needed for large files" >&57215 + echo "$as_me:9384: checking for _LARGEFILE_SOURCE value needed for large files" >&5 6668 7216 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 6669 7217 if test "${ac_cv_sys_largefile_source+set}" = set; then 6670 7218 echo $ECHO_N "(cached) $ECHO_C" >&6 6671 @@ -8756,7 +9 526,7 @@7219 @@ -8756,7 +9389,7 @@ 6672 7220 while :; do 6673 7221 ac_cv_sys_largefile_source=no 6674 7222 cat >conftest.$ac_ext <<_ACEOF 6675 7223 -#line 8759 "configure" 6676 +#line 9 529"configure"7224 +#line 9392 "configure" 6677 7225 #include "confdefs.h" 6678 7226 #include <stdio.h> 6679 7227 int 6680 @@ -8768,16 +9 538,16 @@7228 @@ -8768,16 +9401,16 @@ 6681 7229 } 6682 7230 _ACEOF 6683 7231 rm -f conftest.$ac_objext 6684 7232 -if { (eval echo "$as_me:8771: \"$ac_compile\"") >&5 6685 +if { (eval echo "$as_me:9 541: \"$ac_compile\"") >&57233 +if { (eval echo "$as_me:9404: \"$ac_compile\"") >&5 6686 7234 (eval $ac_compile) 2>&5 6687 7235 ac_status=$? 6688 7236 - echo "$as_me:8774: \$? = $ac_status" >&5 6689 + echo "$as_me:9 544: \$? = $ac_status" >&57237 + echo "$as_me:9407: \$? = $ac_status" >&5 6690 7238 (exit $ac_status); } && 6691 7239 { ac_try='test -s conftest.$ac_objext' 6692 7240 - { (eval echo "$as_me:8777: \"$ac_try\"") >&5 6693 + { (eval echo "$as_me:9 547: \"$ac_try\"") >&57241 + { (eval echo "$as_me:9410: \"$ac_try\"") >&5 6694 7242 (eval $ac_try) 2>&5 6695 7243 ac_status=$? 6696 7244 - echo "$as_me:8780: \$? = $ac_status" >&5 6697 + echo "$as_me:9 550: \$? = $ac_status" >&57245 + echo "$as_me:9413: \$? = $ac_status" >&5 6698 7246 (exit $ac_status); }; }; then 6699 7247 break 6700 7248 else 6701 @@ -8786,7 +9 556,7 @@7249 @@ -8786,7 +9419,7 @@ 6702 7250 fi 6703 7251 rm -f conftest.$ac_objext conftest.$ac_ext 6704 7252 cat >conftest.$ac_ext <<_ACEOF 6705 7253 -#line 8789 "configure" 6706 +#line 9 559"configure"7254 +#line 9422 "configure" 6707 7255 #include "confdefs.h" 6708 7256 #define _LARGEFILE_SOURCE 1 6709 7257 #include <stdio.h> 6710 @@ -8799,16 +9 569,16 @@7258 @@ -8799,16 +9432,16 @@ 6711 7259 } 6712 7260 _ACEOF 6713 7261 rm -f conftest.$ac_objext 6714 7262 -if { (eval echo "$as_me:8802: \"$ac_compile\"") >&5 6715 +if { (eval echo "$as_me:9 572: \"$ac_compile\"") >&57263 +if { (eval echo "$as_me:9435: \"$ac_compile\"") >&5 6716 7264 (eval $ac_compile) 2>&5 6717 7265 ac_status=$? 6718 7266 - echo "$as_me:8805: \$? = $ac_status" >&5 6719 + echo "$as_me:9 575: \$? = $ac_status" >&57267 + echo "$as_me:9438: \$? = $ac_status" >&5 6720 7268 (exit $ac_status); } && 6721 7269 { ac_try='test -s conftest.$ac_objext' 6722 7270 - { (eval echo "$as_me:8808: \"$ac_try\"") >&5 6723 + { (eval echo "$as_me:9 578: \"$ac_try\"") >&57271 + { (eval echo "$as_me:9441: \"$ac_try\"") >&5 6724 7272 (eval $ac_try) 2>&5 6725 7273 ac_status=$? 6726 7274 - echo "$as_me:8811: \$? = $ac_status" >&5 6727 + echo "$as_me:9 581: \$? = $ac_status" >&57275 + echo "$as_me:9444: \$? = $ac_status" >&5 6728 7276 (exit $ac_status); }; }; then 6729 7277 ac_cv_sys_largefile_source=1; break 6730 7278 else 6731 @@ -8819,7 +9 589,7 @@7279 @@ -8819,7 +9452,7 @@ 6732 7280 break 6733 7281 done 6734 7282 fi 6735 7283 -echo "$as_me:8822: result: $ac_cv_sys_largefile_source" >&5 6736 +echo "$as_me:9 592: result: $ac_cv_sys_largefile_source" >&57284 +echo "$as_me:9455: result: $ac_cv_sys_largefile_source" >&5 6737 7285 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 6738 7286 if test "$ac_cv_sys_largefile_source" != no; then 6739 7287 6740 @@ -8833,13 +9 603,13 @@7288 @@ -8833,13 +9466,13 @@ 6741 7289 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug 6742 7290 # in glibc 2.1.3, but that breaks too many other things. 6743 7291 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. 6744 7292 -echo "$as_me:8836: checking for fseeko" >&5 6745 +echo "$as_me:9 606: checking for fseeko" >&57293 +echo "$as_me:9469: checking for fseeko" >&5 6746 7294 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 6747 7295 if test "${ac_cv_func_fseeko+set}" = set; then … … 6750 7298 cat >conftest.$ac_ext <<_ACEOF 6751 7299 -#line 8842 "configure" 6752 +#line 9 612"configure"7300 +#line 9475 "configure" 6753 7301 #include "confdefs.h" 6754 7302 #include <stdio.h> 6755 7303 int 6756 @@ -8851,16 +9 621,16 @@7304 @@ -8851,16 +9484,16 @@ 6757 7305 } 6758 7306 _ACEOF 6759 7307 rm -f conftest.$ac_objext conftest$ac_exeext 6760 7308 -if { (eval echo "$as_me:8854: \"$ac_link\"") >&5 6761 +if { (eval echo "$as_me:9 624: \"$ac_link\"") >&57309 +if { (eval echo "$as_me:9487: \"$ac_link\"") >&5 6762 7310 (eval $ac_link) 2>&5 6763 7311 ac_status=$? 6764 7312 - echo "$as_me:8857: \$? = $ac_status" >&5 6765 + echo "$as_me:9 627: \$? = $ac_status" >&57313 + echo "$as_me:9490: \$? = $ac_status" >&5 6766 7314 (exit $ac_status); } && 6767 7315 { ac_try='test -s conftest$ac_exeext' 6768 7316 - { (eval echo "$as_me:8860: \"$ac_try\"") >&5 6769 + { (eval echo "$as_me:9 630: \"$ac_try\"") >&57317 + { (eval echo "$as_me:9493: \"$ac_try\"") >&5 6770 7318 (eval $ac_try) 2>&5 6771 7319 ac_status=$? 6772 7320 - echo "$as_me:8863: \$? = $ac_status" >&5 6773 + echo "$as_me:9 633: \$? = $ac_status" >&57321 + echo "$as_me:9496: \$? = $ac_status" >&5 6774 7322 (exit $ac_status); }; }; then 6775 7323 ac_cv_func_fseeko=yes 6776 7324 else 6777 @@ -8870,7 +9 640,7 @@7325 @@ -8870,7 +9503,7 @@ 6778 7326 fi 6779 7327 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 6780 7328 fi 6781 7329 -echo "$as_me:8873: result: $ac_cv_func_fseeko" >&5 6782 +echo "$as_me:9 643: result: $ac_cv_func_fseeko" >&57330 +echo "$as_me:9506: result: $ac_cv_func_fseeko" >&5 6783 7331 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 6784 7332 if test $ac_cv_func_fseeko = yes; then 6785 7333 6786 @@ -8891,14 +9 661,14 @@7334 @@ -8891,14 +9524,14 @@ 6787 7335 test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " 6788 7336 test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " 6789 7337 6790 7338 - echo "$as_me:8894: checking whether to use struct dirent64" >&5 6791 + echo "$as_me:9 664: checking whether to use struct dirent64" >&57339 + echo "$as_me:9527: checking whether to use struct dirent64" >&5 6792 7340 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 6793 7341 if test "${cf_cv_struct_dirent64+set}" = set; then … … 6797 7345 cat >conftest.$ac_ext <<_ACEOF 6798 7346 -#line 8901 "configure" 6799 +#line 9 671"configure"7347 +#line 9534 "configure" 6800 7348 #include "confdefs.h" 6801 7349 6802 7350 #include <sys/types.h> 6803 @@ -8919,16 +9 689,16 @@7351 @@ -8919,16 +9552,16 @@ 6804 7352 } 6805 7353 _ACEOF 6806 7354 rm -f conftest.$ac_objext 6807 7355 -if { (eval echo "$as_me:8922: \"$ac_compile\"") >&5 6808 +if { (eval echo "$as_me:9 692: \"$ac_compile\"") >&57356 +if { (eval echo "$as_me:9555: \"$ac_compile\"") >&5 6809 7357 (eval $ac_compile) 2>&5 6810 7358 ac_status=$? 6811 7359 - echo "$as_me:8925: \$? = $ac_status" >&5 6812 + echo "$as_me:9 695: \$? = $ac_status" >&57360 + echo "$as_me:9558: \$? = $ac_status" >&5 6813 7361 (exit $ac_status); } && 6814 7362 { ac_try='test -s conftest.$ac_objext' 6815 7363 - { (eval echo "$as_me:8928: \"$ac_try\"") >&5 6816 + { (eval echo "$as_me:9 698: \"$ac_try\"") >&57364 + { (eval echo "$as_me:9561: \"$ac_try\"") >&5 6817 7365 (eval $ac_try) 2>&5 6818 7366 ac_status=$? 6819 7367 - echo "$as_me:8931: \$? = $ac_status" >&5 6820 + echo "$as_me:9 701: \$? = $ac_status" >&57368 + echo "$as_me:9564: \$? = $ac_status" >&5 6821 7369 (exit $ac_status); }; }; then 6822 7370 cf_cv_struct_dirent64=yes 6823 7371 else 6824 @@ -8939,7 +9 709,7 @@7372 @@ -8939,7 +9572,7 @@ 6825 7373 rm -f conftest.$ac_objext conftest.$ac_ext 6826 7374 6827 7375 fi 6828 7376 -echo "$as_me:8942: result: $cf_cv_struct_dirent64" >&5 6829 +echo "$as_me:9 712: result: $cf_cv_struct_dirent64" >&57377 +echo "$as_me:9575: result: $cf_cv_struct_dirent64" >&5 6830 7378 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 6831 7379 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF 6832 7380 #define HAVE_STRUCT_DIRENT64 1 6833 @@ -8948,7 +9 718,7 @@7381 @@ -8948,7 +9581,7 @@ 6834 7382 fi 6835 7383 6836 7384 ### Enable compiling-in rcs id's 6837 7385 -echo "$as_me:8951: checking if RCS identifiers should be compiled-in" >&5 6838 +echo "$as_me:9 721: checking if RCS identifiers should be compiled-in" >&57386 +echo "$as_me:9584: checking if RCS identifiers should be compiled-in" >&5 6839 7387 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6 6840 7388 6841 7389 # Check whether --with-rcs-ids or --without-rcs-ids was given. 6842 @@ -8958,7 +9 728,7 @@7390 @@ -8958,7 +9591,7 @@ 6843 7391 else 6844 7392 with_rcs_ids=no 6845 7393 fi; 6846 7394 -echo "$as_me:8961: result: $with_rcs_ids" >&5 6847 +echo "$as_me:9 731: result: $with_rcs_ids" >&57395 +echo "$as_me:9594: result: $with_rcs_ids" >&5 6848 7396 echo "${ECHO_T}$with_rcs_ids" >&6 6849 7397 test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF 6850 7398 #define USE_RCS_IDS 1 6851 @@ -8967,7 +9 737,7 @@7399 @@ -8967,7 +9600,7 @@ 6852 7400 ############################################################################### 6853 7401 6854 7402 ### Note that some functions (such as const) are normally disabled anyway. 6855 7403 -echo "$as_me:8970: checking if you want to build with function extensions" >&5 6856 +echo "$as_me:9 740: checking if you want to build with function extensions" >&57404 +echo "$as_me:9603: checking if you want to build with function extensions" >&5 6857 7405 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6 6858 7406 6859 7407 # Check whether --enable-ext-funcs or --disable-ext-funcs was given. 6860 @@ -8977,7 +9 747,7 @@7408 @@ -8977,7 +9610,7 @@ 6861 7409 else 6862 7410 with_ext_funcs=yes 6863 7411 fi; 6864 7412 -echo "$as_me:8980: result: $with_ext_funcs" >&5 6865 +echo "$as_me:9 750: result: $with_ext_funcs" >&57413 +echo "$as_me:9613: result: $with_ext_funcs" >&5 6866 7414 echo "${ECHO_T}$with_ext_funcs" >&6 6867 7415 if test "$with_ext_funcs" = yes ; then 6868 7416 NCURSES_EXT_FUNCS=1 6869 @@ -8994,7 +9 764,7 @@7417 @@ -8994,7 +9627,7 @@ 6870 7418 fi 6871 7419 6872 7420 ### use option --enable-const to turn on use of const beyond that in XSI. 6873 7421 -echo "$as_me:8997: checking for extended use of const keyword" >&5 6874 +echo "$as_me:9 767: checking for extended use of const keyword" >&57422 +echo "$as_me:9630: checking for extended use of const keyword" >&5 6875 7423 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6 6876 7424 6877 7425 # Check whether --enable-const or --disable-const was given. 6878 @@ -9004,7 +9 774,7 @@7426 @@ -9004,7 +9637,7 @@ 6879 7427 else 6880 7428 with_ext_const=no 6881 7429 fi; 6882 7430 -echo "$as_me:9007: result: $with_ext_const" >&5 6883 +echo "$as_me:9 777: result: $with_ext_const" >&57431 +echo "$as_me:9640: result: $with_ext_const" >&5 6884 7432 echo "${ECHO_T}$with_ext_const" >&6 6885 7433 NCURSES_CONST='/*nothing*/' 6886 7434 if test "$with_ext_const" = yes ; then 6887 @@ -9014,7 +9 784,7 @@7435 @@ -9014,7 +9647,7 @@ 6888 7436 ############################################################################### 6889 7437 # These options are relatively safe to experiment with. 6890 7438 6891 7439 -echo "$as_me:9017: checking if you want all development code" >&5 6892 +echo "$as_me:9 787: checking if you want all development code" >&57440 +echo "$as_me:9650: checking if you want all development code" >&5 6893 7441 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6 6894 7442 6895 7443 # Check whether --with-develop or --without-develop was given. 6896 @@ -9024,7 +9 794,7 @@7444 @@ -9024,7 +9657,7 @@ 6897 7445 else 6898 7446 with_develop=no 6899 7447 fi; 6900 7448 -echo "$as_me:9027: result: $with_develop" >&5 6901 +echo "$as_me:9 797: result: $with_develop" >&57449 +echo "$as_me:9660: result: $with_develop" >&5 6902 7450 echo "${ECHO_T}$with_develop" >&6 6903 7451 6904 7452 ############################################################################### 6905 @@ -9033,7 +9 803,7 @@7453 @@ -9033,7 +9666,7 @@ 6906 7454 # This is still experimental (20080329), but should ultimately be moved to 6907 7455 # the script-block --with-normal, etc. 6908 7456 6909 7457 -echo "$as_me:9036: checking if you want to link with the pthread library" >&5 6910 +echo "$as_me:9 806: checking if you want to link with the pthread library" >&57458 +echo "$as_me:9669: checking if you want to link with the pthread library" >&5 6911 7459 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6 6912 7460 6913 7461 # Check whether --with-pthread or --without-pthread was given. 6914 @@ -9043,27 +9 813,27 @@7462 @@ -9043,27 +9676,27 @@ 6915 7463 else 6916 7464 with_pthread=no 6917 7465 fi; 6918 7466 -echo "$as_me:9046: result: $with_pthread" >&5 6919 +echo "$as_me:9 816: result: $with_pthread" >&57467 +echo "$as_me:9679: result: $with_pthread" >&5 6920 7468 echo "${ECHO_T}$with_pthread" >&6 6921 7469 6922 7470 if test "$with_pthread" != no ; then 6923 7471 - echo "$as_me:9050: checking for pthread.h" >&5 6924 + echo "$as_me:9 820: checking for pthread.h" >&57472 + echo "$as_me:9683: checking for pthread.h" >&5 6925 7473 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6 6926 7474 if test "${ac_cv_header_pthread_h+set}" = set; then … … 6929 7477 cat >conftest.$ac_ext <<_ACEOF 6930 7478 -#line 9056 "configure" 6931 +#line 9 826"configure"7479 +#line 9689 "configure" 6932 7480 #include "confdefs.h" 6933 7481 #include <pthread.h> 6934 7482 _ACEOF 6935 7483 -if { (eval echo "$as_me:9060: \"$ac_cpp conftest.$ac_ext\"") >&5 6936 +if { (eval echo "$as_me:9 830: \"$ac_cpp conftest.$ac_ext\"") >&57484 +if { (eval echo "$as_me:9693: \"$ac_cpp conftest.$ac_ext\"") >&5 6937 7485 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 6938 7486 ac_status=$? … … 6941 7489 cat conftest.err >&5 6942 7490 - echo "$as_me:9066: \$? = $ac_status" >&5 6943 + echo "$as_me:9 836: \$? = $ac_status" >&57491 + echo "$as_me:9699: \$? = $ac_status" >&5 6944 7492 (exit $ac_status); } >/dev/null; then 6945 7493 if test -s conftest.err; then 6946 7494 ac_cpp_err=$ac_c_preproc_warn_flag 6947 @@ -9082,7 +9 852,7 @@7495 @@ -9082,7 +9715,7 @@ 6948 7496 fi 6949 7497 rm -f conftest.err conftest.$ac_ext 6950 7498 fi 6951 7499 -echo "$as_me:9085: result: $ac_cv_header_pthread_h" >&5 6952 +echo "$as_me:9 855: result: $ac_cv_header_pthread_h" >&57500 +echo "$as_me:9718: result: $ac_cv_header_pthread_h" >&5 6953 7501 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6 6954 7502 if test $ac_cv_header_pthread_h = yes; then 6955 7503 6956 @@ -9090,12 +9 860,14 @@7504 @@ -9090,12 +9723,14 @@ 6957 7505 #define HAVE_PTHREADS_H 1 6958 7506 EOF … … 6966 7514 + for cf_lib_pthread in pthread c_r 6967 7515 + do 6968 + echo "$as_me:9 865: checking if we can link with the $cf_lib_pthread library" >&57516 + echo "$as_me:9728: checking if we can link with the $cf_lib_pthread library" >&5 6969 7517 +echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6 6970 7518 + cf_save_LIBS="$LIBS" 6971 7519 + LIBS="-l$cf_lib_pthread $LIBS" 6972 7520 + cat >conftest.$ac_ext <<_ACEOF 6973 +#line 9 870"configure"7521 +#line 9733 "configure" 6974 7522 #include "confdefs.h" 6975 7523 6976 7524 #include <pthread.h> 6977 @@ -9104,23 +9 876,24 @@7525 @@ -9104,23 +9739,24 @@ 6978 7526 main () 6979 7527 { … … 6989 7537 rm -f conftest.$ac_objext conftest$ac_exeext 6990 7538 -if { (eval echo "$as_me:9114: \"$ac_link\"") >&5 6991 +if { (eval echo "$as_me:9 887: \"$ac_link\"") >&57539 +if { (eval echo "$as_me:9750: \"$ac_link\"") >&5 6992 7540 (eval $ac_link) 2>&5 6993 7541 ac_status=$? 6994 7542 - echo "$as_me:9117: \$? = $ac_status" >&5 6995 + echo "$as_me:9 890: \$? = $ac_status" >&57543 + echo "$as_me:9753: \$? = $ac_status" >&5 6996 7544 (exit $ac_status); } && 6997 7545 { ac_try='test -s conftest$ac_exeext' 6998 7546 - { (eval echo "$as_me:9120: \"$ac_try\"") >&5 6999 + { (eval echo "$as_me:9 893: \"$ac_try\"") >&57547 + { (eval echo "$as_me:9756: \"$ac_try\"") >&5 7000 7548 (eval $ac_try) 2>&5 7001 7549 ac_status=$? 7002 7550 - echo "$as_me:9123: \$? = $ac_status" >&5 7003 + echo "$as_me:9 896: \$? = $ac_status" >&57551 + echo "$as_me:9759: \$? = $ac_status" >&5 7004 7552 (exit $ac_status); }; }; then 7005 7553 with_pthread=yes 7006 7554 else 7007 @@ -9129,27 +9 902,29 @@7555 @@ -9129,27 +9765,29 @@ 7008 7556 with_pthread=no 7009 7557 fi … … 7012 7560 - echo "$as_me:9133: result: $with_pthread" >&5 7013 7561 + LIBS="$cf_save_LIBS" 7014 + echo "$as_me:9 906: result: $with_pthread" >&57562 + echo "$as_me:9769: result: $with_pthread" >&5 7015 7563 echo "${ECHO_T}$with_pthread" >&6 7016 7564 + test "$with_pthread" = yes && break … … 7029 7577 - { { echo "$as_me:9143: error: Cannot link with pthread library" >&5 7030 7578 + else 7031 + { { echo "$as_me:9 918: error: Cannot link with pthread library" >&57579 + { { echo "$as_me:9781: error: Cannot link with pthread library" >&5 7032 7580 echo "$as_me: error: Cannot link with pthread library" >&2;} 7033 7581 { (exit 1); exit 1; }; } … … 7040 7588 7041 7589 -echo "$as_me:9152: checking if you want to use weak-symbols for pthreads" >&5 7042 +echo "$as_me:9 927: checking if you want to use weak-symbols for pthreads" >&57590 +echo "$as_me:9790: checking if you want to use weak-symbols for pthreads" >&5 7043 7591 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6 7044 7592 7045 7593 # Check whether --enable-weak-symbols or --disable-weak-symbols was given. 7046 @@ -9159,18 +9 934,18 @@7594 @@ -9159,18 +9797,18 @@ 7047 7595 else 7048 7596 use_weak_symbols=no 7049 7597 fi; 7050 7598 -echo "$as_me:9162: result: $use_weak_symbols" >&5 7051 +echo "$as_me:9 937: result: $use_weak_symbols" >&57599 +echo "$as_me:9800: result: $use_weak_symbols" >&5 7052 7600 echo "${ECHO_T}$use_weak_symbols" >&6 7053 7601 if test "$use_weak_symbols" = yes ; then 7054 7602 7055 7603 -echo "$as_me:9166: checking if $CC supports weak symbols" >&5 7056 +echo "$as_me:9 941: checking if $CC supports weak symbols" >&57604 +echo "$as_me:9804: checking if $CC supports weak symbols" >&5 7057 7605 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6 7058 7606 if test "${cf_cv_weak_symbols+set}" = set; then … … 7062 7610 cat >conftest.$ac_ext <<_ACEOF 7063 7611 -#line 9173 "configure" 7064 +#line 9 948"configure"7612 +#line 9811 "configure" 7065 7613 #include "confdefs.h" 7066 7614 7067 7615 #include <stdio.h> 7068 @@ -9196,16 +9 971,16 @@7616 @@ -9196,16 +9834,16 @@ 7069 7617 } 7070 7618 _ACEOF 7071 7619 rm -f conftest.$ac_objext 7072 7620 -if { (eval echo "$as_me:9199: \"$ac_compile\"") >&5 7073 +if { (eval echo "$as_me:9 974: \"$ac_compile\"") >&57621 +if { (eval echo "$as_me:9837: \"$ac_compile\"") >&5 7074 7622 (eval $ac_compile) 2>&5 7075 7623 ac_status=$? 7076 7624 - echo "$as_me:9202: \$? = $ac_status" >&5 7077 + echo "$as_me:9 977: \$? = $ac_status" >&57625 + echo "$as_me:9840: \$? = $ac_status" >&5 7078 7626 (exit $ac_status); } && 7079 7627 { ac_try='test -s conftest.$ac_objext' 7080 7628 - { (eval echo "$as_me:9205: \"$ac_try\"") >&5 7081 + { (eval echo "$as_me:9 980: \"$ac_try\"") >&57629 + { (eval echo "$as_me:9843: \"$ac_try\"") >&5 7082 7630 (eval $ac_try) 2>&5 7083 7631 ac_status=$? 7084 7632 - echo "$as_me:9208: \$? = $ac_status" >&5 7085 + echo "$as_me:9 983: \$? = $ac_status" >&57633 + echo "$as_me:9846: \$? = $ac_status" >&5 7086 7634 (exit $ac_status); }; }; then 7087 7635 cf_cv_weak_symbols=yes 7088 7636 else 7089 @@ -9216,7 +9 991,7 @@7637 @@ -9216,7 +9854,7 @@ 7090 7638 rm -f conftest.$ac_objext conftest.$ac_ext 7091 7639 7092 7640 fi 7093 7641 -echo "$as_me:9219: result: $cf_cv_weak_symbols" >&5 7094 +echo "$as_me:9 994: result: $cf_cv_weak_symbols" >&57642 +echo "$as_me:9857: result: $cf_cv_weak_symbols" >&5 7095 7643 echo "${ECHO_T}$cf_cv_weak_symbols" >&6 7096 7644 7097 7645 else 7098 @@ -9243,13 + 10018,13 @@7646 @@ -9243,13 +9881,13 @@ 7099 7647 fi 7100 7648 7101 7649 # OpenSUSE is installing ncurses6, using reentrant option. 7102 7650 -echo "$as_me:9246: checking for _nc_TABSIZE" >&5 7103 +echo "$as_me: 10021: checking for _nc_TABSIZE" >&57651 +echo "$as_me:9884: checking for _nc_TABSIZE" >&5 7104 7652 echo $ECHO_N "checking for _nc_TABSIZE... $ECHO_C" >&6 7105 7653 if test "${ac_cv_func__nc_TABSIZE+set}" = set; then … … 7108 7656 cat >conftest.$ac_ext <<_ACEOF 7109 7657 -#line 9252 "configure" 7110 +#line 10027"configure"7658 +#line 9890 "configure" 7111 7659 #include "confdefs.h" 7112 7660 /* System header to define __stub macros and hopefully few prototypes, 7113 7661 which can conflict with char _nc_TABSIZE (); below. */ 7114 @@ -9280,16 +10055,16 @@ 7662 @@ -9272,7 +9910,7 @@ 7663 #if defined (__stub__nc_TABSIZE) || defined (__stub____nc_TABSIZE) 7664 choke me 7665 #else 7666 -f = _nc_TABSIZE; 7667 +f = _nc_TABSIZE; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 7668 #endif 7669 7670 ; 7671 @@ -9280,16 +9918,16 @@ 7115 7672 } 7116 7673 _ACEOF 7117 7674 rm -f conftest.$ac_objext conftest$ac_exeext 7118 7675 -if { (eval echo "$as_me:9283: \"$ac_link\"") >&5 7119 +if { (eval echo "$as_me: 10058: \"$ac_link\"") >&57676 +if { (eval echo "$as_me:9921: \"$ac_link\"") >&5 7120 7677 (eval $ac_link) 2>&5 7121 7678 ac_status=$? 7122 7679 - echo "$as_me:9286: \$? = $ac_status" >&5 7123 + echo "$as_me: 10061: \$? = $ac_status" >&57680 + echo "$as_me:9924: \$? = $ac_status" >&5 7124 7681 (exit $ac_status); } && 7125 7682 { ac_try='test -s conftest$ac_exeext' 7126 7683 - { (eval echo "$as_me:9289: \"$ac_try\"") >&5 7127 + { (eval echo "$as_me: 10064: \"$ac_try\"") >&57684 + { (eval echo "$as_me:9927: \"$ac_try\"") >&5 7128 7685 (eval $ac_try) 2>&5 7129 7686 ac_status=$? 7130 7687 - echo "$as_me:9292: \$? = $ac_status" >&5 7131 + echo "$as_me: 10067: \$? = $ac_status" >&57688 + echo "$as_me:9930: \$? = $ac_status" >&5 7132 7689 (exit $ac_status); }; }; then 7133 7690 ac_cv_func__nc_TABSIZE=yes 7134 7691 else 7135 @@ -9299,7 + 10074,7 @@7692 @@ -9299,7 +9937,7 @@ 7136 7693 fi 7137 7694 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7138 7695 fi 7139 7696 -echo "$as_me:9302: result: $ac_cv_func__nc_TABSIZE" >&5 7140 +echo "$as_me: 10077: result: $ac_cv_func__nc_TABSIZE" >&57697 +echo "$as_me:9940: result: $ac_cv_func__nc_TABSIZE" >&5 7141 7698 echo "${ECHO_T}$ac_cv_func__nc_TABSIZE" >&6 7142 7699 if test $ac_cv_func__nc_TABSIZE = yes; then 7143 7700 assume_reentrant=yes 7144 @@ -9311,7 + 10086,7 @@7701 @@ -9311,7 +9949,7 @@ 7145 7702 # opaque outside of that, so there is no --enable-opaque option. We can use 7146 7703 # this option without --with-pthreads, but this will be always set for 7147 7704 # pthreads. 7148 7705 -echo "$as_me:9314: checking if you want experimental reentrant code" >&5 7149 +echo "$as_me: 10089: checking if you want experimental reentrant code" >&57706 +echo "$as_me:9952: checking if you want experimental reentrant code" >&5 7150 7707 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6 7151 7708 7152 7709 # Check whether --enable-reentrant or --disable-reentrant was given. 7153 @@ -9321,7 + 10096,7 @@7710 @@ -9321,7 +9959,7 @@ 7154 7711 else 7155 7712 with_reentrant=$assume_reentrant 7156 7713 fi; 7157 7714 -echo "$as_me:9324: result: $with_reentrant" >&5 7158 +echo "$as_me: 10099: result: $with_reentrant" >&57715 +echo "$as_me:9962: result: $with_reentrant" >&5 7159 7716 echo "${ECHO_T}$with_reentrant" >&6 7160 7717 if test "$with_reentrant" = yes ; then 7161 7718 cf_cv_enable_reentrant=1 7162 @@ -9343,7 + 10118,7 @@7719 @@ -9343,7 +9981,7 @@ 7163 7720 7164 7721 ### Allow using a different wrap-prefix 7165 7722 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then 7166 7723 - echo "$as_me:9346: checking for prefix used to wrap public variables" >&5 7167 + echo "$as_me: 10121: checking for prefix used to wrap public variables" >&57724 + echo "$as_me:9984: checking for prefix used to wrap public variables" >&5 7168 7725 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6 7169 7726 7170 7727 # Check whether --with-wrap-prefix or --without-wrap-prefix was given. 7171 @@ -9353,7 + 10128,7 @@7728 @@ -9353,7 +9991,7 @@ 7172 7729 else 7173 7730 NCURSES_WRAP_PREFIX=_nc_ 7174 7731 fi; 7175 7732 - echo "$as_me:9356: result: $NCURSES_WRAP_PREFIX" >&5 7176 + echo "$as_me: 10131: result: $NCURSES_WRAP_PREFIX" >&57733 + echo "$as_me:9994: result: $NCURSES_WRAP_PREFIX" >&5 7177 7734 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6 7178 7735 else 7179 7736 NCURSES_WRAP_PREFIX=_nc_ 7180 @@ -9366, 7 +10141,7@@7737 @@ -9366,26 +10004,46 @@ 7181 7738 ############################################################################### 7182 7739 7183 7740 ### use option --disable-echo to suppress full display compiling commands 7184 7741 -echo "$as_me:9369: checking if you want to display full commands during build" >&5 7185 +echo "$as_me:10144: checking if you want to display full commands during build" >&5 7186 echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6 7742 -echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6 7743 + 7744 +echo "$as_me:10008: checking if you want to see long compiling messages" >&5 7745 +echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 7187 7746 7188 7747 # Check whether --enable-echo or --disable-echo was given. 7189 @@ -9381,11 +10156,11 @@ 7748 if test "${enable_echo+set}" = set; then 7749 enableval="$enable_echo" 7750 - with_echo=$enableval 7751 + test "$enableval" != no && enableval=yes 7752 + if test "$enableval" != "yes" ; then 7753 + 7754 + ECHO_LT='--silent' 7755 + ECHO_LD='@echo linking $@;' 7756 + RULE_CC='@echo compiling $<' 7757 + SHOW_CC='@echo compiling $@' 7758 + ECHO_CC='@' 7759 + 7760 + else 7761 + 7762 + ECHO_LT='' 7763 + ECHO_LD='' 7764 + RULE_CC='' 7765 + SHOW_CC='' 7766 + ECHO_CC='' 7767 + 7768 + fi 7190 7769 else 7191 ECHO_LINK='@ echo linking $@ ... ;' 7192 fi 7770 - with_echo=yes 7771 + enableval=yes 7772 + 7773 + ECHO_LT='' 7774 + ECHO_LD='' 7775 + RULE_CC='' 7776 + SHOW_CC='' 7777 + ECHO_CC='' 7778 + 7779 fi; 7780 -if test "$with_echo" = yes; then 7781 - ECHO_LINK= 7782 -else 7783 - ECHO_LINK='@ echo linking $@ ... ;' 7784 -fi 7193 7785 -echo "$as_me:9384: result: $with_echo" >&5 7194 +echo "$as_me:10159: result: $with_echo" >&5 7195 echo "${ECHO_T}$with_echo" >&6 7786 -echo "${ECHO_T}$with_echo" >&6 7787 +echo "$as_me:10042: result: $enableval" >&5 7788 +echo "${ECHO_T}$enableval" >&6 7196 7789 7197 7790 ### use option --enable-warnings to turn on all gcc warnings 7198 7791 -echo "$as_me:9388: checking if you want to see compiler warnings" >&5 7199 +echo "$as_me:10 163: checking if you want to see compiler warnings" >&57792 +echo "$as_me:10046: checking if you want to see compiler warnings" >&5 7200 7793 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6 7201 7794 7202 7795 # Check whether --enable-warnings or --disable-warnings was given. 7203 @@ -9393,7 +10 168,7 @@7796 @@ -9393,7 +10051,7 @@ 7204 7797 enableval="$enable_warnings" 7205 7798 with_warnings=$enableval 7206 7799 fi; 7207 7800 -echo "$as_me:9396: result: $with_warnings" >&5 7208 +echo "$as_me:10 171: result: $with_warnings" >&57801 +echo "$as_me:10054: result: $with_warnings" >&5 7209 7802 echo "${ECHO_T}$with_warnings" >&6 7210 7803 7211 7804 if test "x$with_warnings" = "xyes"; then 7212 @@ -9405,12 +10 180,12 @@7805 @@ -9405,12 +10063,12 @@ 7213 7806 if test "$GCC" = yes ; then 7214 7807 case $host_os in 7215 7808 linux*|gnu*) 7216 7809 - echo "$as_me:9408: checking if this is really Intel C compiler" >&5 7217 + echo "$as_me:10 183: checking if this is really Intel C compiler" >&57810 + echo "$as_me:10066: checking if this is really Intel C compiler" >&5 7218 7811 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6 7219 7812 cf_save_CFLAGS="$CFLAGS" … … 7221 7814 cat >conftest.$ac_ext <<_ACEOF 7222 7815 -#line 9413 "configure" 7223 +#line 10 188"configure"7816 +#line 10071 "configure" 7224 7817 #include "confdefs.h" 7225 7818 7226 7819 int 7227 @@ -9427,16 +10 202,16 @@7820 @@ -9427,16 +10085,16 @@ 7228 7821 } 7229 7822 _ACEOF 7230 7823 rm -f conftest.$ac_objext 7231 7824 -if { (eval echo "$as_me:9430: \"$ac_compile\"") >&5 7232 +if { (eval echo "$as_me:10 205: \"$ac_compile\"") >&57825 +if { (eval echo "$as_me:10088: \"$ac_compile\"") >&5 7233 7826 (eval $ac_compile) 2>&5 7234 7827 ac_status=$? 7235 7828 - echo "$as_me:9433: \$? = $ac_status" >&5 7236 + echo "$as_me:10 208: \$? = $ac_status" >&57829 + echo "$as_me:10091: \$? = $ac_status" >&5 7237 7830 (exit $ac_status); } && 7238 7831 { ac_try='test -s conftest.$ac_objext' 7239 7832 - { (eval echo "$as_me:9436: \"$ac_try\"") >&5 7240 + { (eval echo "$as_me:10 211: \"$ac_try\"") >&57833 + { (eval echo "$as_me:10094: \"$ac_try\"") >&5 7241 7834 (eval $ac_try) 2>&5 7242 7835 ac_status=$? 7243 7836 - echo "$as_me:9439: \$? = $ac_status" >&5 7244 + echo "$as_me:10 214: \$? = $ac_status" >&57837 + echo "$as_me:10097: \$? = $ac_status" >&5 7245 7838 (exit $ac_status); }; }; then 7246 7839 INTEL_COMPILER=yes 7247 7840 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" 7248 @@ -9447,14 +10 222,14@@7841 @@ -9447,14 +10105,63 @@ 7249 7842 fi 7250 7843 rm -f conftest.$ac_objext conftest.$ac_ext 7251 7844 CFLAGS="$cf_save_CFLAGS" 7252 7845 - echo "$as_me:9450: result: $INTEL_COMPILER" >&5 7253 + echo "$as_me:10 225: result: $INTEL_COMPILER" >&57846 + echo "$as_me:10108: result: $INTEL_COMPILER" >&5 7254 7847 echo "${ECHO_T}$INTEL_COMPILER" >&6 7255 7848 ;; … … 7257 7850 fi 7258 7851 7852 +CLANG_COMPILER=no 7853 + 7854 +if test "$GCC" = yes ; then 7855 + echo "$as_me:10117: checking if this is really Clang C compiler" >&5 7856 +echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6 7857 + cf_save_CFLAGS="$CFLAGS" 7858 + CFLAGS="$CFLAGS -Qunused-arguments" 7859 + cat >conftest.$ac_ext <<_ACEOF 7860 +#line 10122 "configure" 7861 +#include "confdefs.h" 7862 + 7863 +int 7864 +main () 7865 +{ 7866 + 7867 +#ifdef __clang__ 7868 +#else 7869 +make an error 7870 +#endif 7871 + 7872 + ; 7873 + return 0; 7874 +} 7875 +_ACEOF 7876 +rm -f conftest.$ac_objext 7877 +if { (eval echo "$as_me:10139: \"$ac_compile\"") >&5 7878 + (eval $ac_compile) 2>&5 7879 + ac_status=$? 7880 + echo "$as_me:10142: \$? = $ac_status" >&5 7881 + (exit $ac_status); } && 7882 + { ac_try='test -s conftest.$ac_objext' 7883 + { (eval echo "$as_me:10145: \"$ac_try\"") >&5 7884 + (eval $ac_try) 2>&5 7885 + ac_status=$? 7886 + echo "$as_me:10148: \$? = $ac_status" >&5 7887 + (exit $ac_status); }; }; then 7888 + CLANG_COMPILER=yes 7889 +cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" 7890 + 7891 +else 7892 + echo "$as_me: failed program was:" >&5 7893 +cat conftest.$ac_ext >&5 7894 +fi 7895 +rm -f conftest.$ac_objext conftest.$ac_ext 7896 + CFLAGS="$cf_save_CFLAGS" 7897 + echo "$as_me:10159: result: $CLANG_COMPILER" >&5 7898 +echo "${ECHO_T}$CLANG_COMPILER" >&6 7899 +fi 7900 + 7259 7901 cat > conftest.$ac_ext <<EOF 7260 7902 -#line 9457 "${as_me:-configure}" 7261 +#line 10 232"${as_me:-configure}"7903 +#line 10164 "${as_me:-configure}" 7262 7904 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } 7263 7905 EOF 7264 7906 7265 @@ -9471,7 +10 246,7 @@7907 @@ -9471,7 +10178,7 @@ 7266 7908 # remark #981: operands are evaluated in unspecified order 7267 7909 # warning #279: controlling expression is constant 7268 7910 7269 7911 - { echo "$as_me:9474: checking for $CC warning options..." >&5 7270 + { echo "$as_me:10 249: checking for $CC warning options..." >&57912 + { echo "$as_me:10181: checking for $CC warning options..." >&5 7271 7913 echo "$as_me: checking for $CC warning options..." >&6;} 7272 7914 cf_save_CFLAGS="$CFLAGS" 7273 7915 EXTRA_CFLAGS="-Wall" 7274 @@ -9487,12 +10 262,12 @@7916 @@ -9487,12 +10194,12 @@ 7275 7917 wd981 7276 7918 do 7277 7919 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" 7278 7920 - if { (eval echo "$as_me:9490: \"$ac_compile\"") >&5 7279 + if { (eval echo "$as_me:10 265: \"$ac_compile\"") >&57921 + if { (eval echo "$as_me:10197: \"$ac_compile\"") >&5 7280 7922 (eval $ac_compile) 2>&5 7281 7923 ac_status=$? 7282 7924 - echo "$as_me:9493: \$? = $ac_status" >&5 7283 + echo "$as_me:102 68: \$? = $ac_status" >&57925 + echo "$as_me:10200: \$? = $ac_status" >&5 7284 7926 (exit $ac_status); }; then 7285 7927 - test -n "$verbose" && echo "$as_me:9495: result: ... -$cf_opt" >&5 7286 + test -n "$verbose" && echo "$as_me:102 70: result: ... -$cf_opt" >&57928 + test -n "$verbose" && echo "$as_me:10202: result: ... -$cf_opt" >&5 7287 7929 echo "${ECHO_T}... -$cf_opt" >&6 7288 7930 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" 7289 7931 fi 7290 @@ -9501,7 +102 76,7 @@7932 @@ -9501,7 +10208,7 @@ 7291 7933 7292 7934 elif test "$GCC" = yes 7293 7935 then 7294 7936 - { echo "$as_me:9504: checking for $CC warning options..." >&5 7295 + { echo "$as_me:102 79: checking for $CC warning options..." >&57937 + { echo "$as_me:10211: checking for $CC warning options..." >&5 7296 7938 echo "$as_me: checking for $CC warning options..." >&6;} 7297 7939 cf_save_CFLAGS="$CFLAGS" 7298 7940 EXTRA_CFLAGS= 7299 @@ -9521,12 +102 96,12 @@7941 @@ -9521,12 +10228,12 @@ 7300 7942 Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum 7301 7943 do 7302 7944 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" 7303 7945 - if { (eval echo "$as_me:9524: \"$ac_compile\"") >&5 7304 + if { (eval echo "$as_me:102 99: \"$ac_compile\"") >&57946 + if { (eval echo "$as_me:10231: \"$ac_compile\"") >&5 7305 7947 (eval $ac_compile) 2>&5 7306 7948 ac_status=$? 7307 7949 - echo "$as_me:9527: \$? = $ac_status" >&5 7308 + echo "$as_me:10 302: \$? = $ac_status" >&57950 + echo "$as_me:10234: \$? = $ac_status" >&5 7309 7951 (exit $ac_status); }; then 7310 7952 - test -n "$verbose" && echo "$as_me:9529: result: ... -$cf_opt" >&5 7311 + test -n "$verbose" && echo "$as_me:10 304: result: ... -$cf_opt" >&57953 + test -n "$verbose" && echo "$as_me:10236: result: ... -$cf_opt" >&5 7312 7954 echo "${ECHO_T}... -$cf_opt" >&6 7313 7955 case $cf_opt in #(vi 7314 7956 Wcast-qual) #(vi 7315 @@ -9537,7 +10 312,7 @@7957 @@ -9537,7 +10244,17 @@ 7316 7958 [34].*) 7317 7959 test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 7318 7960 7319 7961 -echo "${as_me:-configure}:9540: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 7320 +echo "${as_me:-configure}:10315: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 7962 +echo "${as_me:-configure}:10247: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 7963 + 7964 + continue;; 7965 + esac 7966 + ;; 7967 + Wpointer-arith) #(vi 7968 + case $GCC_VERSION in 7969 + [12].*) 7970 + test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 7971 + 7972 +echo "${as_me:-configure}:10257: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 7321 7973 7322 7974 continue;; 7323 7975 esac 7324 @@ -9570,10 +10 345,10 @@7976 @@ -9570,10 +10287,10 @@ 7325 7977 EOF 7326 7978 if test "$GCC" = yes 7327 7979 then 7328 7980 - { echo "$as_me:9573: checking for $CC __attribute__ directives..." >&5 7329 + { echo "$as_me:10 348: checking for $CC __attribute__ directives..." >&57981 + { echo "$as_me:10290: checking for $CC __attribute__ directives..." >&5 7330 7982 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} 7331 7983 cat > conftest.$ac_ext <<EOF 7332 7984 -#line 9576 "${as_me:-configure}" 7333 +#line 10 351"${as_me:-configure}"7985 +#line 10293 "${as_me:-configure}" 7334 7986 #include "confdefs.h" 7335 7987 #include "conftest.h" 7336 7988 #include "conftest.i" 7337 @@ -9622,12 +103 97,12 @@7989 @@ -9622,12 +10339,12 @@ 7338 7990 ;; 7339 7991 esac 7340 7992 7341 7993 - if { (eval echo "$as_me:9625: \"$ac_compile\"") >&5 7342 + if { (eval echo "$as_me:10 400: \"$ac_compile\"") >&57994 + if { (eval echo "$as_me:10342: \"$ac_compile\"") >&5 7343 7995 (eval $ac_compile) 2>&5 7344 7996 ac_status=$? 7345 7997 - echo "$as_me:9628: \$? = $ac_status" >&5 7346 + echo "$as_me:10 403: \$? = $ac_status" >&57998 + echo "$as_me:10345: \$? = $ac_status" >&5 7347 7999 (exit $ac_status); }; then 7348 8000 - test -n "$verbose" && echo "$as_me:9630: result: ... $cf_attribute" >&5 7349 + test -n "$verbose" && echo "$as_me:10 405: result: ... $cf_attribute" >&58001 + test -n "$verbose" && echo "$as_me:10347: result: ... $cf_attribute" >&5 7350 8002 echo "${ECHO_T}... $cf_attribute" >&6 7351 8003 cat conftest.h >>confdefs.h 7352 8004 case $cf_attribute in #(vi 7353 @@ -9663,7 +10 438,7 @@8005 @@ -9663,7 +10380,7 @@ 7354 8006 fi 7355 8007 7356 8008 ### use option --enable-assertions to turn on generation of assertion code 7357 8009 -echo "$as_me:9666: checking if you want to enable runtime assertions" >&5 7358 +echo "$as_me:10 441: checking if you want to enable runtime assertions" >&58010 +echo "$as_me:10383: checking if you want to enable runtime assertions" >&5 7359 8011 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6 7360 8012 7361 8013 # Check whether --enable-assertions or --disable-assertions was given. 7362 @@ -9673, 7 +10448,7@@8014 @@ -9673,16 +10390,12 @@ 7363 8015 else 7364 8016 with_assertions=no 7365 8017 fi; 7366 8018 -echo "$as_me:9676: result: $with_assertions" >&5 7367 +echo "$as_me:10 451: result: $with_assertions" >&58019 +echo "$as_me:10393: result: $with_assertions" >&5 7368 8020 echo "${ECHO_T}$with_assertions" >&6 7369 8021 if test -n "$GCC" 7370 8022 then 7371 @@ -9727,7 +10502,7 @@ 8023 if test "$with_assertions" = no 8024 then 8025 - cat >>confdefs.h <<\EOF 8026 -#define NDEBUG 1 8027 -EOF 8028 - 8029 CPPFLAGS="$CPPFLAGS -DNDEBUG" 8030 else 8031 8032 @@ -9727,7 +10440,7 @@ 7372 8033 ;; 7373 8034 esac 7374 8035 7375 8036 -echo "$as_me:9730: checking whether to add trace feature to all models" >&5 7376 +echo "$as_me:10 505: checking whether to add trace feature to all models" >&58037 +echo "$as_me:10443: checking whether to add trace feature to all models" >&5 7377 8038 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6 7378 8039 7379 8040 # Check whether --with-trace or --without-trace was given. 7380 @@ -9737,7 +10 512,7 @@8041 @@ -9737,7 +10450,7 @@ 7381 8042 else 7382 8043 cf_with_trace=$cf_all_traces 7383 8044 fi; 7384 8045 -echo "$as_me:9740: result: $cf_with_trace" >&5 7385 +echo "$as_me:10 515: result: $cf_with_trace" >&58046 +echo "$as_me:10453: result: $cf_with_trace" >&5 7386 8047 echo "${ECHO_T}$cf_with_trace" >&6 7387 8048 7388 8049 if test "$cf_with_trace" = yes ; then 7389 @@ -9830,13 +10 605,13 @@8050 @@ -9830,13 +10543,13 @@ 7390 8051 *mingw32*) #(vi 7391 8052 ;; 7392 8053 *) 7393 8054 -echo "$as_me:9833: checking for gettimeofday" >&5 7394 +echo "$as_me:10 608: checking for gettimeofday" >&58055 +echo "$as_me:10546: checking for gettimeofday" >&5 7395 8056 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6 7396 8057 if test "${ac_cv_func_gettimeofday+set}" = set; then … … 7399 8060 cat >conftest.$ac_ext <<_ACEOF 7400 8061 -#line 9839 "configure" 7401 +#line 10 614"configure"8062 +#line 10552 "configure" 7402 8063 #include "confdefs.h" 7403 8064 /* System header to define __stub macros and hopefully few prototypes, 7404 8065 which can conflict with char gettimeofday (); below. */ 7405 @@ -9867,16 +10642,16 @@ 8066 @@ -9859,7 +10572,7 @@ 8067 #if defined (__stub_gettimeofday) || defined (__stub___gettimeofday) 8068 choke me 8069 #else 8070 -f = gettimeofday; 8071 +f = gettimeofday; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 8072 #endif 8073 8074 ; 8075 @@ -9867,16 +10580,16 @@ 7406 8076 } 7407 8077 _ACEOF 7408 8078 rm -f conftest.$ac_objext conftest$ac_exeext 7409 8079 -if { (eval echo "$as_me:9870: \"$ac_link\"") >&5 7410 +if { (eval echo "$as_me:10 645: \"$ac_link\"") >&58080 +if { (eval echo "$as_me:10583: \"$ac_link\"") >&5 7411 8081 (eval $ac_link) 2>&5 7412 8082 ac_status=$? 7413 8083 - echo "$as_me:9873: \$? = $ac_status" >&5 7414 + echo "$as_me:10 648: \$? = $ac_status" >&58084 + echo "$as_me:10586: \$? = $ac_status" >&5 7415 8085 (exit $ac_status); } && 7416 8086 { ac_try='test -s conftest$ac_exeext' 7417 8087 - { (eval echo "$as_me:9876: \"$ac_try\"") >&5 7418 + { (eval echo "$as_me:10 651: \"$ac_try\"") >&58088 + { (eval echo "$as_me:10589: \"$ac_try\"") >&5 7419 8089 (eval $ac_try) 2>&5 7420 8090 ac_status=$? 7421 8091 - echo "$as_me:9879: \$? = $ac_status" >&5 7422 + echo "$as_me:10 654: \$? = $ac_status" >&58092 + echo "$as_me:10592: \$? = $ac_status" >&5 7423 8093 (exit $ac_status); }; }; then 7424 8094 ac_cv_func_gettimeofday=yes 7425 8095 else 7426 @@ -9886,7 +10 661,7 @@8096 @@ -9886,7 +10599,7 @@ 7427 8097 fi 7428 8098 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7429 8099 fi 7430 8100 -echo "$as_me:9889: result: $ac_cv_func_gettimeofday" >&5 7431 +echo "$as_me:106 64: result: $ac_cv_func_gettimeofday" >&58101 +echo "$as_me:10602: result: $ac_cv_func_gettimeofday" >&5 7432 8102 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6 7433 8103 if test $ac_cv_func_gettimeofday = yes; then 7434 8104 cat >>confdefs.h <<\EOF 7435 @@ -9895,7 +106 70,7 @@8105 @@ -9895,7 +10608,7 @@ 7436 8106 7437 8107 else 7438 8108 7439 8109 -echo "$as_me:9898: checking for gettimeofday in -lbsd" >&5 7440 +echo "$as_me:106 73: checking for gettimeofday in -lbsd" >&58110 +echo "$as_me:10611: checking for gettimeofday in -lbsd" >&5 7441 8111 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6 7442 8112 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then 7443 8113 echo $ECHO_N "(cached) $ECHO_C" >&6 7444 @@ -9903,7 +106 78,7 @@8114 @@ -9903,7 +10616,7 @@ 7445 8115 ac_check_lib_save_LIBS=$LIBS 7446 8116 LIBS="-lbsd $LIBS" 7447 8117 cat >conftest.$ac_ext <<_ACEOF 7448 8118 -#line 9906 "configure" 7449 +#line 106 81"configure"8119 +#line 10619 "configure" 7450 8120 #include "confdefs.h" 7451 8121 7452 8122 /* Override any gcc2 internal prototype to avoid an error. */ 7453 @@ -9922,16 +106 97,16 @@8123 @@ -9922,16 +10635,16 @@ 7454 8124 } 7455 8125 _ACEOF 7456 8126 rm -f conftest.$ac_objext conftest$ac_exeext 7457 8127 -if { (eval echo "$as_me:9925: \"$ac_link\"") >&5 7458 +if { (eval echo "$as_me:10 700: \"$ac_link\"") >&58128 +if { (eval echo "$as_me:10638: \"$ac_link\"") >&5 7459 8129 (eval $ac_link) 2>&5 7460 8130 ac_status=$? 7461 8131 - echo "$as_me:9928: \$? = $ac_status" >&5 7462 + echo "$as_me:10 703: \$? = $ac_status" >&58132 + echo "$as_me:10641: \$? = $ac_status" >&5 7463 8133 (exit $ac_status); } && 7464 8134 { ac_try='test -s conftest$ac_exeext' 7465 8135 - { (eval echo "$as_me:9931: \"$ac_try\"") >&5 7466 + { (eval echo "$as_me:10 706: \"$ac_try\"") >&58136 + { (eval echo "$as_me:10644: \"$ac_try\"") >&5 7467 8137 (eval $ac_try) 2>&5 7468 8138 ac_status=$? 7469 8139 - echo "$as_me:9934: \$? = $ac_status" >&5 7470 + echo "$as_me:10 709: \$? = $ac_status" >&58140 + echo "$as_me:10647: \$? = $ac_status" >&5 7471 8141 (exit $ac_status); }; }; then 7472 8142 ac_cv_lib_bsd_gettimeofday=yes 7473 8143 else 7474 @@ -9942,7 +10 717,7 @@8144 @@ -9942,7 +10655,7 @@ 7475 8145 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7476 8146 LIBS=$ac_check_lib_save_LIBS 7477 8147 fi 7478 8148 -echo "$as_me:9945: result: $ac_cv_lib_bsd_gettimeofday" >&5 7479 +echo "$as_me:10 720: result: $ac_cv_lib_bsd_gettimeofday" >&58149 +echo "$as_me:10658: result: $ac_cv_lib_bsd_gettimeofday" >&5 7480 8150 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6 7481 8151 if test $ac_cv_lib_bsd_gettimeofday = yes; then 7482 8152 cat >>confdefs.h <<\EOF 7483 @@ -9957,13 +10 732,13 @@8153 @@ -9957,13 +10670,13 @@ 7484 8154 esac 7485 8155 7486 8156 ### Checks for header files. 7487 8157 -echo "$as_me:9960: checking for ANSI C header files" >&5 7488 +echo "$as_me:10 735: checking for ANSI C header files" >&58158 +echo "$as_me:10673: checking for ANSI C header files" >&5 7489 8159 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 7490 8160 if test "${ac_cv_header_stdc+set}" = set; then … … 7493 8163 cat >conftest.$ac_ext <<_ACEOF 7494 8164 -#line 9966 "configure" 7495 +#line 10 741"configure"8165 +#line 10679 "configure" 7496 8166 #include "confdefs.h" 7497 8167 #include <stdlib.h> 7498 8168 #include <stdarg.h> 7499 @@ -9971,13 +10 746,13 @@8169 @@ -9971,13 +10684,13 @@ 7500 8170 #include <float.h> 7501 8171 7502 8172 _ACEOF 7503 8173 -if { (eval echo "$as_me:9974: \"$ac_cpp conftest.$ac_ext\"") >&5 7504 +if { (eval echo "$as_me:10 749: \"$ac_cpp conftest.$ac_ext\"") >&58174 +if { (eval echo "$as_me:10687: \"$ac_cpp conftest.$ac_ext\"") >&5 7505 8175 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 7506 8176 ac_status=$? … … 7509 8179 cat conftest.err >&5 7510 8180 - echo "$as_me:9980: \$? = $ac_status" >&5 7511 + echo "$as_me:10 755: \$? = $ac_status" >&58181 + echo "$as_me:10693: \$? = $ac_status" >&5 7512 8182 (exit $ac_status); } >/dev/null; then 7513 8183 if test -s conftest.err; then 7514 8184 ac_cpp_err=$ac_c_preproc_warn_flag 7515 @@ -9999,7 +107 74,7 @@8185 @@ -9999,7 +10712,7 @@ 7516 8186 if test $ac_cv_header_stdc = yes; then 7517 8187 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 7518 8188 cat >conftest.$ac_ext <<_ACEOF 7519 8189 -#line 10002 "configure" 7520 +#line 107 77"configure"8190 +#line 10715 "configure" 7521 8191 #include "confdefs.h" 7522 8192 #include <string.h> 7523 8193 7524 @@ -10017,7 +107 92,7 @@8194 @@ -10017,7 +10730,7 @@ 7525 8195 if test $ac_cv_header_stdc = yes; then 7526 8196 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 7527 8197 cat >conftest.$ac_ext <<_ACEOF 7528 8198 -#line 10020 "configure" 7529 +#line 107 95"configure"8199 +#line 10733 "configure" 7530 8200 #include "confdefs.h" 7531 8201 #include <stdlib.h> 7532 8202 7533 @@ -10038,7 +10 813,7 @@8203 @@ -10038,7 +10751,7 @@ 7534 8204 : 7535 8205 else 7536 8206 cat >conftest.$ac_ext <<_ACEOF 7537 8207 -#line 10041 "configure" 7538 +#line 10 816"configure"8208 +#line 10754 "configure" 7539 8209 #include "confdefs.h" 7540 8210 #include <ctype.h> 7541 8211 #if ((' ' & 0x0FF) == 0x020) 7542 @@ -10064,15 +10 839,15 @@8212 @@ -10064,15 +10777,15 @@ 7543 8213 } 7544 8214 _ACEOF 7545 8215 rm -f conftest$ac_exeext 7546 8216 -if { (eval echo "$as_me:10067: \"$ac_link\"") >&5 7547 +if { (eval echo "$as_me:10 842: \"$ac_link\"") >&58217 +if { (eval echo "$as_me:10780: \"$ac_link\"") >&5 7548 8218 (eval $ac_link) 2>&5 7549 8219 ac_status=$? 7550 8220 - echo "$as_me:10070: \$? = $ac_status" >&5 7551 + echo "$as_me:10 845: \$? = $ac_status" >&58221 + echo "$as_me:10783: \$? = $ac_status" >&5 7552 8222 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 7553 8223 - { (eval echo "$as_me:10072: \"$ac_try\"") >&5 7554 + { (eval echo "$as_me:10 847: \"$ac_try\"") >&58224 + { (eval echo "$as_me:10785: \"$ac_try\"") >&5 7555 8225 (eval $ac_try) 2>&5 7556 8226 ac_status=$? 7557 8227 - echo "$as_me:10075: \$? = $ac_status" >&5 7558 + echo "$as_me:10 850: \$? = $ac_status" >&58228 + echo "$as_me:10788: \$? = $ac_status" >&5 7559 8229 (exit $ac_status); }; }; then 7560 8230 : 7561 8231 else 7562 @@ -10085,7 +10 860,7 @@8232 @@ -10085,7 +10798,7 @@ 7563 8233 fi 7564 8234 fi 7565 8235 fi 7566 8236 -echo "$as_me:10088: result: $ac_cv_header_stdc" >&5 7567 +echo "$as_me:108 63: result: $ac_cv_header_stdc" >&58237 +echo "$as_me:10801: result: $ac_cv_header_stdc" >&5 7568 8238 echo "${ECHO_T}$ac_cv_header_stdc" >&6 7569 8239 if test $ac_cv_header_stdc = yes; then 7570 8240 7571 @@ -10098,13 +108 73,13 @@8241 @@ -10098,13 +10811,13 @@ 7572 8242 ac_header_dirent=no 7573 8243 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do 7574 8244 as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` 7575 8245 -echo "$as_me:10101: checking for $ac_hdr that defines DIR" >&5 7576 +echo "$as_me:108 76: checking for $ac_hdr that defines DIR" >&58246 +echo "$as_me:10814: checking for $ac_hdr that defines DIR" >&5 7577 8247 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 7578 8248 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 7581 8251 cat >conftest.$ac_ext <<_ACEOF 7582 8252 -#line 10107 "configure" 7583 +#line 108 82"configure"8253 +#line 10820 "configure" 7584 8254 #include "confdefs.h" 7585 8255 #include <sys/types.h> 7586 8256 #include <$ac_hdr> 7587 @@ -10119,16 +108 94,16 @@8257 @@ -10119,16 +10832,16 @@ 7588 8258 } 7589 8259 _ACEOF 7590 8260 rm -f conftest.$ac_objext 7591 8261 -if { (eval echo "$as_me:10122: \"$ac_compile\"") >&5 7592 +if { (eval echo "$as_me:108 97: \"$ac_compile\"") >&58262 +if { (eval echo "$as_me:10835: \"$ac_compile\"") >&5 7593 8263 (eval $ac_compile) 2>&5 7594 8264 ac_status=$? 7595 8265 - echo "$as_me:10125: \$? = $ac_status" >&5 7596 + echo "$as_me:10 900: \$? = $ac_status" >&58266 + echo "$as_me:10838: \$? = $ac_status" >&5 7597 8267 (exit $ac_status); } && 7598 8268 { ac_try='test -s conftest.$ac_objext' 7599 8269 - { (eval echo "$as_me:10128: \"$ac_try\"") >&5 7600 + { (eval echo "$as_me:10 903: \"$ac_try\"") >&58270 + { (eval echo "$as_me:10841: \"$ac_try\"") >&5 7601 8271 (eval $ac_try) 2>&5 7602 8272 ac_status=$? 7603 8273 - echo "$as_me:10131: \$? = $ac_status" >&5 7604 + echo "$as_me:10 906: \$? = $ac_status" >&58274 + echo "$as_me:10844: \$? = $ac_status" >&5 7605 8275 (exit $ac_status); }; }; then 7606 8276 eval "$as_ac_Header=yes" 7607 8277 else 7608 @@ -10138,7 +10 913,7 @@8278 @@ -10138,7 +10851,7 @@ 7609 8279 fi 7610 8280 rm -f conftest.$ac_objext conftest.$ac_ext 7611 8281 fi 7612 8282 -echo "$as_me:10141: result: `eval echo '${'$as_ac_Header'}'`" >&5 7613 +echo "$as_me:10 916: result: `eval echo '${'$as_ac_Header'}'`" >&58283 +echo "$as_me:10854: result: `eval echo '${'$as_ac_Header'}'`" >&5 7614 8284 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 7615 8285 if test `eval echo '${'$as_ac_Header'}'` = yes; then 7616 8286 cat >>confdefs.h <<EOF 7617 @@ -10151,7 +10 926,7 @@8287 @@ -10151,7 +10864,7 @@ 7618 8288 done 7619 8289 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. 7620 8290 if test $ac_header_dirent = dirent.h; then 7621 8291 - echo "$as_me:10154: checking for opendir in -ldir" >&5 7622 + echo "$as_me:10 929: checking for opendir in -ldir" >&58292 + echo "$as_me:10867: checking for opendir in -ldir" >&5 7623 8293 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 7624 8294 if test "${ac_cv_lib_dir_opendir+set}" = set; then 7625 8295 echo $ECHO_N "(cached) $ECHO_C" >&6 7626 @@ -10159,7 +10 934,7 @@8296 @@ -10159,7 +10872,7 @@ 7627 8297 ac_check_lib_save_LIBS=$LIBS 7628 8298 LIBS="-ldir $LIBS" 7629 8299 cat >conftest.$ac_ext <<_ACEOF 7630 8300 -#line 10162 "configure" 7631 +#line 10 937"configure"8301 +#line 10875 "configure" 7632 8302 #include "confdefs.h" 7633 8303 7634 8304 /* Override any gcc2 internal prototype to avoid an error. */ 7635 @@ -10178,16 +10 953,16 @@8305 @@ -10178,16 +10891,16 @@ 7636 8306 } 7637 8307 _ACEOF 7638 8308 rm -f conftest.$ac_objext conftest$ac_exeext 7639 8309 -if { (eval echo "$as_me:10181: \"$ac_link\"") >&5 7640 +if { (eval echo "$as_me:10 956: \"$ac_link\"") >&58310 +if { (eval echo "$as_me:10894: \"$ac_link\"") >&5 7641 8311 (eval $ac_link) 2>&5 7642 8312 ac_status=$? 7643 8313 - echo "$as_me:10184: \$? = $ac_status" >&5 7644 + echo "$as_me:10 959: \$? = $ac_status" >&58314 + echo "$as_me:10897: \$? = $ac_status" >&5 7645 8315 (exit $ac_status); } && 7646 8316 { ac_try='test -s conftest$ac_exeext' 7647 8317 - { (eval echo "$as_me:10187: \"$ac_try\"") >&5 7648 + { (eval echo "$as_me:109 62: \"$ac_try\"") >&58318 + { (eval echo "$as_me:10900: \"$ac_try\"") >&5 7649 8319 (eval $ac_try) 2>&5 7650 8320 ac_status=$? 7651 8321 - echo "$as_me:10190: \$? = $ac_status" >&5 7652 + echo "$as_me:109 65: \$? = $ac_status" >&58322 + echo "$as_me:10903: \$? = $ac_status" >&5 7653 8323 (exit $ac_status); }; }; then 7654 8324 ac_cv_lib_dir_opendir=yes 7655 8325 else 7656 @@ -10198,14 +109 73,14 @@8326 @@ -10198,14 +10911,14 @@ 7657 8327 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7658 8328 LIBS=$ac_check_lib_save_LIBS 7659 8329 fi 7660 8330 -echo "$as_me:10201: result: $ac_cv_lib_dir_opendir" >&5 7661 +echo "$as_me:109 76: result: $ac_cv_lib_dir_opendir" >&58331 +echo "$as_me:10914: result: $ac_cv_lib_dir_opendir" >&5 7662 8332 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 7663 8333 if test $ac_cv_lib_dir_opendir = yes; then … … 7667 8337 else 7668 8338 - echo "$as_me:10208: checking for opendir in -lx" >&5 7669 + echo "$as_me:109 83: checking for opendir in -lx" >&58339 + echo "$as_me:10921: checking for opendir in -lx" >&5 7670 8340 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 7671 8341 if test "${ac_cv_lib_x_opendir+set}" = set; then 7672 8342 echo $ECHO_N "(cached) $ECHO_C" >&6 7673 @@ -10213,7 +109 88,7 @@8343 @@ -10213,7 +10926,7 @@ 7674 8344 ac_check_lib_save_LIBS=$LIBS 7675 8345 LIBS="-lx $LIBS" 7676 8346 cat >conftest.$ac_ext <<_ACEOF 7677 8347 -#line 10216 "configure" 7678 +#line 109 91"configure"8348 +#line 10929 "configure" 7679 8349 #include "confdefs.h" 7680 8350 7681 8351 /* Override any gcc2 internal prototype to avoid an error. */ 7682 @@ -10232,16 +1 1007,16 @@8352 @@ -10232,16 +10945,16 @@ 7683 8353 } 7684 8354 _ACEOF 7685 8355 rm -f conftest.$ac_objext conftest$ac_exeext 7686 8356 -if { (eval echo "$as_me:10235: \"$ac_link\"") >&5 7687 +if { (eval echo "$as_me:1 1010: \"$ac_link\"") >&58357 +if { (eval echo "$as_me:10948: \"$ac_link\"") >&5 7688 8358 (eval $ac_link) 2>&5 7689 8359 ac_status=$? 7690 8360 - echo "$as_me:10238: \$? = $ac_status" >&5 7691 + echo "$as_me:1 1013: \$? = $ac_status" >&58361 + echo "$as_me:10951: \$? = $ac_status" >&5 7692 8362 (exit $ac_status); } && 7693 8363 { ac_try='test -s conftest$ac_exeext' 7694 8364 - { (eval echo "$as_me:10241: \"$ac_try\"") >&5 7695 + { (eval echo "$as_me:1 1016: \"$ac_try\"") >&58365 + { (eval echo "$as_me:10954: \"$ac_try\"") >&5 7696 8366 (eval $ac_try) 2>&5 7697 8367 ac_status=$? 7698 8368 - echo "$as_me:10244: \$? = $ac_status" >&5 7699 + echo "$as_me:1 1019: \$? = $ac_status" >&58369 + echo "$as_me:10957: \$? = $ac_status" >&5 7700 8370 (exit $ac_status); }; }; then 7701 8371 ac_cv_lib_x_opendir=yes 7702 8372 else 7703 @@ -10252,7 +1 1027,7 @@8373 @@ -10252,7 +10965,7 @@ 7704 8374 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7705 8375 LIBS=$ac_check_lib_save_LIBS 7706 8376 fi 7707 8377 -echo "$as_me:10255: result: $ac_cv_lib_x_opendir" >&5 7708 +echo "$as_me:1 1030: result: $ac_cv_lib_x_opendir" >&58378 +echo "$as_me:10968: result: $ac_cv_lib_x_opendir" >&5 7709 8379 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 7710 8380 if test $ac_cv_lib_x_opendir = yes; then 7711 8381 LIBS="$LIBS -lx" 7712 @@ -10260,13 +1 1035,13 @@8382 @@ -10260,13 +10973,13 @@ 7713 8383 7714 8384 fi 7715 8385 7716 8386 -echo "$as_me:10263: checking whether time.h and sys/time.h may both be included" >&5 7717 +echo "$as_me:1 1038: checking whether time.h and sys/time.h may both be included" >&58387 +echo "$as_me:10976: checking whether time.h and sys/time.h may both be included" >&5 7718 8388 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 7719 8389 if test "${ac_cv_header_time+set}" = set; then … … 7722 8392 cat >conftest.$ac_ext <<_ACEOF 7723 8393 -#line 10269 "configure" 7724 +#line 1 1044"configure"8394 +#line 10982 "configure" 7725 8395 #include "confdefs.h" 7726 8396 #include <sys/types.h> 7727 8397 #include <sys/time.h> 7728 @@ -10282,16 +1 1057,16 @@8398 @@ -10282,16 +10995,16 @@ 7729 8399 } 7730 8400 _ACEOF 7731 8401 rm -f conftest.$ac_objext 7732 8402 -if { (eval echo "$as_me:10285: \"$ac_compile\"") >&5 7733 +if { (eval echo "$as_me:1 1060: \"$ac_compile\"") >&58403 +if { (eval echo "$as_me:10998: \"$ac_compile\"") >&5 7734 8404 (eval $ac_compile) 2>&5 7735 8405 ac_status=$? 7736 8406 - echo "$as_me:10288: \$? = $ac_status" >&5 7737 + echo "$as_me:110 63: \$? = $ac_status" >&58407 + echo "$as_me:11001: \$? = $ac_status" >&5 7738 8408 (exit $ac_status); } && 7739 8409 { ac_try='test -s conftest.$ac_objext' 7740 8410 - { (eval echo "$as_me:10291: \"$ac_try\"") >&5 7741 + { (eval echo "$as_me:110 66: \"$ac_try\"") >&58411 + { (eval echo "$as_me:11004: \"$ac_try\"") >&5 7742 8412 (eval $ac_try) 2>&5 7743 8413 ac_status=$? 7744 8414 - echo "$as_me:10294: \$? = $ac_status" >&5 7745 + echo "$as_me:110 69: \$? = $ac_status" >&58415 + echo "$as_me:11007: \$? = $ac_status" >&5 7746 8416 (exit $ac_status); }; }; then 7747 8417 ac_cv_header_time=yes 7748 8418 else 7749 @@ -10301,7 +110 76,7 @@8419 @@ -10301,7 +11014,7 @@ 7750 8420 fi 7751 8421 rm -f conftest.$ac_objext conftest.$ac_ext 7752 8422 fi 7753 8423 -echo "$as_me:10304: result: $ac_cv_header_time" >&5 7754 +echo "$as_me:110 79: result: $ac_cv_header_time" >&58424 +echo "$as_me:11017: result: $ac_cv_header_time" >&5 7755 8425 echo "${ECHO_T}$ac_cv_header_time" >&6 7756 8426 if test $ac_cv_header_time = yes; then 7757 8427 7758 @@ -10319,7 +110 94,7 @@8428 @@ -10319,7 +11032,7 @@ 7759 8429 ac_compiler_gnu=$ac_cv_c_compiler_gnu 7760 8430 ac_main_return=return 7761 8431 7762 8432 -echo "$as_me:10322: checking for $CC option to accept ANSI C" >&5 7763 +echo "$as_me:110 97: checking for $CC option to accept ANSI C" >&58433 +echo "$as_me:11035: checking for $CC option to accept ANSI C" >&5 7764 8434 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 7765 8435 if test "${ac_cv_prog_cc_stdc+set}" = set; then 7766 8436 echo $ECHO_N "(cached) $ECHO_C" >&6 7767 @@ -10327,7 +11 102,7 @@8437 @@ -10327,7 +11040,7 @@ 7768 8438 ac_cv_prog_cc_stdc=no 7769 8439 ac_save_CC=$CC 7770 8440 cat >conftest.$ac_ext <<_ACEOF 7771 8441 -#line 10330 "configure" 7772 +#line 11 105"configure"8442 +#line 11043 "configure" 7773 8443 #include "confdefs.h" 7774 8444 #include <stdarg.h> 7775 8445 #include <stdio.h> 7776 @@ -10376,16 +11 151,16 @@8446 @@ -10376,16 +11089,16 @@ 7777 8447 do 7778 8448 CC="$ac_save_CC $ac_arg" 7779 8449 rm -f conftest.$ac_objext 7780 8450 -if { (eval echo "$as_me:10379: \"$ac_compile\"") >&5 7781 +if { (eval echo "$as_me:11 154: \"$ac_compile\"") >&58451 +if { (eval echo "$as_me:11092: \"$ac_compile\"") >&5 7782 8452 (eval $ac_compile) 2>&5 7783 8453 ac_status=$? 7784 8454 - echo "$as_me:10382: \$? = $ac_status" >&5 7785 + echo "$as_me:11 157: \$? = $ac_status" >&58455 + echo "$as_me:11095: \$? = $ac_status" >&5 7786 8456 (exit $ac_status); } && 7787 8457 { ac_try='test -s conftest.$ac_objext' 7788 8458 - { (eval echo "$as_me:10385: \"$ac_try\"") >&5 7789 + { (eval echo "$as_me:11 160: \"$ac_try\"") >&58459 + { (eval echo "$as_me:11098: \"$ac_try\"") >&5 7790 8460 (eval $ac_try) 2>&5 7791 8461 ac_status=$? 7792 8462 - echo "$as_me:10388: \$? = $ac_status" >&5 7793 + echo "$as_me:111 63: \$? = $ac_status" >&58463 + echo "$as_me:11101: \$? = $ac_status" >&5 7794 8464 (exit $ac_status); }; }; then 7795 8465 ac_cv_prog_cc_stdc=$ac_arg 7796 8466 break 7797 @@ -10402,21 +111 77,21 @@8467 @@ -10402,21 +11115,21 @@ 7798 8468 7799 8469 case "x$ac_cv_prog_cc_stdc" in 7800 8470 x|xno) 7801 8471 - echo "$as_me:10405: result: none needed" >&5 7802 + echo "$as_me:111 80: result: none needed" >&58472 + echo "$as_me:11118: result: none needed" >&5 7803 8473 echo "${ECHO_T}none needed" >&6 ;; 7804 8474 *) 7805 8475 - echo "$as_me:10408: result: $ac_cv_prog_cc_stdc" >&5 7806 + echo "$as_me:111 83: result: $ac_cv_prog_cc_stdc" >&58476 + echo "$as_me:11121: result: $ac_cv_prog_cc_stdc" >&5 7807 8477 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 7808 8478 CC="$CC $ac_cv_prog_cc_stdc" ;; … … 7810 8480 7811 8481 -echo "$as_me:10413: checking for an ANSI C-conforming const" >&5 7812 +echo "$as_me:111 88: checking for an ANSI C-conforming const" >&58482 +echo "$as_me:11126: checking for an ANSI C-conforming const" >&5 7813 8483 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 7814 8484 if test "${ac_cv_c_const+set}" = set; then … … 7817 8487 cat >conftest.$ac_ext <<_ACEOF 7818 8488 -#line 10419 "configure" 7819 +#line 111 94"configure"8489 +#line 11132 "configure" 7820 8490 #include "confdefs.h" 7821 8491 7822 8492 int 7823 @@ -10474,16 +11 249,16 @@8493 @@ -10474,16 +11187,16 @@ 7824 8494 } 7825 8495 _ACEOF 7826 8496 rm -f conftest.$ac_objext 7827 8497 -if { (eval echo "$as_me:10477: \"$ac_compile\"") >&5 7828 +if { (eval echo "$as_me:11 252: \"$ac_compile\"") >&58498 +if { (eval echo "$as_me:11190: \"$ac_compile\"") >&5 7829 8499 (eval $ac_compile) 2>&5 7830 8500 ac_status=$? 7831 8501 - echo "$as_me:10480: \$? = $ac_status" >&5 7832 + echo "$as_me:11 255: \$? = $ac_status" >&58502 + echo "$as_me:11193: \$? = $ac_status" >&5 7833 8503 (exit $ac_status); } && 7834 8504 { ac_try='test -s conftest.$ac_objext' 7835 8505 - { (eval echo "$as_me:10483: \"$ac_try\"") >&5 7836 + { (eval echo "$as_me:11 258: \"$ac_try\"") >&58506 + { (eval echo "$as_me:11196: \"$ac_try\"") >&5 7837 8507 (eval $ac_try) 2>&5 7838 8508 ac_status=$? 7839 8509 - echo "$as_me:10486: \$? = $ac_status" >&5 7840 + echo "$as_me:11 261: \$? = $ac_status" >&58510 + echo "$as_me:11199: \$? = $ac_status" >&5 7841 8511 (exit $ac_status); }; }; then 7842 8512 ac_cv_c_const=yes 7843 8513 else 7844 @@ -10493,7 +112 68,7 @@8514 @@ -10493,7 +11206,7 @@ 7845 8515 fi 7846 8516 rm -f conftest.$ac_objext conftest.$ac_ext 7847 8517 fi 7848 8518 -echo "$as_me:10496: result: $ac_cv_c_const" >&5 7849 +echo "$as_me:112 71: result: $ac_cv_c_const" >&58519 +echo "$as_me:11209: result: $ac_cv_c_const" >&5 7850 8520 echo "${ECHO_T}$ac_cv_c_const" >&6 7851 8521 if test $ac_cv_c_const = no; then 7852 8522 7853 @@ -10505,7 +112 80,7 @@8523 @@ -10505,7 +11218,7 @@ 7854 8524 7855 8525 ### Checks for external-data 7856 8526 7857 8527 -echo "$as_me:10508: checking if data-only library module links" >&5 7858 +echo "$as_me:112 83: checking if data-only library module links" >&58528 +echo "$as_me:11221: checking if data-only library module links" >&5 7859 8529 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6 7860 8530 if test "${cf_cv_link_dataonly+set}" = set; then 7861 8531 echo $ECHO_N "(cached) $ECHO_C" >&6 7862 @@ -10513,20 +112 88,20 @@8532 @@ -10513,20 +11226,20 @@ 7863 8533 7864 8534 rm -f conftest.a 7865 8535 cat >conftest.$ac_ext <<EOF 7866 8536 -#line 10516 "configure" 7867 +#line 112 91"configure"8537 +#line 11229 "configure" 7868 8538 int testdata[3] = { 123, 456, 789 }; 7869 8539 EOF 7870 8540 - if { (eval echo "$as_me:10519: \"$ac_compile\"") >&5 7871 + if { (eval echo "$as_me:112 94: \"$ac_compile\"") >&58541 + if { (eval echo "$as_me:11232: \"$ac_compile\"") >&5 7872 8542 (eval $ac_compile) 2>&5 7873 8543 ac_status=$? 7874 8544 - echo "$as_me:10522: \$? = $ac_status" >&5 7875 + echo "$as_me:112 97: \$? = $ac_status" >&58545 + echo "$as_me:11235: \$? = $ac_status" >&5 7876 8546 (exit $ac_status); } ; then 7877 8547 mv conftest.o data.o && \ … … 7881 8551 cat >conftest.$ac_ext <<EOF 7882 8552 -#line 10529 "configure" 7883 +#line 11 304"configure"8553 +#line 11242 "configure" 7884 8554 int testfunc() 7885 8555 { 7886 8556 #if defined(NeXT) 7887 @@ -10539,10 +11 314,10 @@8557 @@ -10539,10 +11252,10 @@ 7888 8558 #endif 7889 8559 } 7890 8560 EOF 7891 8561 - if { (eval echo "$as_me:10542: \"$ac_compile\"") >&5 7892 + if { (eval echo "$as_me:11 317: \"$ac_compile\"") >&58562 + if { (eval echo "$as_me:11255: \"$ac_compile\"") >&5 7893 8563 (eval $ac_compile) 2>&5 7894 8564 ac_status=$? 7895 8565 - echo "$as_me:10545: \$? = $ac_status" >&5 7896 + echo "$as_me:11 320: \$? = $ac_status" >&58566 + echo "$as_me:11258: \$? = $ac_status" >&5 7897 8567 (exit $ac_status); }; then 7898 8568 mv conftest.o func.o && \ 7899 8569 ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null 7900 @@ -10555,7 +11 330,7 @@8570 @@ -10555,7 +11268,7 @@ 7901 8571 cf_cv_link_dataonly=unknown 7902 8572 else 7903 8573 cat >conftest.$ac_ext <<_ACEOF 7904 8574 -#line 10558 "configure" 7905 +#line 11 333"configure"8575 +#line 11271 "configure" 7906 8576 #include "confdefs.h" 7907 8577 7908 8578 int main() 7909 @@ -10566,15 +11 341,15 @@8579 @@ -10566,15 +11279,15 @@ 7910 8580 7911 8581 _ACEOF 7912 8582 rm -f conftest$ac_exeext 7913 8583 -if { (eval echo "$as_me:10569: \"$ac_link\"") >&5 7914 +if { (eval echo "$as_me:11 344: \"$ac_link\"") >&58584 +if { (eval echo "$as_me:11282: \"$ac_link\"") >&5 7915 8585 (eval $ac_link) 2>&5 7916 8586 ac_status=$? 7917 8587 - echo "$as_me:10572: \$? = $ac_status" >&5 7918 + echo "$as_me:11 347: \$? = $ac_status" >&58588 + echo "$as_me:11285: \$? = $ac_status" >&5 7919 8589 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 7920 8590 - { (eval echo "$as_me:10574: \"$ac_try\"") >&5 7921 + { (eval echo "$as_me:11 349: \"$ac_try\"") >&58591 + { (eval echo "$as_me:11287: \"$ac_try\"") >&5 7922 8592 (eval $ac_try) 2>&5 7923 8593 ac_status=$? 7924 8594 - echo "$as_me:10577: \$? = $ac_status" >&5 7925 + echo "$as_me:11 352: \$? = $ac_status" >&58595 + echo "$as_me:11290: \$? = $ac_status" >&5 7926 8596 (exit $ac_status); }; }; then 7927 8597 cf_cv_link_dataonly=yes 7928 8598 else 7929 @@ -10589,7 +113 64,7 @@8599 @@ -10589,7 +11302,7 @@ 7930 8600 7931 8601 fi 7932 8602 7933 8603 -echo "$as_me:10592: result: $cf_cv_link_dataonly" >&5 7934 +echo "$as_me:113 67: result: $cf_cv_link_dataonly" >&58604 +echo "$as_me:11305: result: $cf_cv_link_dataonly" >&5 7935 8605 echo "${ECHO_T}$cf_cv_link_dataonly" >&6 7936 8606 7937 8607 if test "$cf_cv_link_dataonly" = no ; then 7938 @@ -10602,7 +113 77,7 @@8608 @@ -10602,7 +11315,7 @@ 7939 8609 7940 8610 ### Checks for library functions. 7941 8611 7942 8612 -echo "$as_me:10605: checking for working mkstemp" >&5 7943 +echo "$as_me:113 80: checking for working mkstemp" >&58613 +echo "$as_me:11318: checking for working mkstemp" >&5 7944 8614 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6 7945 8615 if test "${cf_cv_func_mkstemp+set}" = set; then 7946 8616 echo $ECHO_N "(cached) $ECHO_C" >&6 7947 @@ -10610, 13 +11385,13@@8617 @@ -10610,68 +11323,10 @@ 7948 8618 7949 8619 rm -rf conftest* 7950 8620 if test "$cross_compiling" = yes; then 7951 8621 - echo "$as_me:10613: checking for mkstemp" >&5 7952 + echo "$as_me:11388: checking for mkstemp" >&5 7953 echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 7954 if test "${ac_cv_func_mkstemp+set}" = set; then 7955 echo $ECHO_N "(cached) $ECHO_C" >&6 7956 else 7957 cat >conftest.$ac_ext <<_ACEOF 8622 -echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 8623 -if test "${ac_cv_func_mkstemp+set}" = set; then 8624 - echo $ECHO_N "(cached) $ECHO_C" >&6 8625 -else 8626 - cat >conftest.$ac_ext <<_ACEOF 7958 8627 -#line 10619 "configure" 7959 +#line 11394 "configure" 7960 #include "confdefs.h" 7961 /* System header to define __stub macros and hopefully few prototypes, 7962 which can conflict with char mkstemp (); below. */ 7963 @@ -10647,16 +11422,16 @@ 7964 } 7965 _ACEOF 7966 rm -f conftest.$ac_objext conftest$ac_exeext 8628 -#include "confdefs.h" 8629 -/* System header to define __stub macros and hopefully few prototypes, 8630 - which can conflict with char mkstemp (); below. */ 8631 -#include <assert.h> 8632 -/* Override any gcc2 internal prototype to avoid an error. */ 8633 -#ifdef __cplusplus 8634 -extern "C" 8635 -#endif 8636 -/* We use char because int might match the return type of a gcc2 8637 - builtin and then its argument prototype would still apply. */ 8638 -char mkstemp (); 8639 -char (*f) (); 8640 - 8641 -int 8642 -main () 8643 -{ 8644 -/* The GNU C library defines this for functions which it implements 8645 - to always fail with ENOSYS. Some functions are actually named 8646 - something starting with __ and the normal name is an alias. */ 8647 -#if defined (__stub_mkstemp) || defined (__stub___mkstemp) 8648 -choke me 8649 -#else 8650 -f = mkstemp; 8651 -#endif 8652 - 8653 - ; 8654 - return 0; 8655 -} 8656 -_ACEOF 8657 -rm -f conftest.$ac_objext conftest$ac_exeext 7967 8658 -if { (eval echo "$as_me:10650: \"$ac_link\"") >&5 7968 +if { (eval echo "$as_me:11425: \"$ac_link\"") >&5 7969 (eval $ac_link) 2>&5 7970 ac_status=$? 8659 - (eval $ac_link) 2>&5 8660 - ac_status=$? 7971 8661 - echo "$as_me:10653: \$? = $ac_status" >&5 7972 + echo "$as_me:11428: \$? = $ac_status" >&5 7973 (exit $ac_status); } && 7974 { ac_try='test -s conftest$ac_exeext' 8662 - (exit $ac_status); } && 8663 - { ac_try='test -s conftest$ac_exeext' 7975 8664 - { (eval echo "$as_me:10656: \"$ac_try\"") >&5 7976 + { (eval echo "$as_me:11431: \"$ac_try\"") >&5 7977 (eval $ac_try) 2>&5 7978 ac_status=$? 8665 - (eval $ac_try) 2>&5 8666 - ac_status=$? 7979 8667 - echo "$as_me:10659: \$? = $ac_status" >&5 7980 + echo "$as_me:11434: \$? = $ac_status" >&5 7981 (exit $ac_status); }; }; then 7982 ac_cv_func_mkstemp=yes 7983 else 7984 @@ -10666,12 +11441,12 @@ 7985 fi 7986 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 7987 fi 8668 - (exit $ac_status); }; }; then 8669 - ac_cv_func_mkstemp=yes 8670 -else 8671 - echo "$as_me: failed program was:" >&5 8672 -cat conftest.$ac_ext >&5 8673 -ac_cv_func_mkstemp=no 8674 -fi 8675 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8676 -fi 7988 8677 -echo "$as_me:10669: result: $ac_cv_func_mkstemp" >&5 7989 +echo "$as_me:11444: result: $ac_cv_func_mkstemp" >&5 7990 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 7991 8678 -echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 8679 - 8680 + cf_cv_func_mkstemp=maybe 7992 8681 else 7993 8682 cat >conftest.$ac_ext <<_ACEOF 7994 8683 -#line 10674 "configure" 7995 +#line 11 449 "configure"8684 +#line 11329 "configure" 7996 8685 #include "confdefs.h" 7997 8686 7998 8687 #include <sys/types.h> 7999 @@ -10709,15 +11 484,15 @@8688 @@ -10709,15 +11364,15 @@ 8000 8689 8001 8690 _ACEOF 8002 8691 rm -f conftest$ac_exeext 8003 8692 -if { (eval echo "$as_me:10712: \"$ac_link\"") >&5 8004 +if { (eval echo "$as_me:11 487: \"$ac_link\"") >&58693 +if { (eval echo "$as_me:11367: \"$ac_link\"") >&5 8005 8694 (eval $ac_link) 2>&5 8006 8695 ac_status=$? 8007 8696 - echo "$as_me:10715: \$? = $ac_status" >&5 8008 + echo "$as_me:11 490: \$? = $ac_status" >&58697 + echo "$as_me:11370: \$? = $ac_status" >&5 8009 8698 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 8010 8699 - { (eval echo "$as_me:10717: \"$ac_try\"") >&5 8011 + { (eval echo "$as_me:11 492: \"$ac_try\"") >&58700 + { (eval echo "$as_me:11372: \"$ac_try\"") >&5 8012 8701 (eval $ac_try) 2>&5 8013 8702 ac_status=$? 8014 8703 - echo "$as_me:10720: \$? = $ac_status" >&5 8015 + echo "$as_me:11 495: \$? = $ac_status" >&58704 + echo "$as_me:11375: \$? = $ac_status" >&5 8016 8705 (exit $ac_status); }; }; then 8017 8706 cf_cv_func_mkstemp=yes 8018 8707 8019 @@ -10732, 7 +11507,7@@8708 @@ -10732,8 +11387,69 @@ 8020 8709 fi 8021 8710 8022 8711 fi 8023 8712 -echo "$as_me:10735: result: $cf_cv_func_mkstemp" >&5 8024 +echo "$as_me:11 510: result: $cf_cv_func_mkstemp" >&58713 +echo "$as_me:11390: result: $cf_cv_func_mkstemp" >&5 8025 8714 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6 8715 +if test "x$cf_cv_func_mkstemp" = xmaybe ; then 8716 + echo "$as_me:11393: checking for mkstemp" >&5 8717 +echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 8718 +if test "${ac_cv_func_mkstemp+set}" = set; then 8719 + echo $ECHO_N "(cached) $ECHO_C" >&6 8720 +else 8721 + cat >conftest.$ac_ext <<_ACEOF 8722 +#line 11399 "configure" 8723 +#include "confdefs.h" 8724 +/* System header to define __stub macros and hopefully few prototypes, 8725 + which can conflict with char mkstemp (); below. */ 8726 +#include <assert.h> 8727 +/* Override any gcc2 internal prototype to avoid an error. */ 8728 +#ifdef __cplusplus 8729 +extern "C" 8730 +#endif 8731 +/* We use char because int might match the return type of a gcc2 8732 + builtin and then its argument prototype would still apply. */ 8733 +char mkstemp (); 8734 +char (*f) (); 8735 + 8736 +int 8737 +main () 8738 +{ 8739 +/* The GNU C library defines this for functions which it implements 8740 + to always fail with ENOSYS. Some functions are actually named 8741 + something starting with __ and the normal name is an alias. */ 8742 +#if defined (__stub_mkstemp) || defined (__stub___mkstemp) 8743 +choke me 8744 +#else 8745 +f = mkstemp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 8746 +#endif 8747 + 8748 + ; 8749 + return 0; 8750 +} 8751 +_ACEOF 8752 +rm -f conftest.$ac_objext conftest$ac_exeext 8753 +if { (eval echo "$as_me:11430: \"$ac_link\"") >&5 8754 + (eval $ac_link) 2>&5 8755 + ac_status=$? 8756 + echo "$as_me:11433: \$? = $ac_status" >&5 8757 + (exit $ac_status); } && 8758 + { ac_try='test -s conftest$ac_exeext' 8759 + { (eval echo "$as_me:11436: \"$ac_try\"") >&5 8760 + (eval $ac_try) 2>&5 8761 + ac_status=$? 8762 + echo "$as_me:11439: \$? = $ac_status" >&5 8763 + (exit $ac_status); }; }; then 8764 + ac_cv_func_mkstemp=yes 8765 +else 8766 + echo "$as_me: failed program was:" >&5 8767 +cat conftest.$ac_ext >&5 8768 +ac_cv_func_mkstemp=no 8769 +fi 8770 +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 8771 +fi 8772 +echo "$as_me:11449: result: $ac_cv_func_mkstemp" >&5 8773 +echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 8774 + 8775 +fi 8026 8776 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then 8027 8777 cat >>confdefs.h <<\EOF 8028 @@ -10741,13 +11516,13 @@ 8778 #define HAVE_MKSTEMP 1 8779 @@ -10741,13 +11457,13 @@ 8029 8780 8030 8781 fi 8031 8782 8032 8783 -echo "$as_me:10744: checking return type of signal handlers" >&5 8033 +echo "$as_me:11 519: checking return type of signal handlers" >&58784 +echo "$as_me:11460: checking return type of signal handlers" >&5 8034 8785 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6 8035 8786 if test "${ac_cv_type_signal+set}" = set; then … … 8038 8789 cat >conftest.$ac_ext <<_ACEOF 8039 8790 -#line 10750 "configure" 8040 +#line 11 525"configure"8791 +#line 11466 "configure" 8041 8792 #include "confdefs.h" 8042 8793 #include <sys/types.h> 8043 8794 #include <signal.h> 8044 @@ -10769,16 +11 544,16 @@8795 @@ -10769,16 +11485,16 @@ 8045 8796 } 8046 8797 _ACEOF 8047 8798 rm -f conftest.$ac_objext 8048 8799 -if { (eval echo "$as_me:10772: \"$ac_compile\"") >&5 8049 +if { (eval echo "$as_me:11 547: \"$ac_compile\"") >&58800 +if { (eval echo "$as_me:11488: \"$ac_compile\"") >&5 8050 8801 (eval $ac_compile) 2>&5 8051 8802 ac_status=$? 8052 8803 - echo "$as_me:10775: \$? = $ac_status" >&5 8053 + echo "$as_me:11 550: \$? = $ac_status" >&58804 + echo "$as_me:11491: \$? = $ac_status" >&5 8054 8805 (exit $ac_status); } && 8055 8806 { ac_try='test -s conftest.$ac_objext' 8056 8807 - { (eval echo "$as_me:10778: \"$ac_try\"") >&5 8057 + { (eval echo "$as_me:11 553: \"$ac_try\"") >&58808 + { (eval echo "$as_me:11494: \"$ac_try\"") >&5 8058 8809 (eval $ac_try) 2>&5 8059 8810 ac_status=$? 8060 8811 - echo "$as_me:10781: \$? = $ac_status" >&5 8061 + echo "$as_me:11 556: \$? = $ac_status" >&58812 + echo "$as_me:11497: \$? = $ac_status" >&5 8062 8813 (exit $ac_status); }; }; then 8063 8814 ac_cv_type_signal=void 8064 8815 else 8065 @@ -10788,7 +115 63,7 @@8816 @@ -10788,7 +11504,7 @@ 8066 8817 fi 8067 8818 rm -f conftest.$ac_objext conftest.$ac_ext 8068 8819 fi 8069 8820 -echo "$as_me:10791: result: $ac_cv_type_signal" >&5 8070 +echo "$as_me:115 66: result: $ac_cv_type_signal" >&58821 +echo "$as_me:11507: result: $ac_cv_type_signal" >&5 8071 8822 echo "${ECHO_T}$ac_cv_type_signal" >&6 8072 8823 8073 8824 cat >>confdefs.h <<EOF 8074 @@ -10800,12 +115 75,13 @@8825 @@ -10800,12 +11516,13 @@ 8075 8826 CXXFLAGS=`echo ${CXXFLAGS} | sed -e 's%-g %%' -e 's%-g$%%'` 8076 8827 fi … … 8083 8834 set dummy $cf_ada_make; ac_word=$2 8084 8835 -echo "$as_me:10808: checking for $ac_word" >&5 8085 +echo "$as_me:115 84: checking for $ac_word" >&58836 +echo "$as_me:11525: checking for $ac_word" >&5 8086 8837 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 8087 8838 if test "${ac_cv_prog_gnat_exists+set}" = set; then 8088 8839 echo $ECHO_N "(cached) $ECHO_C" >&6 8089 @@ -10820,7 +115 96,7 @@8840 @@ -10820,7 +11537,7 @@ 8090 8841 test -z "$ac_dir" && ac_dir=. 8091 8842 $as_executable_p "$ac_dir/$ac_word" || continue 8092 8843 ac_cv_prog_gnat_exists="yes" 8093 8844 -echo "$as_me:10823: found $ac_dir/$ac_word" >&5 8094 +echo "$as_me:115 99: found $ac_dir/$ac_word" >&58845 +echo "$as_me:11540: found $ac_dir/$ac_word" >&5 8095 8846 break 8096 8847 done 8097 8848 8098 @@ -10829,31 +11 605,32 @@8849 @@ -10829,31 +11546,32 @@ 8099 8850 fi 8100 8851 gnat_exists=$ac_cv_prog_gnat_exists 8101 8852 if test -n "$gnat_exists"; then 8102 8853 - echo "$as_me:10832: result: $gnat_exists" >&5 8103 + echo "$as_me:11 608: result: $gnat_exists" >&58854 + echo "$as_me:11549: result: $gnat_exists" >&5 8104 8855 echo "${ECHO_T}$gnat_exists" >&6 8105 8856 else 8106 8857 - echo "$as_me:10835: result: no" >&5 8107 + echo "$as_me:11 611: result: no" >&58858 + echo "$as_me:11552: result: no" >&5 8108 8859 echo "${ECHO_T}no" >&6 8109 8860 fi … … 8115 8866 8116 8867 -echo "$as_me:10843: checking for gnat version" >&5 8117 +echo "$as_me:11 620: checking for gnat version" >&58868 +echo "$as_me:11561: checking for gnat version" >&5 8118 8869 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6 8119 8870 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \ … … 8121 8872 sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'` 8122 8873 -echo "$as_me:10848: result: $cf_gnat_version" >&5 8123 +echo "$as_me:11 625: result: $cf_gnat_version" >&58874 +echo "$as_me:11566: result: $cf_gnat_version" >&5 8124 8875 echo "${ECHO_T}$cf_gnat_version" >&6 8125 8876 … … 8131 8882 *) 8132 8883 - { echo "$as_me:10856: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 8133 + { echo "$as_me:11 633: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&58884 + { echo "$as_me:11574: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 8134 8885 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;} 8135 8886 cf_cv_prog_gnat_correct=no 8136 8887 ;; 8137 @@ -10861,7 +11 638,7 @@8888 @@ -10861,7 +11579,7 @@ 8138 8889 8139 8890 # Extract the first word of "m4", so it can be a program name with args. 8140 8891 set dummy m4; ac_word=$2 8141 8892 -echo "$as_me:10864: checking for $ac_word" >&5 8142 +echo "$as_me:11 641: checking for $ac_word" >&58893 +echo "$as_me:11582: checking for $ac_word" >&5 8143 8894 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 8144 8895 if test "${ac_cv_prog_M4_exists+set}" = set; then 8145 8896 echo $ECHO_N "(cached) $ECHO_C" >&6 8146 @@ -10876,7 +11 653,7 @@8897 @@ -10876,7 +11594,7 @@ 8147 8898 test -z "$ac_dir" && ac_dir=. 8148 8899 $as_executable_p "$ac_dir/$ac_word" || continue 8149 8900 ac_cv_prog_M4_exists="yes" 8150 8901 -echo "$as_me:10879: found $ac_dir/$ac_word" >&5 8151 +echo "$as_me:11 656: found $ac_dir/$ac_word" >&58902 +echo "$as_me:11597: found $ac_dir/$ac_word" >&5 8152 8903 break 8153 8904 done 8154 8905 8155 @@ -10885,10 +116 62,10 @@8906 @@ -10885,10 +11603,10 @@ 8156 8907 fi 8157 8908 M4_exists=$ac_cv_prog_M4_exists 8158 8909 if test -n "$M4_exists"; then 8159 8910 - echo "$as_me:10888: result: $M4_exists" >&5 8160 + echo "$as_me:116 65: result: $M4_exists" >&58911 + echo "$as_me:11606: result: $M4_exists" >&5 8161 8912 echo "${ECHO_T}$M4_exists" >&6 8162 8913 else 8163 8914 - echo "$as_me:10891: result: no" >&5 8164 + echo "$as_me:116 68: result: no" >&58915 + echo "$as_me:11609: result: no" >&5 8165 8916 echo "${ECHO_T}no" >&6 8166 8917 fi 8167 8918 8168 @@ -10897,7 +116 74,7 @@8919 @@ -10897,7 +11615,7 @@ 8169 8920 echo Ada95 binding required program m4 not found. Ada95 binding disabled. 8170 8921 fi 8171 8922 if test "$cf_cv_prog_gnat_correct" = yes; then 8172 8923 - echo "$as_me:10900: checking if GNAT works" >&5 8173 + echo "$as_me:116 77: checking if GNAT works" >&58924 + echo "$as_me:11618: checking if GNAT works" >&5 8174 8925 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6 8175 8926 8176 8927 rm -rf conftest* *~conftest* 8177 @@ -10925, 7 +11702,7@@8928 @@ -10925,30 +11643,34 @@ 8178 8929 fi 8179 8930 rm -rf conftest* *~conftest* 8180 8931 8181 8932 - echo "$as_me:10928: result: $cf_cv_prog_gnat_correct" >&5 8182 + echo "$as_me:11 705: result: $cf_cv_prog_gnat_correct" >&58933 + echo "$as_me:11646: result: $cf_cv_prog_gnat_correct" >&5 8183 8934 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6 8184 8935 fi 8185 8936 fi 8186 @@ -10948,7 +11725,7 @@ 8187 ;; 8188 esac 8937 8938 if test "$cf_cv_prog_gnat_correct" = yes; then 8939 8940 - # make ADAFLAGS consistent with CFLAGS 8941 - case "$CFLAGS" in 8942 - *-g*) 8943 + echo "$as_me:11653: checking optimization options for ADAFLAGS" >&5 8944 +echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 8945 + case "$CFLAGS" in 8946 + *-g*) 8947 8948 ADAFLAGS="$ADAFLAGS -g" 8949 8950 - ;; 8951 - esac 8952 - case "$CFLAGS" in 8953 - *-O*) 8954 + ;; 8955 + esac 8956 + case "$CFLAGS" in 8957 + *-O*) 8958 + cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[ ].*//'` 8959 8960 - ADAFLAGS="$ADAFLAGS -O3" 8961 + ADAFLAGS="$ADAFLAGS $cf_O_flag" 8962 8963 - ;; 8964 - esac 8965 + ;; 8966 + esac 8967 + echo "$as_me:11670: result: $ADAFLAGS" >&5 8968 +echo "${ECHO_T}$ADAFLAGS" >&6 8189 8969 8190 8970 -echo "$as_me:10951: checking if GNAT supports generics" >&5 8191 +echo "$as_me:11 728: checking if GNAT supports generics" >&58971 +echo "$as_me:11673: checking if GNAT supports generics" >&5 8192 8972 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6 8193 8973 case $cf_gnat_version in #(vi 8194 8974 3.[1-9]*|[4-9].*) #(vi 8195 @@ -10958,7 +11 735,7 @@8975 @@ -10958,7 +11680,7 @@ 8196 8976 cf_gnat_generics=no 8197 8977 ;; 8198 8978 esac 8199 8979 -echo "$as_me:10961: result: $cf_gnat_generics" >&5 8200 +echo "$as_me:11 738: result: $cf_gnat_generics" >&58980 +echo "$as_me:11683: result: $cf_gnat_generics" >&5 8201 8981 echo "${ECHO_T}$cf_gnat_generics" >&6 8202 8982 8203 8983 if test "$cf_gnat_generics" = yes 8204 @@ -10970,7 +11 747,7 @@8984 @@ -10970,7 +11692,7 @@ 8205 8985 cf_generic_objects= 8206 8986 fi 8207 8987 8208 8988 -echo "$as_me:10973: checking if GNAT supports SIGINT" >&5 8209 +echo "$as_me:11 750: checking if GNAT supports SIGINT" >&58989 +echo "$as_me:11695: checking if GNAT supports SIGINT" >&5 8210 8990 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6 8211 8991 if test "${cf_cv_gnat_sigint+set}" = set; then 8212 8992 echo $ECHO_N "(cached) $ECHO_C" >&6 8213 @@ -11018,7 +117 95,7 @@8993 @@ -11018,7 +11740,7 @@ 8214 8994 rm -rf conftest* *~conftest* 8215 8995 8216 8996 fi 8217 8997 -echo "$as_me:11021: result: $cf_cv_gnat_sigint" >&5 8218 +echo "$as_me:117 98: result: $cf_cv_gnat_sigint" >&58998 +echo "$as_me:11743: result: $cf_cv_gnat_sigint" >&5 8219 8999 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6 8220 9000 8221 9001 if test $cf_cv_gnat_sigint = yes ; then 8222 @@ -11027,7 +11 804,7 @@9002 @@ -11027,7 +11749,7 @@ 8223 9003 USE_GNAT_SIGINT="#" 8224 9004 fi 8225 9005 8226 9006 -echo "$as_me:11030: checking if GNAT pragma Unreferenced works" >&5 8227 +echo "$as_me:11 807: checking if GNAT pragma Unreferenced works" >&59007 +echo "$as_me:11752: checking if GNAT pragma Unreferenced works" >&5 8228 9008 echo $ECHO_N "checking if GNAT pragma Unreferenced works... $ECHO_C" >&6 8229 9009 if test "${cf_cv_pragma_unreferenced+set}" = set; then 8230 9010 echo $ECHO_N "(cached) $ECHO_C" >&6 8231 @@ -11058,7 +11 835,7 @@9011 @@ -11058,7 +11780,7 @@ 8232 9012 rm -rf conftest* *~conftest* 8233 9013 8234 9014 fi 8235 9015 -echo "$as_me:11061: result: $cf_cv_pragma_unreferenced" >&5 8236 +echo "$as_me:11 838: result: $cf_cv_pragma_unreferenced" >&59016 +echo "$as_me:11783: result: $cf_cv_pragma_unreferenced" >&5 8237 9017 echo "${ECHO_T}$cf_cv_pragma_unreferenced" >&6 8238 9018 8239 9019 # if the pragma is supported, use it (needed in the Trace code). 8240 @@ -11071,7 +11 848,7 @@9020 @@ -11071,7 +11793,7 @@ 8241 9021 cf_gnat_libraries=no 8242 9022 cf_gnat_projects=no 8243 9023 8244 9024 -echo "$as_me:11074: checking if GNAT supports project files" >&5 8245 +echo "$as_me:11 851: checking if GNAT supports project files" >&59025 +echo "$as_me:11796: checking if GNAT supports project files" >&5 8246 9026 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6 8247 9027 case $cf_gnat_version in #(vi 8248 9028 3.[0-9]*) #(vi 8249 @@ -11139,14 +11 916,14 @@9029 @@ -11139,14 +11861,14 @@ 8250 9030 esac 8251 9031 ;; 8252 9032 esac 8253 9033 -echo "$as_me:11142: result: $cf_gnat_projects" >&5 8254 +echo "$as_me:11 919: result: $cf_gnat_projects" >&59034 +echo "$as_me:11864: result: $cf_gnat_projects" >&5 8255 9035 echo "${ECHO_T}$cf_gnat_projects" >&6 8256 9036 … … 8258 9038 then 8259 9039 - echo "$as_me:11147: checking if GNAT supports libraries" >&5 8260 + echo "$as_me:11 924: checking if GNAT supports libraries" >&59040 + echo "$as_me:11869: checking if GNAT supports libraries" >&5 8261 9041 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6 8262 9042 - echo "$as_me:11149: result: $cf_gnat_libraries" >&5 8263 + echo "$as_me:11 926: result: $cf_gnat_libraries" >&59043 + echo "$as_me:11871: result: $cf_gnat_libraries" >&5 8264 9044 echo "${ECHO_T}$cf_gnat_libraries" >&6 8265 9045 fi 8266 9046 8267 @@ -11166,7 +11 943,7 @@9047 @@ -11166,7 +11888,7 @@ 8268 9048 USE_GNAT_LIBRARIES="#" 8269 9049 fi 8270 9050 8271 9051 -echo "$as_me:11169: checking for ada-compiler" >&5 8272 +echo "$as_me:11 946: checking for ada-compiler" >&59052 +echo "$as_me:11891: checking for ada-compiler" >&5 8273 9053 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6 8274 9054 8275 9055 # Check whether --with-ada-compiler or --without-ada-compiler was given. 8276 @@ -11177,12 +11 954,12 @@9056 @@ -11177,12 +11899,12 @@ 8277 9057 cf_ada_compiler=gnatmake 8278 9058 fi; 8279 9059 8280 9060 -echo "$as_me:11180: result: $cf_ada_compiler" >&5 8281 +echo "$as_me:119 57: result: $cf_ada_compiler" >&59061 +echo "$as_me:11902: result: $cf_ada_compiler" >&5 8282 9062 echo "${ECHO_T}$cf_ada_compiler" >&6 8283 9063 … … 8285 9065 8286 9066 -echo "$as_me:11185: checking for ada-include" >&5 8287 +echo "$as_me:119 62: checking for ada-include" >&59067 +echo "$as_me:11907: checking for ada-include" >&5 8288 9068 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6 8289 9069 8290 9070 # Check whether --with-ada-include or --without-ada-include was given. 8291 @@ -11218,7 +11995,7 @@ 9071 @@ -11206,7 +11928,7 @@ 9072 ;; 9073 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 9074 ;; 9075 -.\${*prefix}*) #(vi 9076 +.\${*prefix}*|.\${*dir}*) #(vi 9077 eval withval="$withval" 9078 case ".$withval" in #(vi 9079 .NONE/*) 9080 @@ -11218,7 +11940,7 @@ 8292 9081 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 8293 9082 ;; 8294 9083 *) 8295 9084 - { { echo "$as_me:11221: error: expected a pathname, not \"$withval\"" >&5 8296 + { { echo "$as_me:119 98: error: expected a pathname, not \"$withval\"" >&59085 + { { echo "$as_me:11943: error: expected a pathname, not \"$withval\"" >&5 8297 9086 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 8298 9087 { (exit 1); exit 1; }; } 8299 9088 ;; 8300 @@ -11227,10 +1 2004,10 @@9089 @@ -11227,10 +11949,10 @@ 8301 9090 fi 8302 9091 ADA_INCLUDE="$withval" 8303 9092 8304 9093 -echo "$as_me:11230: result: $ADA_INCLUDE" >&5 8305 +echo "$as_me:1 2007: result: $ADA_INCLUDE" >&59094 +echo "$as_me:11952: result: $ADA_INCLUDE" >&5 8306 9095 echo "${ECHO_T}$ADA_INCLUDE" >&6 8307 9096 8308 9097 -echo "$as_me:11233: checking for ada-objects" >&5 8309 +echo "$as_me:1 2010: checking for ada-objects" >&59098 +echo "$as_me:11955: checking for ada-objects" >&5 8310 9099 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6 8311 9100 8312 9101 # Check whether --with-ada-objects or --without-ada-objects was given. 8313 @@ -11266,7 +12043,7 @@ 9102 @@ -11254,7 +11976,7 @@ 9103 ;; 9104 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 9105 ;; 9106 -.\${*prefix}*) #(vi 9107 +.\${*prefix}*|.\${*dir}*) #(vi 9108 eval withval="$withval" 9109 case ".$withval" in #(vi 9110 .NONE/*) 9111 @@ -11266,7 +11988,7 @@ 8314 9112 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 8315 9113 ;; 8316 9114 *) 8317 9115 - { { echo "$as_me:11269: error: expected a pathname, not \"$withval\"" >&5 8318 + { { echo "$as_me:1 2046: error: expected a pathname, not \"$withval\"" >&59116 + { { echo "$as_me:11991: error: expected a pathname, not \"$withval\"" >&5 8319 9117 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 8320 9118 { (exit 1); exit 1; }; } 8321 9119 ;; 8322 @@ -11275,10 +1 2052,10 @@9120 @@ -11275,10 +11997,10 @@ 8323 9121 fi 8324 9122 ADA_OBJECTS="$withval" 8325 9123 8326 9124 -echo "$as_me:11278: result: $ADA_OBJECTS" >&5 8327 +echo "$as_me:120 55: result: $ADA_OBJECTS" >&59125 +echo "$as_me:12000: result: $ADA_OBJECTS" >&5 8328 9126 echo "${ECHO_T}$ADA_OBJECTS" >&6 8329 9127 8330 9128 -echo "$as_me:11281: checking if an Ada95 shared-library should be built" >&5 8331 +echo "$as_me:120 58: checking if an Ada95 shared-library should be built" >&59129 +echo "$as_me:12003: checking if an Ada95 shared-library should be built" >&5 8332 9130 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6 8333 9131 8334 9132 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given. 8335 @@ -11288,7 +120 65,7 @@9133 @@ -11288,7 +12010,7 @@ 8336 9134 else 8337 9135 with_ada_sharedlib=no 8338 9136 fi; 8339 9137 -echo "$as_me:11291: result: $with_ada_sharedlib" >&5 8340 +echo "$as_me:120 68: result: $with_ada_sharedlib" >&59138 +echo "$as_me:12013: result: $with_ada_sharedlib" >&5 8341 9139 echo "${ECHO_T}$with_ada_sharedlib" >&6 8342 9140 8343 9141 ADA_SHAREDLIB='lib$(LIB_NAME).so.1' 8344 @@ -11304,12 +120 81,12 @@9142 @@ -11304,12 +12026,12 @@ 8345 9143 fi 8346 9144 8347 9145 else 8348 9146 - { { echo "$as_me:11307: error: No usable Ada compiler found" >&5 8349 + { { echo "$as_me:120 84: error: No usable Ada compiler found" >&59147 + { { echo "$as_me:12029: error: No usable Ada compiler found" >&5 8350 9148 echo "$as_me: error: No usable Ada compiler found" >&2;} 8351 9149 { (exit 1); exit 1; }; } … … 8353 9151 else 8354 9152 - { { echo "$as_me:11312: error: The Ada compiler is needed for this package" >&5 8355 + { { echo "$as_me:120 89: error: The Ada compiler is needed for this package" >&59153 + { { echo "$as_me:12034: error: The Ada compiler is needed for this package" >&5 8356 9154 echo "$as_me: error: The Ada compiler is needed for this package" >&2;} 8357 9155 { (exit 1); exit 1; }; } 8358 9156 fi 8359 @@ -11317,7 +120 94,9 @@9157 @@ -11317,7 +12039,9 @@ 8360 9158 ################################################################################ 8361 9159 … … 8368 9166 ### Construct the list of include-directories to be generated 8369 9167 8370 @@ -11354,7 +12 133,7 @@9168 @@ -11354,7 +12078,7 @@ 8371 9169 fi 8372 9170 8373 9171 ### Build up pieces for makefile rules 8374 9172 -echo "$as_me:11357: checking default library suffix" >&5 8375 +echo "$as_me:12 136: checking default library suffix" >&59173 +echo "$as_me:12081: checking default library suffix" >&5 8376 9174 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 8377 9175 8378 9176 case $DFT_LWR_MODEL in 8379 @@ -11365,10 +12 144,10 @@9177 @@ -11365,10 +12089,10 @@ 8380 9178 shared) DFT_ARG_SUFFIX='' ;; 8381 9179 esac 8382 9180 test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}" 8383 9181 -echo "$as_me:11368: result: $DFT_ARG_SUFFIX" >&5 8384 +echo "$as_me:12 147: result: $DFT_ARG_SUFFIX" >&59182 +echo "$as_me:12092: result: $DFT_ARG_SUFFIX" >&5 8385 9183 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6 8386 9184 8387 9185 -echo "$as_me:11371: checking default library-dependency suffix" >&5 8388 +echo "$as_me:12 150: checking default library-dependency suffix" >&59186 +echo "$as_me:12095: checking default library-dependency suffix" >&5 8389 9187 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 8390 9188 8391 9189 case $DFT_LWR_MODEL in #(vi 8392 @@ -11390, 7 +12169,7@@9190 @@ -11390,11 +12114,11 @@ 8393 9191 ;; 8394 9192 shared) #(vi … … 8399 9197 DFT_DEP_SUFFIX=$DFT_LIB_SUFFIX 8400 9198 ;; 8401 @@ -11421,10 +12200,10 @@ 9199 - cygwin*) #(vi 9200 + cygwin*|mingw*) #(vi 9201 DFT_LIB_SUFFIX='.dll' 9202 DFT_DEP_SUFFIX='.dll.a' 9203 ;; 9204 @@ -11421,10 +12145,10 @@ 8402 9205 esac 8403 9206 test -n "$LIB_SUFFIX" && DFT_LIB_SUFFIX="${LIB_SUFFIX}${DFT_LIB_SUFFIX}" 8404 9207 test -n "$LIB_SUFFIX" && DFT_DEP_SUFFIX="${LIB_SUFFIX}${DFT_DEP_SUFFIX}" 8405 9208 -echo "$as_me:11424: result: $DFT_DEP_SUFFIX" >&5 8406 +echo "$as_me:12 203: result: $DFT_DEP_SUFFIX" >&59209 +echo "$as_me:12148: result: $DFT_DEP_SUFFIX" >&5 8407 9210 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6 8408 9211 8409 9212 -echo "$as_me:11427: checking default object directory" >&5 8410 +echo "$as_me:12 206: checking default object directory" >&59213 +echo "$as_me:12151: checking default object directory" >&5 8411 9214 echo $ECHO_N "checking default object directory... $ECHO_C" >&6 8412 9215 8413 9216 case $DFT_LWR_MODEL in 8414 @@ -11440,7 +12 219,7 @@9217 @@ -11440,7 +12164,7 @@ 8415 9218 DFT_OBJ_SUBDIR='obj_s' ;; 8416 9219 esac 8417 9220 esac 8418 9221 -echo "$as_me:11443: result: $DFT_OBJ_SUBDIR" >&5 8419 +echo "$as_me:12 222: result: $DFT_OBJ_SUBDIR" >&59222 +echo "$as_me:12167: result: $DFT_OBJ_SUBDIR" >&5 8420 9223 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6 8421 9224 8422 9225 ### Set up low-level terminfo dependencies for makefiles. 8423 @@ -11656,7 +12 435,7 @@9226 @@ -11656,7 +12380,7 @@ 8424 9227 : ${CONFIG_STATUS=./config.status} 8425 9228 ac_clean_files_save=$ac_clean_files 8426 9229 ac_clean_files="$ac_clean_files $CONFIG_STATUS" 8427 9230 -{ echo "$as_me:11659: creating $CONFIG_STATUS" >&5 8428 +{ echo "$as_me:12 438: creating $CONFIG_STATUS" >&59231 +{ echo "$as_me:12383: creating $CONFIG_STATUS" >&5 8429 9232 echo "$as_me: creating $CONFIG_STATUS" >&6;} 8430 9233 cat >$CONFIG_STATUS <<_ACEOF 8431 9234 #! $SHELL 8432 @@ -11832,7 +12611,7 @@ 9235 @@ -11788,7 +12512,7 @@ 9236 cat >>$CONFIG_STATUS <<EOF 9237 ac_cs_version="\\ 9238 config.status 9239 -configured by $0, generated by GNU Autoconf 2.52.20101002, 9240 +configured by $0, generated by GNU Autoconf 2.52.20120811, 9241 with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" 9242 9243 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 9244 @@ -11832,7 +12556,7 @@ 8433 9245 echo "$ac_cs_version"; exit 0 ;; 8434 9246 --he | --h) 8435 9247 # Conflict between --help and --header 8436 9248 - { { echo "$as_me:11835: error: ambiguous option: $1 8437 + { { echo "$as_me:12 614: error: ambiguous option: $19249 + { { echo "$as_me:12559: error: ambiguous option: $1 8438 9250 Try \`$0 --help' for more information." >&5 8439 9251 echo "$as_me: error: ambiguous option: $1 8440 9252 Try \`$0 --help' for more information." >&2;} 8441 @@ -11851,7 +12 630,7 @@9253 @@ -11851,7 +12575,7 @@ 8442 9254 ac_need_defaults=false;; 8443 9255 8444 9256 # This is an error. 8445 9257 - -*) { { echo "$as_me:11854: error: unrecognized option: $1 8446 + -*) { { echo "$as_me:12 633: error: unrecognized option: $19258 + -*) { { echo "$as_me:12578: error: unrecognized option: $1 8447 9259 Try \`$0 --help' for more information." >&5 8448 9260 echo "$as_me: error: unrecognized option: $1 8449 9261 Try \`$0 --help' for more information." >&2;} 8450 @@ -11894,6 +12673,7 @@ 9262 @@ -11870,7 +12594,7 @@ 9263 ## Running config.status. ## 9264 ## ----------------------- ## 9265 9266 -This file was extended by $as_me 2.52.20101002, executed with 9267 +This file was extended by $as_me 2.52.20120811, executed with 9268 CONFIG_FILES = $CONFIG_FILES 9269 CONFIG_HEADERS = $CONFIG_HEADERS 9270 CONFIG_LINKS = $CONFIG_LINKS 9271 @@ -11892,8 +12616,8 @@ 9272 AWK="$AWK" 9273 DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX" 8451 9274 DFT_LWR_MODEL="$DFT_LWR_MODEL" 8452 ECHO_LINK="$ECHO_LINK"9275 -ECHO_LINK="$ECHO_LINK" 8453 9276 LIB_NAME="$LIB_NAME" 8454 9277 +LIB_PREFIX="$LIB_PREFIX" … … 8456 9279 LN_S="$LN_S" 8457 9280 NCURSES_MAJOR="$NCURSES_MAJOR" 8458 @@ -11922,7 +12 702,7 @@9281 @@ -11922,7 +12646,7 @@ 8459 9282 "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; 8460 9283 "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;; 8461 9284 "include/ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/ncurses_cfg.h:include/ncurses_cfg.hin" ;; 8462 9285 - *) { { echo "$as_me:11925: error: invalid argument: $ac_config_target" >&5 8463 + *) { { echo "$as_me:12 705: error: invalid argument: $ac_config_target" >&59286 + *) { { echo "$as_me:12649: error: invalid argument: $ac_config_target" >&5 8464 9287 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} 8465 9288 { (exit 1); exit 1; }; };; 8466 9289 esac 8467 @@ -12061,6 +12841,7 @@ 9290 @@ -11981,6 +12705,7 @@ 9291 s,@bindir@,$bindir,;t t 9292 s,@sbindir@,$sbindir,;t t 9293 s,@libexecdir@,$libexecdir,;t t 9294 +s,@datarootdir@,$datarootdir,;t t 9295 s,@datadir@,$datadir,;t t 9296 s,@sysconfdir@,$sysconfdir,;t t 9297 s,@sharedstatedir@,$sharedstatedir,;t t 9298 @@ -12061,6 +12786,7 @@ 8468 9299 s,@DFT_LWR_MODEL@,$DFT_LWR_MODEL,;t t 8469 9300 s,@DFT_UPR_MODEL@,$DFT_UPR_MODEL,;t t … … 8473 9304 s,@NCURSES_MINOR@,$NCURSES_MINOR,;t t 8474 9305 s,@NCURSES_PATCH@,$NCURSES_PATCH,;t t 8475 @@ -12083, 6 +12864,7@@9306 @@ -12083,13 +12809,18 @@ 8476 9307 s,@LOCAL_LDFLAGS@,$LOCAL_LDFLAGS,;t t 8477 9308 s,@LOCAL_LDFLAGS2@,$LOCAL_LDFLAGS2,;t t … … 8481 9312 s,@NCURSES_EXT_FUNCS@,$NCURSES_EXT_FUNCS,;t t 8482 9313 s,@NCURSES_CONST@,$NCURSES_CONST,;t t 8483 @@ -12109,7 +12891,8 @@ 9314 s,@PTHREAD@,$PTHREAD,;t t 9315 s,@cf_cv_enable_reentrant@,$cf_cv_enable_reentrant,;t t 9316 s,@NCURSES_WRAP_PREFIX@,$NCURSES_WRAP_PREFIX,;t t 9317 -s,@ECHO_LINK@,$ECHO_LINK,;t t 9318 +s,@ECHO_LT@,$ECHO_LT,;t t 9319 +s,@ECHO_LD@,$ECHO_LD,;t t 9320 +s,@RULE_CC@,$RULE_CC,;t t 9321 +s,@SHOW_CC@,$SHOW_CC,;t t 9322 +s,@ECHO_CC@,$ECHO_CC,;t t 9323 s,@ADAFLAGS@,$ADAFLAGS,;t t 9324 s,@EXTRA_CFLAGS@,$EXTRA_CFLAGS,;t t 9325 s,@ADA_TRACE@,$ADA_TRACE,;t t 9326 @@ -12109,7 +12840,8 @@ 8484 9327 s,@ADA_OBJECTS@,$ADA_OBJECTS,;t t 8485 9328 s,@ADA_SHAREDLIB@,$ADA_SHAREDLIB,;t t … … 8491 9334 s,@DFT_ARG_SUFFIX@,$DFT_ARG_SUFFIX,;t t 8492 9335 s,@DFT_DEP_SUFFIX@,$DFT_DEP_SUFFIX,;t t 8493 @@ -12237,7 +1 3020,7 @@9336 @@ -12237,7 +12969,7 @@ 8494 9337 esac 8495 9338 8496 9339 if test x"$ac_file" != x-; then 8497 9340 - { echo "$as_me:12240: creating $ac_file" >&5 8498 + { echo "$as_me:1 3023: creating $ac_file" >&59341 + { echo "$as_me:12972: creating $ac_file" >&5 8499 9342 echo "$as_me: creating $ac_file" >&6;} 8500 9343 rm -f "$ac_file" 8501 9344 fi 8502 @@ -12255,7 +1 3038,7 @@9345 @@ -12255,7 +12987,7 @@ 8503 9346 -) echo $tmp/stdin ;; 8504 9347 [\\/$]*) 8505 9348 # Absolute (can't be DOS-style, as IFS=:) 8506 9349 - test -f "$f" || { { echo "$as_me:12258: error: cannot find input file: $f" >&5 8507 + test -f "$f" || { { echo "$as_me:1 3041: error: cannot find input file: $f" >&59350 + test -f "$f" || { { echo "$as_me:12990: error: cannot find input file: $f" >&5 8508 9351 echo "$as_me: error: cannot find input file: $f" >&2;} 8509 9352 { (exit 1); exit 1; }; } 8510 9353 echo $f;; 8511 @@ -12268,7 +130 51,7 @@9354 @@ -12268,7 +13000,7 @@ 8512 9355 echo $srcdir/$f 8513 9356 else 8514 9357 # /dev/null tree 8515 9358 - { { echo "$as_me:12271: error: cannot find input file: $f" >&5 8516 + { { echo "$as_me:130 54: error: cannot find input file: $f" >&59359 + { { echo "$as_me:13003: error: cannot find input file: $f" >&5 8517 9360 echo "$as_me: error: cannot find input file: $f" >&2;} 8518 9361 { (exit 1); exit 1; }; } 8519 9362 fi;; 8520 @@ -12334,7 +13 117,7 @@9363 @@ -12334,7 +13066,7 @@ 8521 9364 * ) ac_file_in=$ac_file.in ;; 8522 9365 esac 8523 9366 8524 9367 - test x"$ac_file" != x- && { echo "$as_me:12337: creating $ac_file" >&5 8525 + test x"$ac_file" != x- && { echo "$as_me:13 120: creating $ac_file" >&59368 + test x"$ac_file" != x- && { echo "$as_me:13069: creating $ac_file" >&5 8526 9369 echo "$as_me: creating $ac_file" >&6;} 8527 9370 8528 9371 # First look for the input files in the build tree, otherwise in the 8529 @@ -12345,7 +13 128,7 @@9372 @@ -12345,7 +13077,7 @@ 8530 9373 -) echo $tmp/stdin ;; 8531 9374 [\\/$]*) 8532 9375 # Absolute (can't be DOS-style, as IFS=:) 8533 9376 - test -f "$f" || { { echo "$as_me:12348: error: cannot find input file: $f" >&5 8534 + test -f "$f" || { { echo "$as_me:13 131: error: cannot find input file: $f" >&59377 + test -f "$f" || { { echo "$as_me:13080: error: cannot find input file: $f" >&5 8535 9378 echo "$as_me: error: cannot find input file: $f" >&2;} 8536 9379 { (exit 1); exit 1; }; } 8537 9380 echo $f;; 8538 @@ -12358,7 +13 141,7 @@9381 @@ -12358,7 +13090,7 @@ 8539 9382 echo $srcdir/$f 8540 9383 else 8541 9384 # /dev/null tree 8542 9385 - { { echo "$as_me:12361: error: cannot find input file: $f" >&5 8543 + { { echo "$as_me:13 144: error: cannot find input file: $f" >&59386 + { { echo "$as_me:13093: error: cannot find input file: $f" >&5 8544 9387 echo "$as_me: error: cannot find input file: $f" >&2;} 8545 9388 { (exit 1); exit 1; }; } 8546 9389 fi;; 8547 @@ -12416,7 +131 99,7 @@9390 @@ -12416,7 +13148,7 @@ 8548 9391 rm -f $tmp/in 8549 9392 if test x"$ac_file" != x-; then 8550 9393 if cmp -s $ac_file $tmp/config.h 2>/dev/null; then 8551 9394 - { echo "$as_me:12419: $ac_file is unchanged" >&5 8552 + { echo "$as_me:13 202: $ac_file is unchanged" >&59395 + { echo "$as_me:13151: $ac_file is unchanged" >&5 8553 9396 echo "$as_me: $ac_file is unchanged" >&6;} 8554 9397 else 8555 9398 ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 8556 9399 diff -Naur ncurses-5.9.orig/Ada95/configure.in ncurses-5.9/Ada95/configure.in 8557 --- ncurses-5.9.orig/Ada95/configure.in 2012-0 2-16 18:25:12.619808985+00008558 +++ ncurses-5.9/Ada95/configure.in 2012-0 2-16 18:25:13.179823762+00009400 --- ncurses-5.9.orig/Ada95/configure.in 2012-08-25 19:57:59.379901042 +0000 9401 +++ ncurses-5.9/Ada95/configure.in 2012-08-25 19:58:01.333225137 +0000 8559 9402 @@ -1,5 +1,5 @@ 8560 9403 dnl*************************************************************************** … … 8569 9412 dnl 8570 9413 -dnl $Id: configure.in,v 1.30 2011/03/31 22:49:22 tom Exp $ 8571 +dnl $Id: configure.in,v 1. 38 2012/01/22 00:50:42 tom Exp $9414 +dnl $Id: configure.in,v 1.41 2012/05/05 20:54:52 tom Exp $ 8572 9415 dnl Process this file with autoconf to produce a configure script. 8573 9416 dnl … … 8577 9420 AC_PREREQ(2.13.20020210) 8578 9421 -AC_REVISION($Revision: 1.30 $) 8579 +AC_REVISION($Revision: 1. 38$)9422 +AC_REVISION($Revision: 1.41 $) 8580 9423 AC_INIT(gen/gen.c) 8581 9424 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin) 8582 9425 9426 @@ -54,7 +54,7 @@ 9427 CF_CFG_DEFAULTS 9428 9429 ### Checks for programs. 9430 -AC_PROG_CC 9431 +AC_PROG_CC(gnatgcc gcc cc) 9432 CF_GCC_VERSION 9433 9434 AC_PROG_CPP 8583 9435 @@ -75,28 +75,8 @@ 8584 9436 … … 8632 9484 AC_MSG_CHECKING(if you want broken-linker support code) 8633 9485 AC_ARG_ENABLE(broken_linker, 8634 @@ -514,7 +490,7 @@ 9486 @@ -394,18 +370,7 @@ 9487 CF_HELP_MESSAGE(Testing/development Options:) 9488 9489 ### use option --disable-echo to suppress full display compiling commands 9490 -AC_MSG_CHECKING(if you want to display full commands during build) 9491 -AC_ARG_ENABLE(echo, 9492 - [ --enable-echo build: display "compiling" commands (default)], 9493 - [with_echo=$enableval], 9494 - [with_echo=yes]) 9495 -if test "$with_echo" = yes; then 9496 - ECHO_LINK= 9497 -else 9498 - ECHO_LINK='@ echo linking $@ ... ;' 9499 -fi 9500 -AC_MSG_RESULT($with_echo) 9501 -AC_SUBST(ECHO_LINK) 9502 +CF_DISABLE_ECHO 9503 9504 ### use option --enable-warnings to turn on all gcc warnings 9505 AC_MSG_CHECKING(if you want to see compiler warnings) 9506 @@ -431,7 +396,6 @@ 9507 then 9508 if test "$with_assertions" = no 9509 then 9510 - AC_DEFINE(NDEBUG) 9511 CPPFLAGS="$CPPFLAGS -DNDEBUG" 9512 else 9513 CF_ADD_ADAFLAGS(-gnata) 9514 @@ -514,24 +478,13 @@ 8635 9515 fi 8636 9516 … … 8641 9521 dnl At the moment we support no other Ada95 compiler. 8642 9522 if test "$cf_with_ada" != "no" ; then 8643 @@ -556,8 +532,10 @@ 9523 CF_PROG_GNAT 9524 if test "$cf_cv_prog_gnat_correct" = yes; then 9525 - 9526 - # make ADAFLAGS consistent with CFLAGS 9527 - case "$CFLAGS" in 9528 - *-g*) 9529 - CF_ADD_ADAFLAGS(-g) 9530 - ;; 9531 - esac 9532 - case "$CFLAGS" in 9533 - *-O*) 9534 - CF_ADD_ADAFLAGS(-O3) 9535 - ;; 9536 - esac 9537 + CF_FIXUP_ADAFLAGS 9538 9539 CF_GNAT_GENERICS 9540 CF_GNAT_SIGINT 9541 @@ -556,8 +509,10 @@ 8644 9542 ################################################################################ 8645 9543 … … 8654 9552 ### Construct the list of include-directories to be generated 8655 9553 CF_INCLUDE_DIRS 8656 @@ -658,6 +636,7 @@ 9554 @@ -656,8 +611,8 @@ 9555 AWK="$AWK" 9556 DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX" 8657 9557 DFT_LWR_MODEL="$DFT_LWR_MODEL" 8658 ECHO_LINK="$ECHO_LINK"9558 -ECHO_LINK="$ECHO_LINK" 8659 9559 LIB_NAME="$LIB_NAME" 8660 9560 +LIB_PREFIX="$LIB_PREFIX" … … 8662 9562 LN_S="$LN_S" 8663 9563 NCURSES_MAJOR="$NCURSES_MAJOR" 9564 diff -Naur ncurses-5.9.orig/Ada95/doc/Makefile.in ncurses-5.9/Ada95/doc/Makefile.in 9565 --- ncurses-5.9.orig/Ada95/doc/Makefile.in 2012-08-25 19:57:59.376567724 +0000 9566 +++ ncurses-5.9/Ada95/doc/Makefile.in 2012-08-25 19:58:02.286553964 +0000 9567 @@ -1,4 +1,4 @@ 9568 -# $Id: Makefile.in,v 1.2 2011/03/26 19:26:17 tom Exp $ 9569 +# $Id: Makefile.in,v 1.3 2012/08/11 21:31:56 tom Exp $ 9570 ############################################################################## 9571 # Copyright (c) 2011 Free Software Foundation, Inc. # 9572 # # 9573 @@ -38,6 +38,7 @@ 9574 srcdir = @srcdir@ 9575 prefix = @prefix@ 9576 exec_prefix = @exec_prefix@ 9577 +datarootdir = @datarootdir@ 9578 datadir = @datadir@ 9579 mandir = @mandir@ 9580 8664 9581 diff -Naur ncurses-5.9.orig/Ada95/gen/Makefile.in ncurses-5.9/Ada95/gen/Makefile.in 8665 --- ncurses-5.9.orig/Ada95/gen/Makefile.in 2012-02-16 18:25:12.619808985 +0000 8666 +++ ncurses-5.9/Ada95/gen/Makefile.in 2012-02-16 18:25:12.907816584 +0000 9582 --- ncurses-5.9.orig/Ada95/gen/Makefile.in 2012-08-25 19:57:59.379901042 +0000 9583 +++ ncurses-5.9/Ada95/gen/Makefile.in 2012-08-25 19:58:01.003226698 +0000 9584 @@ -1,5 +1,5 @@ 9585 ############################################################################## 9586 -# Copyright (c) 1998-2010,2011 Free Software Foundation, Inc. # 9587 +# Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. # 9588 # # 9589 # Permission is hereby granted, free of charge, to any person obtaining a # 9590 # copy of this software and associated documentation files (the "Software"), # 8667 9591 @@ -28,7 +28,7 @@ 8668 9592 # … … 8670 9594 # 8671 9595 -# $Id: Makefile.in,v 1.74 2011/03/26 23:36:30 tom Exp $ 8672 +# $Id: Makefile.in,v 1.7 5 2011/09/24 14:41:24 nixExp $9596 +# $Id: Makefile.in,v 1.76 2012/03/17 16:45:38 tom Exp $ 8673 9597 # 8674 9598 .SUFFIXES: … … 8683 9607 RANLIB = @RANLIB@ 8684 9608 9609 @@ -179,7 +179,7 @@ 9610 -rm -f $(DESTDIR)$(bindir)/$(ADACURSES_CONFIG) 9611 9612 $(PROG_GENERATE): gen.o 9613 - @ECHO_LINK@ $(LINK) $(CFLAGS_NORMAL) gen.o $(LD_FLAGS) -o $@ 9614 + @ECHO_LD@ $(LINK) $(CFLAGS_NORMAL) gen.o $(LD_FLAGS) -o $@ 9615 9616 gen.o: $(srcdir)/gen.c 9617 $(HOST_CC) $(CFLAGS_NORMAL) -c -o $@ $(srcdir)/gen.c 8685 9618 @@ -411,7 +411,7 @@ 8686 9619 @mkdir -p $(HTML_DIR) … … 8693 9626 h=`basename $$f` ;\ 8694 9627 diff -Naur ncurses-5.9.orig/Ada95/gen/gen.c ncurses-5.9/Ada95/gen/gen.c 8695 --- ncurses-5.9.orig/Ada95/gen/gen.c 2012-0 2-16 18:25:12.619808985+00008696 +++ ncurses-5.9/Ada95/gen/gen.c 2012-0 2-16 18:25:12.907816584+00009628 --- ncurses-5.9.orig/Ada95/gen/gen.c 2012-08-25 19:57:59.379901042 +0000 9629 +++ ncurses-5.9/Ada95/gen/gen.c 2012-08-25 19:57:59.859898773 +0000 8697 9630 @@ -32,7 +32,7 @@ 8698 9631 … … 8779 9712 printf(" -- different on your system."); 8780 9713 } 9714 diff -Naur ncurses-5.9.orig/Ada95/samples/Makefile.in ncurses-5.9/Ada95/samples/Makefile.in 9715 --- ncurses-5.9.orig/Ada95/samples/Makefile.in 2012-08-25 19:57:59.376567724 +0000 9716 +++ ncurses-5.9/Ada95/samples/Makefile.in 2012-08-25 19:58:02.286553964 +0000 9717 @@ -28,7 +28,7 @@ 9718 # 9719 # Author: Juergen Pfeifer, 1996 9720 # 9721 -# $Id: Makefile.in,v 1.46 2011/03/28 23:45:08 tom Exp $ 9722 +# $Id: Makefile.in,v 1.47 2012/08/11 21:31:56 tom Exp $ 9723 # 9724 .SUFFIXES: 9725 9726 @@ -42,6 +42,7 @@ 9727 prefix = @prefix@ 9728 exec_prefix = @exec_prefix@ 9729 bindir = @bindir@ 9730 +datarootdir = @datarootdir@ 9731 datadir = @datadir@ 9732 libdir = @libdir@ 9733 includedir = @includedir@ 8781 9734 diff -Naur ncurses-5.9.orig/Ada95/src/Makefile.in ncurses-5.9/Ada95/src/Makefile.in 8782 --- ncurses-5.9.orig/Ada95/src/Makefile.in 2012-0 2-16 18:25:12.619808985+00008783 +++ ncurses-5.9/Ada95/src/Makefile.in 2012-0 2-16 18:25:12.907816584+00009735 --- ncurses-5.9.orig/Ada95/src/Makefile.in 2012-08-25 19:57:59.383234360 +0000 9736 +++ ncurses-5.9/Ada95/src/Makefile.in 2012-08-25 19:57:59.859898773 +0000 8784 9737 @@ -28,7 +28,7 @@ 8785 9738 # … … 8856 9809 install \ 8857 9810 diff -Naur ncurses-5.9.orig/INSTALL ncurses-5.9/INSTALL 8858 --- ncurses-5.9.orig/INSTALL 2012-0 2-16 18:25:12.635809407+00008859 +++ ncurses-5.9/INSTALL 2012-0 2-16 18:25:13.251825661 +00009811 --- ncurses-5.9.orig/INSTALL 2012-08-25 19:57:59.396567629 +0000 9812 +++ ncurses-5.9/INSTALL 2012-08-25 19:58:02.289887281 +0000 8860 9813 @@ -1,5 +1,5 @@ 8861 9814 ------------------------------------------------------------------------------- … … 8870 9823 ------------------------------------------------------------------------------- 8871 9824 --- $Id: INSTALL,v 1.155 2011/03/31 08:27:24 tom Exp $ 8872 +-- $Id: INSTALL,v 1.16 3 2012/02/11 16:20:42tom Exp $9825 +-- $Id: INSTALL,v 1.166 2012/08/11 20:12:34 tom Exp $ 8873 9826 --------------------------------------------------------------------- 8874 9827 How to install Ncurses/Terminfo on your system … … 8895 9848 configure --with-ticlib --with-shared --disable-tic-depends 8896 9849 8897 @@ -616,6 +617,12 @@ 9850 @@ -555,6 +556,9 @@ 9851 library by reducing global and static variables. This option is also 9852 set if --with-pthread is used. 9853 9854 + Enabling this option adds a "t" to the library names, except for the 9855 + special case when --enable-weak-symbols is also used. 9856 + 9857 --enable-rpath 9858 Use rpath option when generating shared libraries, and (with some 9859 restrictions) when linking the corresponding programs. This originally 9860 @@ -595,6 +599,14 @@ 9861 reducing the need for juggling the global SP value with set_term() and 9862 delscreen(). 9863 9864 + --enable-string-hacks 9865 + Controls whether strlcat and strlcpy may be used. The same issue 9866 + applies to OpenBSD's warnings about snprintf, noting that this function 9867 + is weakly standardized. 9868 + 9869 + Aside from stifling these warnings, there is no functional improvement 9870 + in ncurses. 9871 + 9872 --enable-symlinks 9873 If your system supports symbolic links, make tic use symbolic links 9874 rather than hard links to save diskspace when writing aliases in the 9875 @@ -616,6 +628,12 @@ 8898 9876 match is found in the terminfo database. See also the --enable-getcap 8899 9877 and --enable-getcap-cache options. … … 8908 9886 Turn on GCC compiler warnings. There should be only a few. 8909 9887 8910 @@ -824,7 +8 31,17 @@9888 @@ -824,7 +842,17 @@ 8911 9889 NOTE: a few systems build shared libraries with fixed pathnames; this 8912 9890 option probably will not work for those configurations. … … 8927 9905 overrides all other library model specifications. Note that libtool 8928 9906 must already be installed, uses makefile rules dependent on GNU make, 8929 @@ -904,6 +9 21,10 @@9907 @@ -904,6 +932,10 @@ 8930 9908 --with-pkg-config=[DIR] 8931 9909 Check for pkg-config, optionally specifying its path. … … 8938 9916 Generate profile-libraries These are named by adding "_p" to the root, 8939 9917 e.g., libncurses_p.a 8940 @@ -1000,6 +1021,14 @@ 9918 @@ -996,10 +1028,27 @@ 9919 library dependencies for tic and other programs built with the tic 9920 library. 9921 9922 + --with-tparm-arg[=XXX] 9923 + Override the type used for tparm() arguments, which normally is a 9924 + "long". However the function must assume that its arguments can hold a 9925 + pointer to char's which is not always workable for 64-bit platforms. A 9926 + better choice would be intptr_t, which was not available at the time 9927 + tparm's interface was defined. 9928 + 9929 + If the option is not given, this defaults to "long". 9930 + 9931 --with-trace 8941 9932 Configure the trace() function as part of the all models of the ncurses 8942 9933 library. Normally it is part of the debug (libncurses_g) library only. … … 8953 9944 For testing, compile with debug option. 8954 9945 This also sets the --disable-leaks option. 8955 @@ -1024,6 +10 53,8 @@9946 @@ -1024,6 +1073,8 @@ 8956 9947 install as "ncurses.h" and modify the installed headers and manpages 8957 9948 accordingly. … … 8962 9953 XSI curses declares "bool" as part of the interface. C++ also declares 8963 9954 "bool". Neither specifies the size and type of booleans, but both 8964 @@ -1726,20 +17 57,37 @@9955 @@ -1726,20 +1777,37 @@ 8965 9956 By default, there are no entries on the fallback list. After you have 8966 9957 built the ncurses suite for the first time, you can change the list … … 9005 9996 Any non-empty fallback list is const-ed and therefore lives in sharable 9006 9997 diff -Naur ncurses-5.9.orig/MANIFEST ncurses-5.9/MANIFEST 9007 --- ncurses-5.9.orig/MANIFEST 2012-0 2-16 18:25:12.643809617+00009008 +++ ncurses-5.9/MANIFEST 2012-0 2-16 18:25:13.063820699+00009009 @@ -545,6 +545, 7@@9998 --- ncurses-5.9.orig/MANIFEST 2012-08-25 19:57:59.429900806 +0000 9999 +++ ncurses-5.9/MANIFEST 2012-08-25 19:58:01.833222773 +0000 10000 @@ -545,6 +545,8 @@ 9010 10001 ./include/nc_alloc.h 9011 10002 ./include/nc_mingw.h 9012 10003 ./include/nc_panel.h 10004 +./include/nc_string.h 9013 10005 +./include/nc_termios.h 9014 10006 ./include/nc_tparm.h 9015 10007 ./include/ncurses_cfg.hin 9016 10008 ./include/ncurses_defs 9017 @@ -764,7 +76 5,6 @@10009 @@ -764,7 +766,6 @@ 9018 10010 ./mk-0th.awk 9019 10011 ./mk-1st.awk … … 9023 10015 ./ncurses/Makefile.in 9024 10016 ./ncurses/README 9025 @@ -1022,6 +1022,7 @@ 10017 @@ -867,6 +868,12 @@ 10018 ./ncurses/llib-lncursest 10019 ./ncurses/llib-lncursestw 10020 ./ncurses/llib-lncursesw 10021 +./ncurses/llib-ltic 10022 +./ncurses/llib-ltictw 10023 +./ncurses/llib-lticw 10024 +./ncurses/llib-ltinfo 10025 +./ncurses/llib-ltinfotw 10026 +./ncurses/llib-ltinfow 10027 ./ncurses/modules 10028 ./ncurses/tinfo/MKcaptab.awk 10029 ./ncurses/tinfo/MKcaptab.sh 10030 @@ -970,6 +977,14 @@ 10031 ./ncurses/win32con/gettimeofday.c 10032 ./ncurses/win32con/wcwidth.c 10033 ./ncurses/win32con/win_driver.c 10034 +./package/debian/changelog 10035 +./package/debian/compat 10036 +./package/debian/control 10037 +./package/debian/copyright 10038 +./package/debian/rules 10039 +./package/debian/source/format 10040 +./package/debian/watch 10041 +./package/ncurses.spec 10042 ./panel/Makefile.in 10043 ./panel/headers 10044 ./panel/llib-lpanel 10045 @@ -1022,6 +1037,7 @@ 9026 10046 ./test/cardfile.dat 9027 10047 ./test/chgat.c … … 9032 10052 ./test/configure.in 9033 10053 diff -Naur ncurses-5.9.orig/Makefile.in ncurses-5.9/Makefile.in 9034 --- ncurses-5.9.orig/Makefile.in 2012-0 2-16 18:25:12.643809617+00009035 +++ ncurses-5.9/Makefile.in 2012-0 2-16 18:25:13.183823867+000010054 --- ncurses-5.9.orig/Makefile.in 2012-08-25 19:57:59.419900852 +0000 10055 +++ ncurses-5.9/Makefile.in 2012-08-25 19:58:02.289887281 +0000 9036 10056 @@ -1,6 +1,6 @@ 9037 10057 -# $Id: Makefile.in,v 1.30 2010/11/27 21:45:27 tom Exp $ 9038 +# $Id: Makefile.in,v 1.3 3 2012/01/21 23:54:30tom Exp $10058 +# $Id: Makefile.in,v 1.34 2012/08/11 21:41:19 tom Exp $ 9039 10059 ############################################################################## 9040 10060 -# Copyright (c) 1998-2008,2010 Free Software Foundation, Inc. # … … 9053 10073 @SET_MAKE@ 9054 10074 9055 @@ -87,12 +88,9 @@ 10075 @@ -48,6 +49,7 @@ 10076 10077 prefix = @prefix@ 10078 exec_prefix = @exec_prefix@ 10079 +datarootdir = @datarootdir@ 10080 10081 bindir = @bindir@ 10082 ticdir = @TERMINFO@ 10083 @@ -87,12 +89,9 @@ 9056 10084 fgrep NCURSES_VERSION $(includedir)/curses.h >/dev/null || \ 9057 10085 echo '** Will overwrite non-ncurses curses.h' … … 9068 10096 # directories to visit. 9069 10097 diff -Naur ncurses-5.9.orig/NEWS ncurses-5.9/NEWS 9070 --- ncurses-5.9.orig/NEWS 2012-0 2-16 18:25:12.639809512+00009071 +++ ncurses-5.9/NEWS 2012-0 2-16 18:25:13.255825766+000010098 --- ncurses-5.9.orig/NEWS 2012-08-25 19:57:59.409900901 +0000 10099 +++ ncurses-5.9/NEWS 2012-08-25 19:58:02.303220551 +0000 9072 10100 @@ -1,5 +1,5 @@ 9073 10101 ------------------------------------------------------------------------------- … … 9082 10110 ------------------------------------------------------------------------------- 9083 10111 --- $Id: NEWS,v 1.1682 2011/04/04 00:02:42 tom Exp $ 9084 +-- $Id: NEWS,v 1.1 857 2012/02/11 23:39:31tom Exp $10112 +-- $Id: NEWS,v 1.1942 2012/08/11 21:30:05 tom Exp $ 9085 10113 ------------------------------------------------------------------------------- 9086 10114 9087 10115 This is a log of changes that ncurses has gone through since Zeyd started 9088 @@ -45,6 +45, 467@@10116 @@ -45,6 +45,731 @@ 9089 10117 Changes through 1.9.9e did not credit all contributions; 9090 10118 it is not possible to add this information. 9091 10119 10120 +20120811 10121 + + update autoconf patch to 2.52.20120811, adding --datarootdir 10122 + (prompted by discussion with Erwin Waterlander). 10123 + + improve description of --enable-reentrant option in README and the 10124 + INSTALL file. 10125 + + add nsterm-256color, make this the default nsterm -TD 10126 + + remove bw from nsterm-bce, per testing with tack -TD 10127 + 10128 +20120804 10129 + + update test/configure, adding check for tinfo library. 10130 + + improve limit-checks for the getch fifo (report by Werner Fink). 10131 + + fix a remaining mismatch between $with_echo and the symbols updated 10132 + by CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by 10133 + Sven Joachim, cf: 20120317). 10134 + + modify followup check for pkg-config's library directory in the 10135 + --enable-pc-files option to validate syntax (report by Sven Joachim, 10136 + cf: 20110716). 10137 + 10138 +20120728 10139 + + correct path for ncurses_mingw.h in include/headers, in case build 10140 + is done outside source-tree (patch by Roumen Petrov). 10141 + + modify some older xterm entries to align with xterm source -TD 10142 + + separate "xterm-old" alias from "xterm-r6" -TD 10143 + + add E3 extended capability to xterm-basic and putty -TD 10144 + + parenthesize parameters of other macros in curses.h -TD 10145 + + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h 10146 + in case it happens to be a comma-expression, etc. (patch by Nick 10147 + Black). 10148 + 10149 +20120721 10150 + + improved form_request_by_name() and menu_request_by_name(). 10151 + + eliminate two fixed-size buffers in toe.c 10152 + + extend use_tioctl() to have expected behavior when use_env(FALSE) and 10153 + use_tioctl(TRUE) are called. 10154 + + modify ncurses test-program, adding -E and -T options to demonstrate 10155 + use_env() versus use_tioctl(). 10156 + 10157 +20120714 10158 + + add use_tioctl() function (adapted from patch by Werner Fink, 10159 + Novell #769788): 10160 + 10161 +20120707 10162 + + add ncurses_mingw.h to installed headers (prompted by patch by 10163 + Juergen Pfeifer). 10164 + + clarify return-codes from wgetch() in response to SIGWINCH (prompted 10165 + by Novell #769788). 10166 + + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even 10167 + if screensize is unchanged. Modify _nc_update_screensize() to push a 10168 + KEY_RESIZE if there was a SIGWINCH, even if it does not call 10169 + resizeterm(). These changes eliminate the case where a SIGWINCH is 10170 + received, but ERR returned from wgetch or wgetnstr because the screen 10171 + dimensions did not change (Novell #769788). 10172 + 10173 +20120630 10174 + + add --enable-interop to sample package scripts (suggested by Juergen 10175 + Pfeifer). 10176 + + update CF_PATH_SYNTAX macro, from mawk changes. 10177 + + modify mk-0th.awk to allow for generating llib-ltic, etc., though 10178 + some work is needed on cproto to work with lib_gen.c to update 10179 + llib-lncurses. 10180 + + remove redundant getenv() cal in database-iterator leftover from 10181 + cleanup in 20120622 changes (report by Sven Joachim). 10182 + 10183 +20120622 10184 + + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap 10185 + + fix caching of environment variables in database-iterator (patch by 10186 + Philippe Troin, Redhat #831366). 10187 + 10188 +20120616 10189 + + add configure check to distinguish clang from gcc to eliminate 10190 + warnings about unused command-line parameters when compiler warnings 10191 + are enabled. 10192 + + improve behavior when updating terminfo entries which are hardlinked 10193 + by allowing for the possibility that an alias has been repurposed to 10194 + a new primary name. 10195 + + fix some strict compiler warnings based on package scripts. 10196 + + further fixes for configure check for working poll (Debian #676461). 10197 + 10198 +20120608 10199 + + fix an uninitialized variable in -c/-n logic for infocmp changes 10200 + (cf: 20120526). 10201 + + corrected fix for building c++ binding with clang 3.0 (report/patch 10202 + by Richard Yao, Gentoo #417613, cf: 20110409) 10203 + + correct configure check for working poll, fixing the case where stdin 10204 + is redirected, e.g., in rpm/dpkg builds (Debian #676461). 10205 + + add rpm- and dpkg-scripts, to test those build-environments. 10206 + The resulting packages are used only for testing. 10207 + 10208 +20120602 10209 + + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD 10210 + + add kdch1, etc., to qvt108 -TD 10211 + + add dl1/il1 to some entries based on dl/il values -TD 10212 + + add dl to simpleterm -TD 10213 + + add consistency-checks in tic for insert-line vs delete-line 10214 + controls, and insert/delete-char keys 10215 + + correct no-leaks logic in infocmp when doing comparisons, fixing 10216 + duplicate free of entries given via the command-line, and freeing 10217 + entries loaded from the last-but-one of files specified on the 10218 + command-line. 10219 + + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord, 10220 + analysis by Martin Husemann). 10221 + + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by 10222 + Onno van der Linden). 10223 + 10224 +20120526 10225 + + extend -c and -n options of infocmp to allow comparing more than two 10226 + entries. 10227 + + correct check in infocmp for number of terminal names when more than 10228 + two are given. 10229 + + correct typo in curs_threads.3x (report by Yanhui Shen on 10230 + freebsd-hackers mailing list). 10231 + 10232 +20120512 10233 + + corrected 'op' for bterm (report by Samuel Thibault) -TD 10234 + + modify test/background.c to demonstrate a background character 10235 + holding a colored ACS_HLINE. The behavior differs from SVr4 due to 10236 + the thick- and double-line extension (cf: 20091003). 10237 + + modify handling of acs characters in PutAttrChar to avoid mapping an 10238 + unmapped character to a space with A_ALTCHARSET set. 10239 + + rewrite vt520 entry based on vt420 -TD 10240 + 10241 +20120505 10242 + + remove p6 (bold) from opus3n1+ for consistency -TD 10243 + + remove acs stuff from env230 per clues in Ingres termcap -TD 10244 + + modify env230 sgr/sgr0 to match other capabilities -TD 10245 + + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD 10246 + + make sgr for dku7202 agree with other caps -TD 10247 + + make sgr for ibmpc agree with other caps -TD 10248 + + make sgr for tek4107 agree with other caps -TD 10249 + + make sgr for ndr9500 agree with other caps -TD 10250 + + make sgr for sco-ansi agree with other caps -TD 10251 + + make sgr for d410 agree with other caps -TD 10252 + + make sgr for d210 agree with other caps -TD 10253 + + make sgr for d470c, d470c-7b agree with other caps -TD 10254 + + remove redundant AC_DEFINE for NDEBUG versus Makefile definition. 10255 + + fix a back-link in _nc_delink_entry(), which is needed if ncurses is 10256 + configured with --enable-termcap and --disable-getcap. 10257 + 10258 +20120428 10259 + + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD 10260 + + add eslok flag to dec+sl -TD 10261 + + dec+sl applies to vt320 and up -TD 10262 + + drop wsl width from xterm+sl -TD 10263 + + reuse xterm+sl in putty and nsca-m -TD 10264 + + add ansi+tabs to vt520 -TD 10265 + + add ansi+enq to vt220-vt520 -TD 10266 + + fix a compiler warning in example in ncurses-intro.doc (Paul Waring). 10267 + + added paragraph in keyname manpage telling how extended capabilities 10268 + are interpreted as key definitions. 10269 + + modify tic's check of conflicting key definitions to include extended 10270 + capability strings in addition to the existing check on predefined 10271 + keys. 10272 + 10273 +20120421 10274 + + improve cleanup of temporary files in tic using atexit(). 10275 + + add msgr to vt420, similar DEC vtXXX entries -TD 10276 + + add several missing vt420 capabilities from vt220 -TD 10277 + + factor out ansi+pp from several entries -TD 10278 + + change xterm+sl and xterm+sl-twm to include only the status-line 10279 + capabilities and not "use=xterm", making them more generally useful 10280 + as building-blocks -TD 10281 + + add dec+sl building block, as example -TD 10282 + 10283 +20120414 10284 + + add XT to some terminfo entries to improve usefulness for other 10285 + applications than screen, which would like to pretend that xterm's 10286 + title is a status-line. -TD 10287 + + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review 10288 + of ordering and overrides -TD 10289 + + add consistency check in tic for screen's "XT" capability. 10290 + + add section in terminfo.src summarizing the user-defined capabilities 10291 + used in that file -TD 10292 + 10293 +20120407 10294 + + fix an inconsistency between tic/infocmp "-x" option; tic omits all 10295 + non-standard capabilities, while infocmp was ignoring only the user 10296 + definable capabilities. 10297 + + improve special case in tic parsing of description to allow it to be 10298 + followed by terminfo capabilities. Previously the description had to 10299 + be the last field on an input line to allow tic to distinguish 10300 + between termcap and terminfo format while still allowing commas to be 10301 + embedded in the description. 10302 + + correct variable name in gen_edit.sh which broke configurability of 10303 + the --with-xterm-kbs option. 10304 + + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD 10305 + + further amend 20110910 change, providing for configure-script 10306 + override of the "linux" terminfo entry to install and changing the 10307 + default for that to "linux2.2" (Debian #665959). 10308 + 10309 +20120331 10310 + + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317). 10311 + + correct order of use-clauses in st-256color -TD 10312 + + modify configure script to look for gnatgcc if the Ada95 binding 10313 + is built, in preference to the default gcc/cc (suggested by 10314 + Nicolas Boulenguez). 10315 + + modify configure script to ensure that the same -On option used for 10316 + the C compiler in CFLAGS is used for ADAFLAGS rather than simply 10317 + using "-O3" (suggested by Nicolas Boulenguez) 10318 + 10319 +20120324 10320 + + amend an old fix so that next_char() exits properly for empty files, 10321 + e.g., from reading /dev/null (cf: 20080804). 10322 + + modify tic so that it can read from the standard input, or from 10323 + a character device. Because tic uses seek's, this requires writing 10324 + the data to a temporary file first (prompted by remark by Sven 10325 + Joachim) (cf: 20000923). 10326 + 10327 +20120317 10328 + + correct a check made in lib_napms.c, so that terminfo applications 10329 + can again use napms() (cf: 20110604). 10330 + + add a note in tic.h regarding required casts for ABSENT_BOOLEAN 10331 + (cf: 20040327). 10332 + + correct scripting for --disable-echo option in test/configure. 10333 + + amend check for missing c++ compiler to work when no error is 10334 + reported, and no variables set (cf: 20021206). 10335 + + add/use configure macro CF_DISABLE_ECHO. 10336 + 10337 +20120310 10338 + + fix some strict compiler warnings for abi6 and 64-bits. 10339 + + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303). 10340 + + improve a limit-check in infocmp.c (Werner Fink): 10341 + 10342 +20120303 10343 + + minor tidying of terminfo.tail, clarify reason for limitation 10344 + regarding mapping of \0 to \200 10345 + + minor improvement to _nc_copy_termtype(), using memcpy to replace 10346 + loops. 10347 + + fix no-leaks checking in test/demo_termcap.c to account for multiple 10348 + calls to setupterm(). 10349 + + modified the libgpm change to show previous load as a problem in the 10350 + debug-trace. 10351 + > merge some patches from OpenSUSE rpm (Werner Fink): 10352 + + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c 10353 + + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by 10354 + runtime linker 10355 + + ncurses-5.6-fallback.dif, do not free arrays and strings from static 10356 + fallback entries 10357 + 10358 +20120228 10359 + + fix breakage in tic/infocmp from 20120225 (report by Werner Fink). 10360 + 10361 +20120225 10362 + + modify configure script to allow creating dll's for MinGW when 10363 + cross-compiling. 10364 + + add --enable-string-hacks option to control whether strlcat and 10365 + strlcpy may be used. The same issue applies to OpenBSD's warnings 10366 + about snprintf, noting that this function is weakly standardized. 10367 + + add configure checks for strlcat, strlcpy and snprintf, to help 10368 + reduce bogus warnings with OpenBSD builds. 10369 + + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration 10370 + (cf:20111231) 10371 + + update config.guess, config.sub 10372 + 10373 +20120218 10374 + + correct CF_ETIP_DEFINES configure macro, making it exit properly on 10375 + the first success (patch by Pierre Labastie). 10376 + + improve configure macro CF_MKSTEMP by moving existence-check for 10377 + mkstemp out of the AC_TRY_RUN, to help with cross-compiles. 10378 + + improve configure macro CF_FUNC_POLL from luit changes to detect 10379 + broken implementations, e.g., with Mac OS X. 10380 + + add configure option --with-tparm-arg 10381 + + build-fix for MinGW cross-compiling, so that make_hash does not 10382 + depend on TTY definition (cf: 20111008). 10383 + 9092 10384 +20120211 9093 10385 + + make sgr for xterm-pcolor agree with other caps -TD … … 9554 10846 9555 10847 20110402 9556 @@ -155,7 +616,7 @@ 10848 @@ -100,7 +825,7 @@ 10849 + modify configure script to provide value for HTML_DIR in 10850 Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is 10851 distributed separately (report by Nicolas Boulenguez). 10852 - + modify configure script to add -g and/or -O3 to ADAFLAGS if the 10853 + + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the 10854 CFLAGS for the build has these options. 10855 + amend change from 20070324, to not add 1 to the result of getmaxx 10856 and getmaxy in the Ada binding (report by Nicolas Boulenguez for 10857 @@ -155,7 +880,7 @@ 9557 10858 20110212 9558 10859 + regenerated html manpages. … … 9563 10864 20110205 9564 10865 + add xterm-utf8 entry as a demo of the U8 feature -TD 9565 @@ -219,7 + 680,7 @@10866 @@ -219,7 +944,7 @@ 9566 10867 version which works with termcap. 9567 10868 + remove obsolete emacs "Local Variables" section from documentation … … 9572 10873 9573 10874 20101128 9574 @@ -294,8 + 755,8 @@10875 @@ -294,8 +1019,8 @@ 9575 10876 Sven Joachim). 9576 10877 + add parameterized cursor-controls to linux-basic (report by Dae) -TD … … 9583 10884 Joachim). 9584 10885 + add a check in mk-dlls.sh.in to obtain the size of a pointer to 9585 @@ -478,7 + 939,7 @@10886 @@ -478,7 +1203,7 @@ 9586 10887 20100417 9587 10888 + modify _nc_capcmp() to work with cancelled strings. … … 9592 10893 which adds rpath options for libraries in unusual places. 9593 10894 + improve CF_RPATH_HACK_2 by checking if the rpath option for a given 9594 @@ -8979,15 +9440,18 @@ 10895 @@ -6530,7 +7255,7 @@ 10896 handling in lynx (reported by Kim DeVaughn). 10897 10898 990306 pre-release 10899 - + add -G option to tic and infocmp, to reverse the -g option. 10900 + + add -G option to tic and infocmp, to reverse the "-g" option. 10901 + recode functions in name_match.c to avoid use of strncpy, which 10902 caused a 4-fold slowdown in tic (cf: 980530). 10903 + correct a few warnings about sign-extension in recent changes. 10904 @@ -6901,7 +7626,7 @@ 10905 since that is a little more efficient. 10906 + minor correction to infocmp to avoid displaying "difference" between 10907 two capabilities that are rendered in equivalent forms. 10908 - + add -g option to tic/infocmp to force character constants to be 10909 + + add "-g" option to tic/infocmp to force character constants to be 10910 displayed in quoted form. Otherwise their decimal values are shown. 10911 + modify setupterm so that cancelled strings are treated the same as 10912 absent strings, cancelled and absent booleans false (does not affect 10913 @@ -8979,15 +9704,18 @@ 9595 10914 + correction to #317. 9596 10915 > patch 317 (ESR): … … 9615 10934 (lib_getch.c, lib_twait.c). 9616 10935 + new function _nc_mvcur_resume() 9617 @@ -9059, 7 +9523,7@@10936 @@ -9059,12 +9787,12 @@ 9618 10937 + corrected typo in dtterm description. 9619 10938 > patch 313 (ESR): … … 9624 10943 960810 - snapshot 9625 10944 + correct nl()/nonl() to work as per SVr4 & XSI. 9626 @@ -9073,7 +9537,8 @@ 10945 + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code) 10946 - + refine configure-test for -g option (Tim Mooney). 10947 + + refine configure-test for "-g" option (Tim Mooney). 10948 + correct interaction between O_BLANK and NEW_LINE request in form 10949 library (Juergen Pfeifer) 10950 10951 @@ -9073,7 +9801,8 @@ 9627 10952 > patch 312 (ESR): 9628 10953 correct terminfo.src corrupted by #310 … … 9634 10959 960803 - snapshot 9635 10960 + corrected tparm to handle capability strings without explicit pop 9636 @@ -9083,7 +9 548,7 @@10961 @@ -9083,7 +9812,7 @@ 9637 10962 > patch 310 (ESR): 9638 10963 + documentation and prototyping errors for has_color, immedok and idcok … … 9643 10968 960730 9644 10969 + eliminate quoted includes in ncurses subdirectory, ensure config.h 9645 @@ -9095,7 +9 560,7 @@10970 @@ -9095,7 +9824,7 @@ 9646 10971 + call cbreak() in initscr(), as per XSI & SVr4. 9647 10972 + turn off hardware echo in initscr() as per XSI & SVr4 … … 9652 10977 + add more symbols to infocmp. 9653 10978 9654 @@ -9114,6 +9 579,7 @@10979 @@ -9114,6 +9843,7 @@ 9655 10980 > patch 308 (ESR): 9656 10981 + terminfo changes (9.3.8) … … 9660 10985 960713 - snapshot 9661 10986 + always check for <sys/bsdtypes.h> since ISC needs it to declare 9662 @@ -9122,9 +9 588,19 @@10987 @@ -9122,9 +9852,19 @@ 9663 10988 by Juergen Pfeifer, Mike Long) 9664 10989 + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer) … … 9681 11006 960707 9682 11007 + rollback ESR's #305 change to terminfo.src (it breaks existing 9683 @@ -9139,7 +9 615,6 @@11008 @@ -9139,7 +9879,6 @@ 9684 11009 + make lib_vidattr.c more readable using macros. 9685 11010 + filter out rmul, rmso that conflict with sgr0 when reading terminal … … 9689 11014 (reported by Zeyd). 9690 11015 + modify man-page install for BSDI to install preformatted .0 files 9691 @@ -9152,6 +9 627,12 @@11016 @@ -9152,6 +9891,12 @@ 9692 11017 + disable scrollok during the ncurses 'p' test; if it is enabled the 9693 11018 stdscr will scroll when putting the box-corners in the lower-right … … 9702 11027 960629 - snapshot 9703 11028 + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for 9704 @@ -9234,6 +9 715,7 @@11029 @@ -9234,6 +9979,7 @@ 9705 11030 + better fix for nvi refresh-bug (Rick Marshall) 9706 11031 + fix for bug in handling of interrupted keystroke waits, … … 9710 11035 960601 - snapshot 9711 11036 + auto-configure man-page compression-format and renames for Debian. 9712 @@ -9263,6 +9745,9 @@ 11037 @@ -9248,7 +9994,7 @@ 11038 + enhancement to the control over the new PC-style soft key format. 11039 allow caller now to select whether or not one wants to have 11040 the index-line; see curs_slk.3x for documentation (Juergen Pfeifer). 11041 - + typos, don't use inline with -g (Philippe De Muyter) 11042 + + typos, don't use inline with "-g" (Philippe De Muyter) 11043 + fixes for menus & wattr-, slk-functions (Juergen Pfeifer) 11044 11045 960526 - snapshot 11046 @@ -9263,6 +10009,9 @@ 9713 11047 + include sys/types.h in case stdlib.h does not declare size_t. 9714 11048 + fixes for makefile (Tim Mooney) … … 9720 11054 960518 - snapshot 9721 11055 + revised ncurses.c panner test, let pad abut all 4 sides of screen. 9722 @@ -9275,6 + 9760,8 @@11056 @@ -9275,6 +10024,8 @@ 9723 11057 confusion, and made this check for the /usr/lib/terminfo pre-existing 9724 11058 directory. … … 9729 11063 + mods to tracing, especially for ACS chars. 9730 11064 + corrected off-by-one in IDCtransform. 9731 @@ -9294,13 + 9781,21 @@11065 @@ -9294,13 +10045,21 @@ 9732 11066 > patches 297, 298 (ESR): 9733 11067 + implement TERMINFO_DIRS, and -o option of tic … … 9754 11088 9755 11089 960504 - snapshot 9756 @@ -9326,11 + 9821,20 @@11090 @@ -9326,11 +10085,20 @@ 9757 11091 + make TIOCGWINSZ configure test less stringent, in case user 9758 11092 configures via terminal that cannot get screen size. … … 9778 11112 960418 - snapshot 9779 11113 + use autoconf 2.9 9780 @@ -9338,10 + 9842,22 @@11114 @@ -9338,10 +10106,22 @@ 9781 11115 definitions via <termios.h>, modified macros in lib_raw.c to avoid 9782 11116 K&R-style substitution) … … 9805 11139 + fixes for NeXT, ISC and HPUX auto-configure 9806 11140 diff -Naur ncurses-5.9.orig/README ncurses-5.9/README 9807 --- ncurses-5.9.orig/README 2012-0 2-16 18:25:12.643809617+00009808 +++ ncurses-5.9/README 2012-0 2-16 18:25:12.915816795+000011141 --- ncurses-5.9.orig/README 2012-08-25 19:57:59.409900901 +0000 11142 +++ ncurses-5.9/README 2012-08-25 19:58:02.303220551 +0000 9809 11143 @@ -1,5 +1,5 @@ 9810 11144 ------------------------------------------------------------------------------- 9811 11145 --- Copyright (c) 1998-2004,2006 Free Software Foundation, Inc. -- 9812 +-- Copyright (c) 1998-20 06,2011Free Software Foundation, Inc. --11146 +-- Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. -- 9813 11147 -- -- 9814 11148 -- Permission is hereby granted, free of charge, to any person obtaining a -- … … 9819 11153 ------------------------------------------------------------------------------- 9820 11154 --- $Id: README,v 1.23 2006/04/22 22:19:37 tom Exp $ 9821 +-- $Id: README,v 1.2 4 2011/08/20 16:47:16 tom Exp $11155 +-- $Id: README,v 1.25 2012/08/11 20:11:26 tom Exp $ 9822 11156 ------------------------------------------------------------------------------- 9823 11157 README file for the ncurses package 9824 11158 9825 @@ -153,8 +153,10 @@ 11159 @@ -78,6 +78,10 @@ 11160 library interfaces are not binary-compatible with the non-wide-character 11161 version. 11162 11163 +If you configure using the --enable-reentrant option, a "t" is appended to the 11164 +library names (e.g., libncursest.a) and the resulting libraries have a 11165 +different binary interface which makes the ncurses interface more "opaque". 11166 + 11167 The ncurses libraries implement the curses API. The panel, menu and forms 11168 libraries implement clones of the SVr4 panel, menu and forms APIs. The source 11169 code for these lives in the `ncurses', `panel', `menu', and `form' directories 11170 @@ -122,8 +126,9 @@ 11171 tic -- terminfo source to binary compiler 11172 infocmp -- terminfo binary to source decompiler/comparator 11173 clear -- emits clear-screen for current terminal 11174 + tabs -- set tabs on a terminal 11175 tput -- shell-script access to terminal capabilities. 11176 - toe -- table of entries utility 11177 + toe -- table of entries utility 11178 tset -- terminal-initialization utility 11179 11180 The first two (tic and infocmp) are used for manipulating terminfo 11181 @@ -153,8 +158,10 @@ 9826 11182 configuration scripts, porting, mods to adhere to XSI Curses in the 9827 11183 areas of background color, terminal modes. Also memory leak testing, … … 9837 11193 Beginning with release 4.2, ncurses is distributed under an MIT-style 9838 11194 diff -Naur ncurses-5.9.orig/README.MinGW ncurses-5.9/README.MinGW 9839 --- ncurses-5.9.orig/README.MinGW 2012-0 2-16 18:25:12.623809091+00009840 +++ ncurses-5.9/README.MinGW 2012-0 2-16 18:25:13.187823972+000011195 --- ncurses-5.9.orig/README.MinGW 2012-08-25 19:57:59.419900852 +0000 11196 +++ ncurses-5.9/README.MinGW 2012-08-25 19:58:00.359896408 +0000 9841 11197 @@ -1,5 +1,5 @@ 9842 11198 ------------------------------------------------------------------------------- … … 9986 11342 9987 11343 diff -Naur ncurses-5.9.orig/aclocal.m4 ncurses-5.9/aclocal.m4 9988 --- ncurses-5.9.orig/aclocal.m4 2012-0 2-16 18:25:12.627809197+00009989 +++ ncurses-5.9/aclocal.m4 2012-0 2-16 18:25:13.187823972+000011344 --- ncurses-5.9.orig/aclocal.m4 2012-08-25 19:57:59.429900806 +0000 11345 +++ ncurses-5.9/aclocal.m4 2012-08-25 19:58:02.309887187 +0000 9990 11346 @@ -1,5 +1,5 @@ 9991 11347 dnl*************************************************************************** … … 10000 11356 dnl 10001 11357 -dnl $Id: aclocal.m4,v 1.553 2011/03/31 23:35:38 tom Exp $ 10002 +dnl $Id: aclocal.m4,v 1.6 04 2012/01/22 00:30:35tom Exp $11358 +dnl $Id: aclocal.m4,v 1.621 2012/08/11 23:36:44 tom Exp $ 10003 11359 dnl Macros used in NCURSES auto-configuration script. 10004 11360 dnl … … 10166 11522 dnl --------------------------------------------------------------------------- 10167 11523 dnl CF_CHECK_CACHE version: 11 updated: 2008/03/23 14:45:59 10168 @@ -908,7 +975, 28@@11524 @@ -908,7 +975,61 @@ 10169 11525 fi 10170 11526 ])])dnl … … 10192 11548 +])dnl 10193 11549 +dnl --------------------------------------------------------------------------- 11550 +dnl CF_CLANG_COMPILER version: 1 updated: 2012/06/16 14:55:39 11551 +dnl ----------------- 11552 +dnl Check if the given compiler is really clang. clang's C driver defines 11553 +dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does 11554 +dnl not ignore some gcc options. 11555 +dnl 11556 +dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to 11557 +dnl ensure that it is not mistaken for gcc/g++. It is normally invoked from 11558 +dnl the wrappers for gcc and g++ warnings. 11559 +dnl 11560 +dnl $1 = GCC (default) or GXX 11561 +dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS 11562 +dnl $3 = CFLAGS (default) or CXXFLAGS 11563 +AC_DEFUN([CF_CLANG_COMPILER],[ 11564 +ifelse([$2],,CLANG_COMPILER,[$2])=no 11565 + 11566 +if test "$ifelse([$1],,[$1],GCC)" = yes ; then 11567 + AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler) 11568 + cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])" 11569 + ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -Qunused-arguments" 11570 + AC_TRY_COMPILE([],[ 11571 +#ifdef __clang__ 11572 +#else 11573 +make an error 11574 +#endif 11575 +],[ifelse([$2],,CLANG_COMPILER,[$2])=yes 11576 +cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" 11577 +],[]) 11578 + ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS" 11579 + AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2])) 11580 +fi 11581 +]) 11582 +dnl --------------------------------------------------------------------------- 10194 11583 +dnl CF_CPP_PARAM_INIT version: 5 updated: 2011/12/03 16:54:03 10195 11584 dnl ----------------- 10196 11585 dnl Check if the C++ compiler accepts duplicate parameter initialization. This 10197 11586 dnl is a late feature for the standard and is not in some recent compilers 10198 @@ -932,7 +10 20,7 @@11587 @@ -932,7 +1053,7 @@ 10199 11588 { 10200 11589 value = x; … … 10205 11594 [cf_cv_cpp_param_init=yes], 10206 11595 [cf_cv_cpp_param_init=no], 10207 @@ -999, 6 +1087,54@@11596 @@ -999,7 +1120,55 @@ 10208 11597 test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST) 10209 11598 ])dnl 10210 11599 dnl --------------------------------------------------------------------------- 11600 -dnl CF_C_INLINE version: 3 updated: 2010/05/01 15:14:41 10211 11601 +dnl CF_CXX_AR_FLAGS version: 1 updated: 2011/10/29 08:35:34 10212 11602 +dnl --------------- … … 10257 11647 +])dnl 10258 11648 +dnl --------------------------------------------------------------------------- 10259 dnl CF_C_INLINE version: 3 updated: 2010/05/01 15:14:41 11649 +dnl CF_C_INLINE version: 4 updated: 2012/06/16 14:55:39 10260 11650 dnl ----------- 10261 11651 dnl Check if the C compiler supports "inline". 10262 @@ -1123,6 +1259,31 @@ 11652 dnl $1 is the name of a shell variable to set if inline is supported 11653 @@ -1012,6 +1181,9 @@ 11654 if test "$INTEL_COMPILER" = yes 11655 then 11656 : 11657 + elif test "$CLANG_COMPILER" = yes 11658 + then 11659 + : 11660 elif test "$GCC" = yes 11661 then 11662 AC_CACHE_CHECK(if $CC supports options to tune inlining,cf_cv_gcc_inline,[ 11663 @@ -1057,6 +1229,43 @@ 11664 AC_SUBST(DIRS_TO_MAKE) 11665 ])dnl 11666 dnl --------------------------------------------------------------------------- 11667 +dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57 11668 +dnl --------------- 11669 +dnl You can always use "make -n" to see the actual options, but it's hard to 11670 +dnl pick out/analyze warning messages when the compile-line is long. 11671 +dnl 11672 +dnl Sets: 11673 +dnl ECHO_LT - symbol to control if libtool is verbose 11674 +dnl ECHO_LD - symbol to prefix "cc -o" lines 11675 +dnl RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o) 11676 +dnl SHOW_CC - symbol to put before explicit "cc -c" lines 11677 +dnl ECHO_CC - symbol to put before any "cc" line 11678 +dnl 11679 +AC_DEFUN([CF_DISABLE_ECHO],[ 11680 +AC_MSG_CHECKING(if you want to see long compiling messages) 11681 +CF_ARG_DISABLE(echo, 11682 + [ --disable-echo display "compiling" commands], 11683 + [ 11684 + ECHO_LT='--silent' 11685 + ECHO_LD='@echo linking [$]@;' 11686 + RULE_CC='@echo compiling [$]<' 11687 + SHOW_CC='@echo compiling [$]@' 11688 + ECHO_CC='@' 11689 +],[ 11690 + ECHO_LT='' 11691 + ECHO_LD='' 11692 + RULE_CC='' 11693 + SHOW_CC='' 11694 + ECHO_CC='' 11695 +]) 11696 +AC_MSG_RESULT($enableval) 11697 +AC_SUBST(ECHO_LT) 11698 +AC_SUBST(ECHO_LD) 11699 +AC_SUBST(RULE_CC) 11700 +AC_SUBST(SHOW_CC) 11701 +AC_SUBST(ECHO_CC) 11702 +])dnl 11703 +dnl --------------------------------------------------------------------------- 11704 dnl CF_DISABLE_LEAKS version: 6 updated: 2010/07/23 04:14:32 11705 dnl ---------------- 11706 dnl Combine no-leak checks with the libraries or tools that are used for the 11707 @@ -1123,6 +1332,30 @@ 10263 11708 fi 10264 11709 ]) 10265 11710 dnl --------------------------------------------------------------------------- 10266 +dnl CF_ENABLE_PC_FILES version: 7 updated: 2011/12/10 18:58:4711711 +dnl CF_ENABLE_PC_FILES version: 9 updated: 2012/08/04 13:59:54 10267 11712 +dnl ------------------ 10268 11713 +dnl This is the "--enable-pc-files" option, which is available if there is a … … 10273 11718 + 10274 11719 +if test "$PKG_CONFIG" != none ; then 10275 + if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 10276 + AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG) 10277 + AC_ARG_ENABLE(pc-files, 10278 + [ --enable-pc-files generate and install .pc files for pkg-config], 10279 + [enable_pc_files=$enableval], 10280 + [enable_pc_files=no]) 10281 + AC_MSG_RESULT($enable_pc_files) 10282 + elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then 10283 + enable_pc_files=no 10284 + AC_MSG_WARN(did not find $PKG_CONFIG library) 11720 + AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG) 11721 + AC_ARG_ENABLE(pc-files, 11722 + [ --enable-pc-files generate and install .pc files for pkg-config], 11723 + [enable_pc_files=$enableval], 11724 + [enable_pc_files=no]) 11725 + AC_MSG_RESULT($enable_pc_files) 11726 + if test "$enable_pc_files" != no 11727 + then 11728 + CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR) 10285 11729 + fi 10286 11730 +else … … 10292 11736 dnl --------------- 10293 11737 dnl Check if the rpath option should be used, setting cache variable 10294 @@ -1145,7 +1306,7 @@ 11738 @@ -1137,6 +1370,37 @@ 11739 AC_MSG_RESULT($cf_cv_enable_rpath) 11740 ])dnl 11741 dnl --------------------------------------------------------------------------- 11742 +dnl CF_ENABLE_STRING_HACKS version: 1 updated: 2012/02/25 06:33:21 11743 +dnl ---------------------- 11744 +dnl On a few platforms, the compiler and/or loader nags with untruthful 11745 +dnl comments stating that "most" uses of strcat/strcpy/sprintf are incorrect, 11746 +dnl and implying that most uses of the recommended alternatives are correct. 11747 +dnl 11748 +dnl Factually speaking, no one has actually counted the number of uses of these 11749 +dnl functions versus the total of incorrect uses. Samples of a few thousand 11750 +dnl instances are meaningless compared to the hundreds of millions of lines of 11751 +dnl existing C code. 11752 +dnl 11753 +dnl strlcat/strlcpy are (as of 2012) non-standard, and are available on some 11754 +dnl platforms, in implementations of varying quality. Likewise, snprintf is 11755 +dnl standard - but evolved through phases, and older implementations are likely 11756 +dnl to yield surprising results, as documented in manpages on various systems. 11757 +AC_DEFUN([CF_ENABLE_STRING_HACKS], 11758 +[ 11759 +AC_MSG_CHECKING(if you want to work around bogus compiler/loader warnings) 11760 +AC_ARG_ENABLE(string-hacks, 11761 + [ --enable-string-hacks work around bogus compiler/loader warnings], 11762 + [with_string_hacks=$enableval], 11763 + [with_string_hacks=no]) 11764 +AC_MSG_RESULT($with_string_hacks) 11765 + 11766 +if test "x$with_string_hacks" = "xyes"; then 11767 + AC_DEFINE(USE_STRING_HACKS) 11768 + AC_MSG_WARN(enabling string-hacks to work around bogus compiler/loader warnings) 11769 + AC_CHECK_FUNCS( strlcat strlcpy snprintf ) 11770 +fi 11771 +])dnl 11772 +dnl --------------------------------------------------------------------------- 11773 dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39 11774 dnl -------- 11775 dnl Check if 'errno' is declared in <errno.h> 11776 @@ -1145,7 +1409,7 @@ 10295 11777 CF_CHECK_ERRNO(errno) 10296 11778 ])dnl 10297 11779 dnl --------------------------------------------------------------------------- 10298 11780 -dnl CF_ETIP_DEFINES version: 3 updated: 2003/03/22 19:13:43 10299 +dnl CF_ETIP_DEFINES version: 4 updated: 2011/12/03 16:54:0311781 +dnl CF_ETIP_DEFINES version: 5 updated: 2012/02/18 17:51:07 10300 11782 dnl --------------- 10301 11783 dnl Test for conflicting definitions of exception in gcc 2.8.0, etc., between 10302 11784 dnl math.h and builtin.h, only for ncurses 10303 @@ -1154,11 +1 315,17 @@11785 @@ -1154,11 +1418,17 @@ 10304 11786 AC_MSG_CHECKING(for special defines needed for etip.h) 10305 11787 cf_save_CXXFLAGS="$CXXFLAGS" … … 10320 11802 test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}" 10321 11803 AC_TRY_COMPILE([ 10322 @@ -1769,6 +1936,29 @@ 11804 @@ -1167,7 +1437,7 @@ 11805 test -n "$cf_math" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_math}) 11806 test -n "$cf_excp" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_excp}) 11807 cf_result="$cf_math $cf_excp" 11808 - break 11809 + break 2 11810 ],[]) 11811 done 11812 done 11813 @@ -1305,6 +1575,25 @@ 11814 fi 11815 ])dnl 11816 dnl --------------------------------------------------------------------------- 11817 +dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10 11818 +dnl ----------------- 11819 +dnl make ADAFLAGS consistent with CFLAGS 11820 +AC_DEFUN([CF_FIXUP_ADAFLAGS],[ 11821 + AC_MSG_CHECKING(optimization options for ADAFLAGS) 11822 + case "$CFLAGS" in 11823 + *-g*) 11824 + CF_ADD_ADAFLAGS(-g) 11825 + ;; 11826 + esac 11827 + case "$CFLAGS" in 11828 + *-O*) 11829 + cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[ ]].*//'` 11830 + CF_ADD_ADAFLAGS($cf_O_flag) 11831 + ;; 11832 + esac 11833 + AC_MSG_RESULT($ADAFLAGS) 11834 +])dnl 11835 +dnl --------------------------------------------------------------------------- 11836 dnl CF_FUNC_DLSYM version: 2 updated: 2010/05/29 16:31:02 11837 dnl ------------- 11838 dnl Test for dlsym() and related functions, as well as libdl. 11839 @@ -1433,14 +1722,17 @@ 11840 ]) 11841 ])dnl 11842 dnl --------------------------------------------------------------------------- 11843 -dnl CF_FUNC_POLL version: 4 updated: 2006/12/16 12:33:30 11844 +dnl CF_FUNC_POLL version: 7 updated: 2012/06/09 16:22:17 11845 dnl ------------ 11846 dnl See if the poll function really works. Some platforms have poll(), but 11847 dnl it does not work for terminals or files. 11848 AC_DEFUN([CF_FUNC_POLL],[ 11849 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[ 11850 AC_TRY_RUN([ 11851 +#include <stdlib.h> 11852 #include <stdio.h> 11853 +#include <unistd.h> 11854 +#include <fcntl.h> 11855 #ifdef HAVE_POLL_H 11856 #include <poll.h> 11857 #else 11858 @@ -1450,11 +1742,34 @@ 11859 struct pollfd myfds; 11860 int ret; 11861 11862 - myfds.fd = 0; 11863 + /* check for Darwin bug with respect to "devices" */ 11864 + myfds.fd = open("/dev/null", 1); /* O_WRONLY */ 11865 + if (myfds.fd < 0) 11866 + myfds.fd = 0; 11867 myfds.events = POLLIN; 11868 + myfds.revents = 0; 11869 11870 ret = poll(&myfds, 1, 100); 11871 - ${cf_cv_main_return:-return}(ret != 0); 11872 + 11873 + if (ret < 0 || (myfds.revents & POLLNVAL)) { 11874 + ret = -1; 11875 + } else { 11876 + int fd = 0; 11877 + if (!isatty(fd)) { 11878 + fd = open("/dev/tty", 2); /* O_RDWR */ 11879 + } 11880 + 11881 + if (fd >= 0) { 11882 + /* also check with standard input */ 11883 + myfds.fd = fd; 11884 + myfds.events = POLLIN; 11885 + myfds.revents = 0; 11886 + ret = poll(&myfds, 1, 100); 11887 + } else { 11888 + ret = -1; 11889 + } 11890 + } 11891 + ${cf_cv_main_return:-return}(ret < 0); 11892 }], 11893 [cf_cv_working_poll=yes], 11894 [cf_cv_working_poll=no], 11895 @@ -1660,7 +1975,7 @@ 11896 fi 11897 ])dnl 11898 dnl --------------------------------------------------------------------------- 11899 -dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32 11900 +dnl CF_GCC_WARNINGS version: 29 updated: 2012/06/16 14:55:39 11901 dnl --------------- 11902 dnl Check if the compiler supports useful warning options. There's a few that 11903 dnl we don't use, simply because they're too noisy: 11904 @@ -1683,6 +1998,7 @@ 11905 [ 11906 AC_REQUIRE([CF_GCC_VERSION]) 11907 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS) 11908 +CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS) 11909 11910 cat > conftest.$ac_ext <<EOF 11911 #line __oline__ "${as_me:-configure}" 11912 @@ -1758,6 +2074,13 @@ 11913 continue;; 11914 esac 11915 ;; 11916 + Wpointer-arith) #(vi 11917 + case $GCC_VERSION in 11918 + [[12]].*) 11919 + CF_VERBOSE(feature is broken in gcc $GCC_VERSION) 11920 + continue;; 11921 + esac 11922 + ;; 11923 esac 11924 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" 11925 fi 11926 @@ -1769,6 +2092,29 @@ 10323 11927 AC_SUBST(EXTRA_CFLAGS) 10324 11928 ])dnl … … 10350 11954 dnl ---------------- 10351 11955 AC_DEFUN([CF_GNAT_GENERICS], 10352 @@ -2040,7 +2 230,7 @@11956 @@ -2040,7 +2386,7 @@ 10353 11957 rm -rf conftest* *~conftest* 10354 11958 ])dnl … … 10359 11963 dnl Verify version of GNAT. 10360 11964 AC_DEFUN([CF_GNAT_VERSION], 10361 @@ -2052,7 +2 242,7 @@11965 @@ -2052,7 +2398,7 @@ 10362 11966 AC_MSG_RESULT($cf_gnat_version) 10363 11967 … … 10368 11972 ;; 10369 11973 *) 10370 @@ -2581,7 +2771,7 @@ 11974 @@ -2136,21 +2482,21 @@ 11975 fi 11976 ])dnl 11977 dnl --------------------------------------------------------------------------- 11978 -dnl CF_GXX_VERSION version: 6 updated: 2010/10/23 15:44:18 11979 +dnl CF_GXX_VERSION version: 7 updated: 2012/06/16 14:55:39 11980 dnl -------------- 11981 dnl Check for version of g++ 11982 AC_DEFUN([CF_GXX_VERSION],[ 11983 AC_REQUIRE([AC_PROG_CPP]) 11984 GXX_VERSION=none 11985 if test "$GXX" = yes; then 11986 - AC_MSG_CHECKING(version of g++) 11987 + AC_MSG_CHECKING(version of ${CXX:-g++}) 11988 GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`" 11989 test -z "$GXX_VERSION" && GXX_VERSION=unknown 11990 AC_MSG_RESULT($GXX_VERSION) 11991 fi 11992 ])dnl 11993 dnl --------------------------------------------------------------------------- 11994 -dnl CF_GXX_WARNINGS version: 6 updated: 2010/08/14 18:25:37 11995 +dnl CF_GXX_WARNINGS version: 7 updated: 2012/06/16 14:55:39 11996 dnl --------------- 11997 dnl Check if the compiler supports useful warning options. 11998 dnl 11999 @@ -2173,6 +2519,7 @@ 12000 [ 12001 12002 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS) 12003 +CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS) 12004 12005 AC_REQUIRE([CF_GXX_VERSION]) 12006 12007 @@ -2581,7 +2928,7 @@ 10371 12008 ]) 10372 12009 ]) … … 10377 12014 dnl Check for compiler/linker flags used to temporarily force usage of static 10378 12015 dnl libraries. This depends on the compiler and platform. Use this to help 10379 @@ -2602,7 +2 792,7 @@12016 @@ -2602,7 +2949,7 @@ 10380 12017 esac 10381 12018 else … … 10386 12023 LDFLAGS_SHARED=-bdynamic 10387 12024 ;; 10388 @@ -2652,7 +2 842,17 @@12025 @@ -2652,7 +2999,17 @@ 10389 12026 int cf_ldflags_static(FILE *fp); 10390 12027 ],[ … … 10405 12042 rm -f libconftest.* 10406 12043 LIBS="$cf_save_LIBS" 10407 @@ -2673,7 + 2873,7 @@12044 @@ -2673,7 +3030,7 @@ 10408 12045 AC_SUBST(LDFLAGS_SHARED) 10409 12046 ]) … … 10414 12051 dnl For the given system and compiler, find the compiler flags to pass to the 10415 12052 dnl loader to use the "rpath" feature. 10416 @@ -2694,10 + 2894,10 @@12053 @@ -2694,10 +3051,10 @@ 10417 12054 linux*|gnu*|k*bsd*-gnu) #(vi 10418 12055 LD_RPATH_OPT="-Wl,-rpath," … … 10427 12064 ;; 10428 12065 netbsd*) #(vi 10429 @@ -2756,11 + 2956,11 @@12066 @@ -2756,11 +3113,11 @@ 10430 12067 $1="$cf_library_path_list [$]$1" 10431 12068 ])dnl … … 10441 12078 case $cf_cv_system_name in #(vi 10442 12079 OS/2*|os2*) #(vi 10443 @@ -2773,7 + 2973,7 @@12080 @@ -2773,7 +3130,7 @@ 10444 12081 AC_SUBST(LIB_PREFIX) 10445 12082 ])dnl 10446 12083 dnl --------------------------------------------------------------------------- 10447 12084 -dnl CF_LIB_RULES version: 61 updated: 2010/10/23 16:10:30 10448 +dnl CF_LIB_RULES version: 6 3 updated: 2012/01/21 19:28:1012085 +dnl CF_LIB_RULES version: 65 updated: 2012/06/30 17:25:25 10449 12086 dnl ------------ 10450 12087 dnl Append definitions and rules for the given models to the subdirectory 10451 12088 dnl Makefiles, and the recursion rule for the top-level Makefile. If the 10452 @@ -2788, 7 +2988,7@@12089 @@ -2788,13 +3145,15 @@ 10453 12090 dnl lib<name>.so.<maj>.<minor> 10454 12091 AC_DEFUN([CF_LIB_RULES], … … 10458 12095 AC_REQUIRE([CF_SUBST_NCURSES_VERSION]) 10459 12096 10460 if test $cf_cv_shlib_version = cygdll ; then 10461 @@ -3010,6 +3210,7 @@ 12097 -if test $cf_cv_shlib_version = cygdll ; then 12098 +case $cf_cv_shlib_version in #(vi 12099 +cygdll|mingw) 12100 TINFO_NAME=$TINFO_ARG_SUFFIX 12101 TINFO_SUFFIX=.dll 12102 -fi 12103 + ;; 12104 +esac 12105 12106 if test -n "$TINFO_SUFFIX" ; then 12107 case $TINFO_SUFFIX in 12108 @@ -2880,11 +3239,18 @@ 12109 # cygwin needs import library, and has unique naming convention 12110 # use autodetected ${cf_prefix} for import lib and static lib, but 12111 # use 'cyg' prefix for shared lib. 12112 - if test $cf_cv_shlib_version = cygdll ; then 12113 + case $cf_cv_shlib_version in #(vi 12114 + cygdll) #(vi 12115 cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'` 12116 LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/cyg${cf_dir}${cf_cygsuf}" 12117 continue 12118 - fi 12119 + ;; 12120 + mingw) 12121 + cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'` 12122 + LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/lib${cf_dir}${cf_cygsuf}" 12123 + continue 12124 + ;; 12125 + esac 12126 fi 12127 LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/${cf_prefix}${cf_dir}${cf_suffix}" 12128 done 12129 @@ -2928,7 +3294,7 @@ 12130 mv $cf_dir/Makefile.out $cf_dir/Makefile 12131 12132 $AWK -f $srcdir/mk-0th.awk \ 12133 - libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" \ 12134 + libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \ 12135 $srcdir/$cf_dir/modules >>$cf_dir/Makefile 12136 12137 for cf_subset in $cf_subsets 12138 @@ -3010,6 +3376,7 @@ 10462 12139 prefix=$cf_prefix \ 10463 12140 suffix=$cf_suffix \ … … 10467 12144 TermlibRoot=$TINFO_NAME \ 10468 12145 TermlibSuffix=$TINFO_SUFFIX \ 10469 @@ -3292,7 +3 493,7 @@12146 @@ -3292,7 +3659,7 @@ 10470 12147 ]) 10471 12148 ]) 10472 12149 dnl --------------------------------------------------------------------------- 10473 12150 -dnl CF_LIB_SUFFIX version: 16 updated: 2008/12/27 12:30:03 10474 +dnl CF_LIB_SUFFIX version: 1 7 updated: 2011/07/02 15:36:0412151 +dnl CF_LIB_SUFFIX version: 18 updated: 2012/02/25 15:20:07 10475 12152 dnl ------------- 10476 12153 dnl Compute the library file-suffix from the given model name 10477 12154 dnl $1 = model name 10478 @@ -3321, 7 +3522,7@@12155 @@ -3321,11 +3688,11 @@ 10479 12156 ;; 10480 12157 shared) #(vi … … 10485 12162 $3=[$]$2 10486 12163 ;; 10487 @@ -3799,7 +4000,7 @@ 12164 - cygwin*) #(vi 12165 + cygwin*|mingw*) #(vi 12166 $2='.dll' 12167 $3='.dll.a' 12168 ;; 12169 @@ -3799,7 +4166,7 @@ 10488 12170 AC_MSG_RESULT($MANPAGE_TBL) 10489 12171 ])dnl 10490 12172 dnl --------------------------------------------------------------------------- 10491 12173 -dnl CF_MAN_PAGES version: 39 updated: 2010/10/23 15:44:18 10492 +dnl CF_MAN_PAGES version: 4 0 updated: 2011/09/10 16:20:2112174 +dnl CF_MAN_PAGES version: 41 updated: 2012/08/11 19:35:44 10493 12175 dnl ------------ 10494 12176 dnl Try to determine if the man-pages on the system are compressed, and if 10495 12177 dnl so, what format is used. Use this information to construct a script that 10496 @@ -3949,7 +4150,9 @@ 12178 @@ -3856,6 +4223,7 @@ 12179 # this script is generated by the configure-script CF_MAN_PAGES macro. 12180 12181 prefix="$cf_prefix" 12182 +datarootdir="$datarootdir" 12183 datadir="$datadir" 12184 12185 NCURSES_MAJOR="$NCURSES_MAJOR" 12186 @@ -3949,7 +4317,9 @@ 10497 12187 10498 12188 if test "$MANPAGE_ALIASES" != no ; then … … 10505 12195 fi 10506 12196 10507 @@ -3995,6 +4 198,13 @@12197 @@ -3995,6 +4365,13 @@ 10508 12198 fi 10509 12199 CF_EOF … … 10519 12209 cat >>$cf_edit_man <<CF_EOF 10520 12210 sed -e "/\#[ ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out 10521 @@ -4376,7 +4586,7 @@ 12211 @@ -4184,7 +4561,7 @@ 12212 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES) 12213 ])dnl 12214 dnl --------------------------------------------------------------------------- 12215 -dnl CF_MKSTEMP version: 7 updated: 2010/08/14 18:25:37 12216 +dnl CF_MKSTEMP version: 8 updated: 2012/02/13 20:34:56 12217 dnl ---------- 12218 dnl Check for a working mkstemp. This creates two files, checks that they are 12219 dnl successfully created and distinct (AmigaOS apparently fails on the last). 12220 @@ -4226,9 +4603,11 @@ 12221 } 12222 ],[cf_cv_func_mkstemp=yes 12223 ],[cf_cv_func_mkstemp=no 12224 -],[AC_CHECK_FUNC(mkstemp) 12225 -]) 12226 +],[cf_cv_func_mkstemp=maybe]) 12227 ]) 12228 +if test "x$cf_cv_func_mkstemp" = xmaybe ; then 12229 + AC_CHECK_FUNC(mkstemp) 12230 +fi 12231 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then 12232 AC_DEFINE(HAVE_MKSTEMP) 12233 fi 12234 @@ -4339,7 +4718,7 @@ 12235 AC_SUBST(PATH_SEPARATOR) 12236 ])dnl 12237 dnl --------------------------------------------------------------------------- 12238 -dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42 12239 +dnl CF_PATH_SYNTAX version: 14 updated: 2012/06/19 20:58:54 12240 dnl -------------- 12241 dnl Check the argument to see that it looks like a pathname. Rewrite it if it 12242 dnl begins with one of the prefix/exec_prefix variables, and then again if the 12243 @@ -4359,7 +4738,7 @@ 12244 ;; 12245 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX 12246 ;; 12247 -.\[$]{*prefix}*) #(vi 12248 +.\[$]{*prefix}*|.\[$]{*dir}*) #(vi 12249 eval $1="[$]$1" 12250 case ".[$]$1" in #(vi 12251 .NONE/*) 12252 @@ -4376,7 +4755,7 @@ 10522 12253 esac 10523 12254 ])dnl … … 10528 12259 dnl Check for the package-config program, unless disabled by command-line. 10529 12260 AC_DEFUN([CF_PKG_CONFIG], 10530 @@ -4393,7 +4 603,9 @@12261 @@ -4393,7 +4772,9 @@ 10531 12262 PKG_CONFIG=none 10532 12263 ;; … … 10539 12270 *) 10540 12271 PKG_CONFIG=$withval 10541 @@ -4658,7 + 4870,7 @@12272 @@ -4658,7 +5039,7 @@ 10542 12273 test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT") 10543 12274 ])dnl … … 10548 12279 dnl Check for gnatmake, ensure that it is complete. 10549 12280 AC_DEFUN([CF_PROG_GNAT],[ 10550 @@ -4666,6 + 4878,7 @@12281 @@ -4666,6 +5047,7 @@ 10551 12282 AC_CHECK_PROG(gnat_exists, $cf_ada_make, yes, no) 10552 12283 if test "$ac_cv_prog_gnat_exists" = no; then … … 10556 12287 CF_GNAT_VERSION 10557 12288 AC_CHECK_PROG(M4_exists, m4, yes, no) 10558 @@ -4709,7 + 4922,7 @@12289 @@ -4709,7 +5091,7 @@ 10559 12290 esac 10560 12291 ])dnl … … 10565 12296 dnl Check for ldconfig, needed to fixup shared libraries that would be built 10566 12297 dnl and then used in the install. 10567 @@ -4718,7 + 4931,7 @@12298 @@ -4718,7 +5100,7 @@ 10568 12299 LDCONFIG=: 10569 12300 else … … 10574 12305 ;; 10575 12306 *) LDPATH=$PATH:/sbin:/usr/sbin 10576 @@ -4759,7 + 4972,7 @@12307 @@ -4759,7 +5141,7 @@ 10577 12308 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f" 10578 12309 ])dnl … … 10583 12314 dnl Attempt to determine if we've got one of the flavors of regular-expression 10584 12315 dnl code that we can support. 10585 @@ -4771,7 + 4984,7 @@12316 @@ -4771,7 +5153,7 @@ 10586 12317 cf_regex_libs="regex re" 10587 12318 case $host_os in #(vi … … 10592 12323 esac 10593 12324 10594 @@ -4984,7 +5 197,7 @@12325 @@ -4984,7 +5366,7 @@ 10595 12326 AC_SUBST(EXTRA_LDFLAGS) 10596 12327 ])dnl 10597 12328 dnl --------------------------------------------------------------------------- 10598 12329 -dnl CF_SHARED_OPTS version: 64 updated: 2010/06/05 16:51:16 10599 +dnl CF_SHARED_OPTS version: 69 updated: 2011/07/30 19:31:3912330 +dnl CF_SHARED_OPTS version: 70 updated: 2012/02/25 15:20:07 10600 12331 dnl -------------- 10601 12332 dnl -------------- 10602 12333 dnl Attempt to determine the appropriate CC/LD options for creating a shared 10603 @@ -5059,10 +5 272,14 @@12334 @@ -5059,10 +5441,14 @@ 10604 12335 cf_cv_shlib_version_infix=no 10605 12336 … … 10618 12349 ;; 10619 12350 beos*) #(vi 10620 @@ -5115,9 +5 332,19 @@12351 @@ -5115,9 +5501,19 @@ 10621 12352 # readonly to exploit a quirk in the memory manager. 10622 12353 INSTALL_LIB="-m 555" … … 10639 12370 # tested with IRIX 5.2 and 'cc'. 10640 12371 if test "$GCC" != yes; then 10641 @@ -5134,18 +5 361,18@@12372 @@ -5134,18 +5530,39 @@ 10642 12373 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 10643 12374 fi … … 10650 12381 ;; 10651 12382 - openbsd[[2-9]].*) #(vi 12383 + mingw*) #(vi 12384 + cf_cv_shlib_version=mingw 12385 + cf_cv_shlib_version_infix=mingw 12386 + CC_SHARED_OPTS= 12387 + MK_SHARED_LIB='sh ../mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}' 12388 + #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]' 12389 + #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]' 12390 + cat >mk_shared_lib.sh <<-CF_EOF 12391 + #!/bin/sh 12392 + SHARED_LIB=\[$]1 12393 + IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\` 12394 + shift 12395 + cat <<-EOF 12396 + Linking shared library 12397 + ** SHARED_LIB \[$]SHARED_LIB 12398 + ** IMPORT_LIB \[$]IMPORT_LIB 12399 +EOF 12400 + exec \[$]* -shared -Wl,--out-implib=../lib/\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\[$]{SHARED_LIB} 12401 +CF_EOF 12402 + chmod +x mk_shared_lib.sh 12403 + ;; 10652 12404 + openbsd[[2-9]].*|mirbsd*) #(vi 10653 12405 if test "$DFT_LWR_MODEL" = "shared" ; then … … 10661 12413 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 10662 12414 CF_SHARED_SONAME 10663 @@ -5156,12 +5 383,12 @@12415 @@ -5156,12 +5573,12 @@ 10664 12416 MK_SHARED_LIB='${LD} -Bshareable -o $[@]' 10665 12417 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel … … 10677 12429 CF_SHARED_SONAME 10678 12430 MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $[@]` -o $[@]' 10679 @@ -5171,7 +5 398,7 @@12431 @@ -5171,7 +5588,7 @@ 10680 12432 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then 10681 12433 LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)" … … 10686 12438 if test -f /usr/libexec/ld.elf_so; then 10687 12439 cf_cv_shlib_version=abi 10688 @@ -5276,9 +5 503,9@@12440 @@ -5276,9 +5693,12 @@ 10689 12441 ;; 10690 12442 esac … … 10696 12448 + test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}" 10697 12449 + test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}" 12450 + 12451 + CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS) 12452 + CF_VERBOSE(MK_SHARED_LIB: $MK_SHARED_LIB) 10698 12453 10699 12454 AC_SUBST(CC_SHARED_OPTS) 10700 12455 AC_SUBST(LD_RPATH_OPT) 10701 @@ -5290,6 +5 517,7 @@12456 @@ -5290,6 +5710,7 @@ 10702 12457 AC_SUBST(LOCAL_LDFLAGS) 10703 12458 AC_SUBST(LOCAL_LDFLAGS2) … … 10707 12462 dnl --------------------------------------------------------------------------- 10708 12463 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43 10709 @@ -5474,7 +5 702,7 @@12464 @@ -5474,7 +5895,7 @@ 10710 12465 fi 10711 12466 ])dnl … … 10716 12471 dnl For each parameter, test if the source-directory exists, and if it contains 10717 12472 dnl a 'modules' file. If so, add to the list $cf_cv_src_modules which we'll 10718 @@ -5497,6 +5 725,7 @@12473 @@ -5497,6 +5918,7 @@ 10719 12474 TEST_ARG2="-l${LIB_NAME}${DFT_ARG_SUFFIX} $TEST_ARG2" 10720 12475 fi … … 10724 12479 for cf_dir in $1 10725 12480 do 10726 @@ -5535,6 +5 764,7 @@12481 @@ -5535,6 +5957,7 @@ 10727 12482 TEST_ARGS="-l${cf_dir}${DFT_ARG_SUFFIX} $TEST_ARGS" 10728 12483 TEST_ARG2="-l${cf_dir}${DFT_ARG_SUFFIX} $TEST_ARG2" … … 10732 12487 fi 10733 12488 done 10734 @@ -5562,10 +5 792,18 @@12489 @@ -5562,10 +5985,18 @@ 10735 12490 SRC_SUBDIRS="$SRC_SUBDIRS test" 10736 12491 fi … … 10753 12508 ADA_SUBDIRS="gen src" 10754 12509 if test "x$cf_with_tests" != "xno" ; then 10755 @@ -5624,13 + 5862,13 @@12510 @@ -5624,13 +6055,13 @@ 10756 12511 AC_DEFUN([CF_STRIP_G_OPT], 10757 12512 [$1=`echo ${$1} | sed -e 's%-g %%' -e 's%-g$%%'`])dnl … … 10770 12525 AC_MSG_CHECKING(whether sigaction needs _POSIX_SOURCE) 10771 12526 AC_TRY_COMPILE([ 10772 @@ -5645,22 + 5883,24 @@12527 @@ -5645,22 +6076,24 @@ 10773 12528 #include <signal.h>], 10774 12529 [struct sigaction act], … … 10798 12553 AC_CHECK_HEADERS( sys/termio.h ) 10799 12554 fi 10800 @@ -5680,7 + 5920,7 @@12555 @@ -5680,7 +6113,7 @@ 10801 12556 #include <termios.h>], 10802 12557 [struct termios foo; int x = foo.c_iflag], … … 10807 12562 AC_MSG_RESULT($termios_bad) 10808 12563 fi 10809 @@ -5798,6 +6 038,45 @@12564 @@ -5798,6 +6231,45 @@ 10810 12565 AC_SUBST(top_builddir) 10811 12566 ])dnl … … 10853 12608 dnl ---------------- 10854 12609 dnl Determine the type we should use for chtype (and attr_t, which is treated 10855 @@ -6182,7 +6 461,7 @@12610 @@ -6182,7 +6654,7 @@ 10856 12611 fi 10857 12612 ]) … … 10862 12617 dnl Provide a configure option to incorporate libtool. Define several useful 10863 12618 dnl symbols for the makefile rules. 10864 @@ -6258,7 +6 537,7 @@12619 @@ -6258,7 +6730,7 @@ 10865 12620 AC_MSG_ERROR(Cannot find libtool) 10866 12621 fi … … 10871 12626 LIB_SUFFIX=.la 10872 12627 LIB_CLEAN='${LIBTOOL} --mode=clean' 10873 @@ -6283,7 +6 562,7 @@12628 @@ -6283,7 +6755,7 @@ 10874 12629 # special hack to add -no-undefined (which libtool should do for itself) 10875 12630 LT_UNDEF= … … 10880 12635 ;; 10881 12636 esac 10882 @@ -6323,6 +6 602,32 @@12637 @@ -6323,6 +6795,32 @@ 10883 12638 10884 12639 ])dnl … … 10913 12668 dnl ------------ 10914 12669 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just 10915 @@ -6386,7 +6 691,50 @@12670 @@ -6386,7 +6884,50 @@ 10916 12671 10917 12672 ])dnl … … 10965 12720 dnl Check for POSIX thread library. 10966 12721 AC_DEFUN([CF_WITH_PTHREAD], 10967 @@ -6402,23 +6 750,28 @@12722 @@ -6402,23 +6943,28 @@ 10968 12723 AC_CHECK_HEADER(pthread.h,[ 10969 12724 AC_DEFINE(HAVE_PTHREADS_H) … … 11007 12762 fi 11008 12763 ]) 11009 @@ -6486,7 + 6839,7 @@12764 @@ -6486,7 +7032,7 @@ 11010 12765 [USE_VALGRIND]) 11011 12766 ])dnl … … 11016 12771 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions, 11017 12772 dnl or adapt to the vendor's definitions to get equivalent functionality, 11018 @@ -6502,7 + 6855,7 @@12773 @@ -6502,7 +7048,7 @@ 11019 12774 cf_xopen_source= 11020 12775 … … 11025 12780 ;; 11026 12781 cygwin) #(vi 11027 @@ -6513,6 + 6866,7 @@12782 @@ -6513,6 +7059,7 @@ 11028 12783 ;; 11029 12784 darwin*) #(vi … … 11033 12788 freebsd*|dragonfly*) #(vi 11034 12789 # 5.x headers associate 11035 @@ -6530,15 + 6884,23 @@12790 @@ -6530,15 +7077,23 @@ 11036 12791 ;; 11037 12792 irix[[56]].*) #(vi … … 11059 12814 openbsd*) #(vi 11060 12815 # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw 11061 @@ -6552,36 + 6914,11 @@12816 @@ -6552,36 +7107,11 @@ 11062 12817 sco*) #(vi 11063 12818 # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer … … 11098 12853 ;; 11099 12854 esac 11100 @@ -6589,4 + 6926,33 @@12855 @@ -6589,4 +7119,33 @@ 11101 12856 if test -n "$cf_xopen_source" ; then 11102 12857 CF_ADD_CFLAGS($cf_xopen_source) … … 11133 12888 ]) 11134 12889 diff -Naur ncurses-5.9.orig/announce.html.in ncurses-5.9/announce.html.in 11135 --- ncurses-5.9.orig/announce.html.in 2012-0 2-16 18:25:12.639809512+000011136 +++ ncurses-5.9/announce.html.in 2012-0 2-16 18:25:12.919816901+000012890 --- ncurses-5.9.orig/announce.html.in 2012-08-25 19:57:59.399900947 +0000 12891 +++ ncurses-5.9/announce.html.in 2012-08-25 19:57:59.893231947 +0000 11137 12892 @@ -1,6 +1,6 @@ 11138 12893 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> … … 11220 12975 <ul> 11221 12976 diff -Naur ncurses-5.9.orig/c++/Makefile.in ncurses-5.9/c++/Makefile.in 11222 --- ncurses-5.9.orig/c++/Makefile.in 2012-0 2-16 18:25:12.643809617+000011223 +++ ncurses-5.9/c++/Makefile.in 2012-0 2-16 18:25:12.919816901 +000012977 --- ncurses-5.9.orig/c++/Makefile.in 2012-08-25 19:57:59.426567488 +0000 12978 +++ ncurses-5.9/c++/Makefile.in 2012-08-25 19:58:01.013226651 +0000 11224 12979 @@ -1,6 +1,6 @@ 11225 12980 -# $Id: Makefile.in,v 1.93 2010/11/27 21:45:27 tom Exp $ 11226 +# $Id: Makefile.in,v 1.9 5 2011/07/30 22:52:07tom Exp $12981 +# $Id: Makefile.in,v 1.96 2012/03/17 16:45:38 tom Exp $ 11227 12982 ############################################################################## 11228 12983 -# Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. # 11229 +# Copyright (c) 1998-201 0,2011Free Software Foundation, Inc. #12984 +# Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. # 11230 12985 # # 11231 12986 # Permission is hereby granted, free of charge, to any person obtaining a # … … 11248 13003 OBJS_DEMO = $(MODEL)/demo$o 11249 13004 13005 @@ -179,7 +180,7 @@ 13006 demo$x: $(OBJS_DEMO) \ 13007 $(MY_LIBRARY) \ 13008 @TEST_DEPS@ 13009 - @ECHO_LINK@ $(LINK) -o $@ $(OBJS_DEMO) $(LDFLAGS_DEFAULT) 13010 + @ECHO_LD@ $(LINK) -o $@ $(OBJS_DEMO) $(LDFLAGS_DEFAULT) 13011 13012 etip.h: $(srcdir)/etip.h.in $(srcdir)/edit_cfg.sh 13013 cp $(srcdir)/etip.h.in $@ 11250 13014 diff -Naur ncurses-5.9.orig/c++/cursesapp.h ncurses-5.9/c++/cursesapp.h 11251 --- ncurses-5.9.orig/c++/cursesapp.h 2012-0 2-16 18:25:12.643809617+000011252 +++ ncurses-5.9/c++/cursesapp.h 2012-0 2-16 18:25:12.919816901+000013015 --- ncurses-5.9.orig/c++/cursesapp.h 2012-08-25 19:57:59.423234170 +0000 13016 +++ ncurses-5.9/c++/cursesapp.h 2012-08-25 19:57:59.893231947 +0000 11253 13017 @@ -1,6 +1,6 @@ 11254 13018 // * This makes emacs happy -*-Mode: C++;-*- … … 11331 13095 }; 11332 13096 diff -Naur ncurses-5.9.orig/c++/cursesf.cc ncurses-5.9/c++/cursesf.cc 11333 --- ncurses-5.9.orig/c++/cursesf.cc 2012-0 2-16 18:25:12.639809512+000011334 +++ ncurses-5.9/c++/cursesf.cc 2012-0 2-16 18:25:12.919816901+000013097 --- ncurses-5.9.orig/c++/cursesf.cc 2012-08-25 19:57:59.426567488 +0000 13098 +++ ncurses-5.9/c++/cursesf.cc 2012-08-25 19:57:59.896565265 +0000 11335 13099 @@ -1,6 +1,6 @@ 11336 13100 // * this is for making emacs happy: -*-Mode: C++;-*- … … 11409 13173 UserDefinedFieldType_With_Choice* udf = 11410 13174 diff -Naur ncurses-5.9.orig/c++/cursesf.h ncurses-5.9/c++/cursesf.h 11411 --- ncurses-5.9.orig/c++/cursesf.h 2012-0 2-16 18:25:12.643809617+000011412 +++ ncurses-5.9/c++/cursesf.h 2012-0 2-16 18:25:12.919816901+000013175 --- ncurses-5.9.orig/c++/cursesf.h 2012-08-25 19:57:59.423234170 +0000 13176 +++ ncurses-5.9/c++/cursesf.h 2012-08-25 19:58:01.569890686 +0000 11413 13177 @@ -1,6 +1,6 @@ 11414 13178 // * This makes emacs happy -*-Mode: C++;-*- 11415 13179 /**************************************************************************** 11416 13180 - * Copyright (c) 1998-2004,2005 Free Software Foundation, Inc. * 11417 + * Copyright (c) 1998-20 05,2011Free Software Foundation, Inc. *13181 + * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. * 11418 13182 * * 11419 13183 * Permission is hereby granted, free of charge, to any person obtaining a * … … 11424 13188 11425 13189 -// $Id: cursesf.h,v 1.28 2005/08/13 18:08:24 tom Exp $ 11426 +// $Id: cursesf.h,v 1. 29 2011/04/09 18:07:01 Alexander.KolesenExp $13190 +// $Id: cursesf.h,v 1.30 2012/06/08 17:43:56 Richard.Yao Exp $ 11427 13191 11428 13192 #ifndef NCURSES_CURSESF_H_incl 11429 13193 #define NCURSES_CURSESF_H_incl 1 11430 @@ -681,7 +681,7 @@ 13194 @@ -677,7 +677,7 @@ 13195 } 13196 13197 public: 13198 - NCursesUserForm (NCursesFormField Fields[], 13199 + NCursesUserForm (NCursesFormField* Fields[], 11431 13200 const T* p_UserData = STATIC_CAST(T*)(0), 11432 13201 bool with_frame=FALSE, 11433 13202 bool autoDelete_Fields=FALSE) 11434 - : NCursesForm (Fields, with_frame, autoDelete_Fields) { 11435 + : NCursesForm (&Fields, with_frame, autoDelete_Fields) { 11436 if (form) 13203 @@ -686,7 +686,7 @@ 11437 13204 set_user (const_cast<void *>(p_UserData)); 11438 13205 }; 11439 @@ -694,7 +694,7 @@ 11440 const T* p_UserData = STATIC_CAST(T*)(0), 11441 bool with_frame=FALSE, 11442 bool autoDelete_Fields=FALSE) 11443 - : NCursesForm (Fields, nlines, ncols, begin_y, begin_x, 11444 + : NCursesForm (&Fields, nlines, ncols, begin_y, begin_x, 11445 with_frame, autoDelete_Fields) { 11446 if (form) 11447 set_user (const_cast<void *>(p_UserData)); 13206 13207 - NCursesUserForm (NCursesFormField Fields[], 13208 + NCursesUserForm (NCursesFormField* Fields[], 13209 int nlines, 13210 int ncols, 13211 int begin_y = 0, 11448 13212 diff -Naur ncurses-5.9.orig/c++/cursesm.cc ncurses-5.9/c++/cursesm.cc 11449 --- ncurses-5.9.orig/c++/cursesm.cc 2012-0 2-16 18:25:12.643809617+000011450 +++ ncurses-5.9/c++/cursesm.cc 2012-0 2-16 18:25:12.919816901+000013213 --- ncurses-5.9.orig/c++/cursesm.cc 2012-08-25 19:57:59.426567488 +0000 13214 +++ ncurses-5.9/c++/cursesm.cc 2012-08-25 19:57:59.899898583 +0000 11451 13215 @@ -1,6 +1,6 @@ 11452 13216 // * this is for making emacs happy: -*-Mode: C++;-*- … … 11507 13271 } 11508 13272 diff -Naur ncurses-5.9.orig/c++/cursesm.h ncurses-5.9/c++/cursesm.h 11509 --- ncurses-5.9.orig/c++/cursesm.h 2012-0 2-16 18:25:12.639809512+000011510 +++ ncurses-5.9/c++/cursesm.h 2012-0 2-16 18:25:12.923817007+000013273 --- ncurses-5.9.orig/c++/cursesm.h 2012-08-25 19:57:59.423234170 +0000 13274 +++ ncurses-5.9/c++/cursesm.h 2012-08-25 19:58:01.569890686 +0000 11511 13275 @@ -1,6 +1,6 @@ 11512 13276 // * This makes emacs happy -*-Mode: C++;-*- 11513 13277 /**************************************************************************** 11514 13278 - * Copyright (c) 1998-2003,2005 Free Software Foundation, Inc. * 11515 + * Copyright (c) 1998-20 05,2011Free Software Foundation, Inc. *13279 + * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. * 11516 13280 * * 11517 13281 * Permission is hereby granted, free of charge, to any person obtaining a * … … 11522 13286 11523 13287 -// $Id: cursesm.h,v 1.25 2005/08/13 18:10:36 tom Exp $ 11524 +// $Id: cursesm.h,v 1.2 7 2011/09/17 21:37:01 tomExp $13288 +// $Id: cursesm.h,v 1.28 2012/06/08 17:43:56 Richard.Yao Exp $ 11525 13289 11526 13290 #ifndef NCURSES_CURSESM_H_incl … … 11534 13298 11535 13299 virtual ~NCursesMenuItem (); 11536 @@ -639,7 +640,7 @@ 13300 @@ -635,7 +636,7 @@ 13301 } 13302 13303 public: 13304 - NCursesUserMenu (NCursesMenuItem Items[], 13305 + NCursesUserMenu (NCursesMenuItem* Items[], 11537 13306 const T* p_UserData = STATIC_CAST(T*)(0), 11538 13307 bool with_frame=FALSE, 11539 13308 bool autoDelete_Items=FALSE) 11540 - : NCursesMenu (Items, with_frame, autoDelete_Items) { 11541 + : NCursesMenu (&Items, with_frame, autoDelete_Items) { 11542 if (menu) 13309 @@ -644,7 +645,7 @@ 11543 13310 set_user (const_cast<void *>(p_UserData)); 11544 13311 }; 11545 @@ -651,7 +652,7 @@ 11546 int begin_x = 0, 11547 const T* p_UserData = STATIC_CAST(T*)(0), 11548 bool with_frame=FALSE) 11549 - : NCursesMenu (Items, nlines, ncols, begin_y, begin_x, with_frame) { 11550 + : NCursesMenu (&Items, nlines, ncols, begin_y, begin_x, with_frame) { 11551 if (menu) 11552 set_user (const_cast<void *>(p_UserData)); 11553 }; 13312 13313 - NCursesUserMenu (NCursesMenuItem Items[], 13314 + NCursesUserMenu (NCursesMenuItem* Items[], 13315 int nlines, 13316 int ncols, 13317 int begin_y = 0, 11554 13318 diff -Naur ncurses-5.9.orig/c++/cursespad.cc ncurses-5.9/c++/cursespad.cc 11555 --- ncurses-5.9.orig/c++/cursespad.cc 2012-0 2-16 18:25:12.643809617+000011556 +++ ncurses-5.9/c++/cursespad.cc 2012-0 2-16 18:25:12.923817007+000013319 --- ncurses-5.9.orig/c++/cursespad.cc 2012-08-25 19:57:59.426567488 +0000 13320 +++ ncurses-5.9/c++/cursespad.cc 2012-08-25 19:57:59.899898583 +0000 11557 13321 @@ -1,6 +1,6 @@ 11558 13322 // * this is for making emacs happy: -*-Mode: C++;-*- … … 11581 13345 11582 13346 diff -Naur ncurses-5.9.orig/c++/cursesw.cc ncurses-5.9/c++/cursesw.cc 11583 --- ncurses-5.9.orig/c++/cursesw.cc 2012-0 2-16 18:25:12.639809512+000011584 +++ ncurses-5.9/c++/cursesw.cc 2012-0 2-16 18:25:12.923817007+000013347 --- ncurses-5.9.orig/c++/cursesw.cc 2012-08-25 19:57:59.426567488 +0000 13348 +++ ncurses-5.9/c++/cursesw.cc 2012-08-25 19:57:59.903231901 +0000 11585 13349 @@ -1,6 +1,6 @@ 11586 13350 // * this is for making emacs happy: -*-Mode: C++;-*- … … 11616 13380 RIPOFFINIT init = *prip++; 11617 13381 diff -Naur ncurses-5.9.orig/c++/cursesw.h ncurses-5.9/c++/cursesw.h 11618 --- ncurses-5.9.orig/c++/cursesw.h 2012-0 2-16 18:25:12.643809617+000011619 +++ ncurses-5.9/c++/cursesw.h 2012-0 2-16 18:25:12.923817007+000013382 --- ncurses-5.9.orig/c++/cursesw.h 2012-08-25 19:57:59.423234170 +0000 13383 +++ ncurses-5.9/c++/cursesw.h 2012-08-25 19:57:59.903231901 +0000 11620 13384 @@ -1,7 +1,7 @@ 11621 13385 // * This makes emacs happy -*-Mode: C++;-*- … … 11672 13436 } 11673 13437 // Disable this call; the viewport subwindow is already defined 13438 diff -Naur ncurses-5.9.orig/c++/cursslk.cc ncurses-5.9/c++/cursslk.cc 13439 --- ncurses-5.9.orig/c++/cursslk.cc 2012-08-25 19:57:59.426567488 +0000 13440 +++ ncurses-5.9/c++/cursslk.cc 2012-08-25 19:58:00.879893949 +0000 13441 @@ -1,6 +1,6 @@ 13442 // * this is for making emacs happy: -*-Mode: C++;-*- 13443 /**************************************************************************** 13444 - * Copyright (c) 1998-2003,2005 Free Software Foundation, Inc. * 13445 + * Copyright (c) 1998-2005,2012 Free Software Foundation, Inc. * 13446 * * 13447 * Permission is hereby granted, free of charge, to any person obtaining a * 13448 * copy of this software and associated documentation files (the * 13449 @@ -35,14 +35,15 @@ 13450 #include "cursslk.h" 13451 #include "cursesapp.h" 13452 13453 -MODULE_ID("$Id: cursslk.cc,v 1.15 2005/08/06 22:12:36 tom Exp $") 13454 +MODULE_ID("$Id: cursslk.cc,v 1.16 2012/02/23 10:41:56 tom Exp $") 13455 13456 Soft_Label_Key_Set::Soft_Label_Key& 13457 Soft_Label_Key_Set::Soft_Label_Key::operator=(char *text) 13458 { 13459 delete[] label; 13460 - label = new char[1 + ::strlen(text)]; 13461 - (::strcpy)(label,text); 13462 + size_t need = 1 + ::strlen(text); 13463 + label = new char[need]; 13464 + ::_nc_STRCPY(label,text,need); 13465 return *this; 13466 } 13467 11674 13468 diff -Naur ncurses-5.9.orig/c++/demo.cc ncurses-5.9/c++/demo.cc 11675 --- ncurses-5.9.orig/c++/demo.cc 2012-0 2-16 18:25:12.643809617+000011676 +++ ncurses-5.9/c++/demo.cc 2012-0 2-16 18:25:12.923817007+000013469 --- ncurses-5.9.orig/c++/demo.cc 2012-08-25 19:57:59.423234170 +0000 13470 +++ ncurses-5.9/c++/demo.cc 2012-08-25 19:58:00.879893949 +0000 11677 13471 @@ -1,6 +1,6 @@ 11678 13472 // * This makes emacs happy -*-Mode: C++;-*- 11679 13473 /**************************************************************************** 11680 13474 - * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. * 11681 + * Copyright (c) 1998-20 08,2011Free Software Foundation, Inc. *13475 + * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. * 11682 13476 * * 11683 13477 * Permission is hereby granted, free of charge, to any person obtaining a * … … 11688 13482 * 11689 13483 - * $Id: demo.cc,v 1.39 2008/12/07 02:07:34 juergen Exp $ 11690 + * $Id: demo.cc,v 1.4 0 2011/09/17 22:12:10tom Exp $13484 + * $Id: demo.cc,v 1.41 2012/02/23 10:41:56 tom Exp $ 11691 13485 */ 11692 13486 … … 11700 13494 } 11701 13495 bool char_check(int c) { 13496 @@ -319,7 +320,7 @@ 13497 for(int i=1; i <= S->labels(); i++) { 13498 char buf[8]; 13499 assert(i < 100); 13500 - ::sprintf(buf, "Frm%02d", i); 13501 + ::_nc_SPRINTF(buf, _nc_SLIMIT(sizeof(buf)) "Frm%02d", i); 13502 (*S)[i] = buf; // Text 13503 (*S)[i] = Soft_Label_Key_Set::Soft_Label_Key::Left; // Justification 13504 } 13505 @@ -539,7 +540,7 @@ 13506 for(int i=1; i <= S.labels(); i++) { 13507 char buf[8]; 13508 assert(i < 100); 13509 - ::sprintf(buf, "Key%02d", i); 13510 + ::_nc_SPRINTF(buf, _nc_SLIMIT(sizeof(buf)) "Key%02d", i); 13511 S[i] = buf; // Text 13512 S[i] = Soft_Label_Key_Set::Soft_Label_Key::Left; // Justification 13513 } 11702 13514 diff -Naur ncurses-5.9.orig/c++/etip.h.in ncurses-5.9/c++/etip.h.in 11703 --- ncurses-5.9.orig/c++/etip.h.in 2012-0 2-16 18:25:12.639809512+000011704 +++ ncurses-5.9/c++/etip.h.in 2012-0 2-16 18:25:12.923817007+000013515 --- ncurses-5.9.orig/c++/etip.h.in 2012-08-25 19:57:59.426567488 +0000 13516 +++ ncurses-5.9/c++/etip.h.in 2012-08-25 19:57:59.906565219 +0000 11705 13517 @@ -1,6 +1,6 @@ 11706 13518 // * This makes emacs happy -*-Mode: C++;-*- … … 11774 13586 11775 13587 NCursesFormException (const NCursesForm* form, 13588 diff -Naur ncurses-5.9.orig/c++/internal.h ncurses-5.9/c++/internal.h 13589 --- ncurses-5.9.orig/c++/internal.h 2012-08-25 19:57:59.423234170 +0000 13590 +++ ncurses-5.9/c++/internal.h 2012-08-25 19:58:00.879893949 +0000 13591 @@ -1,6 +1,6 @@ 13592 // * This makes emacs happy -*-Mode: C++;-*- 13593 /**************************************************************************** 13594 - * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc. * 13595 + * Copyright (c) 1998-2008,2012 Free Software Foundation, Inc. * 13596 * * 13597 * Permission is hereby granted, free of charge, to any person obtaining a * 13598 * copy of this software and associated documentation files (the * 13599 @@ -31,7 +31,7 @@ 13600 * Author: Juergen Pfeifer, 1997 * 13601 ****************************************************************************/ 13602 13603 -// $Id: internal.h,v 1.17 2008/12/07 02:07:34 juergen Exp $ 13604 +// $Id: internal.h,v 1.18 2012/02/23 10:41:56 tom Exp $ 13605 13606 #ifndef NCURSES_CPLUS_INTERNAL_H 13607 #define NCURSES_CPLUS_INTERNAL_H 1 13608 @@ -62,4 +62,6 @@ 13609 #define NULL 0 13610 #endif 13611 13612 +#include <nc_string.h> 13613 + 13614 #endif /* NCURSES_CPLUS_INTERNAL_H */ 11776 13615 diff -Naur ncurses-5.9.orig/config.guess ncurses-5.9/config.guess 11777 --- ncurses-5.9.orig/config.guess 2012-0 2-16 18:25:12.607808668+000011778 +++ ncurses-5.9/config.guess 2012-0 2-16 18:25:12.923817007+000013616 --- ncurses-5.9.orig/config.guess 2012-08-25 19:57:59.429900806 +0000 13617 +++ ncurses-5.9/config.guess 2012-08-25 19:58:00.879893949 +0000 11779 13618 @@ -1,10 +1,10 @@ 11780 13619 #! /bin/sh … … 11784 13623 -# Free Software Foundation, Inc. 11785 13624 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 11786 +# 2 911Free Software Foundation, Inc.13625 +# 2011, 2012 Free Software Foundation, Inc. 11787 13626 11788 13627 -timestamp='2010-09-24' 11789 +timestamp='201 1-01-01'13628 +timestamp='2012-02-10' 11790 13629 11791 13630 # This file is free software; you can redistribute it and/or modify it 11792 13631 # under the terms of the GNU General Public License as published by 11793 @@ -57,8 +57,8 @@ 13632 @@ -17,9 +17,7 @@ 13633 # General Public License for more details. 13634 # 13635 # You should have received a copy of the GNU General Public License 13636 -# along with this program; if not, write to the Free Software 13637 -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 13638 -# 02110-1301, USA. 13639 +# along with this program; if not, see <http://www.gnu.org/licenses/>. 13640 # 13641 # As a special exception to the GNU General Public License, if you 13642 # distribute this file as part of a program that contains a 13643 @@ -57,8 +55,8 @@ 11794 13644 11795 13645 Originally written by Per Bothner. … … 11797 13647 -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free 11798 13648 -Software Foundation, Inc. 11799 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 13649 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 11800 13650 +Free Software Foundation, Inc. 11801 13651 11802 13652 This is free software; see the source for copying conditions. There is NO 11803 13653 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 11804 @@ -92,7 +9 2,7 @@13654 @@ -92,7 +90,7 @@ 11805 13655 exit 1 11806 13656 fi … … 11811 13661 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a 11812 13662 # compiler to aid in system detection is discouraged as it requires 11813 @@ -106,7 +10 6,7 @@13663 @@ -106,7 +104,7 @@ 11814 13664 11815 13665 set_cc_for_build=' … … 11820 13670 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || 11821 13671 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || 11822 @@ -270,7 +270,10 @@ 13672 @@ -145,7 +143,7 @@ 13673 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in 13674 *:NetBSD:*:*) 13675 # NetBSD (nbsd) targets should (where applicable) match one or 13676 - # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, 13677 + # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, 13678 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently 13679 # switched to ELF, *-*-netbsd* would select the old 13680 # object file format. This provides both forward 13681 @@ -220,10 +218,10 @@ 13682 exit ;; 13683 alpha:OSF1:*:*) 13684 case $UNAME_RELEASE in 13685 - *4.0) 13686 + *4.0) 13687 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` 13688 ;; 13689 - *5.*) 13690 + *5.*) 13691 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` 13692 ;; 13693 esac 13694 @@ -270,7 +268,10 @@ 11823 13695 # A Xn.n version is an unreleased experimental baselevel. 11824 13696 # 1.2 uses "1.2" for uname -r. … … 11832 13704 # How do we know it's Interix rather than the generic POSIX subsystem? 11833 13705 # Should we change UNAME_MACHINE based on the output of uname instead 11834 @@ -326,8 +32 9,8 @@13706 @@ -326,8 +327,8 @@ 11835 13707 sparc) echo sparc-icl-nx7; exit ;; 11836 13708 esac ;; … … 11843 13715 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 11844 13716 exit ;; 11845 @@ -495,7 +49 8,7 @@13717 @@ -495,7 +496,7 @@ 11846 13718 else 11847 13719 echo i586-dg-dgux${UNAME_RELEASE} … … 11852 13724 echo m88k-dolphin-sysv3 11853 13725 exit ;; 13726 @@ -597,50 +598,50 @@ 13727 sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` 13728 sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` 13729 case "${sc_cpu_version}" in 13730 - 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 13731 - 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 13732 - 532) # CPU_PA_RISC2_0 13733 - case "${sc_kernel_bits}" in 13734 - 32) HP_ARCH="hppa2.0n" ;; 13735 - 64) HP_ARCH="hppa2.0w" ;; 13736 + 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 13737 + 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 13738 + 532) # CPU_PA_RISC2_0 13739 + case "${sc_kernel_bits}" in 13740 + 32) HP_ARCH="hppa2.0n" ;; 13741 + 64) HP_ARCH="hppa2.0w" ;; 13742 '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 13743 - esac ;; 13744 - esac 13745 + esac ;; 13746 + esac 13747 fi 13748 if [ "${HP_ARCH}" = "" ]; then 13749 eval $set_cc_for_build 13750 - sed 's/^ //' << EOF >$dummy.c 13751 + sed 's/^ //' << EOF >$dummy.c 13752 + 13753 + #define _HPUX_SOURCE 13754 + #include <stdlib.h> 13755 + #include <unistd.h> 13756 13757 - #define _HPUX_SOURCE 13758 - #include <stdlib.h> 13759 - #include <unistd.h> 13760 - 13761 - int main () 13762 - { 13763 - #if defined(_SC_KERNEL_BITS) 13764 - long bits = sysconf(_SC_KERNEL_BITS); 13765 - #endif 13766 - long cpu = sysconf (_SC_CPU_VERSION); 13767 - 13768 - switch (cpu) 13769 - { 13770 - case CPU_PA_RISC1_0: puts ("hppa1.0"); break; 13771 - case CPU_PA_RISC1_1: puts ("hppa1.1"); break; 13772 - case CPU_PA_RISC2_0: 13773 - #if defined(_SC_KERNEL_BITS) 13774 - switch (bits) 13775 - { 13776 - case 64: puts ("hppa2.0w"); break; 13777 - case 32: puts ("hppa2.0n"); break; 13778 - default: puts ("hppa2.0"); break; 13779 - } break; 13780 - #else /* !defined(_SC_KERNEL_BITS) */ 13781 - puts ("hppa2.0"); break; 13782 - #endif 13783 - default: puts ("hppa1.0"); break; 13784 - } 13785 - exit (0); 13786 - } 13787 + int main () 13788 + { 13789 + #if defined(_SC_KERNEL_BITS) 13790 + long bits = sysconf(_SC_KERNEL_BITS); 13791 + #endif 13792 + long cpu = sysconf (_SC_CPU_VERSION); 13793 + 13794 + switch (cpu) 13795 + { 13796 + case CPU_PA_RISC1_0: puts ("hppa1.0"); break; 13797 + case CPU_PA_RISC1_1: puts ("hppa1.1"); break; 13798 + case CPU_PA_RISC2_0: 13799 + #if defined(_SC_KERNEL_BITS) 13800 + switch (bits) 13801 + { 13802 + case 64: puts ("hppa2.0w"); break; 13803 + case 32: puts ("hppa2.0n"); break; 13804 + default: puts ("hppa2.0"); break; 13805 + } break; 13806 + #else /* !defined(_SC_KERNEL_BITS) */ 13807 + puts ("hppa2.0"); break; 13808 + #endif 13809 + default: puts ("hppa1.0"); break; 13810 + } 13811 + exit (0); 13812 + } 13813 EOF 13814 (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` 13815 test -z "$HP_ARCH" && HP_ARCH=hppa 13816 @@ -789,13 +790,12 @@ 13817 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} 13818 exit ;; 13819 *:FreeBSD:*:*) 13820 - case ${UNAME_MACHINE} in 13821 - pc98) 13822 - echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 13823 + UNAME_PROCESSOR=`/usr/bin/uname -p` 13824 + case ${UNAME_PROCESSOR} in 13825 amd64) 13826 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 13827 *) 13828 - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 13829 + echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; 13830 esac 13831 exit ;; 13832 i*:CYGWIN*:*) 13833 @@ -804,6 +804,9 @@ 13834 *:MINGW*:*) 13835 echo ${UNAME_MACHINE}-pc-mingw32 13836 exit ;; 13837 + i*:MSYS*:*) 13838 + echo ${UNAME_MACHINE}-pc-msys 13839 + exit ;; 13840 i*:windows32*:*) 13841 # uname -m includes "-pc" on this system. 13842 echo ${UNAME_MACHINE}-mingw32 11854 13843 @@ -820,8 +823,8 @@ 11855 13844 echo x86_64-unknown-interix${UNAME_RELEASE} … … 11863 13852 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) 11864 13853 echo i${UNAME_MACHINE}-pc-mks 11865 @@ -934,14 +937,14 @@ 13854 @@ -858,15 +861,22 @@ 13855 i*86:Minix:*:*) 13856 echo ${UNAME_MACHINE}-pc-minix 13857 exit ;; 13858 + aarch64:Linux:*:*) 13859 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13860 + exit ;; 13861 + aarch64_be:Linux:*:*) 13862 + UNAME_MACHINE=aarch64_be 13863 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13864 + exit ;; 13865 alpha:Linux:*:*) 13866 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in 13867 - EV5) UNAME_MACHINE=alphaev5 ;; 13868 - EV56) UNAME_MACHINE=alphaev56 ;; 13869 - PCA56) UNAME_MACHINE=alphapca56 ;; 13870 - PCA57) UNAME_MACHINE=alphapca56 ;; 13871 - EV6) UNAME_MACHINE=alphaev6 ;; 13872 - EV67) UNAME_MACHINE=alphaev67 ;; 13873 - EV68*) UNAME_MACHINE=alphaev68 ;; 13874 + EV5) UNAME_MACHINE=alphaev5 ;; 13875 + EV56) UNAME_MACHINE=alphaev56 ;; 13876 + PCA56) UNAME_MACHINE=alphapca56 ;; 13877 + PCA57) UNAME_MACHINE=alphapca56 ;; 13878 + EV6) UNAME_MACHINE=alphaev6 ;; 13879 + EV67) UNAME_MACHINE=alphaev67 ;; 13880 + EV68*) UNAME_MACHINE=alphaev68 ;; 13881 esac 13882 objdump --private-headers /bin/sh | grep -q ld.so.1 13883 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi 13884 @@ -874,30 +884,39 @@ 13885 exit ;; 13886 arm*:Linux:*:*) 13887 eval $set_cc_for_build 13888 - if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null | \ 13889 - grep -q __ARM_EABI__ 13890 + if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ 13891 + | grep -q __ARM_EABI__ 13892 then 13893 echo ${UNAME_MACHINE}-unknown-linux-gnu 13894 else 13895 - echo ${UNAME_MACHINE}-unknown-linux-gnueabi 13896 + if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ 13897 + | grep -q __ARM_PCS_VFP 13898 + then 13899 + echo ${UNAME_MACHINE}-unknown-linux-gnueabi 13900 + else 13901 + echo ${UNAME_MACHINE}-unknown-linux-gnueabihf 13902 + fi 13903 fi 13904 exit ;; 13905 avr32*:Linux:*:*) 13906 echo ${UNAME_MACHINE}-unknown-linux-gnu 13907 exit ;; 13908 cris:Linux:*:*) 13909 - echo cris-axis-linux-gnu 13910 + echo ${UNAME_MACHINE}-axis-linux-gnu 13911 exit ;; 13912 crisv32:Linux:*:*) 13913 - echo crisv32-axis-linux-gnu 13914 + echo ${UNAME_MACHINE}-axis-linux-gnu 13915 exit ;; 13916 frv:Linux:*:*) 13917 - echo frv-unknown-linux-gnu 13918 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13919 + exit ;; 13920 + hexagon:Linux:*:*) 13921 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13922 exit ;; 13923 i*86:Linux:*:*) 13924 LIBC=gnu 13925 eval $set_cc_for_build 13926 - sed 's/^ //' << EOF >$dummy.c 13927 + sed 's/^ //' << EOF >$dummy.c 13928 #ifdef __dietlibc__ 13929 LIBC=dietlibc 13930 #endif 13931 @@ -934,14 +953,14 @@ 11866 13932 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } 11867 13933 ;; … … 11869 13935 - echo or32-unknown-linux-gnu 11870 13936 - exit ;; 11871 + echo or32-unknown-linux-gnu13937 + echo ${UNAME_MACHINE}-unknown-linux-gnu 11872 13938 + exit ;; 11873 13939 padre:Linux:*:*) … … 11882 13948 # Look for CPU level 11883 13949 case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in 13950 @@ -969,13 +988,13 @@ 13951 echo ${UNAME_MACHINE}-unknown-linux-gnu 13952 exit ;; 13953 tile*:Linux:*:*) 13954 - echo ${UNAME_MACHINE}-tilera-linux-gnu 13955 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13956 exit ;; 13957 vax:Linux:*:*) 13958 echo ${UNAME_MACHINE}-dec-linux-gnu 13959 exit ;; 13960 x86_64:Linux:*:*) 13961 - echo x86_64-unknown-linux-gnu 13962 + echo ${UNAME_MACHINE}-unknown-linux-gnu 13963 exit ;; 13964 xtensa*:Linux:*:*) 13965 echo ${UNAME_MACHINE}-unknown-linux-gnu 13966 @@ -1093,7 +1112,7 @@ 13967 && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 13968 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) 13969 /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ 13970 - && { echo i486-ncr-sysv4; exit; } ;; 13971 + && { echo i486-ncr-sysv4; exit; } ;; 13972 NCR*:*:4.2:* | MPRAS*:*:4.2:*) 13973 OS_REL='.3' 13974 test -r /etc/.relid \ 13975 @@ -1136,8 +1155,8 @@ 13976 echo ns32k-sni-sysv 13977 fi 13978 exit ;; 13979 - PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort 13980 - # says <Richard.M.Bartel@ccMail.Census.GOV> 13981 + PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort 13982 + # says <Richard.M.Bartel@ccMail.Census.GOV> 13983 echo i586-unisys-sysv4 13984 exit ;; 13985 *:UNIX_System_V:4*:FTX*) 13986 @@ -1165,9 +1184,9 @@ 13987 exit ;; 13988 R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) 13989 if [ -d /usr/nec ]; then 13990 - echo mips-nec-sysv${UNAME_RELEASE} 13991 + echo mips-nec-sysv${UNAME_RELEASE} 13992 else 13993 - echo mips-unknown-sysv${UNAME_RELEASE} 13994 + echo mips-unknown-sysv${UNAME_RELEASE} 13995 fi 13996 exit ;; 13997 BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. 13998 @@ -1212,12 +1231,12 @@ 13999 i386) 14000 eval $set_cc_for_build 14001 if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then 14002 - if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ 14003 - (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ 14004 - grep IS_64BIT_ARCH >/dev/null 14005 - then 14006 - UNAME_PROCESSOR="x86_64" 14007 - fi 14008 + if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ 14009 + (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ 14010 + grep IS_64BIT_ARCH >/dev/null 14011 + then 14012 + UNAME_PROCESSOR="x86_64" 14013 + fi 14014 fi ;; 14015 unknown) UNAME_PROCESSOR=powerpc ;; 14016 esac 14017 @@ -1226,8 +1245,8 @@ 14018 *:procnto*:*:* | *:QNX:[0123456789]*:*) 14019 UNAME_PROCESSOR=`uname -p` 14020 if test "$UNAME_PROCESSOR" = "x86"; then 14021 - UNAME_PROCESSOR=i386 14022 - UNAME_MACHINE=pc 14023 + UNAME_PROCESSOR=i386 14024 + UNAME_MACHINE=pc 14025 fi 14026 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} 14027 exit ;; 14028 @@ -1306,6 +1325,9 @@ 14029 i*86:AROS:*:*) 14030 echo ${UNAME_MACHINE}-pc-aros 14031 exit ;; 14032 + x86_64:VMkernel:*:*) 14033 + echo ${UNAME_MACHINE}-unknown-esx 14034 + exit ;; 14035 esac 14036 14037 #echo '(No uname command or uname output not recognized.)' 1>&2 14038 @@ -1328,11 +1350,11 @@ 14039 #include <sys/param.h> 14040 printf ("m68k-sony-newsos%s\n", 14041 #ifdef NEWSOS4 14042 - "4" 14043 + "4" 14044 #else 14045 - "" 14046 + "" 14047 #endif 14048 - ); exit (0); 14049 + ); exit (0); 14050 #endif 14051 #endif 14052 11884 14053 diff -Naur ncurses-5.9.orig/config.sub ncurses-5.9/config.sub 11885 --- ncurses-5.9.orig/config.sub 2012-02-16 18:25:12.627809197 +0000 11886 +++ ncurses-5.9/config.sub 2012-02-16 18:25:12.927817113 +0000 11887 @@ -2,9 +2,9 @@ 14054 --- ncurses-5.9.orig/config.sub 2012-08-25 19:57:59.429900806 +0000 14055 +++ ncurses-5.9/config.sub 2012-08-25 19:58:00.879893949 +0000 14056 @@ -1,10 +1,10 @@ 14057 #! /bin/sh 11888 14058 # Configuration validation subroutine script. 11889 14059 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 11890 # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 201014060 -# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 11891 14061 -# Free Software Foundation, Inc. 11892 +# 2011 Free Software Foundation, Inc. 14062 +# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 14063 +# 2011, 2012 Free Software Foundation, Inc. 11893 14064 11894 14065 -timestamp='2010-09-11' 11895 +timestamp='201 1-04-01'14066 +timestamp='2012-02-10' 11896 14067 11897 14068 # This file is (in principle) common to ALL GNU software. 11898 14069 # The presence of a machine in this file suggests that SOME GNU software 11899 @@ -76,8 +76,8 @@ 14070 @@ -21,9 +21,7 @@ 14071 # GNU General Public License for more details. 14072 # 14073 # You should have received a copy of the GNU General Public License 14074 -# along with this program; if not, write to the Free Software 14075 -# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 14076 -# 02110-1301, USA. 14077 +# along with this program; if not, see <http://www.gnu.org/licenses/>. 14078 # 14079 # As a special exception to the GNU General Public License, if you 14080 # distribute this file as part of a program that contains a 14081 @@ -76,8 +74,8 @@ 11900 14082 GNU config.sub ($timestamp) 11901 14083 … … 11903 14085 -2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free 11904 14086 -Software Foundation, Inc. 11905 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 14087 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 11906 14088 +Free Software Foundation, Inc. 11907 14089 11908 14090 This is free software; see the source for copying conditions. There is NO 11909 14091 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." 11910 @@ -175,10 +175,10 @@ 14092 @@ -132,6 +130,10 @@ 14093 os=-$maybe_os 14094 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` 14095 ;; 14096 + android-linux) 14097 + os=-linux-android 14098 + basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown 14099 + ;; 14100 *) 14101 basic_machine=`echo $1 | sed 's/-[^-]*$//'` 14102 if [ $basic_machine != $1 ] 14103 @@ -175,10 +177,10 @@ 11911 14104 os=-chorusos 11912 14105 basic_machine=$1 … … 11922 14115 os=-hiuxwe2 11923 14116 ;; 11924 @@ -283,12 +283,13 @@ 14117 @@ -247,17 +249,22 @@ 14118 # Some are omitted here because they have special meanings below. 14119 1750a | 580 \ 14120 | a29k \ 14121 + | aarch64 | aarch64_be \ 14122 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ 14123 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ 14124 | am33_2.0 \ 14125 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ 14126 + | be32 | be64 \ 14127 | bfin \ 14128 | c4x | clipper \ 14129 | d10v | d30v | dlx | dsp16xx \ 14130 + | epiphany \ 14131 | fido | fr30 | frv \ 14132 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ 14133 + | hexagon \ 14134 | i370 | i860 | i960 | ia64 \ 14135 | ip2k | iq2000 \ 14136 + | le32 | le64 \ 14137 | lm32 \ 14138 | m32c | m32r | m32rle | m68000 | m68k | m88k \ 14139 | maxq | mb | microblaze | mcore | mep | metag \ 14140 @@ -283,25 +290,26 @@ 11925 14141 | moxie \ 11926 14142 | mt \ … … 11936 14152 + | powerpc | powerpc64 | powerpc64le | powerpcle \ 11937 14153 | pyramid \ 11938 | rx \ 14154 - | rx \ 14155 + | rl78 | rx \ 11939 14156 | score \ 11940 @@ -296,12 +297,12 @@ 14157 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ 11941 14158 | sh64 | sh64le \ 11942 14159 | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ … … 11947 14164 + | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ 11948 14165 | ubicom32 \ 11949 | v850 | v850e \ 14166 - | v850 | v850e \ 14167 + | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ 11950 14168 | we32k \ 11951 14169 - | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ … … 11954 14172 basic_machine=$basic_machine-unknown 11955 14173 ;; 11956 @@ -324,7 +325,15 @@ 11957 ms1) 14174 @@ -314,8 +322,7 @@ 14175 c6x) 14176 basic_machine=tic6x-unknown 14177 ;; 14178 - m6811 | m68hc11 | m6812 | m68hc12 | picochip) 14179 - # Motorola 68HC11/12. 14180 + m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip) 14181 basic_machine=$basic_machine-unknown 14182 os=-none 14183 ;; 14184 @@ -325,12 +332,27 @@ 11958 14185 basic_machine=mt-unknown 11959 14186 ;; 11960 - 14187 11961 14188 + strongarm | thumb | xscale) 11962 14189 + basic_machine=arm-unknown 14190 + ;; 14191 + xgate) 14192 + basic_machine=$basic_machine-unknown 14193 + os=-none 11963 14194 + ;; 11964 14195 + xscaleeb) 11965 14196 + basic_machine=armeb-unknown 11966 14197 + ;; 14198 + 11967 14199 + xscaleel) 11968 14200 + basic_machine=armel-unknown 11969 14201 + ;; 14202 + 11970 14203 # We use `pc' rather than `unknown' 11971 14204 # because (1) that's what they normally are, and 11972 14205 # (2) the word "unknown" tends to confuse beginning users. 11973 @@ -382,24 +391,25 @@ 14206 i*86 | x86_64) 14207 - basic_machine=$basic_machine-pc 14208 - ;; 14209 + basic_machine=$basic_machine-pc 14210 + ;; 14211 # Object if more than one company name word. 14212 *-*-*) 14213 echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 14214 @@ -339,11 +361,13 @@ 14215 # Recognize the basic CPU types with company name. 14216 580-* \ 14217 | a29k-* \ 14218 + | aarch64-* | aarch64_be-* \ 14219 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ 14220 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ 14221 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ 14222 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ 14223 | avr-* | avr32-* \ 14224 + | be32-* | be64-* \ 14225 | bfin-* | bs2000-* \ 14226 | c[123]* | c30-* | [cjt]90-* | c4x-* \ 14227 | clipper-* | craynv-* | cydra-* \ 14228 @@ -352,8 +376,10 @@ 14229 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ 14230 | h8300-* | h8500-* \ 14231 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ 14232 + | hexagon-* \ 14233 | i*86-* | i860-* | i960-* | ia64-* \ 14234 | ip2k-* | iq2000-* \ 14235 + | le32-* | le64-* \ 14236 | lm32-* \ 14237 | m32c-* | m32r-* | m32rle-* \ 14238 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ 14239 @@ -382,24 +408,26 @@ 11974 14240 | nds32-* | nds32le-* | nds32be-* \ 11975 14241 | nios-* | nios2-* \ … … 11981 14247 + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ 11982 14248 | pyramid-* \ 11983 | romp-* | rs6000-* | rx-* \ 14249 - | romp-* | rs6000-* | rx-* \ 14250 + | rl78-* | romp-* | rs6000-* | rx-* \ 11984 14251 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ 11985 14252 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ … … 11991 14258 + | tahoe-* \ 11992 14259 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ 11993 | tile-* | tilegx-* \ 14260 - | tile-* | tilegx-* \ 14261 + | tile*-* \ 11994 14262 | tron-* \ 11995 14263 | ubicom32-* \ 11996 | v850-* | v850e-* | vax-* \ 14264 - | v850-* | v850e-* | vax-* \ 14265 + | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ 14266 + | vax-* \ 11997 14267 | we32k-* \ 11998 14268 - | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ … … 12001 14271 | ymp-* \ 12002 14272 | z8k-* | z80-*) 12003 @@ -539,7 +5 49,7 @@14273 @@ -539,7 +567,7 @@ 12004 14274 basic_machine=craynv-cray 12005 14275 os=-unicosmp … … 12010 14280 os=-elf 12011 14281 ;; 12012 @@ - 826,10 +836,10@@12013 basic_machine=v70-nec12014 os=-sysv14282 @@ -697,7 +725,6 @@ 14283 i370-ibm* | ibm*) 14284 basic_machine=i370-ibm 12015 14285 ;; 12016 - next | m*-next ) 12017 + next | m*-next) 12018 basic_machine=m68k-next 12019 case $os in 12020 - -nextstep* ) 12021 + -nextstep*) 12022 ;; 12023 -ns2*) 12024 os=-nextstep2 12025 @@ -948,11 +958,14 @@ 12026 pn) 12027 basic_machine=pn-gould 14286 -# I'm not sure what "Sysv32" means. Should this be sysv3.2? 14287 i*86v32) 14288 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` 14289 os=-sysv32 14290 @@ -794,10 +821,18 @@ 14291 ms1-*) 14292 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` 12028 14293 ;; 12029 - power) basic_machine=power-ibm 12030 + power) 12031 + basic_machine=power-ibm 14294 + msys) 14295 + basic_machine=i386-pc 14296 + os=-msys 14297 + ;; 14298 mvs) 14299 basic_machine=i370-ibm 14300 os=-mvs 14301 ;; 14302 + nacl) 14303 + basic_machine=le32-unknown 14304 + os=-nacl 14305 + ;; 14306 ncr3000) 14307 basic_machine=i486-ncr 14308 os=-sysv4 14309 @@ -950,9 +985,10 @@ 14310 ;; 14311 power) basic_machine=power-ibm 12032 14312 ;; 12033 14313 - ppc) basic_machine=powerpc-unknown 12034 + ppc | ppcbe) 12035 + basic_machine=powerpc-unknown 14314 + ppc | ppcbe) basic_machine=powerpc-unknown 12036 14315 ;; 12037 14316 - ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` … … 12041 14320 ppcle | powerpclittle | ppc-le | powerpc-little) 12042 14321 basic_machine=powerpcle-unknown 12043 @@ -960,9 +973,11 @@ 12044 ppcle-* | powerpclittle-*) 12045 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` 12046 ;; 12047 - ppc64) basic_machine=powerpc64-unknown 12048 + ppc64) 12049 + basic_machine=powerpc64-unknown 12050 ;; 12051 - ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` 12052 + ppc64-*) 12053 + basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` 12054 ;; 12055 ppc64le | powerpc64little | ppc64-le | powerpc64-little) 12056 basic_machine=powerpc64le-unknown 12057 @@ -1046,6 +1061,9 @@ 14322 @@ -1046,6 +1082,9 @@ 12058 14323 basic_machine=i860-stratus 12059 14324 os=-sysv4 … … 12065 14330 basic_machine=m68000-sun 12066 14331 ;; 12067 @@ -1178,6 +1196,9 @@ 14332 @@ -1102,13 +1141,8 @@ 14333 basic_machine=t90-cray 14334 os=-unicos 14335 ;; 14336 - # This must be matched before tile*. 14337 - tilegx*) 14338 - basic_machine=tilegx-unknown 14339 - os=-linux-gnu 14340 - ;; 14341 tile*) 14342 - basic_machine=tile-unknown 14343 + basic_machine=$basic_machine-unknown 14344 os=-linux-gnu 14345 ;; 14346 tx39) 14347 @@ -1178,6 +1212,9 @@ 12068 14348 xps | xps100) 12069 14349 basic_machine=xps100-honeywell … … 12075 14355 basic_machine=ymp-cray 12076 14356 os=-unicos 12077 @@ -1400,7 +1421,7 @@ 12078 -nova*) 12079 os=-rtmk-nova 14357 @@ -1315,7 +1352,7 @@ 14358 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ 14359 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ 14360 | -chorusos* | -chorusrdb* | -cegcc* \ 14361 - | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ 14362 + | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ 14363 | -mingw32* | -linux-gnu* | -linux-android* \ 14364 | -linux-newlib* | -linux-uclibc* \ 14365 | -uxpv* | -beos* | -mpeix* | -udk* \ 14366 @@ -1527,9 +1564,6 @@ 12080 14367 ;; 12081 - -ns2 ) 12082 + -ns2) 12083 os=-nextstep2 14368 m68000-sun) 14369 os=-sunos3 14370 - # This also exists in the configure program, but was not the 14371 - # default. 14372 - # os=-sunos4 12084 14373 ;; 12085 -nsk*) 12086 @@ -1597,7 +1618,7 @@ 12087 m88k-omron*) 12088 os=-luna 12089 ;; 12090 - *-next ) 12091 + *-next) 12092 os=-nextstep 12093 ;; 12094 *-sequent) 14374 m68*-cisco) 14375 os=-aout 12095 14376 diff -Naur ncurses-5.9.orig/configure ncurses-5.9/configure 12096 --- ncurses-5.9.orig/configure 2012-0 2-16 18:25:12.627809197+000012097 +++ ncurses-5.9/configure 2012-0 2-16 18:25:13.283826506+000012098 @@ -1, 5 +1,5@@14377 --- ncurses-5.9.orig/configure 2012-08-25 19:57:59.429900806 +0000 14378 +++ ncurses-5.9/configure 2012-08-25 19:58:02.356553633 +0000 14379 @@ -1,7 +1,7 @@ 12099 14380 #! /bin/sh 12100 14381 -# From configure.in Revision: 1.520 . 12101 +# From configure.in Revision: 1.5 41.14382 +# From configure.in Revision: 1.552 . 12102 14383 # Guess values for system-dependent variables and create Makefiles. 12103 # Generated by Autoconf 2.52.20101002. 14384 -# Generated by Autoconf 2.52.20101002. 14385 +# Generated by Autoconf 2.52.20120811. 12104 14386 # 12105 @@ -702,6 +702,7 @@ 14387 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001 14388 # Free Software Foundation, Inc. 14389 @@ -171,15 +171,16 @@ 14390 bindir='${exec_prefix}/bin' 14391 sbindir='${exec_prefix}/sbin' 14392 libexecdir='${exec_prefix}/libexec' 14393 -datadir='${prefix}/share' 14394 +datarootdir='${prefix}/share' 14395 +datadir='${datarootdir}' 14396 sysconfdir='${prefix}/etc' 14397 sharedstatedir='${prefix}/com' 14398 localstatedir='${prefix}/var' 14399 libdir='${exec_prefix}/lib' 14400 includedir='${prefix}/include' 14401 oldincludedir='/usr/include' 14402 -infodir='${prefix}/info' 14403 -mandir='${prefix}/man' 14404 +infodir='${datarootdir}/info' 14405 +mandir='${datarootdir}/man' 14406 14407 # Identity of this package. 14408 PACKAGE_NAME= 14409 @@ -230,6 +231,13 @@ 14410 | --da=*) 14411 datadir=$ac_optarg ;; 14412 14413 + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ 14414 + | --dataroo | --dataro | --datar) 14415 + ac_prev=datarootdir ;; 14416 + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ 14417 + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) 14418 + datarootdir=$ac_optarg ;; 14419 + 14420 -disable-* | --disable-*) 14421 ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 14422 # Reject names that are not valid shell variable names. 14423 @@ -505,7 +513,7 @@ 14424 done 14425 14426 # Be sure to have absolute paths. 14427 -for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ 14428 +for ac_var in bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir \ 14429 localstatedir libdir includedir oldincludedir infodir mandir 14430 do 14431 eval ac_val=$`echo $ac_var` 14432 @@ -654,15 +662,16 @@ 14433 --bindir=DIR user executables [EPREFIX/bin] 14434 --sbindir=DIR system admin executables [EPREFIX/sbin] 14435 --libexecdir=DIR program executables [EPREFIX/libexec] 14436 - --datadir=DIR read-only architecture-independent data [PREFIX/share] 14437 + --datarootdir=DIR read-only architecture-independent data [PREFIX/share] 14438 + --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 14439 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 14440 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 14441 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 14442 --libdir=DIR object code libraries [EPREFIX/lib] 14443 --includedir=DIR C header files [PREFIX/include] 14444 --oldincludedir=DIR C header files for non-gcc [/usr/include] 14445 - --infodir=DIR info documentation [PREFIX/info] 14446 - --mandir=DIR man documentation [PREFIX/man] 14447 + --infodir=DIR info documentation [DATAROOTDIR/info] 14448 + --mandir=DIR man documentation [DATAROOTDIR/man] 14449 EOF 14450 14451 cat <<\EOF 14452 @@ -694,14 +703,15 @@ 14453 --with-rel-version=XXX override derived release version 14454 --with-abi-version=XXX override derived ABI version 14455 --with-system-type=XXX test: override derived host system-type 14456 + --without-ada suppress check for Ada95, don't build demo 14457 --without-cxx do not adjust ncurses bool to match C++ 14458 --without-cxx-binding do not build C++ binding and demo 14459 - --without-ada suppress check for Ada95, don't build demo 14460 --without-manpages suppress install of manpages 14461 --without-progs suppress build with programs (e.g., tic) 12106 14462 --without-tests suppress build with test-programs 12107 14463 --without-curses-h install curses.h as ncurses.h only … … 12111 14467 --enable-mixed-case tic should assume mixed-case filenames 12112 14468 --with-install-prefix prefixes actual install-location ($DESTDIR) 12113 @@ -719,6 +72 0,7 @@14469 @@ -719,6 +729,7 @@ 12114 14470 --with-normal generate normal-libraries (default) 12115 14471 --with-debug generate debug-libraries (default) … … 12119 14475 --with-ticlib generate separate tic library 12120 14476 --with-gpm use Alessandro Rubini's GPM library 12121 @@ -735,6 +7 37,7 @@14477 @@ -735,6 +746,7 @@ 12122 14478 --with-hashed-db specify hashed-database library 12123 14479 --with-fallbacks=XXX specify list of fallback terminal descriptions … … 12127 14483 --with-default-terminfo-dir=DIR default terminfo directory (default: DATADIR/terminfo) 12128 14484 --disable-big-core assume machine has little memory 12129 @@ -1007,7 +1010,7 @@ 14485 @@ -759,6 +771,7 @@ 14486 --with-ospeed=TYPE override type of ospeed variable 14487 --with-mmask-t=TYPE override type of mmask_t 14488 --with-ccharw-max=XXX override size CCHARW_MAX 14489 + --with-tparm-arg=TYPE override parameter type of tparm 14490 --with-rcs-ids compile-in RCS identifiers 14491 Options to Specify How Manpages are Installed: 14492 --with-manpage-format specify manpage-format: gzip/compress/BSDI/normal and 14493 @@ -796,8 +809,9 @@ 14494 --disable-scroll-hints compile without scroll-hints code 14495 --enable-wgetch-events compile with experimental wgetch-events code 14496 Testing/development Options: 14497 - --enable-echo build: display "compiling" commands (default) 14498 + --disable-echo display "compiling" commands 14499 --enable-warnings build: turn on GCC compiler warnings 14500 + --enable-string-hacks work around bogus compiler/loader warnings 14501 --enable-assertions test: turn on generation of assertion code 14502 --with-dmalloc test: use Gray Watson's dmalloc library 14503 --with-dbmalloc test: use Conor Cahill's dbmalloc library 14504 @@ -883,7 +897,7 @@ 14505 running configure, to aid debugging if configure makes a mistake. 14506 14507 It was created by $as_me, which was 14508 -generated by GNU Autoconf 2.52.20101002. Invocation command line was 14509 +generated by GNU Autoconf 2.52.20120811. Invocation command line was 14510 14511 $ $0 $@ 14512 14513 @@ -1007,7 +1021,7 @@ 12130 14514 fi 12131 14515 for ac_site_file in $CONFIG_SITE; do 12132 14516 if test -r "$ac_site_file"; then 12133 14517 - { echo "$as_me:1010: loading site script $ac_site_file" >&5 12134 + { echo "$as_me:10 13: loading site script $ac_site_file" >&514518 + { echo "$as_me:1024: loading site script $ac_site_file" >&5 12135 14519 echo "$as_me: loading site script $ac_site_file" >&6;} 12136 14520 cat "$ac_site_file" >&5 12137 14521 . "$ac_site_file" 12138 @@ -1018,7 +10 21,7 @@14522 @@ -1018,7 +1032,7 @@ 12139 14523 # Some versions of bash will fail to source /dev/null (special 12140 14524 # files actually), so we avoid doing that. 12141 14525 if test -f "$cache_file"; then 12142 14526 - { echo "$as_me:1021: loading cache $cache_file" >&5 12143 + { echo "$as_me:10 24: loading cache $cache_file" >&514527 + { echo "$as_me:1035: loading cache $cache_file" >&5 12144 14528 echo "$as_me: loading cache $cache_file" >&6;} 12145 14529 case $cache_file in 12146 14530 [\\/]* | ?:[\\/]* ) . $cache_file;; 12147 @@ -1026,7 +10 29,7 @@14531 @@ -1026,7 +1040,7 @@ 12148 14532 esac 12149 14533 fi 12150 14534 else 12151 14535 - { echo "$as_me:1029: creating cache $cache_file" >&5 12152 + { echo "$as_me:10 32: creating cache $cache_file" >&514536 + { echo "$as_me:1043: creating cache $cache_file" >&5 12153 14537 echo "$as_me: creating cache $cache_file" >&6;} 12154 14538 >$cache_file 12155 14539 fi 12156 @@ -1042,21 +10 45,21 @@14540 @@ -1042,21 +1056,21 @@ 12157 14541 eval ac_new_val="\$ac_env_${ac_var}_value" 12158 14542 case $ac_old_set,$ac_new_set in 12159 14543 set,) 12160 14544 - { echo "$as_me:1045: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 12161 + { echo "$as_me:10 48: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&514545 + { echo "$as_me:1059: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 12162 14546 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 12163 14547 ac_cache_corrupted=: ;; 12164 14548 ,set) 12165 14549 - { echo "$as_me:1049: error: \`$ac_var' was not set in the previous run" >&5 12166 + { echo "$as_me:10 52: error: \`$ac_var' was not set in the previous run" >&514550 + { echo "$as_me:1063: error: \`$ac_var' was not set in the previous run" >&5 12167 14551 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 12168 14552 ac_cache_corrupted=: ;; … … 12171 14555 if test "x$ac_old_val" != "x$ac_new_val"; then 12172 14556 - { echo "$as_me:1055: error: \`$ac_var' has changed since the previous run:" >&5 12173 + { echo "$as_me:10 58: error: \`$ac_var' has changed since the previous run:" >&514557 + { echo "$as_me:1069: error: \`$ac_var' has changed since the previous run:" >&5 12174 14558 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 12175 14559 - { echo "$as_me:1057: former value: $ac_old_val" >&5 12176 + { echo "$as_me:10 60: former value: $ac_old_val" >&514560 + { echo "$as_me:1071: former value: $ac_old_val" >&5 12177 14561 echo "$as_me: former value: $ac_old_val" >&2;} 12178 14562 - { echo "$as_me:1059: current value: $ac_new_val" >&5 12179 + { echo "$as_me:10 62: current value: $ac_new_val" >&514563 + { echo "$as_me:1073: current value: $ac_new_val" >&5 12180 14564 echo "$as_me: current value: $ac_new_val" >&2;} 12181 14565 ac_cache_corrupted=: 12182 14566 fi;; 12183 @@ -1075,9 +10 78,9 @@14567 @@ -1075,9 +1089,9 @@ 12184 14568 fi 12185 14569 done 12186 14570 if $ac_cache_corrupted; then 12187 14571 - { echo "$as_me:1078: error: changes in the environment can compromise the build" >&5 12188 + { echo "$as_me:10 81: error: changes in the environment can compromise the build" >&514572 + { echo "$as_me:1092: error: changes in the environment can compromise the build" >&5 12189 14573 echo "$as_me: error: changes in the environment can compromise the build" >&2;} 12190 14574 - { { echo "$as_me:1080: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 12191 + { { echo "$as_me:10 83: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&514575 + { { echo "$as_me:1094: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 12192 14576 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 12193 14577 { (exit 1); exit 1; }; } 12194 14578 fi 12195 @@ -1098,10 +11 01,10 @@14579 @@ -1098,10 +1112,10 @@ 12196 14580 echo "#! $SHELL" >conftest.sh 12197 14581 echo "exit 0" >>conftest.sh 12198 14582 chmod +x conftest.sh 12199 14583 -if { (echo "$as_me:1101: PATH=\".;.\"; conftest.sh") >&5 12200 +if { (echo "$as_me:11 04: PATH=\".;.\"; conftest.sh") >&514584 +if { (echo "$as_me:1115: PATH=\".;.\"; conftest.sh") >&5 12201 14585 (PATH=".;."; conftest.sh) 2>&5 12202 14586 ac_status=$? 12203 14587 - echo "$as_me:1104: \$? = $ac_status" >&5 12204 + echo "$as_me:11 07: \$? = $ac_status" >&514588 + echo "$as_me:1118: \$? = $ac_status" >&5 12205 14589 (exit $ac_status); }; then 12206 14590 ac_path_separator=';' 12207 14591 else 12208 @@ -1114,7 +11 17,7 @@14592 @@ -1114,7 +1128,7 @@ 12209 14593 12210 14594 top_builddir=`pwd` 12211 14595 12212 14596 -echo "$as_me:1117: checking for egrep" >&5 12213 +echo "$as_me:11 20: checking for egrep" >&514597 +echo "$as_me:1131: checking for egrep" >&5 12214 14598 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 12215 14599 if test "${ac_cv_prog_egrep+set}" = set; then 12216 14600 echo $ECHO_N "(cached) $ECHO_C" >&6 12217 @@ -1124,11 +11 27,11 @@14601 @@ -1124,11 +1138,11 @@ 12218 14602 else ac_cv_prog_egrep='egrep' 12219 14603 fi 12220 14604 fi 12221 14605 -echo "$as_me:1127: result: $ac_cv_prog_egrep" >&5 12222 +echo "$as_me:11 30: result: $ac_cv_prog_egrep" >&514606 +echo "$as_me:1141: result: $ac_cv_prog_egrep" >&5 12223 14607 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 12224 14608 EGREP=$ac_cv_prog_egrep 12225 14609 12226 14610 -test -z "$EGREP" && { { echo "$as_me:1131: error: No egrep program found" >&5 12227 +test -z "$EGREP" && { { echo "$as_me:11 34: error: No egrep program found" >&514611 +test -z "$EGREP" && { { echo "$as_me:1145: error: No egrep program found" >&5 12228 14612 echo "$as_me: error: No egrep program found" >&2;} 12229 14613 { (exit 1); exit 1; }; } 12230 14614 12231 @@ -1138,7 +11 41,7 @@14615 @@ -1138,7 +1152,7 @@ 12232 14616 cf_cv_abi_version=${NCURSES_MAJOR} 12233 14617 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR} 12234 14618 cf_cv_timestamp=`date` 12235 14619 -echo "$as_me:1141: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5 12236 +echo "$as_me:11 44: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&514620 +echo "$as_me:1155: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5 12237 14621 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6 12238 14622 12239 14623 test -z "$cf_cv_rel_version" && cf_cv_rel_version=0.0 12240 @@ -1146,7 +11 49,7 @@14624 @@ -1146,7 +1160,7 @@ 12241 14625 # Check whether --with-rel-version or --without-rel-version was given. 12242 14626 if test "${with_rel_version+set}" = set; then 12243 14627 withval="$with_rel_version" 12244 14628 - { echo "$as_me:1149: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5 12245 + { echo "$as_me:11 52: WARNING: overriding release version $cf_cv_rel_version to $withval" >&514629 + { echo "$as_me:1163: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5 12246 14630 echo "$as_me: WARNING: overriding release version $cf_cv_rel_version to $withval" >&2;} 12247 14631 cf_cv_rel_version=$withval 12248 14632 fi; 12249 @@ -1159,13 +11 62,13 @@14633 @@ -1159,13 +1173,13 @@ 12250 14634 [0-9]*) #(vi 12251 14635 ;; 12252 14636 *) 12253 14637 - { { echo "$as_me:1162: error: Release major-version is not a number: $NCURSES_MAJOR" >&5 12254 + { { echo "$as_me:11 65: error: Release major-version is not a number: $NCURSES_MAJOR" >&514638 + { { echo "$as_me:1176: error: Release major-version is not a number: $NCURSES_MAJOR" >&5 12255 14639 echo "$as_me: error: Release major-version is not a number: $NCURSES_MAJOR" >&2;} 12256 14640 { (exit 1); exit 1; }; } … … 12259 14643 else 12260 14644 - { { echo "$as_me:1168: error: Release major-version value is empty" >&5 12261 + { { echo "$as_me:11 71: error: Release major-version value is empty" >&514645 + { { echo "$as_me:1182: error: Release major-version value is empty" >&5 12262 14646 echo "$as_me: error: Release major-version value is empty" >&2;} 12263 14647 { (exit 1); exit 1; }; } 12264 14648 fi 12265 @@ -1175,13 +11 78,13 @@14649 @@ -1175,13 +1189,13 @@ 12266 14650 [0-9]*) #(vi 12267 14651 ;; 12268 14652 *) 12269 14653 - { { echo "$as_me:1178: error: Release minor-version is not a number: $NCURSES_MINOR" >&5 12270 + { { echo "$as_me:11 81: error: Release minor-version is not a number: $NCURSES_MINOR" >&514654 + { { echo "$as_me:1192: error: Release minor-version is not a number: $NCURSES_MINOR" >&5 12271 14655 echo "$as_me: error: Release minor-version is not a number: $NCURSES_MINOR" >&2;} 12272 14656 { (exit 1); exit 1; }; } … … 12275 14659 else 12276 14660 - { { echo "$as_me:1184: error: Release minor-version value is empty" >&5 12277 + { { echo "$as_me:11 87: error: Release minor-version value is empty" >&514661 + { { echo "$as_me:1198: error: Release minor-version value is empty" >&5 12278 14662 echo "$as_me: error: Release minor-version value is empty" >&2;} 12279 14663 { (exit 1); exit 1; }; } 12280 14664 fi 12281 @@ -1191,7 +1 194,7 @@14665 @@ -1191,7 +1205,7 @@ 12282 14666 # Check whether --with-abi-version or --without-abi-version was given. 12283 14667 if test "${with_abi_version+set}" = set; then 12284 14668 withval="$with_abi_version" 12285 14669 - { echo "$as_me:1194: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5 12286 + { echo "$as_me:1 197: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&514670 + { echo "$as_me:1208: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5 12287 14671 echo "$as_me: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&2;} 12288 14672 cf_cv_abi_version=$withval 12289 14673 fi; 12290 @@ -1201,13 +12 04,13 @@14674 @@ -1201,13 +1215,13 @@ 12291 14675 [0-9]*) #(vi 12292 14676 ;; 12293 14677 *) 12294 14678 - { { echo "$as_me:1204: error: ABI version is not a number: $cf_cv_abi_version" >&5 12295 + { { echo "$as_me:12 07: error: ABI version is not a number: $cf_cv_abi_version" >&514679 + { { echo "$as_me:1218: error: ABI version is not a number: $cf_cv_abi_version" >&5 12296 14680 echo "$as_me: error: ABI version is not a number: $cf_cv_abi_version" >&2;} 12297 14681 { (exit 1); exit 1; }; } … … 12300 14684 else 12301 14685 - { { echo "$as_me:1210: error: ABI version value is empty" >&5 12302 + { { echo "$as_me:12 13: error: ABI version value is empty" >&514686 + { { echo "$as_me:1224: error: ABI version value is empty" >&5 12303 14687 echo "$as_me: error: ABI version value is empty" >&2;} 12304 14688 { (exit 1); exit 1; }; } 12305 14689 fi 12306 @@ -1229,7 +12 32,7 @@14690 @@ -1229,7 +1243,7 @@ 12307 14691 fi 12308 14692 done 12309 14693 if test -z "$ac_aux_dir"; then 12310 14694 - { { echo "$as_me:1232: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 12311 + { { echo "$as_me:12 35: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&514695 + { { echo "$as_me:1246: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 12312 14696 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} 12313 14697 { (exit 1); exit 1; }; } 12314 14698 fi 12315 @@ -1239,11 +12 42,11 @@14699 @@ -1239,11 +1253,11 @@ 12316 14700 12317 14701 # Make sure we can run config.sub. 12318 14702 $ac_config_sub sun4 >/dev/null 2>&1 || 12319 14703 - { { echo "$as_me:1242: error: cannot run $ac_config_sub" >&5 12320 + { { echo "$as_me:12 45: error: cannot run $ac_config_sub" >&514704 + { { echo "$as_me:1256: error: cannot run $ac_config_sub" >&5 12321 14705 echo "$as_me: error: cannot run $ac_config_sub" >&2;} 12322 14706 { (exit 1); exit 1; }; } 12323 14707 12324 14708 -echo "$as_me:1246: checking build system type" >&5 12325 +echo "$as_me:12 49: checking build system type" >&514709 +echo "$as_me:1260: checking build system type" >&5 12326 14710 echo $ECHO_N "checking build system type... $ECHO_C" >&6 12327 14711 if test "${ac_cv_build+set}" = set; then 12328 14712 echo $ECHO_N "(cached) $ECHO_C" >&6 12329 @@ -1252,23 +12 55,23 @@14713 @@ -1252,23 +1266,23 @@ 12330 14714 test -z "$ac_cv_build_alias" && 12331 14715 ac_cv_build_alias=`$ac_config_guess` 12332 14716 test -z "$ac_cv_build_alias" && 12333 14717 - { { echo "$as_me:1255: error: cannot guess build type; you must specify one" >&5 12334 + { { echo "$as_me:12 58: error: cannot guess build type; you must specify one" >&514718 + { { echo "$as_me:1269: error: cannot guess build type; you must specify one" >&5 12335 14719 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} 12336 14720 { (exit 1); exit 1; }; } 12337 14721 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || 12338 14722 - { { echo "$as_me:1259: error: $ac_config_sub $ac_cv_build_alias failed." >&5 12339 + { { echo "$as_me:12 62: error: $ac_config_sub $ac_cv_build_alias failed." >&514723 + { { echo "$as_me:1273: error: $ac_config_sub $ac_cv_build_alias failed." >&5 12340 14724 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;} 12341 14725 { (exit 1); exit 1; }; } … … 12343 14727 fi 12344 14728 -echo "$as_me:1264: result: $ac_cv_build" >&5 12345 +echo "$as_me:12 67: result: $ac_cv_build" >&514729 +echo "$as_me:1278: result: $ac_cv_build" >&5 12346 14730 echo "${ECHO_T}$ac_cv_build" >&6 12347 14731 build=$ac_cv_build … … 12351 14735 12352 14736 -echo "$as_me:1271: checking host system type" >&5 12353 +echo "$as_me:12 74: checking host system type" >&514737 +echo "$as_me:1285: checking host system type" >&5 12354 14738 echo $ECHO_N "checking host system type... $ECHO_C" >&6 12355 14739 if test "${ac_cv_host+set}" = set; then 12356 14740 echo $ECHO_N "(cached) $ECHO_C" >&6 12357 @@ -1277,12 +12 80,12 @@14741 @@ -1277,12 +1291,12 @@ 12358 14742 test -z "$ac_cv_host_alias" && 12359 14743 ac_cv_host_alias=$ac_cv_build_alias 12360 14744 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || 12361 14745 - { { echo "$as_me:1280: error: $ac_config_sub $ac_cv_host_alias failed" >&5 12362 + { { echo "$as_me:12 83: error: $ac_config_sub $ac_cv_host_alias failed" >&514746 + { { echo "$as_me:1294: error: $ac_config_sub $ac_cv_host_alias failed" >&5 12363 14747 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} 12364 14748 { (exit 1); exit 1; }; } … … 12366 14750 fi 12367 14751 -echo "$as_me:1285: result: $ac_cv_host" >&5 12368 +echo "$as_me:12 88: result: $ac_cv_host" >&514752 +echo "$as_me:1299: result: $ac_cv_host" >&5 12369 14753 echo "${ECHO_T}$ac_cv_host" >&6 12370 14754 host=$ac_cv_host 12371 14755 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 12372 @@ -1290,7 +1 293,7 @@14756 @@ -1290,7 +1304,7 @@ 12373 14757 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` 12374 14758 12375 14759 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then 12376 14760 - echo "$as_me:1293: checking target system type" >&5 12377 + echo "$as_me:1 296: checking target system type" >&514761 + echo "$as_me:1307: checking target system type" >&5 12378 14762 echo $ECHO_N "checking target system type... $ECHO_C" >&6 12379 14763 if test "${ac_cv_target+set}" = set; then 12380 14764 echo $ECHO_N "(cached) $ECHO_C" >&6 12381 @@ -1299,12 +13 02,12 @@14765 @@ -1299,12 +1313,12 @@ 12382 14766 test "x$ac_cv_target_alias" = "x" && 12383 14767 ac_cv_target_alias=$ac_cv_host_alias 12384 14768 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` || 12385 14769 - { { echo "$as_me:1302: error: $ac_config_sub $ac_cv_target_alias failed" >&5 12386 + { { echo "$as_me:13 05: error: $ac_config_sub $ac_cv_target_alias failed" >&514770 + { { echo "$as_me:1316: error: $ac_config_sub $ac_cv_target_alias failed" >&5 12387 14771 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;} 12388 14772 { (exit 1); exit 1; }; } … … 12390 14774 fi 12391 14775 -echo "$as_me:1307: result: $ac_cv_target" >&5 12392 +echo "$as_me:13 10: result: $ac_cv_target" >&514776 +echo "$as_me:1321: result: $ac_cv_target" >&5 12393 14777 echo "${ECHO_T}$ac_cv_target" >&6 12394 14778 target=$ac_cv_target 12395 14779 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` 12396 @@ -1335,13 +13 38,13 @@14780 @@ -1335,13 +1349,13 @@ 12397 14781 fi 12398 14782 12399 14783 test -z "$system_name" && system_name="$cf_cv_system_name" 12400 14784 -test -n "$cf_cv_system_name" && echo "$as_me:1338: result: Configuring for $cf_cv_system_name" >&5 12401 +test -n "$cf_cv_system_name" && echo "$as_me:13 41: result: Configuring for $cf_cv_system_name" >&514785 +test -n "$cf_cv_system_name" && echo "$as_me:1352: result: Configuring for $cf_cv_system_name" >&5 12402 14786 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6 12403 14787 12404 14788 if test ".$system_name" != ".$cf_cv_system_name" ; then 12405 14789 - echo "$as_me:1342: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 12406 + echo "$as_me:13 45: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&514790 + echo "$as_me:1356: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5 12407 14791 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6 12408 14792 - { { echo "$as_me:1344: error: \"Please remove config.cache and try again.\"" >&5 12409 + { { echo "$as_me:13 47: error: \"Please remove config.cache and try again.\"" >&514793 + { { echo "$as_me:1358: error: \"Please remove config.cache and try again.\"" >&5 12410 14794 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;} 12411 14795 { (exit 1); exit 1; }; } 12412 14796 fi 12413 @@ -1349,7 +13 52,7 @@14797 @@ -1349,7 +1363,7 @@ 12414 14798 # Check whether --with-system-type or --without-system-type was given. 12415 14799 if test "${with_system_type+set}" = set; then 12416 14800 withval="$with_system_type" 12417 14801 - { echo "$as_me:1352: WARNING: overriding system type to $withval" >&5 12418 + { echo "$as_me:13 55: WARNING: overriding system type to $withval" >&514802 + { echo "$as_me:1366: WARNING: overriding system type to $withval" >&5 12419 14803 echo "$as_me: WARNING: overriding system type to $withval" >&2;} 12420 14804 cf_cv_system_name=$withval 12421 14805 fi; 12422 @@ -1359,23 +13 62,23 @@14806 @@ -1359,23 +1373,23 @@ 12423 14807 12424 14808 ### Default install-location 12425 14809 12426 14810 -echo "$as_me:1362: checking for prefix" >&5 12427 +echo "$as_me:13 65: checking for prefix" >&514811 +echo "$as_me:1376: checking for prefix" >&5 12428 14812 echo $ECHO_N "checking for prefix... $ECHO_C" >&6 12429 14813 if test "x$prefix" = "xNONE" ; then … … 12439 14823 fi 12440 14824 -echo "$as_me:1374: result: $prefix" >&5 12441 +echo "$as_me:13 77: result: $prefix" >&514825 +echo "$as_me:1388: result: $prefix" >&5 12442 14826 echo "${ECHO_T}$prefix" >&6 12443 14827 12444 14828 if test "x$prefix" = "xNONE" ; then 12445 14829 -echo "$as_me:1378: checking for default include-directory" >&5 12446 +echo "$as_me:13 81: checking for default include-directory" >&514830 +echo "$as_me:1392: checking for default include-directory" >&5 12447 14831 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6 12448 14832 test -n "$verbose" && echo 1>&6 12449 14833 for cf_symbol in \ 12450 @@ -1398, 7 +1401,7@@14834 @@ -1398,11 +1412,26 @@ 12451 14835 fi 12452 14836 test -n "$verbose" && echo " tested $cf_dir" 1>&6 12453 14837 done 12454 14838 -echo "$as_me:1401: result: $includedir" >&5 12455 +echo "$as_me:14 04: result: $includedir" >&514839 +echo "$as_me:1415: result: $includedir" >&5 12456 14840 echo "${ECHO_T}$includedir" >&6 12457 14841 fi 12458 14842 12459 @@ -1412,7 +1415,7 @@ 14843 ### Checks for programs. 14844 + 14845 +# Check whether --with-ada or --without-ada was given. 14846 +if test "${with_ada+set}" = set; then 14847 + withval="$with_ada" 14848 + cf_with_ada=$withval 14849 +else 14850 + cf_with_ada=yes 14851 +fi; 14852 +if test x"$cf_with_ada" = xyes 14853 +then 14854 + cf_PROG_CC="gnatgcc gcc cc" 14855 +else 14856 + cf_PROG_CC="gcc cc" 14857 +fi 14858 + 14859 ac_ext=c 14860 ac_cpp='$CPP $CPPFLAGS' 14861 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' 14862 @@ -1410,213 +1439,11 @@ 14863 ac_compiler_gnu=$ac_cv_c_compiler_gnu 14864 ac_main_return=return 12460 14865 if test -n "$ac_tool_prefix"; then 12461 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.12462 set dummy ${ac_tool_prefix}gcc; ac_word=$214866 - # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 14867 -set dummy ${ac_tool_prefix}gcc; ac_word=$2 12463 14868 -echo "$as_me:1415: checking for $ac_word" >&5 12464 +echo "$as_me:1418: checking for $ac_word" >&5 12465 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12466 if test "${ac_cv_prog_CC+set}" = set; then 12467 echo $ECHO_N "(cached) $ECHO_C" >&6 12468 @@ -1427,7 +1430,7 @@ 12469 test -z "$ac_dir" && ac_dir=. 12470 $as_executable_p "$ac_dir/$ac_word" || continue 12471 ac_cv_prog_CC="${ac_tool_prefix}gcc" 14869 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14870 -if test "${ac_cv_prog_CC+set}" = set; then 14871 - echo $ECHO_N "(cached) $ECHO_C" >&6 14872 -else 14873 - if test -n "$CC"; then 14874 - ac_cv_prog_CC="$CC" # Let the user override the test. 14875 -else 14876 - ac_save_IFS=$IFS; IFS=$ac_path_separator 14877 -ac_dummy="$PATH" 14878 -for ac_dir in $ac_dummy; do 14879 - IFS=$ac_save_IFS 14880 - test -z "$ac_dir" && ac_dir=. 14881 - $as_executable_p "$ac_dir/$ac_word" || continue 14882 -ac_cv_prog_CC="${ac_tool_prefix}gcc" 12472 14883 -echo "$as_me:1430: found $ac_dir/$ac_word" >&5 12473 +echo "$as_me:1433: found $ac_dir/$ac_word" >&5 12474 break 12475 done 12476 12477 @@ -1435,10 +1438,10 @@ 12478 fi 12479 CC=$ac_cv_prog_CC 12480 if test -n "$CC"; then 14884 -break 14885 -done 14886 - 14887 -fi 14888 -fi 14889 -CC=$ac_cv_prog_CC 14890 -if test -n "$CC"; then 12481 14891 - echo "$as_me:1438: result: $CC" >&5 12482 + echo "$as_me:1441: result: $CC" >&5 12483 echo "${ECHO_T}$CC" >&6 12484 else 14892 -echo "${ECHO_T}$CC" >&6 14893 -else 12485 14894 - echo "$as_me:1441: result: no" >&5 12486 + echo "$as_me:1444: result: no" >&5 12487 echo "${ECHO_T}no" >&6 12488 fi 12489 12490 @@ -1447,7 +1450,7 @@ 12491 ac_ct_CC=$CC12492 # Extract the first word of "gcc", so it can be a program name with args.12493 set dummy gcc; ac_word=$214895 -echo "${ECHO_T}no" >&6 14896 -fi 14897 - 14898 -fi 14899 -if test -z "$ac_cv_prog_CC"; then 14900 - ac_ct_CC=$CC 14901 - # Extract the first word of "gcc", so it can be a program name with args. 14902 -set dummy gcc; ac_word=$2 12494 14903 -echo "$as_me:1450: checking for $ac_word" >&5 12495 +echo "$as_me:1453: checking for $ac_word" >&5 12496 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12497 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 12498 echo $ECHO_N "(cached) $ECHO_C" >&6 12499 @@ -1462,7 +1465,7 @@ 12500 test -z "$ac_dir" && ac_dir=. 12501 $as_executable_p "$ac_dir/$ac_word" || continue 12502 ac_cv_prog_ac_ct_CC="gcc" 14904 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14905 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 14906 - echo $ECHO_N "(cached) $ECHO_C" >&6 14907 -else 14908 - if test -n "$ac_ct_CC"; then 14909 - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 14910 -else 14911 - ac_save_IFS=$IFS; IFS=$ac_path_separator 14912 -ac_dummy="$PATH" 14913 -for ac_dir in $ac_dummy; do 14914 - IFS=$ac_save_IFS 14915 - test -z "$ac_dir" && ac_dir=. 14916 - $as_executable_p "$ac_dir/$ac_word" || continue 14917 -ac_cv_prog_ac_ct_CC="gcc" 12503 14918 -echo "$as_me:1465: found $ac_dir/$ac_word" >&5 12504 +echo "$as_me:1468: found $ac_dir/$ac_word" >&5 12505 break 12506 done 12507 12508 @@ -1470,10 +1473,10 @@ 12509 fi 12510 ac_ct_CC=$ac_cv_prog_ac_ct_CC 12511 if test -n "$ac_ct_CC"; then 14919 -break 14920 -done 14921 - 14922 -fi 14923 -fi 14924 -ac_ct_CC=$ac_cv_prog_ac_ct_CC 14925 -if test -n "$ac_ct_CC"; then 12512 14926 - echo "$as_me:1473: result: $ac_ct_CC" >&5 12513 + echo "$as_me:1476: result: $ac_ct_CC" >&5 12514 echo "${ECHO_T}$ac_ct_CC" >&6 12515 else 14927 -echo "${ECHO_T}$ac_ct_CC" >&6 14928 -else 12516 14929 - echo "$as_me:1476: result: no" >&5 12517 + echo "$as_me:1479: result: no" >&5 12518 echo "${ECHO_T}no" >&6 12519 fi 12520 12521 @@ -1486,7 +1489,7 @@ 12522 if test -n "$ac_tool_prefix"; then 12523 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 12524 set dummy ${ac_tool_prefix}cc; ac_word=$2 14930 -echo "${ECHO_T}no" >&6 14931 -fi 14932 - 14933 - CC=$ac_ct_CC 14934 -else 14935 - CC="$ac_cv_prog_CC" 14936 -fi 14937 - 14938 -if test -z "$CC"; then 14939 - if test -n "$ac_tool_prefix"; then 14940 - # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 14941 -set dummy ${ac_tool_prefix}cc; ac_word=$2 12525 14942 -echo "$as_me:1489: checking for $ac_word" >&5 12526 +echo "$as_me:1492: checking for $ac_word" >&5 12527 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12528 if test "${ac_cv_prog_CC+set}" = set; then 12529 echo $ECHO_N "(cached) $ECHO_C" >&6 12530 @@ -1501,7 +1504,7 @@ 12531 test -z "$ac_dir" && ac_dir=. 12532 $as_executable_p "$ac_dir/$ac_word" || continue 12533 ac_cv_prog_CC="${ac_tool_prefix}cc" 14943 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14944 -if test "${ac_cv_prog_CC+set}" = set; then 14945 - echo $ECHO_N "(cached) $ECHO_C" >&6 14946 -else 14947 - if test -n "$CC"; then 14948 - ac_cv_prog_CC="$CC" # Let the user override the test. 14949 -else 14950 - ac_save_IFS=$IFS; IFS=$ac_path_separator 14951 -ac_dummy="$PATH" 14952 -for ac_dir in $ac_dummy; do 14953 - IFS=$ac_save_IFS 14954 - test -z "$ac_dir" && ac_dir=. 14955 - $as_executable_p "$ac_dir/$ac_word" || continue 14956 -ac_cv_prog_CC="${ac_tool_prefix}cc" 12534 14957 -echo "$as_me:1504: found $ac_dir/$ac_word" >&5 12535 +echo "$as_me:1507: found $ac_dir/$ac_word" >&5 12536 break 12537 done 12538 12539 @@ -1509,10 +1512,10 @@ 12540 fi 12541 CC=$ac_cv_prog_CC 12542 if test -n "$CC"; then 14958 -break 14959 -done 14960 - 14961 -fi 14962 -fi 14963 -CC=$ac_cv_prog_CC 14964 -if test -n "$CC"; then 12543 14965 - echo "$as_me:1512: result: $CC" >&5 12544 + echo "$as_me:1515: result: $CC" >&5 12545 echo "${ECHO_T}$CC" >&6 12546 else 14966 -echo "${ECHO_T}$CC" >&6 14967 -else 12547 14968 - echo "$as_me:1515: result: no" >&5 12548 + echo "$as_me:1518: result: no" >&5 12549 echo "${ECHO_T}no" >&6 12550 fi 12551 12552 @@ -1521,7 +1524,7 @@ 12553 ac_ct_CC=$CC12554 # Extract the first word of "cc", so it can be a program name with args.12555 set dummy cc; ac_word=$214969 -echo "${ECHO_T}no" >&6 14970 -fi 14971 - 14972 -fi 14973 -if test -z "$ac_cv_prog_CC"; then 14974 - ac_ct_CC=$CC 14975 - # Extract the first word of "cc", so it can be a program name with args. 14976 -set dummy cc; ac_word=$2 12556 14977 -echo "$as_me:1524: checking for $ac_word" >&5 12557 +echo "$as_me:1527: checking for $ac_word" >&5 12558 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12559 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 12560 echo $ECHO_N "(cached) $ECHO_C" >&6 12561 @@ -1536,7 +1539,7 @@ 12562 test -z "$ac_dir" && ac_dir=. 12563 $as_executable_p "$ac_dir/$ac_word" || continue 12564 ac_cv_prog_ac_ct_CC="cc" 14978 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14979 -if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 14980 - echo $ECHO_N "(cached) $ECHO_C" >&6 14981 -else 14982 - if test -n "$ac_ct_CC"; then 14983 - ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. 14984 -else 14985 - ac_save_IFS=$IFS; IFS=$ac_path_separator 14986 -ac_dummy="$PATH" 14987 -for ac_dir in $ac_dummy; do 14988 - IFS=$ac_save_IFS 14989 - test -z "$ac_dir" && ac_dir=. 14990 - $as_executable_p "$ac_dir/$ac_word" || continue 14991 -ac_cv_prog_ac_ct_CC="cc" 12565 14992 -echo "$as_me:1539: found $ac_dir/$ac_word" >&5 12566 +echo "$as_me:1542: found $ac_dir/$ac_word" >&5 12567 break 12568 done 12569 12570 @@ -1544,10 +1547,10 @@ 12571 fi 12572 ac_ct_CC=$ac_cv_prog_ac_ct_CC 12573 if test -n "$ac_ct_CC"; then 14993 -break 14994 -done 14995 - 14996 -fi 14997 -fi 14998 -ac_ct_CC=$ac_cv_prog_ac_ct_CC 14999 -if test -n "$ac_ct_CC"; then 12574 15000 - echo "$as_me:1547: result: $ac_ct_CC" >&5 12575 + echo "$as_me:1550: result: $ac_ct_CC" >&5 12576 echo "${ECHO_T}$ac_ct_CC" >&6 12577 else 15001 -echo "${ECHO_T}$ac_ct_CC" >&6 15002 -else 12578 15003 - echo "$as_me:1550: result: no" >&5 12579 + echo "$as_me:1553: result: no" >&5 12580 echo "${ECHO_T}no" >&6 12581 fi 12582 12583 @@ -1560,7 +1563,7 @@ 12584 if test -z "$CC"; then 12585 # Extract the first word of "cc", so it can be a program name with args. 12586 set dummy cc; ac_word=$2 15004 -echo "${ECHO_T}no" >&6 15005 -fi 15006 - 15007 - CC=$ac_ct_CC 15008 -else 15009 - CC="$ac_cv_prog_CC" 15010 -fi 15011 - 15012 -fi 15013 -if test -z "$CC"; then 15014 - # Extract the first word of "cc", so it can be a program name with args. 15015 -set dummy cc; ac_word=$2 12587 15016 -echo "$as_me:1563: checking for $ac_word" >&5 12588 +echo "$as_me:1566: checking for $ac_word" >&5 12589 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12590 if test "${ac_cv_prog_CC+set}" = set; then 12591 echo $ECHO_N "(cached) $ECHO_C" >&6 12592 @@ -1580,7 +1583,7 @@ 12593 continue 12594 fi 12595 ac_cv_prog_CC="cc" 15017 -echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 15018 -if test "${ac_cv_prog_CC+set}" = set; then 15019 - echo $ECHO_N "(cached) $ECHO_C" >&6 15020 -else 15021 - if test -n "$CC"; then 15022 - ac_cv_prog_CC="$CC" # Let the user override the test. 15023 -else 15024 - ac_prog_rejected=no 15025 - ac_save_IFS=$IFS; IFS=$ac_path_separator 15026 -ac_dummy="$PATH" 15027 -for ac_dir in $ac_dummy; do 15028 - IFS=$ac_save_IFS 15029 - test -z "$ac_dir" && ac_dir=. 15030 - $as_executable_p "$ac_dir/$ac_word" || continue 15031 -if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 15032 - ac_prog_rejected=yes 15033 - continue 15034 -fi 15035 -ac_cv_prog_CC="cc" 12596 15036 -echo "$as_me:1583: found $ac_dir/$ac_word" >&5 12597 +echo "$as_me:1586: found $ac_dir/$ac_word" >&5 12598 break 12599 done 12600 12601 @@ -1602,10 +1605,10 @@ 12602 fi 12603 CC=$ac_cv_prog_CC 12604 if test -n "$CC"; then 15037 -break 15038 -done 15039 - 15040 -if test $ac_prog_rejected = yes; then 15041 - # We found a bogon in the path, so make sure we never use it. 15042 - set dummy $ac_cv_prog_CC 15043 - shift 15044 - if test $# != 0; then 15045 - # We chose a different compiler from the bogus one. 15046 - # However, it has the same basename, so the bogon will be chosen 15047 - # first if we set CC to just the basename; use the full file name. 15048 - shift 15049 - set dummy "$ac_dir/$ac_word" ${1+"$@"} 15050 - shift 15051 - ac_cv_prog_CC="$@" 15052 - fi 15053 -fi 15054 -fi 15055 -fi 15056 -CC=$ac_cv_prog_CC 15057 -if test -n "$CC"; then 12605 15058 - echo "$as_me:1605: result: $CC" >&5 12606 + echo "$as_me:1608: result: $CC" >&5 12607 echo "${ECHO_T}$CC" >&6 12608 else 15059 -echo "${ECHO_T}$CC" >&6 15060 -else 12609 15061 - echo "$as_me:1608: result: no" >&5 12610 + echo "$as_me:1611: result: no" >&5 12611 echo "${ECHO_T}no" >&6 12612 fi 12613 12614 @@ -1616,7 +1619,7 @@ 15062 -echo "${ECHO_T}no" >&6 15063 -fi 15064 - 15065 -fi 15066 -if test -z "$CC"; then 15067 - if test -n "$ac_tool_prefix"; then 15068 - for ac_prog in cl 15069 + for ac_prog in $cf_PROG_CC 12615 15070 do 12616 15071 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 12617 15072 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 12618 15073 -echo "$as_me:1619: checking for $ac_word" >&5 12619 +echo "$as_me:1 622: checking for $ac_word" >&515074 +echo "$as_me:1446: checking for $ac_word" >&5 12620 15075 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12621 15076 if test "${ac_cv_prog_CC+set}" = set; then 12622 15077 echo $ECHO_N "(cached) $ECHO_C" >&6 12623 @@ -1631,7 +1 634,7 @@15078 @@ -1631,7 +1458,7 @@ 12624 15079 test -z "$ac_dir" && ac_dir=. 12625 15080 $as_executable_p "$ac_dir/$ac_word" || continue 12626 15081 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 12627 15082 -echo "$as_me:1634: found $ac_dir/$ac_word" >&5 12628 +echo "$as_me:1 637: found $ac_dir/$ac_word" >&515083 +echo "$as_me:1461: found $ac_dir/$ac_word" >&5 12629 15084 break 12630 15085 done 12631 15086 12632 @@ -1639,10 +1 642,10 @@15087 @@ -1639,10 +1466,10 @@ 12633 15088 fi 12634 15089 CC=$ac_cv_prog_CC 12635 15090 if test -n "$CC"; then 12636 15091 - echo "$as_me:1642: result: $CC" >&5 12637 + echo "$as_me:1 645: result: $CC" >&515092 + echo "$as_me:1469: result: $CC" >&5 12638 15093 echo "${ECHO_T}$CC" >&6 12639 15094 else 12640 15095 - echo "$as_me:1645: result: no" >&5 12641 + echo "$as_me:1 648: result: no" >&515096 + echo "$as_me:1472: result: no" >&5 12642 15097 echo "${ECHO_T}no" >&6 12643 15098 fi 12644 15099 12645 @@ -1655,7 +1658,7 @@ 15100 @@ -1651,11 +1478,11 @@ 15101 fi 15102 if test -z "$CC"; then 15103 ac_ct_CC=$CC 15104 - for ac_prog in cl 15105 + for ac_prog in $cf_PROG_CC 12646 15106 do 12647 15107 # Extract the first word of "$ac_prog", so it can be a program name with args. 12648 15108 set dummy $ac_prog; ac_word=$2 12649 15109 -echo "$as_me:1658: checking for $ac_word" >&5 12650 +echo "$as_me:1 661: checking for $ac_word" >&515110 +echo "$as_me:1485: checking for $ac_word" >&5 12651 15111 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 12652 15112 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 12653 15113 echo $ECHO_N "(cached) $ECHO_C" >&6 12654 @@ -1670,7 +1 673,7 @@15114 @@ -1670,7 +1497,7 @@ 12655 15115 test -z "$ac_dir" && ac_dir=. 12656 15116 $as_executable_p "$ac_dir/$ac_word" || continue 12657 15117 ac_cv_prog_ac_ct_CC="$ac_prog" 12658 15118 -echo "$as_me:1673: found $ac_dir/$ac_word" >&5 12659 +echo "$as_me:1 676: found $ac_dir/$ac_word" >&515119 +echo "$as_me:1500: found $ac_dir/$ac_word" >&5 12660 15120 break 12661 15121 done 12662 15122 12663 @@ -1678,10 +1 681,10 @@15123 @@ -1678,10 +1505,10 @@ 12664 15124 fi 12665 15125 ac_ct_CC=$ac_cv_prog_ac_ct_CC 12666 15126 if test -n "$ac_ct_CC"; then 12667 15127 - echo "$as_me:1681: result: $ac_ct_CC" >&5 12668 + echo "$as_me:1 684: result: $ac_ct_CC" >&515128 + echo "$as_me:1508: result: $ac_ct_CC" >&5 12669 15129 echo "${ECHO_T}$ac_ct_CC" >&6 12670 15130 else 12671 15131 - echo "$as_me:1684: result: no" >&5 12672 + echo "$as_me:1 687: result: no" >&515132 + echo "$as_me:1511: result: no" >&5 12673 15133 echo "${ECHO_T}no" >&6 12674 15134 fi 12675 15135 12676 @@ -1693,32 +1696,32 @@ 12677 12678 fi 12679 15136 @@ -1691,34 +1518,32 @@ 15137 CC=$ac_ct_CC 15138 fi 15139 15140 -fi 15141 - 12680 15142 -test -z "$CC" && { { echo "$as_me:1696: error: no acceptable cc found in \$PATH" >&5 12681 +test -z "$CC" && { { echo "$as_me:1 699: error: no acceptable cc found in \$PATH" >&515143 +test -z "$CC" && { { echo "$as_me:1521: error: no acceptable cc found in \$PATH" >&5 12682 15144 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;} 12683 15145 { (exit 1); exit 1; }; } … … 12685 15147 # Provide some information about the compiler. 12686 15148 -echo "$as_me:1701:" \ 12687 +echo "$as_me:1 704:" \15149 +echo "$as_me:1526:" \ 12688 15150 "checking for C compiler version" >&5 12689 15151 ac_compiler=`set X $ac_compile; echo $2` 12690 15152 -{ (eval echo "$as_me:1704: \"$ac_compiler --version </dev/null >&5\"") >&5 12691 +{ (eval echo "$as_me:1 707: \"$ac_compiler --version </dev/null >&5\"") >&515153 +{ (eval echo "$as_me:1529: \"$ac_compiler --version </dev/null >&5\"") >&5 12692 15154 (eval $ac_compiler --version </dev/null >&5) 2>&5 12693 15155 ac_status=$? 12694 15156 - echo "$as_me:1707: \$? = $ac_status" >&5 12695 + echo "$as_me:1 710: \$? = $ac_status" >&515157 + echo "$as_me:1532: \$? = $ac_status" >&5 12696 15158 (exit $ac_status); } 12697 15159 -{ (eval echo "$as_me:1709: \"$ac_compiler -v </dev/null >&5\"") >&5 12698 +{ (eval echo "$as_me:1 712: \"$ac_compiler -v </dev/null >&5\"") >&515160 +{ (eval echo "$as_me:1534: \"$ac_compiler -v </dev/null >&5\"") >&5 12699 15161 (eval $ac_compiler -v </dev/null >&5) 2>&5 12700 15162 ac_status=$? 12701 15163 - echo "$as_me:1712: \$? = $ac_status" >&5 12702 + echo "$as_me:1 715: \$? = $ac_status" >&515164 + echo "$as_me:1537: \$? = $ac_status" >&5 12703 15165 (exit $ac_status); } 12704 15166 -{ (eval echo "$as_me:1714: \"$ac_compiler -V </dev/null >&5\"") >&5 12705 +{ (eval echo "$as_me:1 717: \"$ac_compiler -V </dev/null >&5\"") >&515167 +{ (eval echo "$as_me:1539: \"$ac_compiler -V </dev/null >&5\"") >&5 12706 15168 (eval $ac_compiler -V </dev/null >&5) 2>&5 12707 15169 ac_status=$? 12708 15170 - echo "$as_me:1717: \$? = $ac_status" >&5 12709 + echo "$as_me:1 720: \$? = $ac_status" >&515171 + echo "$as_me:1542: \$? = $ac_status" >&5 12710 15172 (exit $ac_status); } 12711 15173 12712 15174 cat >conftest.$ac_ext <<_ACEOF 12713 15175 -#line 1721 "configure" 12714 +#line 1 724"configure"15176 +#line 1546 "configure" 12715 15177 #include "confdefs.h" 12716 15178 12717 15179 int 12718 @@ -1734,13 +1 737,13 @@15180 @@ -1734,13 +1559,13 @@ 12719 15181 # Try to create an executable without -o first, disregard a.out. 12720 15182 # It will help us diagnose broken compilers, and finding out an intuition 12721 15183 # of exeext. 12722 15184 -echo "$as_me:1737: checking for C compiler default output" >&5 12723 +echo "$as_me:1 740: checking for C compiler default output" >&515185 +echo "$as_me:1562: checking for C compiler default output" >&5 12724 15186 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6 12725 15187 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 12726 15188 -if { (eval echo "$as_me:1740: \"$ac_link_default\"") >&5 12727 +if { (eval echo "$as_me:1 743: \"$ac_link_default\"") >&515189 +if { (eval echo "$as_me:1565: \"$ac_link_default\"") >&5 12728 15190 (eval $ac_link_default) 2>&5 12729 15191 ac_status=$? 12730 15192 - echo "$as_me:1743: \$? = $ac_status" >&5 12731 + echo "$as_me:1 746: \$? = $ac_status" >&515193 + echo "$as_me:1568: \$? = $ac_status" >&5 12732 15194 (exit $ac_status); }; then 12733 15195 # Find the output, starting from the most likely. This scheme is 12734 15196 # not robust to junk in `.', hence go to wildcards (a.*) only as a last 12735 @@ -1763,34 +1 766,34 @@15197 @@ -1763,34 +1588,34 @@ 12736 15198 else 12737 15199 echo "$as_me: failed program was:" >&5 12738 15200 cat conftest.$ac_ext >&5 12739 15201 -{ { echo "$as_me:1766: error: C compiler cannot create executables" >&5 12740 +{ { echo "$as_me:1 769: error: C compiler cannot create executables" >&515202 +{ { echo "$as_me:1591: error: C compiler cannot create executables" >&5 12741 15203 echo "$as_me: error: C compiler cannot create executables" >&2;} 12742 15204 { (exit 77); exit 77; }; } … … 12745 15207 ac_exeext=$ac_cv_exeext 12746 15208 -echo "$as_me:1772: result: $ac_file" >&5 12747 +echo "$as_me:1 775: result: $ac_file" >&515209 +echo "$as_me:1597: result: $ac_file" >&5 12748 15210 echo "${ECHO_T}$ac_file" >&6 12749 15211 … … 12751 15213 # the compiler is broken, or we cross compile. 12752 15214 -echo "$as_me:1777: checking whether the C compiler works" >&5 12753 +echo "$as_me:1 780: checking whether the C compiler works" >&515215 +echo "$as_me:1602: checking whether the C compiler works" >&5 12754 15216 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 12755 15217 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 … … 12758 15220 if { ac_try='./$ac_file' 12759 15221 - { (eval echo "$as_me:1783: \"$ac_try\"") >&5 12760 + { (eval echo "$as_me:1 786: \"$ac_try\"") >&515222 + { (eval echo "$as_me:1608: \"$ac_try\"") >&5 12761 15223 (eval $ac_try) 2>&5 12762 15224 ac_status=$? 12763 15225 - echo "$as_me:1786: \$? = $ac_status" >&5 12764 + echo "$as_me:1 789: \$? = $ac_status" >&515226 + echo "$as_me:1611: \$? = $ac_status" >&5 12765 15227 (exit $ac_status); }; }; then 12766 15228 cross_compiling=no … … 12770 15232 else 12771 15233 - { { echo "$as_me:1793: error: cannot run C compiled programs. 12772 + { { echo "$as_me:1 796: error: cannot run C compiled programs.15234 + { { echo "$as_me:1618: error: cannot run C compiled programs. 12773 15235 If you meant to cross compile, use \`--host'." >&5 12774 15236 echo "$as_me: error: cannot run C compiled programs. 12775 15237 If you meant to cross compile, use \`--host'." >&2;} 12776 @@ -1798,24 +1 801,24 @@15238 @@ -1798,24 +1623,24 @@ 12777 15239 fi 12778 15240 fi 12779 15241 fi 12780 15242 -echo "$as_me:1801: result: yes" >&5 12781 +echo "$as_me:1 804: result: yes" >&515243 +echo "$as_me:1626: result: yes" >&5 12782 15244 echo "${ECHO_T}yes" >&6 12783 15245 … … 12787 15249 # the compiler is broken, or we cross compile. 12788 15250 -echo "$as_me:1808: checking whether we are cross compiling" >&5 12789 +echo "$as_me:1 811: checking whether we are cross compiling" >&515251 +echo "$as_me:1633: checking whether we are cross compiling" >&5 12790 15252 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 12791 15253 -echo "$as_me:1810: result: $cross_compiling" >&5 12792 +echo "$as_me:1 813: result: $cross_compiling" >&515254 +echo "$as_me:1635: result: $cross_compiling" >&5 12793 15255 echo "${ECHO_T}$cross_compiling" >&6 12794 15256 12795 15257 -echo "$as_me:1813: checking for executable suffix" >&5 12796 +echo "$as_me:1 816: checking for executable suffix" >&515258 +echo "$as_me:1638: checking for executable suffix" >&5 12797 15259 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6 12798 15260 -if { (eval echo "$as_me:1815: \"$ac_link\"") >&5 12799 +if { (eval echo "$as_me:1 818: \"$ac_link\"") >&515261 +if { (eval echo "$as_me:1640: \"$ac_link\"") >&5 12800 15262 (eval $ac_link) 2>&5 12801 15263 ac_status=$? 12802 15264 - echo "$as_me:1818: \$? = $ac_status" >&5 12803 + echo "$as_me:1 821: \$? = $ac_status" >&515265 + echo "$as_me:1643: \$? = $ac_status" >&5 12804 15266 (exit $ac_status); }; then 12805 15267 # If both `conftest.exe' and `conftest' are `present' (well, observable) 12806 15268 # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will 12807 @@ -1831,25 +1 834,25 @@15269 @@ -1831,25 +1656,25 @@ 12808 15270 esac 12809 15271 done 12810 15272 else 12811 15273 - { { echo "$as_me:1834: error: cannot compute EXEEXT: cannot compile and link" >&5 12812 + { { echo "$as_me:1 837: error: cannot compute EXEEXT: cannot compile and link" >&515274 + { { echo "$as_me:1659: error: cannot compute EXEEXT: cannot compile and link" >&5 12813 15275 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;} 12814 15276 { (exit 1); exit 1; }; } … … 12817 15279 rm -f conftest$ac_cv_exeext 12818 15280 -echo "$as_me:1840: result: $ac_cv_exeext" >&5 12819 +echo "$as_me:1 843: result: $ac_cv_exeext" >&515281 +echo "$as_me:1665: result: $ac_cv_exeext" >&5 12820 15282 echo "${ECHO_T}$ac_cv_exeext" >&6 12821 15283 … … 12824 15286 ac_exeext=$EXEEXT 12825 15287 -echo "$as_me:1846: checking for object suffix" >&5 12826 +echo "$as_me:1 849: checking for object suffix" >&515288 +echo "$as_me:1671: checking for object suffix" >&5 12827 15289 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6 12828 15290 if test "${ac_cv_objext+set}" = set; then … … 12831 15293 cat >conftest.$ac_ext <<_ACEOF 12832 15294 -#line 1852 "configure" 12833 +#line 1 855"configure"15295 +#line 1677 "configure" 12834 15296 #include "confdefs.h" 12835 15297 12836 15298 int 12837 @@ -1861,10 +1 864,10 @@15299 @@ -1861,10 +1686,10 @@ 12838 15300 } 12839 15301 _ACEOF 12840 15302 rm -f conftest.o conftest.obj 12841 15303 -if { (eval echo "$as_me:1864: \"$ac_compile\"") >&5 12842 +if { (eval echo "$as_me:1 867: \"$ac_compile\"") >&515304 +if { (eval echo "$as_me:1689: \"$ac_compile\"") >&5 12843 15305 (eval $ac_compile) 2>&5 12844 15306 ac_status=$? 12845 15307 - echo "$as_me:1867: \$? = $ac_status" >&5 12846 + echo "$as_me:1 870: \$? = $ac_status" >&515308 + echo "$as_me:1692: \$? = $ac_status" >&5 12847 15309 (exit $ac_status); }; then 12848 15310 for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do 12849 15311 case $ac_file in 12850 @@ -1876,24 +1 879,24 @@15312 @@ -1876,24 +1701,24 @@ 12851 15313 else 12852 15314 echo "$as_me: failed program was:" >&5 12853 15315 cat conftest.$ac_ext >&5 12854 15316 -{ { echo "$as_me:1879: error: cannot compute OBJEXT: cannot compile" >&5 12855 +{ { echo "$as_me:1 882: error: cannot compute OBJEXT: cannot compile" >&515317 +{ { echo "$as_me:1704: error: cannot compute OBJEXT: cannot compile" >&5 12856 15318 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;} 12857 15319 { (exit 1); exit 1; }; } … … 12861 15323 fi 12862 15324 -echo "$as_me:1886: result: $ac_cv_objext" >&5 12863 +echo "$as_me:1 889: result: $ac_cv_objext" >&515325 +echo "$as_me:1711: result: $ac_cv_objext" >&5 12864 15326 echo "${ECHO_T}$ac_cv_objext" >&6 12865 15327 OBJEXT=$ac_cv_objext 12866 15328 ac_objext=$OBJEXT 12867 15329 -echo "$as_me:1890: checking whether we are using the GNU C compiler" >&5 12868 +echo "$as_me:1 893: checking whether we are using the GNU C compiler" >&515330 +echo "$as_me:1715: checking whether we are using the GNU C compiler" >&5 12869 15331 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 12870 15332 if test "${ac_cv_c_compiler_gnu+set}" = set; then … … 12873 15335 cat >conftest.$ac_ext <<_ACEOF 12874 15336 -#line 1896 "configure" 12875 +#line 1 899"configure"15337 +#line 1721 "configure" 12876 15338 #include "confdefs.h" 12877 15339 12878 15340 int 12879 @@ -1908,16 +1 911,16 @@15341 @@ -1908,16 +1733,16 @@ 12880 15342 } 12881 15343 _ACEOF 12882 15344 rm -f conftest.$ac_objext 12883 15345 -if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5 12884 +if { (eval echo "$as_me:1 914: \"$ac_compile\"") >&515346 +if { (eval echo "$as_me:1736: \"$ac_compile\"") >&5 12885 15347 (eval $ac_compile) 2>&5 12886 15348 ac_status=$? 12887 15349 - echo "$as_me:1914: \$? = $ac_status" >&5 12888 + echo "$as_me:1 917: \$? = $ac_status" >&515350 + echo "$as_me:1739: \$? = $ac_status" >&5 12889 15351 (exit $ac_status); } && 12890 15352 { ac_try='test -s conftest.$ac_objext' 12891 15353 - { (eval echo "$as_me:1917: \"$ac_try\"") >&5 12892 + { (eval echo "$as_me:1 920: \"$ac_try\"") >&515354 + { (eval echo "$as_me:1742: \"$ac_try\"") >&5 12893 15355 (eval $ac_try) 2>&5 12894 15356 ac_status=$? 12895 15357 - echo "$as_me:1920: \$? = $ac_status" >&5 12896 + echo "$as_me:1 923: \$? = $ac_status" >&515358 + echo "$as_me:1745: \$? = $ac_status" >&5 12897 15359 (exit $ac_status); }; }; then 12898 15360 ac_compiler_gnu=yes 12899 15361 else 12900 @@ -1929,19 +1 932,19 @@15362 @@ -1929,19 +1754,19 @@ 12901 15363 ac_cv_c_compiler_gnu=$ac_compiler_gnu 12902 15364 12903 15365 fi 12904 15366 -echo "$as_me:1932: result: $ac_cv_c_compiler_gnu" >&5 12905 +echo "$as_me:1 935: result: $ac_cv_c_compiler_gnu" >&515367 +echo "$as_me:1757: result: $ac_cv_c_compiler_gnu" >&5 12906 15368 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 12907 15369 GCC=`test $ac_compiler_gnu = yes && echo yes` … … 12910 15372 CFLAGS="-g" 12911 15373 -echo "$as_me:1938: checking whether $CC accepts -g" >&5 12912 +echo "$as_me:1 941: checking whether $CC accepts -g" >&515374 +echo "$as_me:1763: checking whether $CC accepts -g" >&5 12913 15375 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 12914 15376 if test "${ac_cv_prog_cc_g+set}" = set; then … … 12917 15379 cat >conftest.$ac_ext <<_ACEOF 12918 15380 -#line 1944 "configure" 12919 +#line 1 947"configure"15381 +#line 1769 "configure" 12920 15382 #include "confdefs.h" 12921 15383 12922 15384 int 12923 @@ -1953,16 +1 956,16 @@15385 @@ -1953,16 +1778,16 @@ 12924 15386 } 12925 15387 _ACEOF 12926 15388 rm -f conftest.$ac_objext 12927 15389 -if { (eval echo "$as_me:1956: \"$ac_compile\"") >&5 12928 +if { (eval echo "$as_me:1 959: \"$ac_compile\"") >&515390 +if { (eval echo "$as_me:1781: \"$ac_compile\"") >&5 12929 15391 (eval $ac_compile) 2>&5 12930 15392 ac_status=$? 12931 15393 - echo "$as_me:1959: \$? = $ac_status" >&5 12932 + echo "$as_me:1 962: \$? = $ac_status" >&515394 + echo "$as_me:1784: \$? = $ac_status" >&5 12933 15395 (exit $ac_status); } && 12934 15396 { ac_try='test -s conftest.$ac_objext' 12935 15397 - { (eval echo "$as_me:1962: \"$ac_try\"") >&5 12936 + { (eval echo "$as_me:1 965: \"$ac_try\"") >&515398 + { (eval echo "$as_me:1787: \"$ac_try\"") >&5 12937 15399 (eval $ac_try) 2>&5 12938 15400 ac_status=$? 12939 15401 - echo "$as_me:1965: \$? = $ac_status" >&5 12940 + echo "$as_me:1 968: \$? = $ac_status" >&515402 + echo "$as_me:1790: \$? = $ac_status" >&5 12941 15403 (exit $ac_status); }; }; then 12942 15404 ac_cv_prog_cc_g=yes 12943 15405 else 12944 @@ -1972,7 +1 975,7 @@15406 @@ -1972,7 +1797,7 @@ 12945 15407 fi 12946 15408 rm -f conftest.$ac_objext conftest.$ac_ext 12947 15409 fi 12948 15410 -echo "$as_me:1975: result: $ac_cv_prog_cc_g" >&5 12949 +echo "$as_me:1 978: result: $ac_cv_prog_cc_g" >&515411 +echo "$as_me:1800: result: $ac_cv_prog_cc_g" >&5 12950 15412 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 12951 15413 if test "$ac_test_CFLAGS" = set; then 12952 15414 CFLAGS=$ac_save_CFLAGS 12953 @@ -1999,16 + 2002,16 @@15415 @@ -1999,16 +1824,16 @@ 12954 15416 #endif 12955 15417 _ACEOF 12956 15418 rm -f conftest.$ac_objext 12957 15419 -if { (eval echo "$as_me:2002: \"$ac_compile\"") >&5 12958 +if { (eval echo "$as_me: 2005: \"$ac_compile\"") >&515420 +if { (eval echo "$as_me:1827: \"$ac_compile\"") >&5 12959 15421 (eval $ac_compile) 2>&5 12960 15422 ac_status=$? 12961 15423 - echo "$as_me:2005: \$? = $ac_status" >&5 12962 + echo "$as_me: 2008: \$? = $ac_status" >&515424 + echo "$as_me:1830: \$? = $ac_status" >&5 12963 15425 (exit $ac_status); } && 12964 15426 { ac_try='test -s conftest.$ac_objext' 12965 15427 - { (eval echo "$as_me:2008: \"$ac_try\"") >&5 12966 + { (eval echo "$as_me: 2011: \"$ac_try\"") >&515428 + { (eval echo "$as_me:1833: \"$ac_try\"") >&5 12967 15429 (eval $ac_try) 2>&5 12968 15430 ac_status=$? 12969 15431 - echo "$as_me:2011: \$? = $ac_status" >&5 12970 + echo "$as_me: 2014: \$? = $ac_status" >&515432 + echo "$as_me:1836: \$? = $ac_status" >&5 12971 15433 (exit $ac_status); }; }; then 12972 15434 for ac_declaration in \ 12973 15435 ''\ 12974 @@ -2020,7 + 2023,7 @@15436 @@ -2020,7 +1845,7 @@ 12975 15437 'void exit (int);' 12976 15438 do 12977 15439 cat >conftest.$ac_ext <<_ACEOF 12978 15440 -#line 2023 "configure" 12979 +#line 2026"configure"15441 +#line 1848 "configure" 12980 15442 #include "confdefs.h" 12981 15443 #include <stdlib.h> 12982 15444 $ac_declaration 12983 @@ -2033,16 + 2036,16 @@15445 @@ -2033,16 +1858,16 @@ 12984 15446 } 12985 15447 _ACEOF 12986 15448 rm -f conftest.$ac_objext 12987 15449 -if { (eval echo "$as_me:2036: \"$ac_compile\"") >&5 12988 +if { (eval echo "$as_me: 2039: \"$ac_compile\"") >&515450 +if { (eval echo "$as_me:1861: \"$ac_compile\"") >&5 12989 15451 (eval $ac_compile) 2>&5 12990 15452 ac_status=$? 12991 15453 - echo "$as_me:2039: \$? = $ac_status" >&5 12992 + echo "$as_me: 2042: \$? = $ac_status" >&515454 + echo "$as_me:1864: \$? = $ac_status" >&5 12993 15455 (exit $ac_status); } && 12994 15456 { ac_try='test -s conftest.$ac_objext' 12995 15457 - { (eval echo "$as_me:2042: \"$ac_try\"") >&5 12996 + { (eval echo "$as_me: 2045: \"$ac_try\"") >&515458 + { (eval echo "$as_me:1867: \"$ac_try\"") >&5 12997 15459 (eval $ac_try) 2>&5 12998 15460 ac_status=$? 12999 15461 - echo "$as_me:2045: \$? = $ac_status" >&5 13000 + echo "$as_me: 2048: \$? = $ac_status" >&515462 + echo "$as_me:1870: \$? = $ac_status" >&5 13001 15463 (exit $ac_status); }; }; then 13002 15464 : 13003 15465 else 13004 @@ -2052,7 + 2055,7 @@15466 @@ -2052,7 +1877,7 @@ 13005 15467 fi 13006 15468 rm -f conftest.$ac_objext conftest.$ac_ext 13007 15469 cat >conftest.$ac_ext <<_ACEOF 13008 15470 -#line 2055 "configure" 13009 +#line 2058"configure"15471 +#line 1880 "configure" 13010 15472 #include "confdefs.h" 13011 15473 $ac_declaration 13012 15474 int 13013 @@ -2064,16 + 2067,16 @@15475 @@ -2064,16 +1889,16 @@ 13014 15476 } 13015 15477 _ACEOF 13016 15478 rm -f conftest.$ac_objext 13017 15479 -if { (eval echo "$as_me:2067: \"$ac_compile\"") >&5 13018 +if { (eval echo "$as_me: 2070: \"$ac_compile\"") >&515480 +if { (eval echo "$as_me:1892: \"$ac_compile\"") >&5 13019 15481 (eval $ac_compile) 2>&5 13020 15482 ac_status=$? 13021 15483 - echo "$as_me:2070: \$? = $ac_status" >&5 13022 + echo "$as_me: 2073: \$? = $ac_status" >&515484 + echo "$as_me:1895: \$? = $ac_status" >&5 13023 15485 (exit $ac_status); } && 13024 15486 { ac_try='test -s conftest.$ac_objext' 13025 15487 - { (eval echo "$as_me:2073: \"$ac_try\"") >&5 13026 + { (eval echo "$as_me: 2076: \"$ac_try\"") >&515488 + { (eval echo "$as_me:1898: \"$ac_try\"") >&5 13027 15489 (eval $ac_try) 2>&5 13028 15490 ac_status=$? 13029 15491 - echo "$as_me:2076: \$? = $ac_status" >&5 13030 + echo "$as_me: 2079: \$? = $ac_status" >&515492 + echo "$as_me:1901: \$? = $ac_status" >&5 13031 15493 (exit $ac_status); }; }; then 13032 15494 break 13033 15495 else 13034 @@ -2103,11 + 2106,11 @@15496 @@ -2103,11 +1928,11 @@ 13035 15497 13036 15498 GCC_VERSION=none 13037 15499 if test "$GCC" = yes ; then 13038 15500 - echo "$as_me:2106: checking version of $CC" >&5 13039 + echo "$as_me: 2109: checking version of $CC" >&515501 + echo "$as_me:1931: checking version of $CC" >&5 13040 15502 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6 13041 15503 GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" 13042 15504 test -z "$GCC_VERSION" && GCC_VERSION=unknown 13043 15505 - echo "$as_me:2110: result: $GCC_VERSION" >&5 13044 + echo "$as_me: 2113: result: $GCC_VERSION" >&515506 + echo "$as_me:1935: result: $GCC_VERSION" >&5 13045 15507 echo "${ECHO_T}$GCC_VERSION" >&6 13046 15508 fi 13047 15509 13048 @@ -2117,7 + 2120,7 @@15510 @@ -2117,7 +1942,7 @@ 13049 15511 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 13050 15512 ac_compiler_gnu=$ac_cv_c_compiler_gnu 13051 15513 ac_main_return=return 13052 15514 -echo "$as_me:2120: checking how to run the C preprocessor" >&5 13053 +echo "$as_me: 2123: checking how to run the C preprocessor" >&515515 +echo "$as_me:1945: checking how to run the C preprocessor" >&5 13054 15516 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 13055 15517 # On Suns, sometimes $CPP names a directory. 13056 15518 if test -n "$CPP" && test -d "$CPP"; then 13057 @@ -2138,18 + 2141,18 @@15519 @@ -2138,18 +1963,18 @@ 13058 15520 # On the NeXT, cc -E runs the code through the compiler's parser, 13059 15521 # not just through cpp. "Syntax error" is here to catch this case. 13060 15522 cat >conftest.$ac_ext <<_ACEOF 13061 15523 -#line 2141 "configure" 13062 +#line 2144"configure"15524 +#line 1966 "configure" 13063 15525 #include "confdefs.h" 13064 15526 #include <assert.h> … … 13066 15528 _ACEOF 13067 15529 -if { (eval echo "$as_me:2146: \"$ac_cpp conftest.$ac_ext\"") >&5 13068 +if { (eval echo "$as_me: 2149: \"$ac_cpp conftest.$ac_ext\"") >&515530 +if { (eval echo "$as_me:1971: \"$ac_cpp conftest.$ac_ext\"") >&5 13069 15531 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 13070 15532 ac_status=$? … … 13073 15535 cat conftest.err >&5 13074 15536 - echo "$as_me:2152: \$? = $ac_status" >&5 13075 + echo "$as_me: 2155: \$? = $ac_status" >&515537 + echo "$as_me:1977: \$? = $ac_status" >&5 13076 15538 (exit $ac_status); } >/dev/null; then 13077 15539 if test -s conftest.err; then 13078 15540 ac_cpp_err=$ac_c_preproc_warn_flag 13079 @@ -2172,17 + 2175,17 @@15541 @@ -2172,17 +1997,17 @@ 13080 15542 # OK, works on sane cases. Now check whether non-existent headers 13081 15543 # can be detected and how. 13082 15544 cat >conftest.$ac_ext <<_ACEOF 13083 15545 -#line 2175 "configure" 13084 +#line 2 178"configure"15546 +#line 2000 "configure" 13085 15547 #include "confdefs.h" 13086 15548 #include <ac_nonexistent.h> 13087 15549 _ACEOF 13088 15550 -if { (eval echo "$as_me:2179: \"$ac_cpp conftest.$ac_ext\"") >&5 13089 +if { (eval echo "$as_me:2 182: \"$ac_cpp conftest.$ac_ext\"") >&515551 +if { (eval echo "$as_me:2004: \"$ac_cpp conftest.$ac_ext\"") >&5 13090 15552 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 13091 15553 ac_status=$? … … 13094 15556 cat conftest.err >&5 13095 15557 - echo "$as_me:2185: \$? = $ac_status" >&5 13096 + echo "$as_me:2 188: \$? = $ac_status" >&515558 + echo "$as_me:2010: \$? = $ac_status" >&5 13097 15559 (exit $ac_status); } >/dev/null; then 13098 15560 if test -s conftest.err; then 13099 15561 ac_cpp_err=$ac_c_preproc_warn_flag 13100 @@ -2219,7 +2 222,7 @@15562 @@ -2219,7 +2044,7 @@ 13101 15563 else 13102 15564 ac_cv_prog_CPP=$CPP 13103 15565 fi 13104 15566 -echo "$as_me:2222: result: $CPP" >&5 13105 +echo "$as_me:2 225: result: $CPP" >&515567 +echo "$as_me:2047: result: $CPP" >&5 13106 15568 echo "${ECHO_T}$CPP" >&6 13107 15569 ac_preproc_ok=false 13108 15570 for ac_c_preproc_warn_flag in '' yes 13109 @@ -2229,18 +2 232,18 @@15571 @@ -2229,18 +2054,18 @@ 13110 15572 # On the NeXT, cc -E runs the code through the compiler's parser, 13111 15573 # not just through cpp. "Syntax error" is here to catch this case. 13112 15574 cat >conftest.$ac_ext <<_ACEOF 13113 15575 -#line 2232 "configure" 13114 +#line 2 235"configure"15576 +#line 2057 "configure" 13115 15577 #include "confdefs.h" 13116 15578 #include <assert.h> … … 13118 15580 _ACEOF 13119 15581 -if { (eval echo "$as_me:2237: \"$ac_cpp conftest.$ac_ext\"") >&5 13120 +if { (eval echo "$as_me:2 240: \"$ac_cpp conftest.$ac_ext\"") >&515582 +if { (eval echo "$as_me:2062: \"$ac_cpp conftest.$ac_ext\"") >&5 13121 15583 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 13122 15584 ac_status=$? … … 13125 15587 cat conftest.err >&5 13126 15588 - echo "$as_me:2243: \$? = $ac_status" >&5 13127 + echo "$as_me:2 246: \$? = $ac_status" >&515589 + echo "$as_me:2068: \$? = $ac_status" >&5 13128 15590 (exit $ac_status); } >/dev/null; then 13129 15591 if test -s conftest.err; then 13130 15592 ac_cpp_err=$ac_c_preproc_warn_flag 13131 @@ -2263,17 +2 266,17 @@15593 @@ -2263,17 +2088,17 @@ 13132 15594 # OK, works on sane cases. Now check whether non-existent headers 13133 15595 # can be detected and how. 13134 15596 cat >conftest.$ac_ext <<_ACEOF 13135 15597 -#line 2266 "configure" 13136 +#line 2 269"configure"15598 +#line 2091 "configure" 13137 15599 #include "confdefs.h" 13138 15600 #include <ac_nonexistent.h> 13139 15601 _ACEOF 13140 15602 -if { (eval echo "$as_me:2270: \"$ac_cpp conftest.$ac_ext\"") >&5 13141 +if { (eval echo "$as_me:2 273: \"$ac_cpp conftest.$ac_ext\"") >&515603 +if { (eval echo "$as_me:2095: \"$ac_cpp conftest.$ac_ext\"") >&5 13142 15604 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 13143 15605 ac_status=$? … … 13146 15608 cat conftest.err >&5 13147 15609 - echo "$as_me:2276: \$? = $ac_status" >&5 13148 + echo "$as_me:2 279: \$? = $ac_status" >&515610 + echo "$as_me:2101: \$? = $ac_status" >&5 13149 15611 (exit $ac_status); } >/dev/null; then 13150 15612 if test -s conftest.err; then 13151 15613 ac_cpp_err=$ac_c_preproc_warn_flag 13152 @@ -2301,7 +2 304,7 @@15614 @@ -2301,7 +2126,7 @@ 13153 15615 if $ac_preproc_ok; then 13154 15616 : 13155 15617 else 13156 15618 - { { echo "$as_me:2304: error: C preprocessor \"$CPP\" fails sanity check" >&5 13157 + { { echo "$as_me:2 307: error: C preprocessor \"$CPP\" fails sanity check" >&515619 + { { echo "$as_me:2129: error: C preprocessor \"$CPP\" fails sanity check" >&5 13158 15620 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} 13159 15621 { (exit 1); exit 1; }; } 13160 15622 fi 13161 @@ -2314,14 +2 317,14 @@15623 @@ -2314,14 +2139,14 @@ 13162 15624 ac_main_return=return 13163 15625 13164 15626 if test $ac_cv_c_compiler_gnu = yes; then 13165 15627 - echo "$as_me:2317: checking whether $CC needs -traditional" >&5 13166 + echo "$as_me:2 320: checking whether $CC needs -traditional" >&515628 + echo "$as_me:2142: checking whether $CC needs -traditional" >&5 13167 15629 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6 13168 15630 if test "${ac_cv_prog_gcc_traditional+set}" = set; then … … 13172 15634 cat >conftest.$ac_ext <<_ACEOF 13173 15635 -#line 2324 "configure" 13174 +#line 2 327"configure"15636 +#line 2149 "configure" 13175 15637 #include "confdefs.h" 13176 15638 #include <sgtty.h> 13177 15639 int Autoconf = TIOCGETP; 13178 @@ -2336,7 +2 339,7 @@15640 @@ -2336,7 +2161,7 @@ 13179 15641 13180 15642 if test $ac_cv_prog_gcc_traditional = no; then 13181 15643 cat >conftest.$ac_ext <<_ACEOF 13182 15644 -#line 2339 "configure" 13183 +#line 2 342"configure"15645 +#line 2164 "configure" 13184 15646 #include "confdefs.h" 13185 15647 #include <termio.h> 13186 15648 int Autoconf = TCGETA; 13187 @@ -2349,14 +2 352,14 @@15649 @@ -2349,14 +2174,14 @@ 13188 15650 13189 15651 fi 13190 15652 fi 13191 15653 -echo "$as_me:2352: result: $ac_cv_prog_gcc_traditional" >&5 13192 +echo "$as_me:2 355: result: $ac_cv_prog_gcc_traditional" >&515654 +echo "$as_me:2177: result: $ac_cv_prog_gcc_traditional" >&5 13193 15655 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6 13194 15656 if test $ac_cv_prog_gcc_traditional = yes; then … … 13198 15660 13199 15661 -echo "$as_me:2359: checking whether $CC understands -c and -o together" >&5 13200 +echo "$as_me:2 362: checking whether $CC understands -c and -o together" >&515662 +echo "$as_me:2184: checking whether $CC understands -c and -o together" >&5 13201 15663 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6 13202 15664 if test "${cf_cv_prog_CC_c_o+set}" = set; then 13203 15665 echo $ECHO_N "(cached) $ECHO_C" >&6 13204 @@ -2372,15 +2 375,15 @@15666 @@ -2372,15 +2197,15 @@ 13205 15667 # We do the test twice because some compilers refuse to overwrite an 13206 15668 # existing .o file with -o, though they will create one. 13207 15669 ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5' 13208 15670 -if { (eval echo "$as_me:2375: \"$ac_try\"") >&5 13209 +if { (eval echo "$as_me:2 378: \"$ac_try\"") >&515671 +if { (eval echo "$as_me:2200: \"$ac_try\"") >&5 13210 15672 (eval $ac_try) 2>&5 13211 15673 ac_status=$? 13212 15674 - echo "$as_me:2378: \$? = $ac_status" >&5 13213 + echo "$as_me:2 381: \$? = $ac_status" >&515675 + echo "$as_me:2203: \$? = $ac_status" >&5 13214 15676 (exit $ac_status); } && 13215 15677 - test -f conftest2.$ac_objext && { (eval echo "$as_me:2380: \"$ac_try\"") >&5 13216 + test -f conftest2.$ac_objext && { (eval echo "$as_me:2 383: \"$ac_try\"") >&515678 + test -f conftest2.$ac_objext && { (eval echo "$as_me:2205: \"$ac_try\"") >&5 13217 15679 (eval $ac_try) 2>&5 13218 15680 ac_status=$? 13219 15681 - echo "$as_me:2383: \$? = $ac_status" >&5 13220 + echo "$as_me:2 386: \$? = $ac_status" >&515682 + echo "$as_me:2208: \$? = $ac_status" >&5 13221 15683 (exit $ac_status); }; 13222 15684 then 13223 15685 eval cf_cv_prog_CC_c_o=yes 13224 @@ -2391,19 +2 394,19 @@15686 @@ -2391,19 +2216,19 @@ 13225 15687 13226 15688 fi 13227 15689 if test $cf_cv_prog_CC_c_o = yes; then 13228 15690 - echo "$as_me:2394: result: yes" >&5 13229 + echo "$as_me:2 397: result: yes" >&515691 + echo "$as_me:2219: result: yes" >&5 13230 15692 echo "${ECHO_T}yes" >&6 13231 15693 else 13232 15694 - echo "$as_me:2397: result: no" >&5 13233 + echo "$as_me:2 400: result: no" >&515695 + echo "$as_me:2222: result: no" >&5 13234 15696 echo "${ECHO_T}no" >&6 13235 15697 fi 13236 15698 13237 15699 -echo "$as_me:2401: checking for POSIXized ISC" >&5 13238 +echo "$as_me:2 404: checking for POSIXized ISC" >&515700 +echo "$as_me:2226: checking for POSIXized ISC" >&5 13239 15701 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6 13240 15702 if test -d /etc/conf/kconfig.d && … … 13242 15704 then 13243 15705 - echo "$as_me:2406: result: yes" >&5 13244 + echo "$as_me:2 409: result: yes" >&515706 + echo "$as_me:2231: result: yes" >&5 13245 15707 echo "${ECHO_T}yes" >&6 13246 15708 ISC=yes # If later tests want to check for ISC. 13247 15709 13248 @@ -2417,12 +2 420,115 @@15710 @@ -2417,12 +2242,115 @@ 13249 15711 CC="$CC -Xp" 13250 15712 fi 13251 15713 else 13252 15714 - echo "$as_me:2420: result: no" >&5 13253 + echo "$as_me:2 423: result: no" >&515715 + echo "$as_me:2245: result: no" >&5 13254 15716 echo "${ECHO_T}no" >&6 13255 15717 ISC= … … 13263 15725 +# into CC. This will not help with broken scripts that wrap the compiler with 13264 15726 +# options, but eliminates a more common category of user confusion. 13265 +echo "$as_me:2 434: checking \$CC variable" >&515727 +echo "$as_me:2256: checking \$CC variable" >&5 13266 15728 +echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6 13267 15729 +case "$CC" in #(vi 13268 15730 +*[\ \ ]-[IUD]*) 13269 + echo "$as_me:2 438: result: broken" >&515731 + echo "$as_me:2260: result: broken" >&5 13270 15732 +echo "${ECHO_T}broken" >&6 13271 + { echo "$as_me:2 440: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&515733 + { echo "$as_me:2262: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5 13272 15734 +echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;} 13273 15735 + # humor him... … … 13355 15817 + ;; 13356 15818 +*) 13357 + echo "$as_me:2 526: result: ok" >&515819 + echo "$as_me:2348: result: ok" >&5 13358 15820 +echo "${ECHO_T}ok" >&6 13359 15821 + ;; 13360 15822 +esac 13361 15823 + 13362 +echo "$as_me:2 531: checking for ${CC:-cc} option to accept ANSI C" >&515824 +echo "$as_me:2353: checking for ${CC:-cc} option to accept ANSI C" >&5 13363 15825 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6 13364 15826 if test "${cf_cv_ansi_cc+set}" = set; then 13365 15827 echo $ECHO_N "(cached) $ECHO_C" >&6 13366 @@ -2526,7 +2 632,7 @@15828 @@ -2526,7 +2454,7 @@ 13367 15829 fi 13368 15830 13369 15831 cat >conftest.$ac_ext <<_ACEOF 13370 15832 -#line 2529 "configure" 13371 +#line 2 635"configure"15833 +#line 2457 "configure" 13372 15834 #include "confdefs.h" 13373 15835 13374 15836 #ifndef CC_HAS_PROTOS 13375 @@ -2547,16 +2 653,16 @@15837 @@ -2547,16 +2475,16 @@ 13376 15838 } 13377 15839 _ACEOF 13378 15840 rm -f conftest.$ac_objext 13379 15841 -if { (eval echo "$as_me:2550: \"$ac_compile\"") >&5 13380 +if { (eval echo "$as_me:2 656: \"$ac_compile\"") >&515842 +if { (eval echo "$as_me:2478: \"$ac_compile\"") >&5 13381 15843 (eval $ac_compile) 2>&5 13382 15844 ac_status=$? 13383 15845 - echo "$as_me:2553: \$? = $ac_status" >&5 13384 + echo "$as_me:2 659: \$? = $ac_status" >&515846 + echo "$as_me:2481: \$? = $ac_status" >&5 13385 15847 (exit $ac_status); } && 13386 15848 { ac_try='test -s conftest.$ac_objext' 13387 15849 - { (eval echo "$as_me:2556: \"$ac_try\"") >&5 13388 + { (eval echo "$as_me:2 662: \"$ac_try\"") >&515850 + { (eval echo "$as_me:2484: \"$ac_try\"") >&5 13389 15851 (eval $ac_try) 2>&5 13390 15852 ac_status=$? 13391 15853 - echo "$as_me:2559: \$? = $ac_status" >&5 13392 + echo "$as_me:2 665: \$? = $ac_status" >&515854 + echo "$as_me:2487: \$? = $ac_status" >&5 13393 15855 (exit $ac_status); }; }; then 13394 15856 cf_cv_ansi_cc="$cf_arg"; break 13395 15857 else 13396 @@ -2569,7 +2 675,7 @@15858 @@ -2569,7 +2497,7 @@ 13397 15859 CPPFLAGS="$cf_save_CPPFLAGS" 13398 15860 13399 15861 fi 13400 15862 -echo "$as_me:2572: result: $cf_cv_ansi_cc" >&5 13401 +echo "$as_me:2 678: result: $cf_cv_ansi_cc" >&515863 +echo "$as_me:2500: result: $cf_cv_ansi_cc" >&5 13402 15864 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 13403 15865 13404 15866 if test "$cf_cv_ansi_cc" != "no"; then 13405 @@ -2662,7 +2 768,7 @@15867 @@ -2662,7 +2590,7 @@ 13406 15868 fi 13407 15869 13408 15870 if test "$cf_cv_ansi_cc" = "no"; then 13409 15871 - { { echo "$as_me:2665: error: Your compiler does not appear to recognize prototypes. 13410 + { { echo "$as_me:2 771: error: Your compiler does not appear to recognize prototypes.15872 + { { echo "$as_me:2593: error: Your compiler does not appear to recognize prototypes. 13411 15873 You have the following choices: 13412 15874 a. adjust your compiler options 13413 15875 b. get an up-to-date compiler 13414 @@ -2696,13 +2 802,13 @@15876 @@ -2696,13 +2624,13 @@ 13415 15877 LDCONFIG=: 13416 15878 else … … 13424 15886 set dummy ldconfig; ac_word=$2 13425 15887 -echo "$as_me:2705: checking for $ac_word" >&5 13426 +echo "$as_me:2 811: checking for $ac_word" >&515888 +echo "$as_me:2633: checking for $ac_word" >&5 13427 15889 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13428 15890 if test "${ac_cv_path_LDCONFIG+set}" = set; then 13429 15891 echo $ECHO_N "(cached) $ECHO_C" >&6 13430 @@ -2719,7 +2 825,7 @@15892 @@ -2719,7 +2647,7 @@ 13431 15893 test -z "$ac_dir" && ac_dir=. 13432 15894 if $as_executable_p "$ac_dir/$ac_word"; then 13433 15895 ac_cv_path_LDCONFIG="$ac_dir/$ac_word" 13434 15896 - echo "$as_me:2722: found $ac_dir/$ac_word" >&5 13435 + echo "$as_me:2 828: found $ac_dir/$ac_word" >&515897 + echo "$as_me:2650: found $ac_dir/$ac_word" >&5 13436 15898 break 13437 15899 fi 13438 15900 done 13439 @@ -2730,10 +2 836,10 @@15901 @@ -2730,10 +2658,10 @@ 13440 15902 LDCONFIG=$ac_cv_path_LDCONFIG 13441 15903 13442 15904 if test -n "$LDCONFIG"; then 13443 15905 - echo "$as_me:2733: result: $LDCONFIG" >&5 13444 + echo "$as_me:2 839: result: $LDCONFIG" >&515906 + echo "$as_me:2661: result: $LDCONFIG" >&5 13445 15907 echo "${ECHO_T}$LDCONFIG" >&6 13446 15908 else 13447 15909 - echo "$as_me:2736: result: no" >&5 13448 + echo "$as_me:2 842: result: no" >&515910 + echo "$as_me:2664: result: no" >&5 13449 15911 echo "${ECHO_T}no" >&6 13450 15912 fi 13451 15913 13452 @@ -2741,7 +2 847,7 @@15914 @@ -2741,7 +2669,7 @@ 13453 15915 esac 13454 15916 fi 13455 15917 13456 15918 -echo "$as_me:2744: checking if you want to ensure bool is consistent with C++" >&5 13457 +echo "$as_me:2 850: checking if you want to ensure bool is consistent with C++" >&515919 +echo "$as_me:2672: checking if you want to ensure bool is consistent with C++" >&5 13458 15920 echo $ECHO_N "checking if you want to ensure bool is consistent with C++... $ECHO_C" >&6 13459 15921 13460 15922 # Check whether --with-cxx or --without-cxx was given. 13461 @@ -2751,7 +2 857,7 @@15923 @@ -2751,7 +2679,7 @@ 13462 15924 else 13463 15925 cf_with_cxx=yes 13464 15926 fi; 13465 15927 -echo "$as_me:2754: result: $cf_with_cxx" >&5 13466 +echo "$as_me:2 860: result: $cf_with_cxx" >&515928 +echo "$as_me:2682: result: $cf_with_cxx" >&5 13467 15929 echo "${ECHO_T}$cf_with_cxx" >&6 13468 15930 if test "X$cf_with_cxx" = Xno ; then 13469 15931 CXX="" 13470 @@ -2769,7 +2 875,7 @@15932 @@ -2769,7 +2697,7 @@ 13471 15933 do 13472 15934 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 13473 15935 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 13474 15936 -echo "$as_me:2772: checking for $ac_word" >&5 13475 +echo "$as_me:2 878: checking for $ac_word" >&515937 +echo "$as_me:2700: checking for $ac_word" >&5 13476 15938 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13477 15939 if test "${ac_cv_prog_CXX+set}" = set; then 13478 15940 echo $ECHO_N "(cached) $ECHO_C" >&6 13479 @@ -2784,7 +2 890,7 @@15941 @@ -2784,7 +2712,7 @@ 13480 15942 test -z "$ac_dir" && ac_dir=. 13481 15943 $as_executable_p "$ac_dir/$ac_word" || continue 13482 15944 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" 13483 15945 -echo "$as_me:2787: found $ac_dir/$ac_word" >&5 13484 +echo "$as_me:2 893: found $ac_dir/$ac_word" >&515946 +echo "$as_me:2715: found $ac_dir/$ac_word" >&5 13485 15947 break 13486 15948 done 13487 15949 13488 @@ -2792,10 +2 898,10 @@15950 @@ -2792,10 +2720,10 @@ 13489 15951 fi 13490 15952 CXX=$ac_cv_prog_CXX 13491 15953 if test -n "$CXX"; then 13492 15954 - echo "$as_me:2795: result: $CXX" >&5 13493 + echo "$as_me:2 901: result: $CXX" >&515955 + echo "$as_me:2723: result: $CXX" >&5 13494 15956 echo "${ECHO_T}$CXX" >&6 13495 15957 else 13496 15958 - echo "$as_me:2798: result: no" >&5 13497 + echo "$as_me:2 904: result: no" >&515959 + echo "$as_me:2726: result: no" >&5 13498 15960 echo "${ECHO_T}no" >&6 13499 15961 fi 13500 15962 13501 @@ -2808,7 +2 914,7 @@15963 @@ -2808,7 +2736,7 @@ 13502 15964 do 13503 15965 # Extract the first word of "$ac_prog", so it can be a program name with args. 13504 15966 set dummy $ac_prog; ac_word=$2 13505 15967 -echo "$as_me:2811: checking for $ac_word" >&5 13506 +echo "$as_me:2 917: checking for $ac_word" >&515968 +echo "$as_me:2739: checking for $ac_word" >&5 13507 15969 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13508 15970 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then 13509 15971 echo $ECHO_N "(cached) $ECHO_C" >&6 13510 @@ -2823,7 +2 929,7 @@15972 @@ -2823,7 +2751,7 @@ 13511 15973 test -z "$ac_dir" && ac_dir=. 13512 15974 $as_executable_p "$ac_dir/$ac_word" || continue 13513 15975 ac_cv_prog_ac_ct_CXX="$ac_prog" 13514 15976 -echo "$as_me:2826: found $ac_dir/$ac_word" >&5 13515 +echo "$as_me:2 932: found $ac_dir/$ac_word" >&515977 +echo "$as_me:2754: found $ac_dir/$ac_word" >&5 13516 15978 break 13517 15979 done 13518 15980 13519 @@ -2831,10 +2 937,10 @@15981 @@ -2831,10 +2759,10 @@ 13520 15982 fi 13521 15983 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX 13522 15984 if test -n "$ac_ct_CXX"; then 13523 15985 - echo "$as_me:2834: result: $ac_ct_CXX" >&5 13524 + echo "$as_me:2 940: result: $ac_ct_CXX" >&515986 + echo "$as_me:2762: result: $ac_ct_CXX" >&5 13525 15987 echo "${ECHO_T}$ac_ct_CXX" >&6 13526 15988 else 13527 15989 - echo "$as_me:2837: result: no" >&5 13528 + echo "$as_me:2 943: result: no" >&515990 + echo "$as_me:2765: result: no" >&5 13529 15991 echo "${ECHO_T}no" >&6 13530 15992 fi 13531 15993 13532 @@ -2846,32 +2 952,32 @@15994 @@ -2846,32 +2774,32 @@ 13533 15995 fi 13534 15996 13535 15997 # Provide some information about the compiler. 13536 15998 -echo "$as_me:2849:" \ 13537 +echo "$as_me:2 955:" \15999 +echo "$as_me:2777:" \ 13538 16000 "checking for C++ compiler version" >&5 13539 16001 ac_compiler=`set X $ac_compile; echo $2` 13540 16002 -{ (eval echo "$as_me:2852: \"$ac_compiler --version </dev/null >&5\"") >&5 13541 +{ (eval echo "$as_me:2 958: \"$ac_compiler --version </dev/null >&5\"") >&516003 +{ (eval echo "$as_me:2780: \"$ac_compiler --version </dev/null >&5\"") >&5 13542 16004 (eval $ac_compiler --version </dev/null >&5) 2>&5 13543 16005 ac_status=$? 13544 16006 - echo "$as_me:2855: \$? = $ac_status" >&5 13545 + echo "$as_me:2 961: \$? = $ac_status" >&516007 + echo "$as_me:2783: \$? = $ac_status" >&5 13546 16008 (exit $ac_status); } 13547 16009 -{ (eval echo "$as_me:2857: \"$ac_compiler -v </dev/null >&5\"") >&5 13548 +{ (eval echo "$as_me:2 963: \"$ac_compiler -v </dev/null >&5\"") >&516010 +{ (eval echo "$as_me:2785: \"$ac_compiler -v </dev/null >&5\"") >&5 13549 16011 (eval $ac_compiler -v </dev/null >&5) 2>&5 13550 16012 ac_status=$? 13551 16013 - echo "$as_me:2860: \$? = $ac_status" >&5 13552 + echo "$as_me:2 966: \$? = $ac_status" >&516014 + echo "$as_me:2788: \$? = $ac_status" >&5 13553 16015 (exit $ac_status); } 13554 16016 -{ (eval echo "$as_me:2862: \"$ac_compiler -V </dev/null >&5\"") >&5 13555 +{ (eval echo "$as_me:2 968: \"$ac_compiler -V </dev/null >&5\"") >&516017 +{ (eval echo "$as_me:2790: \"$ac_compiler -V </dev/null >&5\"") >&5 13556 16018 (eval $ac_compiler -V </dev/null >&5) 2>&5 13557 16019 ac_status=$? 13558 16020 - echo "$as_me:2865: \$? = $ac_status" >&5 13559 + echo "$as_me:2 971: \$? = $ac_status" >&516021 + echo "$as_me:2793: \$? = $ac_status" >&5 13560 16022 (exit $ac_status); } 13561 16023 13562 16024 -echo "$as_me:2868: checking whether we are using the GNU C++ compiler" >&5 13563 +echo "$as_me:2 974: checking whether we are using the GNU C++ compiler" >&516025 +echo "$as_me:2796: checking whether we are using the GNU C++ compiler" >&5 13564 16026 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6 13565 16027 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then … … 13568 16030 cat >conftest.$ac_ext <<_ACEOF 13569 16031 -#line 2874 "configure" 13570 +#line 2 980"configure"16032 +#line 2802 "configure" 13571 16033 #include "confdefs.h" 13572 16034 13573 16035 int 13574 @@ -2886,16 +2 992,16 @@16036 @@ -2886,16 +2814,16 @@ 13575 16037 } 13576 16038 _ACEOF 13577 16039 rm -f conftest.$ac_objext 13578 16040 -if { (eval echo "$as_me:2889: \"$ac_compile\"") >&5 13579 +if { (eval echo "$as_me:2 995: \"$ac_compile\"") >&516041 +if { (eval echo "$as_me:2817: \"$ac_compile\"") >&5 13580 16042 (eval $ac_compile) 2>&5 13581 16043 ac_status=$? 13582 16044 - echo "$as_me:2892: \$? = $ac_status" >&5 13583 + echo "$as_me:2 998: \$? = $ac_status" >&516045 + echo "$as_me:2820: \$? = $ac_status" >&5 13584 16046 (exit $ac_status); } && 13585 16047 { ac_try='test -s conftest.$ac_objext' 13586 16048 - { (eval echo "$as_me:2895: \"$ac_try\"") >&5 13587 + { (eval echo "$as_me: 3001: \"$ac_try\"") >&516049 + { (eval echo "$as_me:2823: \"$ac_try\"") >&5 13588 16050 (eval $ac_try) 2>&5 13589 16051 ac_status=$? 13590 16052 - echo "$as_me:2898: \$? = $ac_status" >&5 13591 + echo "$as_me: 3004: \$? = $ac_status" >&516053 + echo "$as_me:2826: \$? = $ac_status" >&5 13592 16054 (exit $ac_status); }; }; then 13593 16055 ac_compiler_gnu=yes 13594 16056 else 13595 @@ -2907,19 + 3013,19 @@16057 @@ -2907,19 +2835,19 @@ 13596 16058 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu 13597 16059 13598 16060 fi 13599 16061 -echo "$as_me:2910: result: $ac_cv_cxx_compiler_gnu" >&5 13600 +echo "$as_me: 3016: result: $ac_cv_cxx_compiler_gnu" >&516062 +echo "$as_me:2838: result: $ac_cv_cxx_compiler_gnu" >&5 13601 16063 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6 13602 16064 GXX=`test $ac_compiler_gnu = yes && echo yes` … … 13605 16067 CXXFLAGS="-g" 13606 16068 -echo "$as_me:2916: checking whether $CXX accepts -g" >&5 13607 +echo "$as_me: 3022: checking whether $CXX accepts -g" >&516069 +echo "$as_me:2844: checking whether $CXX accepts -g" >&5 13608 16070 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6 13609 16071 if test "${ac_cv_prog_cxx_g+set}" = set; then … … 13612 16074 cat >conftest.$ac_ext <<_ACEOF 13613 16075 -#line 2922 "configure" 13614 +#line 3028"configure"16076 +#line 2850 "configure" 13615 16077 #include "confdefs.h" 13616 16078 13617 16079 int 13618 @@ -2931,16 + 3037,16 @@16080 @@ -2931,16 +2859,16 @@ 13619 16081 } 13620 16082 _ACEOF 13621 16083 rm -f conftest.$ac_objext 13622 16084 -if { (eval echo "$as_me:2934: \"$ac_compile\"") >&5 13623 +if { (eval echo "$as_me: 3040: \"$ac_compile\"") >&516085 +if { (eval echo "$as_me:2862: \"$ac_compile\"") >&5 13624 16086 (eval $ac_compile) 2>&5 13625 16087 ac_status=$? 13626 16088 - echo "$as_me:2937: \$? = $ac_status" >&5 13627 + echo "$as_me: 3043: \$? = $ac_status" >&516089 + echo "$as_me:2865: \$? = $ac_status" >&5 13628 16090 (exit $ac_status); } && 13629 16091 { ac_try='test -s conftest.$ac_objext' 13630 16092 - { (eval echo "$as_me:2940: \"$ac_try\"") >&5 13631 + { (eval echo "$as_me: 3046: \"$ac_try\"") >&516093 + { (eval echo "$as_me:2868: \"$ac_try\"") >&5 13632 16094 (eval $ac_try) 2>&5 13633 16095 ac_status=$? 13634 16096 - echo "$as_me:2943: \$? = $ac_status" >&5 13635 + echo "$as_me: 3049: \$? = $ac_status" >&516097 + echo "$as_me:2871: \$? = $ac_status" >&5 13636 16098 (exit $ac_status); }; }; then 13637 16099 ac_cv_prog_cxx_g=yes 13638 16100 else 13639 @@ -2950,7 + 3056,7 @@16101 @@ -2950,7 +2878,7 @@ 13640 16102 fi 13641 16103 rm -f conftest.$ac_objext conftest.$ac_ext 13642 16104 fi 13643 16105 -echo "$as_me:2953: result: $ac_cv_prog_cxx_g" >&5 13644 +echo "$as_me: 3059: result: $ac_cv_prog_cxx_g" >&516106 +echo "$as_me:2881: result: $ac_cv_prog_cxx_g" >&5 13645 16107 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6 13646 16108 if test "$ac_test_CXXFLAGS" = set; then 13647 16109 CXXFLAGS=$ac_save_CXXFLAGS 13648 @@ -2977,7 + 3083,7 @@16110 @@ -2977,7 +2905,7 @@ 13649 16111 'void exit (int);' 13650 16112 do 13651 16113 cat >conftest.$ac_ext <<_ACEOF 13652 16114 -#line 2980 "configure" 13653 +#line 3086"configure"16115 +#line 2908 "configure" 13654 16116 #include "confdefs.h" 13655 16117 #include <stdlib.h> 13656 16118 $ac_declaration 13657 @@ -2990,16 + 3096,16 @@16119 @@ -2990,16 +2918,16 @@ 13658 16120 } 13659 16121 _ACEOF 13660 16122 rm -f conftest.$ac_objext 13661 16123 -if { (eval echo "$as_me:2993: \"$ac_compile\"") >&5 13662 +if { (eval echo "$as_me: 3099: \"$ac_compile\"") >&516124 +if { (eval echo "$as_me:2921: \"$ac_compile\"") >&5 13663 16125 (eval $ac_compile) 2>&5 13664 16126 ac_status=$? 13665 16127 - echo "$as_me:2996: \$? = $ac_status" >&5 13666 + echo "$as_me: 3102: \$? = $ac_status" >&516128 + echo "$as_me:2924: \$? = $ac_status" >&5 13667 16129 (exit $ac_status); } && 13668 16130 { ac_try='test -s conftest.$ac_objext' 13669 16131 - { (eval echo "$as_me:2999: \"$ac_try\"") >&5 13670 + { (eval echo "$as_me: 3105: \"$ac_try\"") >&516132 + { (eval echo "$as_me:2927: \"$ac_try\"") >&5 13671 16133 (eval $ac_try) 2>&5 13672 16134 ac_status=$? 13673 16135 - echo "$as_me:3002: \$? = $ac_status" >&5 13674 + echo "$as_me: 3108: \$? = $ac_status" >&516136 + echo "$as_me:2930: \$? = $ac_status" >&5 13675 16137 (exit $ac_status); }; }; then 13676 16138 : 13677 16139 else 13678 @@ -3009,7 + 3115,7 @@16140 @@ -3009,7 +2937,7 @@ 13679 16141 fi 13680 16142 rm -f conftest.$ac_objext conftest.$ac_ext 13681 16143 cat >conftest.$ac_ext <<_ACEOF 13682 16144 -#line 3012 "configure" 13683 +#line 3118"configure"16145 +#line 2940 "configure" 13684 16146 #include "confdefs.h" 13685 16147 $ac_declaration 13686 16148 int 13687 @@ -3021,16 + 3127,16 @@16149 @@ -3021,16 +2949,16 @@ 13688 16150 } 13689 16151 _ACEOF 13690 16152 rm -f conftest.$ac_objext 13691 16153 -if { (eval echo "$as_me:3024: \"$ac_compile\"") >&5 13692 +if { (eval echo "$as_me: 3130: \"$ac_compile\"") >&516154 +if { (eval echo "$as_me:2952: \"$ac_compile\"") >&5 13693 16155 (eval $ac_compile) 2>&5 13694 16156 ac_status=$? 13695 16157 - echo "$as_me:3027: \$? = $ac_status" >&5 13696 + echo "$as_me: 3133: \$? = $ac_status" >&516158 + echo "$as_me:2955: \$? = $ac_status" >&5 13697 16159 (exit $ac_status); } && 13698 16160 { ac_try='test -s conftest.$ac_objext' 13699 16161 - { (eval echo "$as_me:3030: \"$ac_try\"") >&5 13700 + { (eval echo "$as_me: 3136: \"$ac_try\"") >&516162 + { (eval echo "$as_me:2958: \"$ac_try\"") >&5 13701 16163 (eval $ac_try) 2>&5 13702 16164 ac_status=$? 13703 16165 - echo "$as_me:3033: \$? = $ac_status" >&5 13704 + echo "$as_me: 3139: \$? = $ac_status" >&516166 + echo "$as_me:2961: \$? = $ac_status" >&5 13705 16167 (exit $ac_status); }; }; then 13706 16168 break 13707 16169 else 13708 @@ -3057,7 +3163,7 @@ 16170 @@ -3053,11 +2981,11 @@ 16171 ac_compiler_gnu=$ac_cv_c_compiler_gnu 16172 ac_main_return=return 16173 16174 - # autoconf 2.5x removed the error - by hardcoding it to g++. 16175 + # autoconf 2.5x removed the error (hardcoding it to g++, or just blank) 13709 16176 if test "$CXX" = "g++" ; then 13710 16177 # Extract the first word of "g++", so it can be a program name with args. 13711 16178 set dummy g++; ac_word=$2 13712 16179 -echo "$as_me:3060: checking for $ac_word" >&5 13713 +echo "$as_me: 3166: checking for $ac_word" >&516180 +echo "$as_me:2988: checking for $ac_word" >&5 13714 16181 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13715 16182 if test "${ac_cv_path_CXX+set}" = set; then 13716 16183 echo $ECHO_N "(cached) $ECHO_C" >&6 13717 @@ -3074,7 +3 180,7 @@16184 @@ -3074,7 +3002,7 @@ 13718 16185 test -z "$ac_dir" && ac_dir=. 13719 16186 if $as_executable_p "$ac_dir/$ac_word"; then 13720 16187 ac_cv_path_CXX="$ac_dir/$ac_word" 13721 16188 - echo "$as_me:3077: found $ac_dir/$ac_word" >&5 13722 + echo "$as_me:3 183: found $ac_dir/$ac_word" >&516189 + echo "$as_me:3005: found $ac_dir/$ac_word" >&5 13723 16190 break 13724 16191 fi 13725 16192 done 13726 @@ -3085, 16 +3191,16@@16193 @@ -3085,28 +3013,30 @@ 13727 16194 CXX=$ac_cv_path_CXX 13728 16195 13729 16196 if test -n "$CXX"; then 13730 16197 - echo "$as_me:3088: result: $CXX" >&5 13731 + echo "$as_me:3 194: result: $CXX" >&516198 + echo "$as_me:3016: result: $CXX" >&5 13732 16199 echo "${ECHO_T}$CXX" >&6 13733 16200 else 13734 16201 - echo "$as_me:3091: result: no" >&5 13735 + echo "$as_me:3 197: result: no" >&516202 + echo "$as_me:3019: result: no" >&5 13736 16203 echo "${ECHO_T}no" >&6 13737 16204 fi 13738 16205 13739 16206 fi 13740 if test "$CXX" = "g++" ; then16207 - if test "$CXX" = "g++" ; then 13741 16208 - { echo "$as_me:3097: WARNING: ignoring hardcoded g++" >&5 13742 + { echo "$as_me:3203: WARNING: ignoring hardcoded g++" >&5 13743 echo "$as_me: WARNING: ignoring hardcoded g++" >&2;} 16209 -echo "$as_me: WARNING: ignoring hardcoded g++" >&2;} 16210 + case "x$CXX" in #(vi 16211 + x|xg++) 16212 + { echo "$as_me:3026: WARNING: You don't have any C++ compiler, too bad" >&5 16213 +echo "$as_me: WARNING: You don't have any C++ compiler, too bad" >&2;} 13744 16214 cf_with_cxx=no; CXX=""; GXX=""; 13745 fi 13746 @@ -3102,11 +3208,11 @@ 16215 - fi 16216 + ;; 16217 + esac 16218 fi 13747 16219 13748 16220 GXX_VERSION=none 13749 16221 if test "$GXX" = yes; then 13750 16222 - echo "$as_me:3105: checking version of g++" >&5 13751 + echo "$as_me:3211: checking version of g++" >&5 13752 echo $ECHO_N "checking version of g++... $ECHO_C" >&6 16223 -echo $ECHO_N "checking version of g++... $ECHO_C" >&6 16224 + echo "$as_me:3035: checking version of ${CXX:-g++}" >&5 16225 +echo $ECHO_N "checking version of ${CXX:-g++}... $ECHO_C" >&6 13753 16226 GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`" 13754 16227 test -z "$GXX_VERSION" && GXX_VERSION=unknown 13755 16228 - echo "$as_me:3109: result: $GXX_VERSION" >&5 13756 + echo "$as_me:3 215: result: $GXX_VERSION" >&516229 + echo "$as_me:3039: result: $GXX_VERSION" >&5 13757 16230 echo "${ECHO_T}$GXX_VERSION" >&6 13758 16231 fi 13759 16232 13760 @@ -3114,12 +3 220,12 @@16233 @@ -3114,12 +3044,12 @@ 13761 16234 1*|2.[0-6]*) 13762 16235 # GXX=""; CXX=""; ac_cv_prog_gxx=no 13763 16236 # cf_cxx_library=no 13764 16237 - { echo "$as_me:3117: WARNING: templates do not work" >&5 13765 + { echo "$as_me:3 223: WARNING: templates do not work" >&516238 + { echo "$as_me:3047: WARNING: templates do not work" >&5 13766 16239 echo "$as_me: WARNING: templates do not work" >&2;} 13767 16240 ;; … … 13769 16242 13770 16243 -echo "$as_me:3122: checking if you want to build C++ binding and demo" >&5 13771 +echo "$as_me:3 228: checking if you want to build C++ binding and demo" >&516244 +echo "$as_me:3052: checking if you want to build C++ binding and demo" >&5 13772 16245 echo $ECHO_N "checking if you want to build C++ binding and demo... $ECHO_C" >&6 13773 16246 13774 16247 # Check whether --with-cxx-binding or --without-cxx-binding was given. 13775 @@ -3129, 10 +3235,10@@16248 @@ -3129,23 +3059,15 @@ 13776 16249 else 13777 16250 cf_with_cxx_binding=$cf_with_cxx 13778 16251 fi; 13779 16252 -echo "$as_me:3132: result: $cf_with_cxx_binding" >&5 13780 +echo "$as_me:3 238: result: $cf_with_cxx_binding" >&516253 +echo "$as_me:3062: result: $cf_with_cxx_binding" >&5 13781 16254 echo "${ECHO_T}$cf_with_cxx_binding" >&6 13782 16255 13783 16256 -echo "$as_me:3135: checking if you want to build with Ada95" >&5 13784 +echo "$as_me:3 241: checking if you want to build with Ada95" >&516257 +echo "$as_me:3065: checking if you want to build with Ada95" >&5 13785 16258 echo $ECHO_N "checking if you want to build with Ada95... $ECHO_C" >&6 13786 13787 # Check whether --with-ada or --without-ada was given. 13788 @@ -3142,10 +3248,10 @@ 13789 else 13790 cf_with_ada=yes 13791 fi; 16259 - 16260 -# Check whether --with-ada or --without-ada was given. 16261 -if test "${with_ada+set}" = set; then 16262 - withval="$with_ada" 16263 - cf_with_ada=$withval 16264 -else 16265 - cf_with_ada=yes 16266 -fi; 13792 16267 -echo "$as_me:3145: result: $cf_with_ada" >&5 13793 +echo "$as_me:3 251: result: $cf_with_ada" >&516268 +echo "$as_me:3067: result: $cf_with_ada" >&5 13794 16269 echo "${ECHO_T}$cf_with_ada" >&6 13795 16270 13796 16271 -echo "$as_me:3148: checking if you want to install manpages" >&5 13797 +echo "$as_me:3 254: checking if you want to install manpages" >&516272 +echo "$as_me:3070: checking if you want to install manpages" >&5 13798 16273 echo $ECHO_N "checking if you want to install manpages... $ECHO_C" >&6 13799 16274 13800 16275 # Check whether --with-manpages or --without-manpages was given. 13801 @@ -3155,10 +3 261,10 @@16276 @@ -3155,10 +3077,10 @@ 13802 16277 else 13803 16278 cf_with_manpages=yes 13804 16279 fi; 13805 16280 -echo "$as_me:3158: result: $cf_with_manpages" >&5 13806 +echo "$as_me:3 264: result: $cf_with_manpages" >&516281 +echo "$as_me:3080: result: $cf_with_manpages" >&5 13807 16282 echo "${ECHO_T}$cf_with_manpages" >&6 13808 16283 13809 16284 -echo "$as_me:3161: checking if you want to build programs such as tic" >&5 13810 +echo "$as_me:3 267: checking if you want to build programs such as tic" >&516285 +echo "$as_me:3083: checking if you want to build programs such as tic" >&5 13811 16286 echo $ECHO_N "checking if you want to build programs such as tic... $ECHO_C" >&6 13812 16287 13813 16288 # Check whether --with-progs or --without-progs was given. 13814 @@ -3168,10 +3 274,10 @@16289 @@ -3168,10 +3090,10 @@ 13815 16290 else 13816 16291 cf_with_progs=yes 13817 16292 fi; 13818 16293 -echo "$as_me:3171: result: $cf_with_progs" >&5 13819 +echo "$as_me:3 277: result: $cf_with_progs" >&516294 +echo "$as_me:3093: result: $cf_with_progs" >&5 13820 16295 echo "${ECHO_T}$cf_with_progs" >&6 13821 16296 13822 16297 -echo "$as_me:3174: checking if you want to build test-programs" >&5 13823 +echo "$as_me:3 280: checking if you want to build test-programs" >&516298 +echo "$as_me:3096: checking if you want to build test-programs" >&5 13824 16299 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6 13825 16300 13826 16301 # Check whether --with-tests or --without-tests was given. 13827 @@ -3181,10 +3 287,10 @@16302 @@ -3181,10 +3103,10 @@ 13828 16303 else 13829 16304 cf_with_tests=yes 13830 16305 fi; 13831 16306 -echo "$as_me:3184: result: $cf_with_tests" >&5 13832 +echo "$as_me:3 290: result: $cf_with_tests" >&516307 +echo "$as_me:3106: result: $cf_with_tests" >&5 13833 16308 echo "${ECHO_T}$cf_with_tests" >&6 13834 16309 13835 16310 -echo "$as_me:3187: checking if you wish to install curses.h" >&5 13836 +echo "$as_me:3 293: checking if you wish to install curses.h" >&516311 +echo "$as_me:3109: checking if you wish to install curses.h" >&5 13837 16312 echo $ECHO_N "checking if you wish to install curses.h... $ECHO_C" >&6 13838 16313 13839 16314 # Check whether --with-curses-h or --without-curses-h was given. 13840 @@ -3194,7 +3 300,7 @@16315 @@ -3194,7 +3116,7 @@ 13841 16316 else 13842 16317 with_curses_h=yes 13843 16318 fi; 13844 16319 -echo "$as_me:3197: result: $with_curses_h" >&5 13845 +echo "$as_me:3 303: result: $with_curses_h" >&516320 +echo "$as_me:3119: result: $with_curses_h" >&5 13846 16321 echo "${ECHO_T}$with_curses_h" >&6 13847 16322 13848 16323 modules_to_build="ncurses" 13849 @@ -3220,7 +3 326,7 @@16324 @@ -3220,7 +3142,7 @@ 13850 16325 do 13851 16326 # Extract the first word of "$ac_prog", so it can be a program name with args. 13852 16327 set dummy $ac_prog; ac_word=$2 13853 16328 -echo "$as_me:3223: checking for $ac_word" >&5 13854 +echo "$as_me:3 329: checking for $ac_word" >&516329 +echo "$as_me:3145: checking for $ac_word" >&5 13855 16330 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13856 16331 if test "${ac_cv_prog_AWK+set}" = set; then 13857 16332 echo $ECHO_N "(cached) $ECHO_C" >&6 13858 @@ -3235,7 +3 341,7 @@16333 @@ -3235,7 +3157,7 @@ 13859 16334 test -z "$ac_dir" && ac_dir=. 13860 16335 $as_executable_p "$ac_dir/$ac_word" || continue 13861 16336 ac_cv_prog_AWK="$ac_prog" 13862 16337 -echo "$as_me:3238: found $ac_dir/$ac_word" >&5 13863 +echo "$as_me:3 344: found $ac_dir/$ac_word" >&516338 +echo "$as_me:3160: found $ac_dir/$ac_word" >&5 13864 16339 break 13865 16340 done 13866 16341 13867 @@ -3243,21 +3 349,21 @@16342 @@ -3243,21 +3165,21 @@ 13868 16343 fi 13869 16344 AWK=$ac_cv_prog_AWK 13870 16345 if test -n "$AWK"; then 13871 16346 - echo "$as_me:3246: result: $AWK" >&5 13872 + echo "$as_me:3 352: result: $AWK" >&516347 + echo "$as_me:3168: result: $AWK" >&5 13873 16348 echo "${ECHO_T}$AWK" >&6 13874 16349 else 13875 16350 - echo "$as_me:3249: result: no" >&5 13876 + echo "$as_me:3 355: result: no" >&516351 + echo "$as_me:3171: result: no" >&5 13877 16352 echo "${ECHO_T}no" >&6 13878 16353 fi … … 13882 16357 13883 16358 -test -z "$AWK" && { { echo "$as_me:3256: error: No awk program found" >&5 13884 +test -z "$AWK" && { { echo "$as_me:3 362: error: No awk program found" >&516359 +test -z "$AWK" && { { echo "$as_me:3178: error: No awk program found" >&5 13885 16360 echo "$as_me: error: No awk program found" >&2;} 13886 16361 { (exit 1); exit 1; }; } 13887 16362 13888 16363 -echo "$as_me:3260: checking for egrep" >&5 13889 +echo "$as_me:3 366: checking for egrep" >&516364 +echo "$as_me:3182: checking for egrep" >&5 13890 16365 echo $ECHO_N "checking for egrep... $ECHO_C" >&6 13891 16366 if test "${ac_cv_prog_egrep+set}" = set; then 13892 16367 echo $ECHO_N "(cached) $ECHO_C" >&6 13893 @@ -3267,11 +3 373,11 @@16368 @@ -3267,11 +3189,11 @@ 13894 16369 else ac_cv_prog_egrep='egrep' 13895 16370 fi 13896 16371 fi 13897 16372 -echo "$as_me:3270: result: $ac_cv_prog_egrep" >&5 13898 +echo "$as_me:3 376: result: $ac_cv_prog_egrep" >&516373 +echo "$as_me:3192: result: $ac_cv_prog_egrep" >&5 13899 16374 echo "${ECHO_T}$ac_cv_prog_egrep" >&6 13900 16375 EGREP=$ac_cv_prog_egrep 13901 16376 13902 16377 -test -z "$EGREP" && { { echo "$as_me:3274: error: No egrep program found" >&5 13903 +test -z "$EGREP" && { { echo "$as_me:3 380: error: No egrep program found" >&516378 +test -z "$EGREP" && { { echo "$as_me:3196: error: No egrep program found" >&5 13904 16379 echo "$as_me: error: No egrep program found" >&2;} 13905 16380 { (exit 1); exit 1; }; } 13906 16381 13907 @@ -3287,7 +3 393,7 @@16382 @@ -3287,7 +3209,7 @@ 13908 16383 # AFS /usr/afsws/bin/install, which mishandles nonexistent args 13909 16384 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" 13910 16385 # ./install, which can be erroneously created by make from ./install.sh. 13911 16386 -echo "$as_me:3290: checking for a BSD compatible install" >&5 13912 +echo "$as_me:3 396: checking for a BSD compatible install" >&516387 +echo "$as_me:3212: checking for a BSD compatible install" >&5 13913 16388 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6 13914 16389 if test -z "$INSTALL"; then 13915 16390 if test "${ac_cv_path_install+set}" = set; then 13916 @@ -3336,7 +3 442,7 @@16391 @@ -3336,7 +3258,7 @@ 13917 16392 INSTALL=$ac_install_sh 13918 16393 fi 13919 16394 fi 13920 16395 -echo "$as_me:3339: result: $INSTALL" >&5 13921 +echo "$as_me:3 445: result: $INSTALL" >&516396 +echo "$as_me:3261: result: $INSTALL" >&5 13922 16397 echo "${ECHO_T}$INSTALL" >&6 13923 16398 13924 16399 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. 13925 @@ -3361,7 +3 467,7 @@16400 @@ -3361,7 +3283,7 @@ 13926 16401 do 13927 16402 # Extract the first word of "$ac_prog", so it can be a program name with args. 13928 16403 set dummy $ac_prog; ac_word=$2 13929 16404 -echo "$as_me:3364: checking for $ac_word" >&5 13930 +echo "$as_me:3 470: checking for $ac_word" >&516405 +echo "$as_me:3286: checking for $ac_word" >&5 13931 16406 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 13932 16407 if test "${ac_cv_prog_LINT+set}" = set; then 13933 16408 echo $ECHO_N "(cached) $ECHO_C" >&6 13934 @@ -3376,7 +3 482,7 @@16409 @@ -3376,7 +3298,7 @@ 13935 16410 test -z "$ac_dir" && ac_dir=. 13936 16411 $as_executable_p "$ac_dir/$ac_word" || continue 13937 16412 ac_cv_prog_LINT="$ac_prog" 13938 16413 -echo "$as_me:3379: found $ac_dir/$ac_word" >&5 13939 +echo "$as_me:3 485: found $ac_dir/$ac_word" >&516414 +echo "$as_me:3301: found $ac_dir/$ac_word" >&5 13940 16415 break 13941 16416 done 13942 16417 13943 @@ -3384,28 +3 490,28 @@16418 @@ -3384,28 +3306,28 @@ 13944 16419 fi 13945 16420 LINT=$ac_cv_prog_LINT 13946 16421 if test -n "$LINT"; then 13947 16422 - echo "$as_me:3387: result: $LINT" >&5 13948 + echo "$as_me:3 493: result: $LINT" >&516423 + echo "$as_me:3309: result: $LINT" >&5 13949 16424 echo "${ECHO_T}$LINT" >&6 13950 16425 else 13951 16426 - echo "$as_me:3390: result: no" >&5 13952 + echo "$as_me:3 496: result: no" >&516427 + echo "$as_me:3312: result: no" >&5 13953 16428 echo "${ECHO_T}no" >&6 13954 16429 fi … … 13958 16433 13959 16434 -echo "$as_me:3397: checking whether ln -s works" >&5 13960 +echo "$as_me:3 503: checking whether ln -s works" >&516435 +echo "$as_me:3319: checking whether ln -s works" >&5 13961 16436 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 13962 16437 LN_S=$as_ln_s 13963 16438 if test "$LN_S" = "ln -s"; then 13964 16439 - echo "$as_me:3401: result: yes" >&5 13965 + echo "$as_me:3 507: result: yes" >&516440 + echo "$as_me:3323: result: yes" >&5 13966 16441 echo "${ECHO_T}yes" >&6 13967 16442 else 13968 16443 - echo "$as_me:3404: result: no, using $LN_S" >&5 13969 + echo "$as_me:3 510: result: no, using $LN_S" >&516444 + echo "$as_me:3326: result: no, using $LN_S" >&5 13970 16445 echo "${ECHO_T}no, using $LN_S" >&6 13971 16446 fi 13972 16447 13973 16448 -echo "$as_me:3408: checking if $LN_S -f options work" >&5 13974 +echo "$as_me:3 514: checking if $LN_S -f options work" >&516449 +echo "$as_me:3330: checking if $LN_S -f options work" >&5 13975 16450 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6 13976 16451 13977 16452 rm -f conf$$.src conf$$dst 13978 @@ -3417,12 +3 523,12 @@16453 @@ -3417,12 +3339,12 @@ 13979 16454 cf_prog_ln_sf=no 13980 16455 fi 13981 16456 rm -f conf$$.dst conf$$src 13982 16457 -echo "$as_me:3420: result: $cf_prog_ln_sf" >&5 13983 +echo "$as_me:3 526: result: $cf_prog_ln_sf" >&516458 +echo "$as_me:3342: result: $cf_prog_ln_sf" >&5 13984 16459 echo "${ECHO_T}$cf_prog_ln_sf" >&6 13985 16460 … … 13987 16462 13988 16463 -echo "$as_me:3425: checking for long file names" >&5 13989 +echo "$as_me:3 531: checking for long file names" >&516464 +echo "$as_me:3347: checking for long file names" >&5 13990 16465 echo $ECHO_N "checking for long file names... $ECHO_C" >&6 13991 16466 if test "${ac_cv_sys_long_file_names+set}" = set; then 13992 16467 echo $ECHO_N "(cached) $ECHO_C" >&6 13993 @@ -3461,7 +3 567,7 @@16468 @@ -3461,7 +3383,7 @@ 13994 16469 rm -rf $ac_xdir 2>/dev/null 13995 16470 done 13996 16471 fi 13997 16472 -echo "$as_me:3464: result: $ac_cv_sys_long_file_names" >&5 13998 +echo "$as_me:3 570: result: $ac_cv_sys_long_file_names" >&516473 +echo "$as_me:3386: result: $ac_cv_sys_long_file_names" >&5 13999 16474 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6 14000 16475 if test $ac_cv_sys_long_file_names = yes; then 14001 16476 14002 @@ -3473,7 +3 579,7 @@16477 @@ -3473,7 +3395,7 @@ 14003 16478 14004 16479 # if we find pkg-config, check if we should install the ".pc" files. 14005 16480 14006 16481 -echo "$as_me:3476: checking if you want to use pkg-config" >&5 14007 +echo "$as_me:3 582: checking if you want to use pkg-config" >&516482 +echo "$as_me:3398: checking if you want to use pkg-config" >&5 14008 16483 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 14009 16484 14010 16485 # Check whether --with-pkg-config or --without-pkg-config was given. 14011 @@ -3483,7 +3 589,7 @@16486 @@ -3483,7 +3405,7 @@ 14012 16487 else 14013 16488 cf_pkg_config=yes 14014 16489 fi; 14015 16490 -echo "$as_me:3486: result: $cf_pkg_config" >&5 14016 +echo "$as_me:3 592: result: $cf_pkg_config" >&516491 +echo "$as_me:3408: result: $cf_pkg_config" >&5 14017 16492 echo "${ECHO_T}$cf_pkg_config" >&6 14018 16493 14019 16494 case $cf_pkg_config in #(vi 14020 @@ -3491,10 +3 597,11 @@16495 @@ -3491,10 +3413,11 @@ 14021 16496 PKG_CONFIG=none 14022 16497 ;; … … 14028 16503 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 14029 16504 -echo "$as_me:3497: checking for $ac_word" >&5 14030 +echo "$as_me:3 604: checking for $ac_word" >&516505 +echo "$as_me:3420: checking for $ac_word" >&5 14031 16506 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14032 16507 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then 14033 16508 echo $ECHO_N "(cached) $ECHO_C" >&6 14034 @@ -3511,7 +3 618,7 @@16509 @@ -3511,7 +3434,7 @@ 14035 16510 test -z "$ac_dir" && ac_dir=. 14036 16511 if $as_executable_p "$ac_dir/$ac_word"; then 14037 16512 ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word" 14038 16513 - echo "$as_me:3514: found $ac_dir/$ac_word" >&5 14039 + echo "$as_me:3 621: found $ac_dir/$ac_word" >&516514 + echo "$as_me:3437: found $ac_dir/$ac_word" >&5 14040 16515 break 14041 16516 fi 14042 16517 done 14043 @@ -3522,10 +3 629,10 @@16518 @@ -3522,10 +3445,10 @@ 14044 16519 PKG_CONFIG=$ac_cv_path_PKG_CONFIG 14045 16520 14046 16521 if test -n "$PKG_CONFIG"; then 14047 16522 - echo "$as_me:3525: result: $PKG_CONFIG" >&5 14048 + echo "$as_me:3 632: result: $PKG_CONFIG" >&516523 + echo "$as_me:3448: result: $PKG_CONFIG" >&5 14049 16524 echo "${ECHO_T}$PKG_CONFIG" >&6 14050 16525 else 14051 16526 - echo "$as_me:3528: result: no" >&5 14052 + echo "$as_me:3 635: result: no" >&516527 + echo "$as_me:3451: result: no" >&5 14053 16528 echo "${ECHO_T}no" >&6 14054 16529 fi 14055 16530 14056 @@ -3534,7 +3 641,7 @@16531 @@ -3534,7 +3457,7 @@ 14057 16532 ac_pt_PKG_CONFIG=$PKG_CONFIG 14058 16533 # Extract the first word of "pkg-config", so it can be a program name with args. 14059 16534 set dummy pkg-config; ac_word=$2 14060 16535 -echo "$as_me:3537: checking for $ac_word" >&5 14061 +echo "$as_me:3 644: checking for $ac_word" >&516536 +echo "$as_me:3460: checking for $ac_word" >&5 14062 16537 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14063 16538 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then 14064 16539 echo $ECHO_N "(cached) $ECHO_C" >&6 14065 @@ -3551,7 +3 658,7 @@16540 @@ -3551,7 +3474,7 @@ 14066 16541 test -z "$ac_dir" && ac_dir=. 14067 16542 if $as_executable_p "$ac_dir/$ac_word"; then 14068 16543 ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word" 14069 16544 - echo "$as_me:3554: found $ac_dir/$ac_word" >&5 14070 + echo "$as_me:3 661: found $ac_dir/$ac_word" >&516545 + echo "$as_me:3477: found $ac_dir/$ac_word" >&5 14071 16546 break 14072 16547 fi 14073 16548 done 14074 @@ -3563,10 +3 670,10 @@16549 @@ -3563,10 +3486,10 @@ 14075 16550 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG 14076 16551 14077 16552 if test -n "$ac_pt_PKG_CONFIG"; then 14078 16553 - echo "$as_me:3566: result: $ac_pt_PKG_CONFIG" >&5 14079 + echo "$as_me:3 673: result: $ac_pt_PKG_CONFIG" >&516554 + echo "$as_me:3489: result: $ac_pt_PKG_CONFIG" >&5 14080 16555 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6 14081 16556 else 14082 16557 - echo "$as_me:3569: result: no" >&5 14083 + echo "$as_me:3 676: result: no" >&516558 + echo "$as_me:3492: result: no" >&5 14084 16559 echo "${ECHO_T}no" >&6 14085 16560 fi 14086 16561 14087 @@ -3609,7 +3716,7 @@ 16562 @@ -3597,7 +3520,7 @@ 16563 ;; 16564 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 16565 ;; 16566 -.\${*prefix}*) #(vi 16567 +.\${*prefix}*|.\${*dir}*) #(vi 16568 eval PKG_CONFIG="$PKG_CONFIG" 16569 case ".$PKG_CONFIG" in #(vi 16570 .NONE/*) 16571 @@ -3609,7 +3532,7 @@ 14088 16572 PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` 14089 16573 ;; 14090 16574 *) 14091 16575 - { { echo "$as_me:3612: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 14092 + { { echo "$as_me:3 719: error: expected a pathname, not \"$PKG_CONFIG\"" >&516576 + { { echo "$as_me:3535: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 14093 16577 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} 14094 16578 { (exit 1); exit 1; }; } 14095 16579 ;; 14096 @@ -3617,16 +3 724,52@@16580 @@ -3617,16 +3540,51 @@ 14097 16581 14098 16582 fi … … 14102 16586 -echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6 14103 16587 +if test "$PKG_CONFIG" != none ; then 14104 + echo "$as_me:3 728: checking for $PKG_CONFIG library directory" >&516588 + echo "$as_me:3544: checking for $PKG_CONFIG library directory" >&5 14105 16589 +echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6 14106 16590 … … 14110 16594 - fi 14111 16595 - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'` 16596 - if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 14112 16597 +# Check whether --with-pkg-config-libdir or --without-pkg-config-libdir was given. 14113 16598 +if test "${with_pkg_config_libdir+set}" = set; then … … 14144 16629 + esac 14145 16630 + 14146 + echo "$as_me:3 765: result: $PKG_CONFIG_LIBDIR" >&516631 + echo "$as_me:3581: result: $PKG_CONFIG_LIBDIR" >&5 14147 16632 +echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6 14148 16633 +fi 14149 16634 + 14150 16635 +if test "$PKG_CONFIG" != none ; then 14151 if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then 14152 + echo "$as_me:3771: checking if we should install .pc files for $PKG_CONFIG" >&5 16636 + echo "$as_me:3586: checking if we should install .pc files for $PKG_CONFIG" >&5 14153 16637 +echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6 14154 16638 14155 16639 # Check whether --enable-pc-files or --disable-pc-files was given. 14156 16640 if test "${enable_pc_files+set}" = set; then 14157 @@ -3635,18 +3 778,18 @@16641 @@ -3635,18 +3593,48 @@ 14158 16642 else 14159 16643 enable_pc_files=no 14160 16644 fi; 14161 16645 - echo "$as_me:3638: result: $enable_pc_files" >&5 14162 + echo "$as_me:3781: result: $enable_pc_files" >&516646 + echo "$as_me:3596: result: $enable_pc_files" >&5 14163 16647 echo "${ECHO_T}$enable_pc_files" >&6 14164 16648 - else … … 14167 16651 - { echo "$as_me:3643: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5 14168 16652 -echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;} 14169 + elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then 14170 enable_pc_files=no 14171 + { echo "$as_me:3785: WARNING: did not find $PKG_CONFIG library" >&5 14172 +echo "$as_me: WARNING: did not find $PKG_CONFIG library" >&2;} 16653 - enable_pc_files=no 16654 + if test "$enable_pc_files" != no 16655 + then 16656 + 16657 +if test "x$prefix" != xNONE; then 16658 + cf_path_syntax="$prefix" 16659 +else 16660 + cf_path_syntax="$ac_default_prefix" 16661 +fi 16662 + 16663 +case ".$PKG_CONFIG_LIBDIR" in #(vi 16664 +.\$\(*\)*|.\'*\'*) #(vi 16665 + ;; 16666 +..|./*|.\\*) #(vi 16667 + ;; 16668 +.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 16669 + ;; 16670 +.\${*prefix}*|.\${*dir}*) #(vi 16671 + eval PKG_CONFIG_LIBDIR="$PKG_CONFIG_LIBDIR" 16672 + case ".$PKG_CONFIG_LIBDIR" in #(vi 16673 + .NONE/*) 16674 + PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%` 16675 + ;; 16676 + esac 16677 + ;; #(vi 16678 +.no|.NONE/*) 16679 + PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%` 16680 + ;; 16681 +*) 16682 + { { echo "$as_me:3626: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5 16683 +echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&2;} 16684 + { (exit 1); exit 1; }; } 16685 + ;; 16686 +esac 16687 + 14173 16688 fi 14174 16689 +else … … 14177 16692 14178 16693 -echo "$as_me:3649: checking if we should assume mixed-case filenames" >&5 14179 +echo "$as_me:3 792: checking if we should assume mixed-case filenames" >&516694 +echo "$as_me:3637: checking if we should assume mixed-case filenames" >&5 14180 16695 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6 14181 16696 14182 16697 # Check whether --enable-mixed-case or --disable-mixed-case was given. 14183 @@ -3656,11 +3 799,11 @@16698 @@ -3656,11 +3644,11 @@ 14184 16699 else 14185 16700 enable_mixedcase=auto 14186 16701 fi; 14187 16702 -echo "$as_me:3659: result: $enable_mixedcase" >&5 14188 +echo "$as_me:3 802: result: $enable_mixedcase" >&516703 +echo "$as_me:3647: result: $enable_mixedcase" >&5 14189 16704 echo "${ECHO_T}$enable_mixedcase" >&6 14190 16705 if test "$enable_mixedcase" = "auto" ; then 14191 16706 14192 16707 -echo "$as_me:3663: checking if filesystem supports mixed-case filenames" >&5 14193 +echo "$as_me:3 806: checking if filesystem supports mixed-case filenames" >&516708 +echo "$as_me:3651: checking if filesystem supports mixed-case filenames" >&5 14194 16709 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6 14195 16710 if test "${cf_cv_mixedcase+set}" = set; then 14196 16711 echo $ECHO_N "(cached) $ECHO_C" >&6 14197 @@ -3687,7 +3 830,7 @@16712 @@ -3687,7 +3675,7 @@ 14198 16713 fi 14199 16714 14200 16715 fi 14201 16716 -echo "$as_me:3690: result: $cf_cv_mixedcase" >&5 14202 +echo "$as_me:3 833: result: $cf_cv_mixedcase" >&516717 +echo "$as_me:3678: result: $cf_cv_mixedcase" >&5 14203 16718 echo "${ECHO_T}$cf_cv_mixedcase" >&6 14204 16719 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF 14205 16720 #define MIXEDCASE_FILENAMES 1 14206 @@ -3704,7 +3 847,7 @@16721 @@ -3704,7 +3692,7 @@ 14207 16722 fi 14208 16723 14209 16724 # do this after mixed-case option (tags/TAGS is not as important as tic). 14210 16725 -echo "$as_me:3707: checking whether ${MAKE-make} sets \${MAKE}" >&5 14211 +echo "$as_me:3 850: checking whether ${MAKE-make} sets \${MAKE}" >&516726 +echo "$as_me:3695: checking whether ${MAKE-make} sets \${MAKE}" >&5 14212 16727 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6 14213 16728 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'` 14214 16729 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then 14215 @@ -3724,11 +3 867,11 @@16730 @@ -3724,11 +3712,11 @@ 14216 16731 rm -f conftest.make 14217 16732 fi 14218 16733 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then 14219 16734 - echo "$as_me:3727: result: yes" >&5 14220 + echo "$as_me:3 870: result: yes" >&516735 + echo "$as_me:3715: result: yes" >&5 14221 16736 echo "${ECHO_T}yes" >&6 14222 16737 SET_MAKE= 14223 16738 else 14224 16739 - echo "$as_me:3731: result: no" >&5 14225 + echo "$as_me:3 874: result: no" >&516740 + echo "$as_me:3719: result: no" >&5 14226 16741 echo "${ECHO_T}no" >&6 14227 16742 SET_MAKE="MAKE=${MAKE-make}" 14228 16743 fi 14229 @@ -3737,7 +3 880,7 @@16744 @@ -3737,7 +3725,7 @@ 14230 16745 do 14231 16746 # Extract the first word of "$ac_prog", so it can be a program name with args. 14232 16747 set dummy $ac_prog; ac_word=$2 14233 16748 -echo "$as_me:3740: checking for $ac_word" >&5 14234 +echo "$as_me:3 883: checking for $ac_word" >&516749 +echo "$as_me:3728: checking for $ac_word" >&5 14235 16750 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14236 16751 if test "${ac_cv_prog_CTAGS+set}" = set; then 14237 16752 echo $ECHO_N "(cached) $ECHO_C" >&6 14238 @@ -3752,7 +3 895,7 @@16753 @@ -3752,7 +3740,7 @@ 14239 16754 test -z "$ac_dir" && ac_dir=. 14240 16755 $as_executable_p "$ac_dir/$ac_word" || continue 14241 16756 ac_cv_prog_CTAGS="$ac_prog" 14242 16757 -echo "$as_me:3755: found $ac_dir/$ac_word" >&5 14243 +echo "$as_me:3 898: found $ac_dir/$ac_word" >&516758 +echo "$as_me:3743: found $ac_dir/$ac_word" >&5 14244 16759 break 14245 16760 done 14246 16761 14247 @@ -3760,10 +3 903,10 @@16762 @@ -3760,10 +3748,10 @@ 14248 16763 fi 14249 16764 CTAGS=$ac_cv_prog_CTAGS 14250 16765 if test -n "$CTAGS"; then 14251 16766 - echo "$as_me:3763: result: $CTAGS" >&5 14252 + echo "$as_me:3 906: result: $CTAGS" >&516767 + echo "$as_me:3751: result: $CTAGS" >&5 14253 16768 echo "${ECHO_T}$CTAGS" >&6 14254 16769 else 14255 16770 - echo "$as_me:3766: result: no" >&5 14256 + echo "$as_me:3 909: result: no" >&516771 + echo "$as_me:3754: result: no" >&5 14257 16772 echo "${ECHO_T}no" >&6 14258 16773 fi 14259 16774 14260 @@ -3774,7 +3 917,7 @@16775 @@ -3774,7 +3762,7 @@ 14261 16776 do 14262 16777 # Extract the first word of "$ac_prog", so it can be a program name with args. 14263 16778 set dummy $ac_prog; ac_word=$2 14264 16779 -echo "$as_me:3777: checking for $ac_word" >&5 14265 +echo "$as_me:3 920: checking for $ac_word" >&516780 +echo "$as_me:3765: checking for $ac_word" >&5 14266 16781 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14267 16782 if test "${ac_cv_prog_ETAGS+set}" = set; then 14268 16783 echo $ECHO_N "(cached) $ECHO_C" >&6 14269 @@ -3789,7 +3 932,7 @@16784 @@ -3789,7 +3777,7 @@ 14270 16785 test -z "$ac_dir" && ac_dir=. 14271 16786 $as_executable_p "$ac_dir/$ac_word" || continue 14272 16787 ac_cv_prog_ETAGS="$ac_prog" 14273 16788 -echo "$as_me:3792: found $ac_dir/$ac_word" >&5 14274 +echo "$as_me:3 935: found $ac_dir/$ac_word" >&516789 +echo "$as_me:3780: found $ac_dir/$ac_word" >&5 14275 16790 break 14276 16791 done 14277 16792 14278 @@ -3797,10 +3 940,10 @@16793 @@ -3797,10 +3785,10 @@ 14279 16794 fi 14280 16795 ETAGS=$ac_cv_prog_ETAGS 14281 16796 if test -n "$ETAGS"; then 14282 16797 - echo "$as_me:3800: result: $ETAGS" >&5 14283 + echo "$as_me:3 943: result: $ETAGS" >&516798 + echo "$as_me:3788: result: $ETAGS" >&5 14284 16799 echo "${ECHO_T}$ETAGS" >&6 14285 16800 else 14286 16801 - echo "$as_me:3803: result: no" >&5 14287 + echo "$as_me:3 946: result: no" >&516802 + echo "$as_me:3791: result: no" >&5 14288 16803 echo "${ECHO_T}no" >&6 14289 16804 fi 14290 16805 14291 @@ -3809,7 +3 952,7 @@16806 @@ -3809,7 +3797,7 @@ 14292 16807 14293 16808 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args. 14294 16809 set dummy ${CTAGS:-ctags}; ac_word=$2 14295 16810 -echo "$as_me:3812: checking for $ac_word" >&5 14296 +echo "$as_me:3 955: checking for $ac_word" >&516811 +echo "$as_me:3800: checking for $ac_word" >&5 14297 16812 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14298 16813 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then 14299 16814 echo $ECHO_N "(cached) $ECHO_C" >&6 14300 @@ -3824,7 +3 967,7 @@16815 @@ -3824,7 +3812,7 @@ 14301 16816 test -z "$ac_dir" && ac_dir=. 14302 16817 $as_executable_p "$ac_dir/$ac_word" || continue 14303 16818 ac_cv_prog_MAKE_LOWER_TAGS="yes" 14304 16819 -echo "$as_me:3827: found $ac_dir/$ac_word" >&5 14305 +echo "$as_me:3 970: found $ac_dir/$ac_word" >&516820 +echo "$as_me:3815: found $ac_dir/$ac_word" >&5 14306 16821 break 14307 16822 done 14308 16823 14309 @@ -3833,17 +3 976,17 @@16824 @@ -3833,17 +3821,17 @@ 14310 16825 fi 14311 16826 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS 14312 16827 if test -n "$MAKE_LOWER_TAGS"; then 14313 16828 - echo "$as_me:3836: result: $MAKE_LOWER_TAGS" >&5 14314 + echo "$as_me:3 979: result: $MAKE_LOWER_TAGS" >&516829 + echo "$as_me:3824: result: $MAKE_LOWER_TAGS" >&5 14315 16830 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6 14316 16831 else 14317 16832 - echo "$as_me:3839: result: no" >&5 14318 + echo "$as_me:3 982: result: no" >&516833 + echo "$as_me:3827: result: no" >&5 14319 16834 echo "${ECHO_T}no" >&6 14320 16835 fi … … 14324 16839 set dummy ${ETAGS:-etags}; ac_word=$2 14325 16840 -echo "$as_me:3846: checking for $ac_word" >&5 14326 +echo "$as_me:3 989: checking for $ac_word" >&516841 +echo "$as_me:3834: checking for $ac_word" >&5 14327 16842 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14328 16843 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then 14329 16844 echo $ECHO_N "(cached) $ECHO_C" >&6 14330 @@ -3858,7 + 4001,7 @@16845 @@ -3858,7 +3846,7 @@ 14331 16846 test -z "$ac_dir" && ac_dir=. 14332 16847 $as_executable_p "$ac_dir/$ac_word" || continue 14333 16848 ac_cv_prog_MAKE_UPPER_TAGS="yes" 14334 16849 -echo "$as_me:3861: found $ac_dir/$ac_word" >&5 14335 +echo "$as_me: 4004: found $ac_dir/$ac_word" >&516850 +echo "$as_me:3849: found $ac_dir/$ac_word" >&5 14336 16851 break 14337 16852 done 14338 16853 14339 @@ -3867,10 + 4010,10 @@16854 @@ -3867,10 +3855,10 @@ 14340 16855 fi 14341 16856 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS 14342 16857 if test -n "$MAKE_UPPER_TAGS"; then 14343 16858 - echo "$as_me:3870: result: $MAKE_UPPER_TAGS" >&5 14344 + echo "$as_me: 4013: result: $MAKE_UPPER_TAGS" >&516859 + echo "$as_me:3858: result: $MAKE_UPPER_TAGS" >&5 14345 16860 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6 14346 16861 else 14347 16862 - echo "$as_me:3873: result: no" >&5 14348 + echo "$as_me: 4016: result: no" >&516863 + echo "$as_me:3861: result: no" >&5 14349 16864 echo "${ECHO_T}no" >&6 14350 16865 fi 14351 16866 14352 @@ -3890,7 + 4033,7 @@16867 @@ -3890,7 +3878,7 @@ 14353 16868 MAKE_LOWER_TAGS="#" 14354 16869 fi 14355 16870 14356 16871 -echo "$as_me:3893: checking for makeflags variable" >&5 14357 +echo "$as_me: 4036: checking for makeflags variable" >&516872 +echo "$as_me:3881: checking for makeflags variable" >&5 14358 16873 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6 14359 16874 if test "${cf_cv_makeflags+set}" = set; then 14360 16875 echo $ECHO_N "(cached) $ECHO_C" >&6 14361 @@ -3924,13 + 4067,13 @@16876 @@ -3924,13 +3912,13 @@ 14362 16877 rm -f cf_makeflags.tmp 14363 16878 14364 16879 fi 14365 16880 -echo "$as_me:3927: result: $cf_cv_makeflags" >&5 14366 +echo "$as_me: 4070: result: $cf_cv_makeflags" >&516881 +echo "$as_me:3915: result: $cf_cv_makeflags" >&5 14367 16882 echo "${ECHO_T}$cf_cv_makeflags" >&6 14368 16883 … … 14371 16886 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 14372 16887 -echo "$as_me:3933: checking for $ac_word" >&5 14373 +echo "$as_me: 4076: checking for $ac_word" >&516888 +echo "$as_me:3921: checking for $ac_word" >&5 14374 16889 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14375 16890 if test "${ac_cv_prog_RANLIB+set}" = set; then 14376 16891 echo $ECHO_N "(cached) $ECHO_C" >&6 14377 @@ -3945,7 + 4088,7 @@16892 @@ -3945,7 +3933,7 @@ 14378 16893 test -z "$ac_dir" && ac_dir=. 14379 16894 $as_executable_p "$ac_dir/$ac_word" || continue 14380 16895 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 14381 16896 -echo "$as_me:3948: found $ac_dir/$ac_word" >&5 14382 +echo "$as_me: 4091: found $ac_dir/$ac_word" >&516897 +echo "$as_me:3936: found $ac_dir/$ac_word" >&5 14383 16898 break 14384 16899 done 14385 16900 14386 @@ -3953,10 + 4096,10 @@16901 @@ -3953,10 +3941,10 @@ 14387 16902 fi 14388 16903 RANLIB=$ac_cv_prog_RANLIB 14389 16904 if test -n "$RANLIB"; then 14390 16905 - echo "$as_me:3956: result: $RANLIB" >&5 14391 + echo "$as_me: 4099: result: $RANLIB" >&516906 + echo "$as_me:3944: result: $RANLIB" >&5 14392 16907 echo "${ECHO_T}$RANLIB" >&6 14393 16908 else 14394 16909 - echo "$as_me:3959: result: no" >&5 14395 + echo "$as_me: 4102: result: no" >&516910 + echo "$as_me:3947: result: no" >&5 14396 16911 echo "${ECHO_T}no" >&6 14397 16912 fi 14398 16913 14399 @@ -3965,7 + 4108,7 @@16914 @@ -3965,7 +3953,7 @@ 14400 16915 ac_ct_RANLIB=$RANLIB 14401 16916 # Extract the first word of "ranlib", so it can be a program name with args. 14402 16917 set dummy ranlib; ac_word=$2 14403 16918 -echo "$as_me:3968: checking for $ac_word" >&5 14404 +echo "$as_me: 4111: checking for $ac_word" >&516919 +echo "$as_me:3956: checking for $ac_word" >&5 14405 16920 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14406 16921 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then 14407 16922 echo $ECHO_N "(cached) $ECHO_C" >&6 14408 @@ -3980,7 + 4123,7 @@16923 @@ -3980,7 +3968,7 @@ 14409 16924 test -z "$ac_dir" && ac_dir=. 14410 16925 $as_executable_p "$ac_dir/$ac_word" || continue 14411 16926 ac_cv_prog_ac_ct_RANLIB="ranlib" 14412 16927 -echo "$as_me:3983: found $ac_dir/$ac_word" >&5 14413 +echo "$as_me: 4126: found $ac_dir/$ac_word" >&516928 +echo "$as_me:3971: found $ac_dir/$ac_word" >&5 14414 16929 break 14415 16930 done 14416 16931 14417 @@ -3989,10 + 4132,10 @@16932 @@ -3989,10 +3977,10 @@ 14418 16933 fi 14419 16934 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB 14420 16935 if test -n "$ac_ct_RANLIB"; then 14421 16936 - echo "$as_me:3992: result: $ac_ct_RANLIB" >&5 14422 + echo "$as_me: 4135: result: $ac_ct_RANLIB" >&516937 + echo "$as_me:3980: result: $ac_ct_RANLIB" >&5 14423 16938 echo "${ECHO_T}$ac_ct_RANLIB" >&6 14424 16939 else 14425 16940 - echo "$as_me:3995: result: no" >&5 14426 + echo "$as_me: 4138: result: no" >&516941 + echo "$as_me:3983: result: no" >&5 14427 16942 echo "${ECHO_T}no" >&6 14428 16943 fi 14429 16944 14430 @@ -4004,7 + 4147,7 @@16945 @@ -4004,7 +3992,7 @@ 14431 16946 if test -n "$ac_tool_prefix"; then 14432 16947 # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args. 14433 16948 set dummy ${ac_tool_prefix}ld; ac_word=$2 14434 16949 -echo "$as_me:4007: checking for $ac_word" >&5 14435 +echo "$as_me: 4150: checking for $ac_word" >&516950 +echo "$as_me:3995: checking for $ac_word" >&5 14436 16951 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14437 16952 if test "${ac_cv_prog_LD+set}" = set; then 14438 16953 echo $ECHO_N "(cached) $ECHO_C" >&6 14439 @@ -4019,7 +4 162,7 @@16954 @@ -4019,7 +4007,7 @@ 14440 16955 test -z "$ac_dir" && ac_dir=. 14441 16956 $as_executable_p "$ac_dir/$ac_word" || continue 14442 16957 ac_cv_prog_LD="${ac_tool_prefix}ld" 14443 16958 -echo "$as_me:4022: found $ac_dir/$ac_word" >&5 14444 +echo "$as_me:4 165: found $ac_dir/$ac_word" >&516959 +echo "$as_me:4010: found $ac_dir/$ac_word" >&5 14445 16960 break 14446 16961 done 14447 16962 14448 @@ -4027,10 +4 170,10 @@16963 @@ -4027,10 +4015,10 @@ 14449 16964 fi 14450 16965 LD=$ac_cv_prog_LD 14451 16966 if test -n "$LD"; then 14452 16967 - echo "$as_me:4030: result: $LD" >&5 14453 + echo "$as_me:4 173: result: $LD" >&516968 + echo "$as_me:4018: result: $LD" >&5 14454 16969 echo "${ECHO_T}$LD" >&6 14455 16970 else 14456 16971 - echo "$as_me:4033: result: no" >&5 14457 + echo "$as_me:4 176: result: no" >&516972 + echo "$as_me:4021: result: no" >&5 14458 16973 echo "${ECHO_T}no" >&6 14459 16974 fi 14460 16975 14461 @@ -4039,7 +4 182,7 @@16976 @@ -4039,7 +4027,7 @@ 14462 16977 ac_ct_LD=$LD 14463 16978 # Extract the first word of "ld", so it can be a program name with args. 14464 16979 set dummy ld; ac_word=$2 14465 16980 -echo "$as_me:4042: checking for $ac_word" >&5 14466 +echo "$as_me:4 185: checking for $ac_word" >&516981 +echo "$as_me:4030: checking for $ac_word" >&5 14467 16982 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14468 16983 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then 14469 16984 echo $ECHO_N "(cached) $ECHO_C" >&6 14470 @@ -4054,7 +4 197,7 @@16985 @@ -4054,7 +4042,7 @@ 14471 16986 test -z "$ac_dir" && ac_dir=. 14472 16987 $as_executable_p "$ac_dir/$ac_word" || continue 14473 16988 ac_cv_prog_ac_ct_LD="ld" 14474 16989 -echo "$as_me:4057: found $ac_dir/$ac_word" >&5 14475 +echo "$as_me:4 200: found $ac_dir/$ac_word" >&516990 +echo "$as_me:4045: found $ac_dir/$ac_word" >&5 14476 16991 break 14477 16992 done 14478 16993 14479 @@ -4063,10 +4 206,10 @@16994 @@ -4063,10 +4051,10 @@ 14480 16995 fi 14481 16996 ac_ct_LD=$ac_cv_prog_ac_ct_LD 14482 16997 if test -n "$ac_ct_LD"; then 14483 16998 - echo "$as_me:4066: result: $ac_ct_LD" >&5 14484 + echo "$as_me:4 209: result: $ac_ct_LD" >&516999 + echo "$as_me:4054: result: $ac_ct_LD" >&5 14485 17000 echo "${ECHO_T}$ac_ct_LD" >&6 14486 17001 else 14487 17002 - echo "$as_me:4069: result: no" >&5 14488 + echo "$as_me:4 212: result: no" >&517003 + echo "$as_me:4057: result: no" >&5 14489 17004 echo "${ECHO_T}no" >&6 14490 17005 fi 14491 17006 14492 @@ -4078,7 +4 221,7 @@17007 @@ -4078,7 +4066,7 @@ 14493 17008 if test -n "$ac_tool_prefix"; then 14494 17009 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. 14495 17010 set dummy ${ac_tool_prefix}ar; ac_word=$2 14496 17011 -echo "$as_me:4081: checking for $ac_word" >&5 14497 +echo "$as_me:4 224: checking for $ac_word" >&517012 +echo "$as_me:4069: checking for $ac_word" >&5 14498 17013 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14499 17014 if test "${ac_cv_prog_AR+set}" = set; then 14500 17015 echo $ECHO_N "(cached) $ECHO_C" >&6 14501 @@ -4093,7 +4 236,7 @@17016 @@ -4093,7 +4081,7 @@ 14502 17017 test -z "$ac_dir" && ac_dir=. 14503 17018 $as_executable_p "$ac_dir/$ac_word" || continue 14504 17019 ac_cv_prog_AR="${ac_tool_prefix}ar" 14505 17020 -echo "$as_me:4096: found $ac_dir/$ac_word" >&5 14506 +echo "$as_me:4 239: found $ac_dir/$ac_word" >&517021 +echo "$as_me:4084: found $ac_dir/$ac_word" >&5 14507 17022 break 14508 17023 done 14509 17024 14510 @@ -4101,10 +4 244,10 @@17025 @@ -4101,10 +4089,10 @@ 14511 17026 fi 14512 17027 AR=$ac_cv_prog_AR 14513 17028 if test -n "$AR"; then 14514 17029 - echo "$as_me:4104: result: $AR" >&5 14515 + echo "$as_me:4 247: result: $AR" >&517030 + echo "$as_me:4092: result: $AR" >&5 14516 17031 echo "${ECHO_T}$AR" >&6 14517 17032 else 14518 17033 - echo "$as_me:4107: result: no" >&5 14519 + echo "$as_me:4 250: result: no" >&517034 + echo "$as_me:4095: result: no" >&5 14520 17035 echo "${ECHO_T}no" >&6 14521 17036 fi 14522 17037 14523 @@ -4113,7 +4 256,7 @@17038 @@ -4113,7 +4101,7 @@ 14524 17039 ac_ct_AR=$AR 14525 17040 # Extract the first word of "ar", so it can be a program name with args. 14526 17041 set dummy ar; ac_word=$2 14527 17042 -echo "$as_me:4116: checking for $ac_word" >&5 14528 +echo "$as_me:4 259: checking for $ac_word" >&517043 +echo "$as_me:4104: checking for $ac_word" >&5 14529 17044 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14530 17045 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then 14531 17046 echo $ECHO_N "(cached) $ECHO_C" >&6 14532 @@ -4128,7 +4 271,7 @@17047 @@ -4128,7 +4116,7 @@ 14533 17048 test -z "$ac_dir" && ac_dir=. 14534 17049 $as_executable_p "$ac_dir/$ac_word" || continue 14535 17050 ac_cv_prog_ac_ct_AR="ar" 14536 17051 -echo "$as_me:4131: found $ac_dir/$ac_word" >&5 14537 +echo "$as_me:4 274: found $ac_dir/$ac_word" >&517052 +echo "$as_me:4119: found $ac_dir/$ac_word" >&5 14538 17053 break 14539 17054 done 14540 17055 14541 @@ -4137,10 +4 280,10 @@17056 @@ -4137,10 +4125,10 @@ 14542 17057 fi 14543 17058 ac_ct_AR=$ac_cv_prog_ac_ct_AR 14544 17059 if test -n "$ac_ct_AR"; then 14545 17060 - echo "$as_me:4140: result: $ac_ct_AR" >&5 14546 + echo "$as_me:4 283: result: $ac_ct_AR" >&517061 + echo "$as_me:4128: result: $ac_ct_AR" >&5 14547 17062 echo "${ECHO_T}$ac_ct_AR" >&6 14548 17063 else 14549 17064 - echo "$as_me:4143: result: no" >&5 14550 + echo "$as_me:4 286: result: no" >&517065 + echo "$as_me:4131: result: no" >&5 14551 17066 echo "${ECHO_T}no" >&6 14552 17067 fi 14553 17068 14554 @@ -4152,7 +4 295,7 @@17069 @@ -4152,7 +4140,7 @@ 14555 17070 if test -n "$ac_tool_prefix"; then 14556 17071 # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. 14557 17072 set dummy ${ac_tool_prefix}ar; ac_word=$2 14558 17073 -echo "$as_me:4155: checking for $ac_word" >&5 14559 +echo "$as_me:4 298: checking for $ac_word" >&517074 +echo "$as_me:4143: checking for $ac_word" >&5 14560 17075 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14561 17076 if test "${ac_cv_prog_AR+set}" = set; then 14562 17077 echo $ECHO_N "(cached) $ECHO_C" >&6 14563 @@ -4167,7 +4 310,7 @@17078 @@ -4167,7 +4155,7 @@ 14564 17079 test -z "$ac_dir" && ac_dir=. 14565 17080 $as_executable_p "$ac_dir/$ac_word" || continue 14566 17081 ac_cv_prog_AR="${ac_tool_prefix}ar" 14567 17082 -echo "$as_me:4170: found $ac_dir/$ac_word" >&5 14568 +echo "$as_me:4 313: found $ac_dir/$ac_word" >&517083 +echo "$as_me:4158: found $ac_dir/$ac_word" >&5 14569 17084 break 14570 17085 done 14571 17086 14572 @@ -4175,10 +4 318,10 @@17087 @@ -4175,10 +4163,10 @@ 14573 17088 fi 14574 17089 AR=$ac_cv_prog_AR 14575 17090 if test -n "$AR"; then 14576 17091 - echo "$as_me:4178: result: $AR" >&5 14577 + echo "$as_me:4 321: result: $AR" >&517092 + echo "$as_me:4166: result: $AR" >&5 14578 17093 echo "${ECHO_T}$AR" >&6 14579 17094 else 14580 17095 - echo "$as_me:4181: result: no" >&5 14581 + echo "$as_me:4 324: result: no" >&517096 + echo "$as_me:4169: result: no" >&5 14582 17097 echo "${ECHO_T}no" >&6 14583 17098 fi 14584 17099 14585 @@ -4187,7 +4 330,7 @@17100 @@ -4187,7 +4175,7 @@ 14586 17101 ac_ct_AR=$AR 14587 17102 # Extract the first word of "ar", so it can be a program name with args. 14588 17103 set dummy ar; ac_word=$2 14589 17104 -echo "$as_me:4190: checking for $ac_word" >&5 14590 +echo "$as_me:4 333: checking for $ac_word" >&517105 +echo "$as_me:4178: checking for $ac_word" >&5 14591 17106 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14592 17107 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then 14593 17108 echo $ECHO_N "(cached) $ECHO_C" >&6 14594 @@ -4202,7 +4 345,7 @@17109 @@ -4202,7 +4190,7 @@ 14595 17110 test -z "$ac_dir" && ac_dir=. 14596 17111 $as_executable_p "$ac_dir/$ac_word" || continue 14597 17112 ac_cv_prog_ac_ct_AR="ar" 14598 17113 -echo "$as_me:4205: found $ac_dir/$ac_word" >&5 14599 +echo "$as_me:4 348: found $ac_dir/$ac_word" >&517114 +echo "$as_me:4193: found $ac_dir/$ac_word" >&5 14600 17115 break 14601 17116 done 14602 17117 14603 @@ -4211,10 +4 354,10 @@17118 @@ -4211,10 +4199,10 @@ 14604 17119 fi 14605 17120 ac_ct_AR=$ac_cv_prog_ac_ct_AR 14606 17121 if test -n "$ac_ct_AR"; then 14607 17122 - echo "$as_me:4214: result: $ac_ct_AR" >&5 14608 + echo "$as_me:4 357: result: $ac_ct_AR" >&517123 + echo "$as_me:4202: result: $ac_ct_AR" >&5 14609 17124 echo "${ECHO_T}$ac_ct_AR" >&6 14610 17125 else 14611 17126 - echo "$as_me:4217: result: no" >&5 14612 + echo "$as_me:4 360: result: no" >&517127 + echo "$as_me:4205: result: no" >&5 14613 17128 echo "${ECHO_T}no" >&6 14614 17129 fi 14615 17130 14616 @@ -4223,7 +4 366,7 @@17131 @@ -4223,7 +4211,7 @@ 14617 17132 AR="$ac_cv_prog_AR" 14618 17133 fi 14619 17134 14620 17135 -echo "$as_me:4226: checking for options to update archives" >&5 14621 +echo "$as_me:4 369: checking for options to update archives" >&517136 +echo "$as_me:4214: checking for options to update archives" >&5 14622 17137 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6 14623 17138 if test "${cf_cv_ar_flags+set}" = set; then 14624 17139 echo $ECHO_N "(cached) $ECHO_C" >&6 14625 @@ -4246,13 +4 389,13 @@17140 @@ -4246,13 +4234,13 @@ 14626 17141 rm -f conftest.a 14627 17142 14628 17143 cat >conftest.$ac_ext <<EOF 14629 17144 -#line 4249 "configure" 14630 +#line 4 392"configure"17145 +#line 4237 "configure" 14631 17146 int testdata[3] = { 123, 456, 789 }; 14632 17147 EOF 14633 17148 - if { (eval echo "$as_me:4252: \"$ac_compile\"") >&5 14634 + if { (eval echo "$as_me:4 395: \"$ac_compile\"") >&517149 + if { (eval echo "$as_me:4240: \"$ac_compile\"") >&5 14635 17150 (eval $ac_compile) 2>&5 14636 17151 ac_status=$? 14637 17152 - echo "$as_me:4255: \$? = $ac_status" >&5 14638 + echo "$as_me:4 398: \$? = $ac_status" >&517153 + echo "$as_me:4243: \$? = $ac_status" >&5 14639 17154 (exit $ac_status); } ; then 14640 17155 echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5 14641 17156 $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null 14642 @@ -4263,7 +4 406,7 @@17157 @@ -4263,7 +4251,7 @@ 14643 17158 else 14644 17159 test -n "$verbose" && echo " cannot compile test-program" 1>&6 14645 17160 14646 17161 -echo "${as_me:-configure}:4266: testing cannot compile test-program ..." 1>&5 14647 +echo "${as_me:-configure}:4 409: testing cannot compile test-program ..." 1>&517162 +echo "${as_me:-configure}:4254: testing cannot compile test-program ..." 1>&5 14648 17163 14649 17164 break 14650 17165 fi 14651 @@ -4271,7 +4 414,7 @@17166 @@ -4271,7 +4259,7 @@ 14652 17167 rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext 14653 17168 14654 17169 fi 14655 17170 -echo "$as_me:4274: result: $cf_cv_ar_flags" >&5 14656 +echo "$as_me:4 417: result: $cf_cv_ar_flags" >&517171 +echo "$as_me:4262: result: $cf_cv_ar_flags" >&5 14657 17172 echo "${ECHO_T}$cf_cv_ar_flags" >&6 14658 17173 14659 17174 if test -n "$ARFLAGS" ; then 14660 @@ -4282,7 +4 425,7 @@17175 @@ -4282,7 +4270,7 @@ 14661 17176 ARFLAGS=$cf_cv_ar_flags 14662 17177 fi 14663 17178 14664 17179 -echo "$as_me:4285: checking if you have specified an install-prefix" >&5 14665 +echo "$as_me:4 428: checking if you have specified an install-prefix" >&517180 +echo "$as_me:4273: checking if you have specified an install-prefix" >&5 14666 17181 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6 14667 17182 14668 17183 # Check whether --with-install-prefix or --without-install-prefix was given. 14669 @@ -4295,7 +4 438,7 @@17184 @@ -4295,7 +4283,7 @@ 14670 17185 ;; 14671 17186 esac 14672 17187 fi; 14673 17188 -echo "$as_me:4298: result: $DESTDIR" >&5 14674 +echo "$as_me:4 441: result: $DESTDIR" >&517189 +echo "$as_me:4286: result: $DESTDIR" >&5 14675 17190 echo "${ECHO_T}$DESTDIR" >&6 14676 17191 14677 17192 ############################################################################### 14678 @@ -4323,7 +4 466,7 @@17193 @@ -4323,7 +4311,7 @@ 14679 17194 do 14680 17195 # Extract the first word of "$ac_prog", so it can be a program name with args. 14681 17196 set dummy $ac_prog; ac_word=$2 14682 17197 -echo "$as_me:4326: checking for $ac_word" >&5 14683 +echo "$as_me:4 469: checking for $ac_word" >&517198 +echo "$as_me:4314: checking for $ac_word" >&5 14684 17199 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14685 17200 if test "${ac_cv_prog_BUILD_CC+set}" = set; then 14686 17201 echo $ECHO_N "(cached) $ECHO_C" >&6 14687 @@ -4338,7 +4 481,7 @@17202 @@ -4338,7 +4326,7 @@ 14688 17203 test -z "$ac_dir" && ac_dir=. 14689 17204 $as_executable_p "$ac_dir/$ac_word" || continue 14690 17205 ac_cv_prog_BUILD_CC="$ac_prog" 14691 17206 -echo "$as_me:4341: found $ac_dir/$ac_word" >&5 14692 +echo "$as_me:4 484: found $ac_dir/$ac_word" >&517207 +echo "$as_me:4329: found $ac_dir/$ac_word" >&5 14693 17208 break 14694 17209 done 14695 17210 14696 @@ -4346,10 +4 489,10 @@17211 @@ -4346,10 +4334,10 @@ 14697 17212 fi 14698 17213 BUILD_CC=$ac_cv_prog_BUILD_CC 14699 17214 if test -n "$BUILD_CC"; then 14700 17215 - echo "$as_me:4349: result: $BUILD_CC" >&5 14701 + echo "$as_me:4 492: result: $BUILD_CC" >&517216 + echo "$as_me:4337: result: $BUILD_CC" >&5 14702 17217 echo "${ECHO_T}$BUILD_CC" >&6 14703 17218 else 14704 17219 - echo "$as_me:4352: result: no" >&5 14705 + echo "$as_me:4 495: result: no" >&517220 + echo "$as_me:4340: result: no" >&5 14706 17221 echo "${ECHO_T}no" >&6 14707 17222 fi 14708 17223 14709 @@ -4357,12 +4 500,12 @@17224 @@ -4357,12 +4345,12 @@ 14710 17225 done 14711 17226 14712 17227 fi; 14713 17228 - echo "$as_me:4360: checking for native build C compiler" >&5 14714 + echo "$as_me:4 503: checking for native build C compiler" >&517229 + echo "$as_me:4348: checking for native build C compiler" >&5 14715 17230 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6 14716 17231 - echo "$as_me:4362: result: $BUILD_CC" >&5 14717 + echo "$as_me:4 505: result: $BUILD_CC" >&517232 + echo "$as_me:4350: result: $BUILD_CC" >&5 14718 17233 echo "${ECHO_T}$BUILD_CC" >&6 14719 17234 14720 17235 - echo "$as_me:4365: checking for native build C preprocessor" >&5 14721 + echo "$as_me:4 508: checking for native build C preprocessor" >&517236 + echo "$as_me:4353: checking for native build C preprocessor" >&5 14722 17237 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6 14723 17238 14724 17239 # Check whether --with-build-cpp or --without-build-cpp was given. 14725 @@ -4372,10 +4 515,10 @@17240 @@ -4372,10 +4360,10 @@ 14726 17241 else 14727 17242 BUILD_CPP='${BUILD_CC} -E' 14728 17243 fi; 14729 17244 - echo "$as_me:4375: result: $BUILD_CPP" >&5 14730 + echo "$as_me:4 518: result: $BUILD_CPP" >&517245 + echo "$as_me:4363: result: $BUILD_CPP" >&5 14731 17246 echo "${ECHO_T}$BUILD_CPP" >&6 14732 17247 14733 17248 - echo "$as_me:4378: checking for native build C flags" >&5 14734 + echo "$as_me:4 521: checking for native build C flags" >&517249 + echo "$as_me:4366: checking for native build C flags" >&5 14735 17250 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6 14736 17251 14737 17252 # Check whether --with-build-cflags or --without-build-cflags was given. 14738 @@ -4383,10 +4 526,10 @@17253 @@ -4383,10 +4371,10 @@ 14739 17254 withval="$with_build_cflags" 14740 17255 BUILD_CFLAGS="$withval" 14741 17256 fi; 14742 17257 - echo "$as_me:4386: result: $BUILD_CFLAGS" >&5 14743 + echo "$as_me:4 529: result: $BUILD_CFLAGS" >&517258 + echo "$as_me:4374: result: $BUILD_CFLAGS" >&5 14744 17259 echo "${ECHO_T}$BUILD_CFLAGS" >&6 14745 17260 14746 17261 - echo "$as_me:4389: checking for native build C preprocessor-flags" >&5 14747 + echo "$as_me:4 532: checking for native build C preprocessor-flags" >&517262 + echo "$as_me:4377: checking for native build C preprocessor-flags" >&5 14748 17263 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6 14749 17264 14750 17265 # Check whether --with-build-cppflags or --without-build-cppflags was given. 14751 @@ -4394,10 +4 537,10 @@17266 @@ -4394,10 +4382,10 @@ 14752 17267 withval="$with_build_cppflags" 14753 17268 BUILD_CPPFLAGS="$withval" 14754 17269 fi; 14755 17270 - echo "$as_me:4397: result: $BUILD_CPPFLAGS" >&5 14756 + echo "$as_me:4 540: result: $BUILD_CPPFLAGS" >&517271 + echo "$as_me:4385: result: $BUILD_CPPFLAGS" >&5 14757 17272 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6 14758 17273 14759 17274 - echo "$as_me:4400: checking for native build linker-flags" >&5 14760 + echo "$as_me:4 543: checking for native build linker-flags" >&517275 + echo "$as_me:4388: checking for native build linker-flags" >&5 14761 17276 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6 14762 17277 14763 17278 # Check whether --with-build-ldflags or --without-build-ldflags was given. 14764 @@ -4405,10 +4 548,10 @@17279 @@ -4405,10 +4393,10 @@ 14765 17280 withval="$with_build_ldflags" 14766 17281 BUILD_LDFLAGS="$withval" 14767 17282 fi; 14768 17283 - echo "$as_me:4408: result: $BUILD_LDFLAGS" >&5 14769 + echo "$as_me:4 551: result: $BUILD_LDFLAGS" >&517284 + echo "$as_me:4396: result: $BUILD_LDFLAGS" >&5 14770 17285 echo "${ECHO_T}$BUILD_LDFLAGS" >&6 14771 17286 14772 17287 - echo "$as_me:4411: checking for native build linker-libraries" >&5 14773 + echo "$as_me:4 554: checking for native build linker-libraries" >&517288 + echo "$as_me:4399: checking for native build linker-libraries" >&5 14774 17289 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6 14775 17290 14776 17291 # Check whether --with-build-libs or --without-build-libs was given. 14777 @@ -4416,7 +4 559,7 @@17292 @@ -4416,7 +4404,7 @@ 14778 17293 withval="$with_build_libs" 14779 17294 BUILD_LIBS="$withval" 14780 17295 fi; 14781 17296 - echo "$as_me:4419: result: $BUILD_LIBS" >&5 14782 + echo "$as_me:4 562: result: $BUILD_LIBS" >&517297 + echo "$as_me:4407: result: $BUILD_LIBS" >&5 14783 17298 echo "${ECHO_T}$BUILD_LIBS" >&6 14784 17299 14785 17300 # this assumes we're on Unix. 14786 @@ -4426,7 +4 569,7 @@17301 @@ -4426,7 +4414,7 @@ 14787 17302 : ${BUILD_CC:='${CC}'} 14788 17303 14789 17304 if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then 14790 17305 - { { echo "$as_me:4429: error: Cross-build requires two compilers. 14791 + { { echo "$as_me:4 572: error: Cross-build requires two compilers.17306 + { { echo "$as_me:4417: error: Cross-build requires two compilers. 14792 17307 Use --with-build-cc to specify the native compiler." >&5 14793 17308 echo "$as_me: error: Cross-build requires two compilers. 14794 17309 Use --with-build-cc to specify the native compiler." >&2;} 14795 @@ -4451,7 +4 594,7 @@17310 @@ -4451,7 +4439,7 @@ 14796 17311 ### shared, for example. 14797 17312 cf_list_models="" 14798 17313 14799 17314 -echo "$as_me:4454: checking if libtool -version-number should be used" >&5 14800 +echo "$as_me:4 597: checking if libtool -version-number should be used" >&517315 +echo "$as_me:4442: checking if libtool -version-number should be used" >&5 14801 17316 echo $ECHO_N "checking if libtool -version-number should be used... $ECHO_C" >&6 14802 17317 14803 17318 # Check whether --enable-libtool-version or --disable-libtool-version was given. 14804 @@ -4468,7 +4 611,7 @@17319 @@ -4468,7 +4456,7 @@ 14805 17320 cf_libtool_version=yes 14806 17321 14807 17322 fi; 14808 17323 -echo "$as_me:4471: result: $cf_libtool_version" >&5 14809 +echo "$as_me:4 614: result: $cf_libtool_version" >&517324 +echo "$as_me:4459: result: $cf_libtool_version" >&5 14810 17325 echo "${ECHO_T}$cf_libtool_version" >&6 14811 17326 14812 17327 if test "$cf_libtool_version" = yes ; then 14813 @@ -4493,7 +4 636,7 @@17328 @@ -4493,7 +4481,7 @@ 14814 17329 LIB_INSTALL= 14815 17330 LIB_UNINSTALL= 14816 17331 14817 17332 -echo "$as_me:4496: checking if you want to build libraries with libtool" >&5 14818 +echo "$as_me:4 639: checking if you want to build libraries with libtool" >&517333 +echo "$as_me:4484: checking if you want to build libraries with libtool" >&5 14819 17334 echo $ECHO_N "checking if you want to build libraries with libtool... $ECHO_C" >&6 14820 17335 14821 17336 # Check whether --with-libtool or --without-libtool was given. 14822 @@ -4503,7 +4 646,7 @@17337 @@ -4503,7 +4491,7 @@ 14823 17338 else 14824 17339 with_libtool=no 14825 17340 fi; 14826 17341 -echo "$as_me:4506: result: $with_libtool" >&5 14827 +echo "$as_me:4 649: result: $with_libtool" >&517342 +echo "$as_me:4494: result: $with_libtool" >&5 14828 17343 echo "${ECHO_T}$with_libtool" >&6 14829 17344 if test "$with_libtool" != "no"; then 14830 17345 14831 @@ -4534,7 +4677,7 @@ 17346 @@ -4522,7 +4510,7 @@ 17347 ;; 17348 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 17349 ;; 17350 -.\${*prefix}*) #(vi 17351 +.\${*prefix}*|.\${*dir}*) #(vi 17352 eval with_libtool="$with_libtool" 17353 case ".$with_libtool" in #(vi 17354 .NONE/*) 17355 @@ -4534,7 +4522,7 @@ 14832 17356 with_libtool=`echo $with_libtool | sed -e s%NONE%$cf_path_syntax%` 14833 17357 ;; 14834 17358 *) 14835 17359 - { { echo "$as_me:4537: error: expected a pathname, not \"$with_libtool\"" >&5 14836 + { { echo "$as_me:4 680: error: expected a pathname, not \"$with_libtool\"" >&517360 + { { echo "$as_me:4525: error: expected a pathname, not \"$with_libtool\"" >&5 14837 17361 echo "$as_me: error: expected a pathname, not \"$with_libtool\"" >&2;} 14838 17362 { (exit 1); exit 1; }; } 14839 17363 ;; 14840 @@ -4544,7 +4 687,7 @@17364 @@ -4544,7 +4532,7 @@ 14841 17365 else 14842 17366 # Extract the first word of "libtool", so it can be a program name with args. 14843 17367 set dummy libtool; ac_word=$2 14844 17368 -echo "$as_me:4547: checking for $ac_word" >&5 14845 +echo "$as_me:4 690: checking for $ac_word" >&517369 +echo "$as_me:4535: checking for $ac_word" >&5 14846 17370 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 14847 17371 if test "${ac_cv_path_LIBTOOL+set}" = set; then 14848 17372 echo $ECHO_N "(cached) $ECHO_C" >&6 14849 @@ -4561,7 +4 704,7 @@17373 @@ -4561,7 +4549,7 @@ 14850 17374 test -z "$ac_dir" && ac_dir=. 14851 17375 if $as_executable_p "$ac_dir/$ac_word"; then 14852 17376 ac_cv_path_LIBTOOL="$ac_dir/$ac_word" 14853 17377 - echo "$as_me:4564: found $ac_dir/$ac_word" >&5 14854 + echo "$as_me:4 707: found $ac_dir/$ac_word" >&517378 + echo "$as_me:4552: found $ac_dir/$ac_word" >&5 14855 17379 break 14856 17380 fi 14857 17381 done 14858 @@ -4572,20 +4 715,20 @@17382 @@ -4572,20 +4560,20 @@ 14859 17383 LIBTOOL=$ac_cv_path_LIBTOOL 14860 17384 14861 17385 if test -n "$LIBTOOL"; then 14862 17386 - echo "$as_me:4575: result: $LIBTOOL" >&5 14863 + echo "$as_me:4 718: result: $LIBTOOL" >&517387 + echo "$as_me:4563: result: $LIBTOOL" >&5 14864 17388 echo "${ECHO_T}$LIBTOOL" >&6 14865 17389 else 14866 17390 - echo "$as_me:4578: result: no" >&5 14867 + echo "$as_me:4 721: result: no" >&517391 + echo "$as_me:4566: result: no" >&5 14868 17392 echo "${ECHO_T}no" >&6 14869 17393 fi … … 14872 17396 if test -z "$LIBTOOL" ; then 14873 17397 - { { echo "$as_me:4584: error: Cannot find libtool" >&5 14874 + { { echo "$as_me:4 727: error: Cannot find libtool" >&517398 + { { echo "$as_me:4572: error: Cannot find libtool" >&5 14875 17399 echo "$as_me: error: Cannot find libtool" >&2;} 14876 17400 { (exit 1); exit 1; }; } … … 14881 17405 LIB_SUFFIX=.la 14882 17406 LIB_CLEAN='${LIBTOOL} --mode=clean' 14883 @@ -4596,17 +4 739,17 @@17407 @@ -4596,17 +4584,17 @@ 14884 17408 LIB_PREP=: 14885 17409 14886 17410 # Show the version of libtool 14887 17411 - echo "$as_me:4599: checking version of libtool" >&5 14888 + echo "$as_me:4 742: checking version of libtool" >&517412 + echo "$as_me:4587: checking version of libtool" >&5 14889 17413 echo $ECHO_N "checking version of libtool... $ECHO_C" >&6 14890 17414 … … 14894 17418 cf_cv_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '/^$/d' |sed -e '2,$d' -e 's/([^)]*)//g' -e 's/^[^1-9]*//' -e 's/[^0-9.].*//'` 14895 17419 - echo "$as_me:4606: result: $cf_cv_libtool_version" >&5 14896 + echo "$as_me:4 749: result: $cf_cv_libtool_version" >&517420 + echo "$as_me:4594: result: $cf_cv_libtool_version" >&5 14897 17421 echo "${ECHO_T}$cf_cv_libtool_version" >&6 14898 17422 if test -z "$cf_cv_libtool_version" ; then 14899 17423 - { { echo "$as_me:4609: error: This is not GNU libtool" >&5 14900 + { { echo "$as_me:4 752: error: This is not GNU libtool" >&517424 + { { echo "$as_me:4597: error: This is not GNU libtool" >&5 14901 17425 echo "$as_me: error: This is not GNU libtool" >&2;} 14902 17426 { (exit 1); exit 1; }; } 14903 17427 fi 14904 @@ -4614,7 +4 757,7 @@17428 @@ -4614,7 +4602,7 @@ 14905 17429 # special hack to add -no-undefined (which libtool should do for itself) 14906 17430 LT_UNDEF= … … 14911 17435 ;; 14912 17436 esac 14913 @@ -4642,7 +4 785,7 @@17437 @@ -4642,7 +4630,7 @@ 14914 17438 14915 17439 else 14916 17440 14917 17441 -echo "$as_me:4645: checking if you want to build shared libraries" >&5 14918 +echo "$as_me:4 788: checking if you want to build shared libraries" >&517442 +echo "$as_me:4633: checking if you want to build shared libraries" >&5 14919 17443 echo $ECHO_N "checking if you want to build shared libraries... $ECHO_C" >&6 14920 17444 14921 17445 # Check whether --with-shared or --without-shared was given. 14922 @@ -4652,11 +4 795,11 @@17446 @@ -4652,11 +4640,11 @@ 14923 17447 else 14924 17448 with_shared=no 14925 17449 fi; 14926 17450 -echo "$as_me:4655: result: $with_shared" >&5 14927 +echo "$as_me:4 798: result: $with_shared" >&517451 +echo "$as_me:4643: result: $with_shared" >&5 14928 17452 echo "${ECHO_T}$with_shared" >&6 14929 17453 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared" 14930 17454 14931 17455 -echo "$as_me:4659: checking if you want to build static libraries" >&5 14932 +echo "$as_me:4 802: checking if you want to build static libraries" >&517456 +echo "$as_me:4647: checking if you want to build static libraries" >&5 14933 17457 echo $ECHO_N "checking if you want to build static libraries... $ECHO_C" >&6 14934 17458 14935 17459 # Check whether --with-normal or --without-normal was given. 14936 @@ -4666,11 +4 809,11 @@17460 @@ -4666,11 +4654,11 @@ 14937 17461 else 14938 17462 with_normal=yes 14939 17463 fi; 14940 17464 -echo "$as_me:4669: result: $with_normal" >&5 14941 +echo "$as_me:4 812: result: $with_normal" >&517465 +echo "$as_me:4657: result: $with_normal" >&5 14942 17466 echo "${ECHO_T}$with_normal" >&6 14943 17467 test "$with_normal" = "yes" && cf_list_models="$cf_list_models normal" 14944 17468 14945 17469 -echo "$as_me:4673: checking if you want to build debug libraries" >&5 14946 +echo "$as_me:4 816: checking if you want to build debug libraries" >&517470 +echo "$as_me:4661: checking if you want to build debug libraries" >&5 14947 17471 echo $ECHO_N "checking if you want to build debug libraries... $ECHO_C" >&6 14948 17472 14949 17473 # Check whether --with-debug or --without-debug was given. 14950 @@ -4680,11 +4 823,11 @@17474 @@ -4680,11 +4668,11 @@ 14951 17475 else 14952 17476 with_debug=yes 14953 17477 fi; 14954 17478 -echo "$as_me:4683: result: $with_debug" >&5 14955 +echo "$as_me:4 826: result: $with_debug" >&517479 +echo "$as_me:4671: result: $with_debug" >&5 14956 17480 echo "${ECHO_T}$with_debug" >&6 14957 17481 test "$with_debug" = "yes" && cf_list_models="$cf_list_models debug" 14958 17482 14959 17483 -echo "$as_me:4687: checking if you want to build profiling libraries" >&5 14960 +echo "$as_me:4 830: checking if you want to build profiling libraries" >&517484 +echo "$as_me:4675: checking if you want to build profiling libraries" >&5 14961 17485 echo $ECHO_N "checking if you want to build profiling libraries... $ECHO_C" >&6 14962 17486 14963 17487 # Check whether --with-profile or --without-profile was given. 14964 @@ -4694,7 +4 837,7 @@17488 @@ -4694,7 +4682,7 @@ 14965 17489 else 14966 17490 with_profile=no 14967 17491 fi; 14968 17492 -echo "$as_me:4697: result: $with_profile" >&5 14969 +echo "$as_me:4 840: result: $with_profile" >&517493 +echo "$as_me:4685: result: $with_profile" >&5 14970 17494 echo "${ECHO_T}$with_profile" >&6 14971 17495 test "$with_profile" = "yes" && cf_list_models="$cf_list_models profile" 14972 17496 14973 @@ -4702,19 +4 845,19 @@17497 @@ -4702,19 +4690,19 @@ 14974 17498 14975 17499 ############################################################################### 14976 17500 14977 17501 -echo "$as_me:4705: checking for specified models" >&5 14978 +echo "$as_me:4 848: checking for specified models" >&517502 +echo "$as_me:4693: checking for specified models" >&5 14979 17503 echo $ECHO_N "checking for specified models... $ECHO_C" >&6 14980 17504 test -z "$cf_list_models" && cf_list_models=normal 14981 17505 test "$with_libtool" != "no" && cf_list_models=libtool 14982 17506 -echo "$as_me:4709: result: $cf_list_models" >&5 14983 +echo "$as_me:4 852: result: $cf_list_models" >&517507 +echo "$as_me:4697: result: $cf_list_models" >&5 14984 17508 echo "${ECHO_T}$cf_list_models" >&6 14985 17509 … … 14987 17511 ### up test-applications. 14988 17512 -echo "$as_me:4714: checking for default model" >&5 14989 +echo "$as_me:4 857: checking for default model" >&517513 +echo "$as_me:4702: checking for default model" >&5 14990 17514 echo $ECHO_N "checking for default model... $ECHO_C" >&6 14991 17515 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'` 14992 17516 -echo "$as_me:4717: result: $DFT_LWR_MODEL" >&5 14993 +echo "$as_me:4 860: result: $DFT_LWR_MODEL" >&517517 +echo "$as_me:4705: result: $DFT_LWR_MODEL" >&5 14994 17518 echo "${ECHO_T}$DFT_LWR_MODEL" >&6 14995 17519 14996 17520 DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` 14997 @@ -4728,6 +4 871,22 @@17521 @@ -4728,6 +4716,22 @@ 14998 17522 LIB_DIR=../lib 14999 17523 LIB_2ND=../../lib 15000 17524 15001 +echo "$as_me:4 874: checking if you want to have a library-prefix" >&517525 +echo "$as_me:4719: checking if you want to have a library-prefix" >&5 15002 17526 +echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6 15003 17527 + … … 15009 17533 + with_lib_prefix=auto 15010 17534 +fi; 15011 +echo "$as_me:4 884: result: $with_lib_prefix" >&517535 +echo "$as_me:4729: result: $with_lib_prefix" >&5 15012 17536 +echo "${ECHO_T}$with_lib_prefix" >&6 15013 17537 + … … 15018 17542 OS/2*|os2*) #(vi 15019 17543 LIB_PREFIX='' 15020 @@ -4737,13 +4 896,18 @@17544 @@ -4737,13 +4741,18 @@ 15021 17545 esac 15022 17546 cf_prefix=$LIB_PREFIX … … 15035 17559 15036 17560 -echo "$as_me:4746: checking if you want to build a separate terminfo library" >&5 15037 +echo "$as_me:4 910: checking if you want to build a separate terminfo library" >&517561 +echo "$as_me:4755: checking if you want to build a separate terminfo library" >&5 15038 17562 echo $ECHO_N "checking if you want to build a separate terminfo library... $ECHO_C" >&6 15039 17563 15040 17564 # Check whether --with-termlib or --without-termlib was given. 15041 @@ -4753,10 +4 917,10 @@17565 @@ -4753,10 +4762,10 @@ 15042 17566 else 15043 17567 with_termlib=no 15044 17568 fi; 15045 17569 -echo "$as_me:4756: result: $with_termlib" >&5 15046 +echo "$as_me:4 920: result: $with_termlib" >&517570 +echo "$as_me:4765: result: $with_termlib" >&5 15047 17571 echo "${ECHO_T}$with_termlib" >&6 15048 17572 15049 17573 -echo "$as_me:4759: checking if you want to build a separate tic library" >&5 15050 +echo "$as_me:4 923: checking if you want to build a separate tic library" >&517574 +echo "$as_me:4768: checking if you want to build a separate tic library" >&5 15051 17575 echo $ECHO_N "checking if you want to build a separate tic library... $ECHO_C" >&6 15052 17576 15053 17577 # Check whether --with-ticlib or --without-ticlib was given. 15054 @@ -4766,13 +4 930,13 @@17578 @@ -4766,13 +4775,13 @@ 15055 17579 else 15056 17580 with_ticlib=no 15057 17581 fi; 15058 17582 -echo "$as_me:4769: result: $with_ticlib" >&5 15059 +echo "$as_me:4 933: result: $with_ticlib" >&517583 +echo "$as_me:4778: result: $with_ticlib" >&5 15060 17584 echo "${ECHO_T}$with_ticlib" >&6 15061 17585 … … 15064 17588 15065 17589 -echo "$as_me:4775: checking if you want to link with the GPM mouse library" >&5 15066 +echo "$as_me:4 939: checking if you want to link with the GPM mouse library" >&517590 +echo "$as_me:4784: checking if you want to link with the GPM mouse library" >&5 15067 17591 echo $ECHO_N "checking if you want to link with the GPM mouse library... $ECHO_C" >&6 15068 17592 15069 17593 # Check whether --with-gpm or --without-gpm was given. 15070 @@ -4782,27 +4 946,27 @@17594 @@ -4782,27 +4791,27 @@ 15071 17595 else 15072 17596 with_gpm=maybe 15073 17597 fi; 15074 17598 -echo "$as_me:4785: result: $with_gpm" >&5 15075 +echo "$as_me:4 949: result: $with_gpm" >&517599 +echo "$as_me:4794: result: $with_gpm" >&5 15076 17600 echo "${ECHO_T}$with_gpm" >&6 15077 17601 15078 17602 if test "$with_gpm" != no ; then 15079 17603 - echo "$as_me:4789: checking for gpm.h" >&5 15080 + echo "$as_me:4 953: checking for gpm.h" >&517604 + echo "$as_me:4798: checking for gpm.h" >&5 15081 17605 echo $ECHO_N "checking for gpm.h... $ECHO_C" >&6 15082 17606 if test "${ac_cv_header_gpm_h+set}" = set; then … … 15085 17609 cat >conftest.$ac_ext <<_ACEOF 15086 17610 -#line 4795 "configure" 15087 +#line 4 959"configure"17611 +#line 4804 "configure" 15088 17612 #include "confdefs.h" 15089 17613 #include <gpm.h> 15090 17614 _ACEOF 15091 17615 -if { (eval echo "$as_me:4799: \"$ac_cpp conftest.$ac_ext\"") >&5 15092 +if { (eval echo "$as_me:4 963: \"$ac_cpp conftest.$ac_ext\"") >&517616 +if { (eval echo "$as_me:4808: \"$ac_cpp conftest.$ac_ext\"") >&5 15093 17617 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 15094 17618 ac_status=$? … … 15097 17621 cat conftest.err >&5 15098 17622 - echo "$as_me:4805: \$? = $ac_status" >&5 15099 + echo "$as_me:4 969: \$? = $ac_status" >&517623 + echo "$as_me:4814: \$? = $ac_status" >&5 15100 17624 (exit $ac_status); } >/dev/null; then 15101 17625 if test -s conftest.err; then 15102 17626 ac_cpp_err=$ac_c_preproc_warn_flag 15103 @@ -4821,7 +4 985,7 @@17627 @@ -4821,7 +4830,7 @@ 15104 17628 fi 15105 17629 rm -f conftest.err conftest.$ac_ext 15106 17630 fi 15107 17631 -echo "$as_me:4824: result: $ac_cv_header_gpm_h" >&5 15108 +echo "$as_me:4 988: result: $ac_cv_header_gpm_h" >&517632 +echo "$as_me:4833: result: $ac_cv_header_gpm_h" >&5 15109 17633 echo "${ECHO_T}$ac_cv_header_gpm_h" >&6 15110 17634 if test $ac_cv_header_gpm_h = yes; then 15111 17635 15112 @@ -4832,14 +4 996,14 @@17636 @@ -4832,14 +4841,14 @@ 15113 17637 if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then 15114 17638 test -n "$verbose" && echo " assuming we really have GPM library" 1>&6 15115 17639 15116 17640 -echo "${as_me:-configure}:4835: testing assuming we really have GPM library ..." 1>&5 15117 +echo "${as_me:-configure}:4 999: testing assuming we really have GPM library ..." 1>&517641 +echo "${as_me:-configure}:4844: testing assuming we really have GPM library ..." 1>&5 15118 17642 15119 17643 cat >>confdefs.h <<\EOF … … 15123 17647 else 15124 17648 - echo "$as_me:4842: checking for Gpm_Open in -lgpm" >&5 15125 + echo "$as_me: 5006: checking for Gpm_Open in -lgpm" >&517649 + echo "$as_me:4851: checking for Gpm_Open in -lgpm" >&5 15126 17650 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 15127 17651 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then 15128 17652 echo $ECHO_N "(cached) $ECHO_C" >&6 15129 @@ -4847,7 + 5011,7 @@17653 @@ -4847,7 +4856,7 @@ 15130 17654 ac_check_lib_save_LIBS=$LIBS 15131 17655 LIBS="-lgpm $LIBS" 15132 17656 cat >conftest.$ac_ext <<_ACEOF 15133 17657 -#line 4850 "configure" 15134 +#line 5014"configure"17658 +#line 4859 "configure" 15135 17659 #include "confdefs.h" 15136 17660 15137 17661 /* Override any gcc2 internal prototype to avoid an error. */ 15138 @@ -4866,16 + 5030,16 @@17662 @@ -4866,16 +4875,16 @@ 15139 17663 } 15140 17664 _ACEOF 15141 17665 rm -f conftest.$ac_objext conftest$ac_exeext 15142 17666 -if { (eval echo "$as_me:4869: \"$ac_link\"") >&5 15143 +if { (eval echo "$as_me: 5033: \"$ac_link\"") >&517667 +if { (eval echo "$as_me:4878: \"$ac_link\"") >&5 15144 17668 (eval $ac_link) 2>&5 15145 17669 ac_status=$? 15146 17670 - echo "$as_me:4872: \$? = $ac_status" >&5 15147 + echo "$as_me: 5036: \$? = $ac_status" >&517671 + echo "$as_me:4881: \$? = $ac_status" >&5 15148 17672 (exit $ac_status); } && 15149 17673 { ac_try='test -s conftest$ac_exeext' 15150 17674 - { (eval echo "$as_me:4875: \"$ac_try\"") >&5 15151 + { (eval echo "$as_me: 5039: \"$ac_try\"") >&517675 + { (eval echo "$as_me:4884: \"$ac_try\"") >&5 15152 17676 (eval $ac_try) 2>&5 15153 17677 ac_status=$? 15154 17678 - echo "$as_me:4878: \$? = $ac_status" >&5 15155 + echo "$as_me: 5042: \$? = $ac_status" >&517679 + echo "$as_me:4887: \$? = $ac_status" >&5 15156 17680 (exit $ac_status); }; }; then 15157 17681 ac_cv_lib_gpm_Gpm_Open=yes 15158 17682 else 15159 @@ -4886,13 + 5050,13 @@17683 @@ -4886,13 +4895,13 @@ 15160 17684 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15161 17685 LIBS=$ac_check_lib_save_LIBS 15162 17686 fi 15163 17687 -echo "$as_me:4889: result: $ac_cv_lib_gpm_Gpm_Open" >&5 15164 +echo "$as_me: 5053: result: $ac_cv_lib_gpm_Gpm_Open" >&517688 +echo "$as_me:4898: result: $ac_cv_lib_gpm_Gpm_Open" >&5 15165 17689 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 15166 17690 if test $ac_cv_lib_gpm_Gpm_Open = yes; then … … 15169 17693 15170 17694 - { { echo "$as_me:4895: error: Cannot link with GPM library" >&5 15171 + { { echo "$as_me: 5059: error: Cannot link with GPM library" >&517695 + { { echo "$as_me:4904: error: Cannot link with GPM library" >&5 15172 17696 echo "$as_me: error: Cannot link with GPM library" >&2;} 15173 17697 { (exit 1); exit 1; }; } 15174 17698 fi 15175 @@ -4902,7 + 5066,7 @@17699 @@ -4902,7 +4911,7 @@ 15176 17700 15177 17701 else 15178 17702 15179 17703 - test "$with_gpm" != maybe && { echo "$as_me:4905: WARNING: Cannot find GPM header" >&5 15180 + test "$with_gpm" != maybe && { echo "$as_me: 5069: WARNING: Cannot find GPM header" >&517704 + test "$with_gpm" != maybe && { echo "$as_me:4914: WARNING: Cannot find GPM header" >&5 15181 17705 echo "$as_me: WARNING: Cannot find GPM header" >&2;} 15182 17706 with_gpm=no 15183 17707 15184 @@ -4911,7 + 5075,7 @@17708 @@ -4911,7 +4920,7 @@ 15185 17709 fi 15186 17710 15187 17711 if test "$with_gpm" != no ; then 15188 17712 - echo "$as_me:4914: checking if you want to load GPM dynamically" >&5 15189 + echo "$as_me: 5078: checking if you want to load GPM dynamically" >&517713 + echo "$as_me:4923: checking if you want to load GPM dynamically" >&5 15190 17714 echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6 15191 17715 15192 17716 # Check whether --with-dlsym or --without-dlsym was given. 15193 @@ -4921,18 + 5085,18 @@17717 @@ -4921,18 +4930,18 @@ 15194 17718 else 15195 17719 with_dlsym=yes 15196 17720 fi; 15197 17721 - echo "$as_me:4924: result: $with_dlsym" >&5 15198 + echo "$as_me: 5088: result: $with_dlsym" >&517722 + echo "$as_me:4933: result: $with_dlsym" >&5 15199 17723 echo "${ECHO_T}$with_dlsym" >&6 15200 17724 if test "$with_dlsym" = yes ; then … … 15202 17726 cf_have_dlsym=no 15203 17727 -echo "$as_me:4929: checking for dlsym" >&5 15204 +echo "$as_me: 5093: checking for dlsym" >&517728 +echo "$as_me:4938: checking for dlsym" >&5 15205 17729 echo $ECHO_N "checking for dlsym... $ECHO_C" >&6 15206 17730 if test "${ac_cv_func_dlsym+set}" = set; then … … 15209 17733 cat >conftest.$ac_ext <<_ACEOF 15210 17734 -#line 4935 "configure" 15211 +#line 5099"configure"17735 +#line 4944 "configure" 15212 17736 #include "confdefs.h" 15213 17737 /* System header to define __stub macros and hopefully few prototypes, 15214 17738 which can conflict with char dlsym (); below. */ 15215 @@ -4963,16 +5127,16 @@ 17739 @@ -4955,7 +4964,7 @@ 17740 #if defined (__stub_dlsym) || defined (__stub___dlsym) 17741 choke me 17742 #else 17743 -f = dlsym; 17744 +f = dlsym; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 17745 #endif 17746 17747 ; 17748 @@ -4963,16 +4972,16 @@ 15216 17749 } 15217 17750 _ACEOF 15218 17751 rm -f conftest.$ac_objext conftest$ac_exeext 15219 17752 -if { (eval echo "$as_me:4966: \"$ac_link\"") >&5 15220 +if { (eval echo "$as_me: 5130: \"$ac_link\"") >&517753 +if { (eval echo "$as_me:4975: \"$ac_link\"") >&5 15221 17754 (eval $ac_link) 2>&5 15222 17755 ac_status=$? 15223 17756 - echo "$as_me:4969: \$? = $ac_status" >&5 15224 + echo "$as_me: 5133: \$? = $ac_status" >&517757 + echo "$as_me:4978: \$? = $ac_status" >&5 15225 17758 (exit $ac_status); } && 15226 17759 { ac_try='test -s conftest$ac_exeext' 15227 17760 - { (eval echo "$as_me:4972: \"$ac_try\"") >&5 15228 + { (eval echo "$as_me: 5136: \"$ac_try\"") >&517761 + { (eval echo "$as_me:4981: \"$ac_try\"") >&5 15229 17762 (eval $ac_try) 2>&5 15230 17763 ac_status=$? 15231 17764 - echo "$as_me:4975: \$? = $ac_status" >&5 15232 + echo "$as_me: 5139: \$? = $ac_status" >&517765 + echo "$as_me:4984: \$? = $ac_status" >&5 15233 17766 (exit $ac_status); }; }; then 15234 17767 ac_cv_func_dlsym=yes 15235 17768 else 15236 @@ -4982,14 + 5146,14 @@17769 @@ -4982,14 +4991,14 @@ 15237 17770 fi 15238 17771 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15239 17772 fi 15240 17773 -echo "$as_me:4985: result: $ac_cv_func_dlsym" >&5 15241 +echo "$as_me: 5149: result: $ac_cv_func_dlsym" >&517774 +echo "$as_me:4994: result: $ac_cv_func_dlsym" >&5 15242 17775 echo "${ECHO_T}$ac_cv_func_dlsym" >&6 15243 17776 if test $ac_cv_func_dlsym = yes; then … … 15247 17780 cf_have_libdl=no 15248 17781 -echo "$as_me:4992: checking for dlsym in -ldl" >&5 15249 +echo "$as_me:5 156: checking for dlsym in -ldl" >&517782 +echo "$as_me:5001: checking for dlsym in -ldl" >&5 15250 17783 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 15251 17784 if test "${ac_cv_lib_dl_dlsym+set}" = set; then 15252 17785 echo $ECHO_N "(cached) $ECHO_C" >&6 15253 @@ -4997,7 +5 161,7 @@17786 @@ -4997,7 +5006,7 @@ 15254 17787 ac_check_lib_save_LIBS=$LIBS 15255 17788 LIBS="-ldl $LIBS" 15256 17789 cat >conftest.$ac_ext <<_ACEOF 15257 17790 -#line 5000 "configure" 15258 +#line 5 164"configure"17791 +#line 5009 "configure" 15259 17792 #include "confdefs.h" 15260 17793 15261 17794 /* Override any gcc2 internal prototype to avoid an error. */ 15262 @@ -5016,16 +5 180,16 @@17795 @@ -5016,16 +5025,16 @@ 15263 17796 } 15264 17797 _ACEOF 15265 17798 rm -f conftest.$ac_objext conftest$ac_exeext 15266 17799 -if { (eval echo "$as_me:5019: \"$ac_link\"") >&5 15267 +if { (eval echo "$as_me:5 183: \"$ac_link\"") >&517800 +if { (eval echo "$as_me:5028: \"$ac_link\"") >&5 15268 17801 (eval $ac_link) 2>&5 15269 17802 ac_status=$? 15270 17803 - echo "$as_me:5022: \$? = $ac_status" >&5 15271 + echo "$as_me:5 186: \$? = $ac_status" >&517804 + echo "$as_me:5031: \$? = $ac_status" >&5 15272 17805 (exit $ac_status); } && 15273 17806 { ac_try='test -s conftest$ac_exeext' 15274 17807 - { (eval echo "$as_me:5025: \"$ac_try\"") >&5 15275 + { (eval echo "$as_me:5 189: \"$ac_try\"") >&517808 + { (eval echo "$as_me:5034: \"$ac_try\"") >&5 15276 17809 (eval $ac_try) 2>&5 15277 17810 ac_status=$? 15278 17811 - echo "$as_me:5028: \$? = $ac_status" >&5 15279 + echo "$as_me:5 192: \$? = $ac_status" >&517812 + echo "$as_me:5037: \$? = $ac_status" >&5 15280 17813 (exit $ac_status); }; }; then 15281 17814 ac_cv_lib_dl_dlsym=yes 15282 17815 else 15283 @@ -5036,7 +5 200,7 @@17816 @@ -5036,7 +5045,7 @@ 15284 17817 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15285 17818 LIBS=$ac_check_lib_save_LIBS 15286 17819 fi 15287 17820 -echo "$as_me:5039: result: $ac_cv_lib_dl_dlsym" >&5 15288 +echo "$as_me:5 203: result: $ac_cv_lib_dl_dlsym" >&517821 +echo "$as_me:5048: result: $ac_cv_lib_dl_dlsym" >&5 15289 17822 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 15290 17823 if test $ac_cv_lib_dl_dlsym = yes; then 15291 17824 15292 @@ -5049,10 +5 213,10 @@17825 @@ -5049,10 +5058,10 @@ 15293 17826 if test "$cf_have_dlsym" = yes ; then 15294 17827 test "$cf_have_libdl" = yes && LIBS="-ldl $LIBS" 15295 17828 15296 17829 - echo "$as_me:5052: checking whether able to link to dl*() functions" >&5 15297 + echo "$as_me:5 216: checking whether able to link to dl*() functions" >&517830 + echo "$as_me:5061: checking whether able to link to dl*() functions" >&5 15298 17831 echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6 15299 17832 cat >conftest.$ac_ext <<_ACEOF 15300 17833 -#line 5055 "configure" 15301 +#line 5 219"configure"17834 +#line 5064 "configure" 15302 17835 #include "confdefs.h" 15303 17836 #include <dlfcn.h> 15304 17837 int 15305 @@ -5070,16 +5 234,16 @@17838 @@ -5070,16 +5079,16 @@ 15306 17839 } 15307 17840 _ACEOF 15308 17841 rm -f conftest.$ac_objext conftest$ac_exeext 15309 17842 -if { (eval echo "$as_me:5073: \"$ac_link\"") >&5 15310 +if { (eval echo "$as_me:5 237: \"$ac_link\"") >&517843 +if { (eval echo "$as_me:5082: \"$ac_link\"") >&5 15311 17844 (eval $ac_link) 2>&5 15312 17845 ac_status=$? 15313 17846 - echo "$as_me:5076: \$? = $ac_status" >&5 15314 + echo "$as_me:5 240: \$? = $ac_status" >&517847 + echo "$as_me:5085: \$? = $ac_status" >&5 15315 17848 (exit $ac_status); } && 15316 17849 { ac_try='test -s conftest$ac_exeext' 15317 17850 - { (eval echo "$as_me:5079: \"$ac_try\"") >&5 15318 + { (eval echo "$as_me:5 243: \"$ac_try\"") >&517851 + { (eval echo "$as_me:5088: \"$ac_try\"") >&5 15319 17852 (eval $ac_try) 2>&5 15320 17853 ac_status=$? 15321 17854 - echo "$as_me:5082: \$? = $ac_status" >&5 15322 + echo "$as_me:5 246: \$? = $ac_status" >&517855 + echo "$as_me:5091: \$? = $ac_status" >&5 15323 17856 (exit $ac_status); }; }; then 15324 17857 15325 17858 cat >>confdefs.h <<\EOF 15326 @@ -5090,15 +5 254,15 @@17859 @@ -5090,15 +5099,15 @@ 15327 17860 echo "$as_me: failed program was:" >&5 15328 17861 cat conftest.$ac_ext >&5 15329 17862 15330 17863 - { { echo "$as_me:5093: error: Cannot link test program for libdl" >&5 15331 + { { echo "$as_me:5 257: error: Cannot link test program for libdl" >&517864 + { { echo "$as_me:5102: error: Cannot link test program for libdl" >&5 15332 17865 echo "$as_me: error: Cannot link test program for libdl" >&2;} 15333 17866 { (exit 1); exit 1; }; } … … 15335 17868 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15336 17869 - echo "$as_me:5098: result: ok" >&5 15337 + echo "$as_me:5 262: result: ok" >&517870 + echo "$as_me:5107: result: ok" >&5 15338 17871 echo "${ECHO_T}ok" >&6 15339 17872 else 15340 17873 - { { echo "$as_me:5101: error: Cannot find dlsym function" >&5 15341 + { { echo "$as_me:5 265: error: Cannot find dlsym function" >&517874 + { { echo "$as_me:5110: error: Cannot find dlsym function" >&5 15342 17875 echo "$as_me: error: Cannot find dlsym function" >&2;} 15343 17876 { (exit 1); exit 1; }; } 15344 17877 fi 15345 @@ -5106,12 +5 270,12 @@17878 @@ -5106,12 +5115,12 @@ 15346 17879 if test "$with_gpm" != yes ; then 15347 17880 test -n "$verbose" && echo " assuming soname for gpm is $with_gpm" 1>&6 15348 17881 15349 17882 -echo "${as_me:-configure}:5109: testing assuming soname for gpm is $with_gpm ..." 1>&5 15350 +echo "${as_me:-configure}:5 273: testing assuming soname for gpm is $with_gpm ..." 1>&517883 +echo "${as_me:-configure}:5118: testing assuming soname for gpm is $with_gpm ..." 1>&5 15351 17884 15352 17885 cf_cv_gpm_soname="$with_gpm" … … 15354 17887 15355 17888 -echo "$as_me:5114: checking for soname of gpm library" >&5 15356 +echo "$as_me:5 278: checking for soname of gpm library" >&517889 +echo "$as_me:5123: checking for soname of gpm library" >&5 15357 17890 echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6 15358 17891 if test "${cf_cv_gpm_soname+set}" = set; then 15359 17892 echo $ECHO_N "(cached) $ECHO_C" >&6 15360 @@ -5129,15 +5 293,15 @@17893 @@ -5129,15 +5138,15 @@ 15361 17894 CF_EOF 15362 17895 cf_save_LIBS="$LIBS" 15363 17896 LIBS="-lgpm $LIBS" 15364 17897 - if { (eval echo "$as_me:5132: \"$ac_compile\"") >&5 15365 + if { (eval echo "$as_me:5 296: \"$ac_compile\"") >&517898 + if { (eval echo "$as_me:5141: \"$ac_compile\"") >&5 15366 17899 (eval $ac_compile) 2>&5 15367 17900 ac_status=$? 15368 17901 - echo "$as_me:5135: \$? = $ac_status" >&5 15369 + echo "$as_me:5 299: \$? = $ac_status" >&517902 + echo "$as_me:5144: \$? = $ac_status" >&5 15370 17903 (exit $ac_status); } ; then 15371 17904 - if { (eval echo "$as_me:5137: \"$ac_link\"") >&5 15372 + if { (eval echo "$as_me:5 301: \"$ac_link\"") >&517905 + if { (eval echo "$as_me:5146: \"$ac_link\"") >&5 15373 17906 (eval $ac_link) 2>&5 15374 17907 ac_status=$? 15375 17908 - echo "$as_me:5140: \$? = $ac_status" >&5 15376 + echo "$as_me:5 304: \$? = $ac_status" >&517909 + echo "$as_me:5149: \$? = $ac_status" >&5 15377 17910 (exit $ac_status); } ; then 15378 17911 cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.` 15379 17912 test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown 15380 @@ -5148,7 +5 312,7 @@17913 @@ -5148,7 +5157,7 @@ 15381 17914 fi 15382 17915 15383 17916 fi 15384 17917 -echo "$as_me:5151: result: $cf_cv_gpm_soname" >&5 15385 +echo "$as_me:5 315: result: $cf_cv_gpm_soname" >&517918 +echo "$as_me:5160: result: $cf_cv_gpm_soname" >&5 15386 17919 echo "${ECHO_T}$cf_cv_gpm_soname" >&6 15387 17920 15388 17921 fi 15389 @@ -5165,7 +5 329,7 @@17922 @@ -5165,7 +5174,7 @@ 15390 17923 #define HAVE_LIBGPM 1 15391 17924 EOF 15392 17925 15393 17926 -echo "$as_me:5168: checking for Gpm_Wgetch in -lgpm" >&5 15394 +echo "$as_me:5 332: checking for Gpm_Wgetch in -lgpm" >&517927 +echo "$as_me:5177: checking for Gpm_Wgetch in -lgpm" >&5 15395 17928 echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6 15396 17929 if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then 15397 17930 echo $ECHO_N "(cached) $ECHO_C" >&6 15398 @@ -5173,7 +5 337,7 @@17931 @@ -5173,7 +5182,7 @@ 15399 17932 ac_check_lib_save_LIBS=$LIBS 15400 17933 LIBS="-lgpm $LIBS" 15401 17934 cat >conftest.$ac_ext <<_ACEOF 15402 17935 -#line 5176 "configure" 15403 +#line 5 340"configure"17936 +#line 5185 "configure" 15404 17937 #include "confdefs.h" 15405 17938 15406 17939 /* Override any gcc2 internal prototype to avoid an error. */ 15407 @@ -5192,16 +5 356,16 @@17940 @@ -5192,16 +5201,16 @@ 15408 17941 } 15409 17942 _ACEOF 15410 17943 rm -f conftest.$ac_objext conftest$ac_exeext 15411 17944 -if { (eval echo "$as_me:5195: \"$ac_link\"") >&5 15412 +if { (eval echo "$as_me:5 359: \"$ac_link\"") >&517945 +if { (eval echo "$as_me:5204: \"$ac_link\"") >&5 15413 17946 (eval $ac_link) 2>&5 15414 17947 ac_status=$? 15415 17948 - echo "$as_me:5198: \$? = $ac_status" >&5 15416 + echo "$as_me:5 362: \$? = $ac_status" >&517949 + echo "$as_me:5207: \$? = $ac_status" >&5 15417 17950 (exit $ac_status); } && 15418 17951 { ac_try='test -s conftest$ac_exeext' 15419 17952 - { (eval echo "$as_me:5201: \"$ac_try\"") >&5 15420 + { (eval echo "$as_me:5 365: \"$ac_try\"") >&517953 + { (eval echo "$as_me:5210: \"$ac_try\"") >&5 15421 17954 (eval $ac_try) 2>&5 15422 17955 ac_status=$? 15423 17956 - echo "$as_me:5204: \$? = $ac_status" >&5 15424 + echo "$as_me:5 368: \$? = $ac_status" >&517957 + echo "$as_me:5213: \$? = $ac_status" >&5 15425 17958 (exit $ac_status); }; }; then 15426 17959 ac_cv_lib_gpm_Gpm_Wgetch=yes 15427 17960 else 15428 @@ -5212,11 +5 376,11 @@17961 @@ -5212,11 +5221,11 @@ 15429 17962 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15430 17963 LIBS=$ac_check_lib_save_LIBS 15431 17964 fi 15432 17965 -echo "$as_me:5215: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5 15433 +echo "$as_me:5 379: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&517966 +echo "$as_me:5224: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5 15434 17967 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6 15435 17968 if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then 15436 17969 15437 17970 -echo "$as_me:5219: checking if GPM is weakly bound to curses library" >&5 15438 +echo "$as_me:5 383: checking if GPM is weakly bound to curses library" >&517971 +echo "$as_me:5228: checking if GPM is weakly bound to curses library" >&5 15439 17972 echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6 15440 17973 if test "${cf_cv_check_gpm_wgetch+set}" = set; then 15441 17974 echo $ECHO_N "(cached) $ECHO_C" >&6 15442 @@ -5240,15 +5 404,15 @@17975 @@ -5240,15 +5249,15 @@ 15443 17976 # to rely on the static library, noting that some packagers may not 15444 17977 # include it. 15445 17978 LIBS="-static -lgpm -dynamic $LIBS" 15446 17979 - if { (eval echo "$as_me:5243: \"$ac_compile\"") >&5 15447 + if { (eval echo "$as_me:5 407: \"$ac_compile\"") >&517980 + if { (eval echo "$as_me:5252: \"$ac_compile\"") >&5 15448 17981 (eval $ac_compile) 2>&5 15449 17982 ac_status=$? 15450 17983 - echo "$as_me:5246: \$? = $ac_status" >&5 15451 + echo "$as_me:5 410: \$? = $ac_status" >&517984 + echo "$as_me:5255: \$? = $ac_status" >&5 15452 17985 (exit $ac_status); } ; then 15453 17986 - if { (eval echo "$as_me:5248: \"$ac_link\"") >&5 15454 + if { (eval echo "$as_me:5 412: \"$ac_link\"") >&517987 + if { (eval echo "$as_me:5257: \"$ac_link\"") >&5 15455 17988 (eval $ac_link) 2>&5 15456 17989 ac_status=$? 15457 17990 - echo "$as_me:5251: \$? = $ac_status" >&5 15458 + echo "$as_me:5 415: \$? = $ac_status" >&517991 + echo "$as_me:5260: \$? = $ac_status" >&5 15459 17992 (exit $ac_status); } ; then 15460 17993 cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'` 15461 17994 test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes 15462 @@ -5260,11 +5 424,11 @@17995 @@ -5260,11 +5269,11 @@ 15463 17996 fi 15464 17997 15465 17998 fi 15466 17999 -echo "$as_me:5263: result: $cf_cv_check_gpm_wgetch" >&5 15467 +echo "$as_me:5 427: result: $cf_cv_check_gpm_wgetch" >&518000 +echo "$as_me:5272: result: $cf_cv_check_gpm_wgetch" >&5 15468 18001 echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6 15469 18002 15470 18003 if test "$cf_cv_check_gpm_wgetch" != yes ; then 15471 18004 - { echo "$as_me:5267: WARNING: GPM library is already linked with curses - read the FAQ" >&5 15472 + { echo "$as_me:5 431: WARNING: GPM library is already linked with curses - read the FAQ" >&518005 + { echo "$as_me:5276: WARNING: GPM library is already linked with curses - read the FAQ" >&5 15473 18006 echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;} 15474 18007 fi 15475 18008 15476 @@ -5274,7 +5 438,7 @@18009 @@ -5274,7 +5283,7 @@ 15477 18010 15478 18011 # not everyone has "test -c" 15479 18012 if test -c /dev/sysmouse 2>/dev/null ; then 15480 18013 -echo "$as_me:5277: checking if you want to use sysmouse" >&5 15481 +echo "$as_me:5 441: checking if you want to use sysmouse" >&518014 +echo "$as_me:5286: checking if you want to use sysmouse" >&5 15482 18015 echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6 15483 18016 15484 18017 # Check whether --with-sysmouse or --without-sysmouse was given. 15485 @@ -5286,7 +5 450,7 @@18018 @@ -5286,7 +5295,7 @@ 15486 18019 fi; 15487 18020 if test "$cf_with_sysmouse" != no ; then 15488 18021 cat >conftest.$ac_ext <<_ACEOF 15489 18022 -#line 5289 "configure" 15490 +#line 5 453"configure"18023 +#line 5298 "configure" 15491 18024 #include "confdefs.h" 15492 18025 15493 18026 #include <osreldate.h> 15494 @@ -5309,16 +5 473,16 @@18027 @@ -5309,16 +5318,16 @@ 15495 18028 } 15496 18029 _ACEOF 15497 18030 rm -f conftest.$ac_objext 15498 18031 -if { (eval echo "$as_me:5312: \"$ac_compile\"") >&5 15499 +if { (eval echo "$as_me:5 476: \"$ac_compile\"") >&518032 +if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5 15500 18033 (eval $ac_compile) 2>&5 15501 18034 ac_status=$? 15502 18035 - echo "$as_me:5315: \$? = $ac_status" >&5 15503 + echo "$as_me:5 479: \$? = $ac_status" >&518036 + echo "$as_me:5324: \$? = $ac_status" >&5 15504 18037 (exit $ac_status); } && 15505 18038 { ac_try='test -s conftest.$ac_objext' 15506 18039 - { (eval echo "$as_me:5318: \"$ac_try\"") >&5 15507 + { (eval echo "$as_me:5 482: \"$ac_try\"") >&518040 + { (eval echo "$as_me:5327: \"$ac_try\"") >&5 15508 18041 (eval $ac_try) 2>&5 15509 18042 ac_status=$? 15510 18043 - echo "$as_me:5321: \$? = $ac_status" >&5 15511 + echo "$as_me:5 485: \$? = $ac_status" >&518044 + echo "$as_me:5330: \$? = $ac_status" >&5 15512 18045 (exit $ac_status); }; }; then 15513 18046 cf_with_sysmouse=yes 15514 18047 else 15515 @@ -5328,7 +5 492,7 @@18048 @@ -5328,7 +5337,7 @@ 15516 18049 fi 15517 18050 rm -f conftest.$ac_objext conftest.$ac_ext 15518 18051 fi 15519 18052 -echo "$as_me:5331: result: $cf_with_sysmouse" >&5 15520 +echo "$as_me:5 495: result: $cf_with_sysmouse" >&518053 +echo "$as_me:5340: result: $cf_with_sysmouse" >&5 15521 18054 echo "${ECHO_T}$cf_with_sysmouse" >&6 15522 18055 test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF 15523 18056 #define USE_SYSMOUSE 1 15524 @@ -5346,7 +5 510,7 @@18057 @@ -5346,7 +5355,7 @@ 15525 18058 test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT='' 15526 18059 fi 15527 18060 15528 18061 -echo "$as_me:5349: checking for default loader flags" >&5 15529 +echo "$as_me:5 513: checking for default loader flags" >&518062 +echo "$as_me:5358: checking for default loader flags" >&5 15530 18063 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6 15531 18064 case $DFT_LWR_MODEL in 15532 18065 libtool) LD_MODEL='' ;; 15533 @@ -5355,13 +5 519,13 @@18066 @@ -5355,13 +5364,13 @@ 15534 18067 profile) LD_MODEL='-pg';; 15535 18068 shared) LD_MODEL='' ;; 15536 18069 esac 15537 18070 -echo "$as_me:5358: result: $LD_MODEL" >&5 15538 +echo "$as_me:5 522: result: $LD_MODEL" >&518071 +echo "$as_me:5367: result: $LD_MODEL" >&5 15539 18072 echo "${ECHO_T}$LD_MODEL" >&6 15540 18073 … … 15543 18076 15544 18077 -echo "$as_me:5364: checking if rpath option should be used" >&5 15545 +echo "$as_me:5 528: checking if rpath option should be used" >&518078 +echo "$as_me:5373: checking if rpath option should be used" >&5 15546 18079 echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6 15547 18080 15548 18081 # Check whether --enable-rpath or --disable-rpath was given. 15549 @@ -5371,10 +5 535,10 @@18082 @@ -5371,10 +5380,10 @@ 15550 18083 else 15551 18084 cf_cv_enable_rpath=no 15552 18085 fi; 15553 18086 -echo "$as_me:5374: result: $cf_cv_enable_rpath" >&5 15554 +echo "$as_me:5 538: result: $cf_cv_enable_rpath" >&518087 +echo "$as_me:5383: result: $cf_cv_enable_rpath" >&5 15555 18088 echo "${ECHO_T}$cf_cv_enable_rpath" >&6 15556 18089 15557 18090 -echo "$as_me:5377: checking if shared libraries should be relinked during install" >&5 15558 +echo "$as_me:5 541: checking if shared libraries should be relinked during install" >&518091 +echo "$as_me:5386: checking if shared libraries should be relinked during install" >&5 15559 18092 echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6 15560 18093 15561 18094 # Check whether --enable-relink or --disable-relink was given. 15562 @@ -5384,13 +5 548,13 @@18095 @@ -5384,13 +5393,13 @@ 15563 18096 else 15564 18097 cf_cv_do_relink=yes 15565 18098 fi; 15566 18099 -echo "$as_me:5387: result: $cf_cv_do_relink" >&5 15567 +echo "$as_me:5 551: result: $cf_cv_do_relink" >&518100 +echo "$as_me:5396: result: $cf_cv_do_relink" >&5 15568 18101 echo "${ECHO_T}$cf_cv_do_relink" >&6 15569 18102 ;; … … 15572 18105 LD_RPATH_OPT= 15573 18106 -echo "$as_me:5393: checking for an rpath option" >&5 15574 +echo "$as_me:5 557: checking for an rpath option" >&518107 +echo "$as_me:5402: checking for an rpath option" >&5 15575 18108 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6 15576 18109 case $cf_cv_system_name in #(vi 15577 18110 irix*) #(vi 15578 @@ -5403,10 +5 567,10 @@18111 @@ -5403,10 +5412,10 @@ 15579 18112 linux*|gnu*|k*bsd*-gnu) #(vi 15580 18113 LD_RPATH_OPT="-Wl,-rpath," … … 15589 18122 ;; 15590 18123 netbsd*) #(vi 15591 @@ -5421,17 +5 585,17 @@18124 @@ -5421,17 +5430,17 @@ 15592 18125 *) 15593 18126 ;; 15594 18127 esac 15595 18128 -echo "$as_me:5424: result: $LD_RPATH_OPT" >&5 15596 +echo "$as_me:5 588: result: $LD_RPATH_OPT" >&518129 +echo "$as_me:5433: result: $LD_RPATH_OPT" >&5 15597 18130 echo "${ECHO_T}$LD_RPATH_OPT" >&6 15598 18131 … … 15600 18133 x-R*) 15601 18134 - echo "$as_me:5429: checking if we need a space after rpath option" >&5 15602 + echo "$as_me:5 593: checking if we need a space after rpath option" >&518135 + echo "$as_me:5438: checking if we need a space after rpath option" >&5 15603 18136 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6 15604 18137 cf_save_LIBS="$LIBS" … … 15606 18139 cat >conftest.$ac_ext <<_ACEOF 15607 18140 -#line 5434 "configure" 15608 +#line 5 598"configure"18141 +#line 5443 "configure" 15609 18142 #include "confdefs.h" 15610 18143 15611 18144 int 15612 @@ -5443,16 +5 607,16 @@18145 @@ -5443,16 +5452,16 @@ 15613 18146 } 15614 18147 _ACEOF 15615 18148 rm -f conftest.$ac_objext conftest$ac_exeext 15616 18149 -if { (eval echo "$as_me:5446: \"$ac_link\"") >&5 15617 +if { (eval echo "$as_me:5 610: \"$ac_link\"") >&518150 +if { (eval echo "$as_me:5455: \"$ac_link\"") >&5 15618 18151 (eval $ac_link) 2>&5 15619 18152 ac_status=$? 15620 18153 - echo "$as_me:5449: \$? = $ac_status" >&5 15621 + echo "$as_me:5 613: \$? = $ac_status" >&518154 + echo "$as_me:5458: \$? = $ac_status" >&5 15622 18155 (exit $ac_status); } && 15623 18156 { ac_try='test -s conftest$ac_exeext' 15624 18157 - { (eval echo "$as_me:5452: \"$ac_try\"") >&5 15625 + { (eval echo "$as_me:5 616: \"$ac_try\"") >&518158 + { (eval echo "$as_me:5461: \"$ac_try\"") >&5 15626 18159 (eval $ac_try) 2>&5 15627 18160 ac_status=$? 15628 18161 - echo "$as_me:5455: \$? = $ac_status" >&5 15629 + echo "$as_me:5 619: \$? = $ac_status" >&518162 + echo "$as_me:5464: \$? = $ac_status" >&5 15630 18163 (exit $ac_status); }; }; then 15631 18164 cf_rpath_space=no 15632 18165 else 15633 @@ -5462,7 +5 626,7 @@18166 @@ -5462,7 +5471,7 @@ 15634 18167 fi 15635 18168 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15636 18169 LIBS="$cf_save_LIBS" 15637 18170 - echo "$as_me:5465: result: $cf_rpath_space" >&5 15638 + echo "$as_me:5 629: result: $cf_rpath_space" >&518171 + echo "$as_me:5474: result: $cf_rpath_space" >&5 15639 18172 echo "${ECHO_T}$cf_rpath_space" >&6 15640 18173 test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT " 15641 18174 ;; 15642 @@ -5477,7 +5 641,7 @@18175 @@ -5477,7 +5486,7 @@ 15643 18176 cf_ld_rpath_opt= 15644 18177 test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT" 15645 18178 15646 18179 - echo "$as_me:5480: checking if release/abi version should be used for shared libs" >&5 15647 + echo "$as_me:5 644: checking if release/abi version should be used for shared libs" >&518180 + echo "$as_me:5489: checking if release/abi version should be used for shared libs" >&5 15648 18181 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6 15649 18182 15650 18183 # Check whether --with-shlib-version or --without-shlib-version was given. 15651 @@ -5492,7 +5 656,7 @@18184 @@ -5492,7 +5501,7 @@ 15652 18185 cf_cv_shlib_version=$withval 15653 18186 ;; 15654 18187 *) 15655 18188 - { { echo "$as_me:5495: error: option value must be one of: rel, abi, auto or no" >&5 15656 + { { echo "$as_me:5 659: error: option value must be one of: rel, abi, auto or no" >&518189 + { { echo "$as_me:5504: error: option value must be one of: rel, abi, auto or no" >&5 15657 18190 echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;} 15658 18191 { (exit 1); exit 1; }; } 15659 18192 ;; 15660 @@ -5501,7 +5 665,7 @@18193 @@ -5501,7 +5510,7 @@ 15661 18194 else 15662 18195 cf_cv_shlib_version=auto 15663 18196 fi; 15664 18197 - echo "$as_me:5504: result: $cf_cv_shlib_version" >&5 15665 + echo "$as_me:5 668: result: $cf_cv_shlib_version" >&518198 + echo "$as_me:5513: result: $cf_cv_shlib_version" >&5 15666 18199 echo "${ECHO_T}$cf_cv_shlib_version" >&6 15667 18200 15668 18201 cf_cv_rm_so_locs=no 15669 @@ -5510,14 +5 674,14 @@18202 @@ -5510,14 +5519,14 @@ 15670 18203 CC_SHARED_OPTS= 15671 18204 if test "$GCC" = yes 15672 18205 then 15673 18206 - echo "$as_me:5513: checking which $CC option to use" >&5 15674 + echo "$as_me:5 677: checking which $CC option to use" >&518207 + echo "$as_me:5522: checking which $CC option to use" >&5 15675 18208 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6 15676 18209 cf_save_CFLAGS="$CFLAGS" … … 15680 18213 cat >conftest.$ac_ext <<_ACEOF 15681 18214 -#line 5520 "configure" 15682 +#line 5 684"configure"18215 +#line 5529 "configure" 15683 18216 #include "confdefs.h" 15684 18217 #include <stdio.h> 15685 18218 int 15686 @@ -5529,16 +5 693,16 @@18219 @@ -5529,16 +5538,16 @@ 15687 18220 } 15688 18221 _ACEOF 15689 18222 rm -f conftest.$ac_objext 15690 18223 -if { (eval echo "$as_me:5532: \"$ac_compile\"") >&5 15691 +if { (eval echo "$as_me:5 696: \"$ac_compile\"") >&518224 +if { (eval echo "$as_me:5541: \"$ac_compile\"") >&5 15692 18225 (eval $ac_compile) 2>&5 15693 18226 ac_status=$? 15694 18227 - echo "$as_me:5535: \$? = $ac_status" >&5 15695 + echo "$as_me:5 699: \$? = $ac_status" >&518228 + echo "$as_me:5544: \$? = $ac_status" >&5 15696 18229 (exit $ac_status); } && 15697 18230 { ac_try='test -s conftest.$ac_objext' 15698 18231 - { (eval echo "$as_me:5538: \"$ac_try\"") >&5 15699 + { (eval echo "$as_me:5 702: \"$ac_try\"") >&518232 + { (eval echo "$as_me:5547: \"$ac_try\"") >&5 15700 18233 (eval $ac_try) 2>&5 15701 18234 ac_status=$? 15702 18235 - echo "$as_me:5541: \$? = $ac_status" >&5 15703 + echo "$as_me:5 705: \$? = $ac_status" >&518236 + echo "$as_me:5550: \$? = $ac_status" >&5 15704 18237 (exit $ac_status); }; }; then 15705 18238 break 15706 18239 else 15707 @@ -5547,7 +5 711,7 @@18240 @@ -5547,7 +5556,7 @@ 15708 18241 fi 15709 18242 rm -f conftest.$ac_objext conftest.$ac_ext 15710 18243 done 15711 18244 - echo "$as_me:5550: result: $CC_SHARED_OPTS" >&5 15712 + echo "$as_me:5 714: result: $CC_SHARED_OPTS" >&518245 + echo "$as_me:5559: result: $CC_SHARED_OPTS" >&5 15713 18246 echo "${ECHO_T}$CC_SHARED_OPTS" >&6 15714 18247 CFLAGS="$cf_save_CFLAGS" 15715 18248 fi 15716 @@ -5555,10 +5 719,14 @@18249 @@ -5555,10 +5564,14 @@ 15717 18250 cf_cv_shlib_version_infix=no 15718 18251 … … 15731 18264 ;; 15732 18265 beos*) #(vi 15733 @@ -5589,7 +5 757,7 @@18266 @@ -5589,7 +5602,7 @@ 15734 18267 MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@' 15735 18268 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi 15736 18269 cf_cv_shlib_version_infix=yes 15737 18270 - echo "$as_me:5592: checking if ld -search_paths_first works" >&5 15738 + echo "$as_me:5 760: checking if ld -search_paths_first works" >&518271 + echo "$as_me:5605: checking if ld -search_paths_first works" >&5 15739 18272 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6 15740 18273 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then 15741 18274 echo $ECHO_N "(cached) $ECHO_C" >&6 15742 @@ -5598,7 +5 766,7 @@18275 @@ -5598,7 +5611,7 @@ 15743 18276 cf_save_LDFLAGS=$LDFLAGS 15744 18277 LDFLAGS="$LDFLAGS -Wl,-search_paths_first" 15745 18278 cat >conftest.$ac_ext <<_ACEOF 15746 18279 -#line 5601 "configure" 15747 +#line 5 769"configure"18280 +#line 5614 "configure" 15748 18281 #include "confdefs.h" 15749 18282 15750 18283 int 15751 @@ -5610,16 +5 778,16 @@18284 @@ -5610,16 +5623,16 @@ 15752 18285 } 15753 18286 _ACEOF 15754 18287 rm -f conftest.$ac_objext conftest$ac_exeext 15755 18288 -if { (eval echo "$as_me:5613: \"$ac_link\"") >&5 15756 +if { (eval echo "$as_me:5 781: \"$ac_link\"") >&518289 +if { (eval echo "$as_me:5626: \"$ac_link\"") >&5 15757 18290 (eval $ac_link) 2>&5 15758 18291 ac_status=$? 15759 18292 - echo "$as_me:5616: \$? = $ac_status" >&5 15760 + echo "$as_me:5 784: \$? = $ac_status" >&518293 + echo "$as_me:5629: \$? = $ac_status" >&5 15761 18294 (exit $ac_status); } && 15762 18295 { ac_try='test -s conftest$ac_exeext' 15763 18296 - { (eval echo "$as_me:5619: \"$ac_try\"") >&5 15764 + { (eval echo "$as_me:5 787: \"$ac_try\"") >&518297 + { (eval echo "$as_me:5632: \"$ac_try\"") >&5 15765 18298 (eval $ac_try) 2>&5 15766 18299 ac_status=$? 15767 18300 - echo "$as_me:5622: \$? = $ac_status" >&5 15768 + echo "$as_me:5 790: \$? = $ac_status" >&518301 + echo "$as_me:5635: \$? = $ac_status" >&5 15769 18302 (exit $ac_status); }; }; then 15770 18303 cf_cv_ldflags_search_paths_first=yes 15771 18304 else 15772 @@ -5630,7 +5 798,7 @@18305 @@ -5630,7 +5643,7 @@ 15773 18306 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 15774 18307 LDFLAGS=$cf_save_LDFLAGS 15775 18308 fi 15776 18309 -echo "$as_me:5633: result: $cf_cv_ldflags_search_paths_first" >&5 15777 +echo "$as_me:5 801: result: $cf_cv_ldflags_search_paths_first" >&518310 +echo "$as_me:5646: result: $cf_cv_ldflags_search_paths_first" >&5 15778 18311 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6 15779 18312 if test $cf_cv_ldflags_search_paths_first = yes; then 15780 18313 LDFLAGS="$LDFLAGS -Wl,-search_paths_first" 15781 @@ -5649,9 +5 817,19 @@18314 @@ -5649,9 +5662,19 @@ 15782 18315 # readonly to exploit a quirk in the memory manager. 15783 18316 INSTALL_LIB="-m 555" … … 15800 18333 # tested with IRIX 5.2 and 'cc'. 15801 18334 if test "$GCC" != yes; then 15802 @@ -5668,7 +5 846,7 @@18335 @@ -5668,7 +5691,7 @@ 15803 18336 LOCAL_LDFLAGS2="$LOCAL_LDFLAGS" 15804 18337 fi … … 15809 18342 15810 18343 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel 15811 @@ -5680,13 +5 858,13@@18344 @@ -5680,13 +5703,34 @@ 15812 18345 15813 18346 MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@' 15814 18347 ;; 15815 18348 - openbsd[2-9].*) #(vi 18349 + mingw*) #(vi 18350 + cf_cv_shlib_version=mingw 18351 + cf_cv_shlib_version_infix=mingw 18352 + CC_SHARED_OPTS= 18353 + MK_SHARED_LIB='sh ../mk_shared_lib.sh $@ ${CC} ${CFLAGS}' 18354 + #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]' 18355 + #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]' 18356 + cat >mk_shared_lib.sh <<-CF_EOF 18357 + #!/bin/sh 18358 + SHARED_LIB=\$1 18359 + IMPORT_LIB=\`echo "\$1" | sed -e 's/[0-9]*\.dll$/.dll.a/'\` 18360 + shift 18361 + cat <<-EOF 18362 + Linking shared library 18363 + ** SHARED_LIB \$SHARED_LIB 18364 + ** IMPORT_LIB \$IMPORT_LIB 18365 +EOF 18366 + exec \$* -shared -Wl,--out-implib=../lib/\${IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\${SHARED_LIB} 18367 +CF_EOF 18368 + chmod +x mk_shared_lib.sh 18369 + ;; 15816 18370 + openbsd[2-9].*|mirbsd*) #(vi 15817 18371 if test "$DFT_LWR_MODEL" = "shared" ; then … … 15825 18379 CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC" 15826 18380 15827 @@ -5704,12 +5 882,12 @@18381 @@ -5704,12 +5748,12 @@ 15828 18382 MK_SHARED_LIB='${LD} -Bshareable -o $@' 15829 18383 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel … … 15841 18395 15842 18396 test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel 15843 @@ -5726,7 +5 904,7 @@18397 @@ -5726,7 +5770,7 @@ 15844 18398 if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then 15845 18399 LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)" … … 15850 18404 if test -f /usr/libexec/ld.elf_so; then 15851 18405 cf_cv_shlib_version=abi 15852 @@ -5810,7 +5 988,7 @@18406 @@ -5810,7 +5854,7 @@ 15853 18407 do 15854 18408 CFLAGS="$cf_shared_opts $cf_save_CFLAGS" 15855 18409 cat >conftest.$ac_ext <<_ACEOF 15856 18410 -#line 5813 "configure" 15857 +#line 5 991"configure"18411 +#line 5857 "configure" 15858 18412 #include "confdefs.h" 15859 18413 #include <stdio.h> 15860 18414 int 15861 @@ -5822,16 + 6000,16 @@18415 @@ -5822,16 +5866,16 @@ 15862 18416 } 15863 18417 _ACEOF 15864 18418 rm -f conftest.$ac_objext 15865 18419 -if { (eval echo "$as_me:5825: \"$ac_compile\"") >&5 15866 +if { (eval echo "$as_me: 6003: \"$ac_compile\"") >&518420 +if { (eval echo "$as_me:5869: \"$ac_compile\"") >&5 15867 18421 (eval $ac_compile) 2>&5 15868 18422 ac_status=$? 15869 18423 - echo "$as_me:5828: \$? = $ac_status" >&5 15870 + echo "$as_me: 6006: \$? = $ac_status" >&518424 + echo "$as_me:5872: \$? = $ac_status" >&5 15871 18425 (exit $ac_status); } && 15872 18426 { ac_try='test -s conftest.$ac_objext' 15873 18427 - { (eval echo "$as_me:5831: \"$ac_try\"") >&5 15874 + { (eval echo "$as_me: 6009: \"$ac_try\"") >&518428 + { (eval echo "$as_me:5875: \"$ac_try\"") >&5 15875 18429 (eval $ac_try) 2>&5 15876 18430 ac_status=$? 15877 18431 - echo "$as_me:5834: \$? = $ac_status" >&5 15878 + echo "$as_me: 6012: \$? = $ac_status" >&518432 + echo "$as_me:5878: \$? = $ac_status" >&5 15879 18433 (exit $ac_status); }; }; then 15880 18434 break 15881 18435 else 15882 @@ -5868,21 + 6046,21@@18436 @@ -5868,21 +5912,29 @@ 15883 18437 test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes 15884 18438 ;; 15885 18439 *) 15886 18440 - { echo "$as_me:5871: WARNING: ignored --with-shlib-version" >&5 15887 + { echo "$as_me: 6049: WARNING: ignored --with-shlib-version" >&518441 + { echo "$as_me:5915: WARNING: ignored --with-shlib-version" >&5 15888 18442 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;} 15889 18443 ;; … … 15898 18452 + test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}" 15899 18453 + test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}" 18454 + 18455 + test -n "$verbose" && echo " CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6 18456 + 18457 +echo "${as_me:-configure}:5928: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5 18458 + 18459 + test -n "$verbose" && echo " MK_SHARED_LIB: $MK_SHARED_LIB" 1>&6 18460 + 18461 +echo "${as_me:-configure}:5932: testing MK_SHARED_LIB: $MK_SHARED_LIB ..." 1>&5 15900 18462 15901 18463 if test "$CC_SHARED_OPTS" = "unknown"; then … … 15903 18465 if test "$model" = "shared"; then 15904 18466 - { { echo "$as_me:5885: error: Shared libraries are not supported in this version" >&5 15905 + { { echo "$as_me: 6063: error: Shared libraries are not supported in this version" >&518467 + { { echo "$as_me:5937: error: Shared libraries are not supported in this version" >&5 15906 18468 echo "$as_me: error: Shared libraries are not supported in this version" >&2;} 15907 18469 { (exit 1); exit 1; }; } 15908 18470 fi 15909 @@ -5892,7 + 6070,7 @@18471 @@ -5892,7 +5944,7 @@ 15910 18472 ### If we're building with rpath, try to link non-standard libs that way too. 15911 18473 if test "$DFT_LWR_MODEL" = "shared"; then 15912 18474 15913 18475 -echo "$as_me:5895: checking if rpath-hack should be disabled" >&5 15914 +echo "$as_me: 6073: checking if rpath-hack should be disabled" >&518476 +echo "$as_me:5947: checking if rpath-hack should be disabled" >&5 15915 18477 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 15916 18478 15917 18479 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. 15918 @@ -5909,21 + 6087,21 @@18480 @@ -5909,21 +5961,21 @@ 15919 18481 cf_disable_rpath_hack=no 15920 18482 15921 18483 fi; 15922 18484 -echo "$as_me:5912: result: $cf_disable_rpath_hack" >&5 15923 +echo "$as_me: 6090: result: $cf_disable_rpath_hack" >&518485 +echo "$as_me:5964: result: $cf_disable_rpath_hack" >&5 15924 18486 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 15925 18487 if test "$cf_disable_rpath_hack" = no ; then 15926 18488 15927 18489 -echo "$as_me:5916: checking for updated LDFLAGS" >&5 15928 +echo "$as_me: 6094: checking for updated LDFLAGS" >&518490 +echo "$as_me:5968: checking for updated LDFLAGS" >&5 15929 18491 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6 15930 18492 if test -n "$LD_RPATH_OPT" ; then 15931 18493 - echo "$as_me:5919: result: maybe" >&5 15932 + echo "$as_me: 6097: result: maybe" >&518494 + echo "$as_me:5971: result: maybe" >&5 15933 18495 echo "${ECHO_T}maybe" >&6 15934 18496 … … 15938 18500 set dummy $ac_prog; ac_word=$2 15939 18501 -echo "$as_me:5926: checking for $ac_word" >&5 15940 +echo "$as_me: 6104: checking for $ac_word" >&518502 +echo "$as_me:5978: checking for $ac_word" >&5 15941 18503 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 15942 18504 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then 15943 18505 echo $ECHO_N "(cached) $ECHO_C" >&6 15944 @@ -5938,7 + 6116,7 @@18506 @@ -5938,7 +5990,7 @@ 15945 18507 test -z "$ac_dir" && ac_dir=. 15946 18508 $as_executable_p "$ac_dir/$ac_word" || continue 15947 18509 ac_cv_prog_cf_ldd_prog="$ac_prog" 15948 18510 -echo "$as_me:5941: found $ac_dir/$ac_word" >&5 15949 +echo "$as_me: 6119: found $ac_dir/$ac_word" >&518511 +echo "$as_me:5993: found $ac_dir/$ac_word" >&5 15950 18512 break 15951 18513 done 15952 18514 15953 @@ -5946,10 + 6124,10 @@18515 @@ -5946,10 +5998,10 @@ 15954 18516 fi 15955 18517 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog 15956 18518 if test -n "$cf_ldd_prog"; then 15957 18519 - echo "$as_me:5949: result: $cf_ldd_prog" >&5 15958 + echo "$as_me:6 127: result: $cf_ldd_prog" >&518520 + echo "$as_me:6001: result: $cf_ldd_prog" >&5 15959 18521 echo "${ECHO_T}$cf_ldd_prog" >&6 15960 18522 else 15961 18523 - echo "$as_me:5952: result: no" >&5 15962 + echo "$as_me:6 130: result: no" >&518524 + echo "$as_me:6004: result: no" >&5 15963 18525 echo "${ECHO_T}no" >&6 15964 18526 fi 15965 18527 15966 @@ -5963,7 +6 141,7 @@18528 @@ -5963,7 +6015,7 @@ 15967 18529 cf_rpath_oops= 15968 18530 15969 18531 cat >conftest.$ac_ext <<_ACEOF 15970 18532 -#line 5966 "configure" 15971 +#line 6 144"configure"18533 +#line 6018 "configure" 15972 18534 #include "confdefs.h" 15973 18535 #include <stdio.h> 15974 18536 int 15975 @@ -5975,16 +6 153,16 @@18537 @@ -5975,16 +6027,16 @@ 15976 18538 } 15977 18539 _ACEOF 15978 18540 rm -f conftest.$ac_objext conftest$ac_exeext 15979 18541 -if { (eval echo "$as_me:5978: \"$ac_link\"") >&5 15980 +if { (eval echo "$as_me:6 156: \"$ac_link\"") >&518542 +if { (eval echo "$as_me:6030: \"$ac_link\"") >&5 15981 18543 (eval $ac_link) 2>&5 15982 18544 ac_status=$? 15983 18545 - echo "$as_me:5981: \$? = $ac_status" >&5 15984 + echo "$as_me:6 159: \$? = $ac_status" >&518546 + echo "$as_me:6033: \$? = $ac_status" >&5 15985 18547 (exit $ac_status); } && 15986 18548 { ac_try='test -s conftest$ac_exeext' 15987 18549 - { (eval echo "$as_me:5984: \"$ac_try\"") >&5 15988 + { (eval echo "$as_me:6 162: \"$ac_try\"") >&518550 + { (eval echo "$as_me:6036: \"$ac_try\"") >&5 15989 18551 (eval $ac_try) 2>&5 15990 18552 ac_status=$? 15991 18553 - echo "$as_me:5987: \$? = $ac_status" >&5 15992 + echo "$as_me:6 165: \$? = $ac_status" >&518554 + echo "$as_me:6039: \$? = $ac_status" >&5 15993 18555 (exit $ac_status); }; }; then 15994 18556 cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort -u` 15995 18557 cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort -u` 15996 @@ -6012,7 +6 190,7 @@18558 @@ -6012,7 +6064,7 @@ 15997 18559 then 15998 18560 test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 15999 18561 16000 18562 -echo "${as_me:-configure}:6015: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 16001 +echo "${as_me:-configure}:6 193: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&518563 +echo "${as_me:-configure}:6067: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 16002 18564 16003 18565 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" 16004 18566 break 16005 @@ -6024,11 +6 202,11 @@18567 @@ -6024,11 +6076,11 @@ 16006 18568 16007 18569 test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 16008 18570 16009 18571 -echo "${as_me:-configure}:6027: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 16010 +echo "${as_me:-configure}:6 205: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&518572 +echo "${as_me:-configure}:6079: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 16011 18573 16012 18574 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 16013 18575 16014 18576 -echo "${as_me:-configure}:6031: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 16015 +echo "${as_me:-configure}:6 209: testing ...checking LDFLAGS $LDFLAGS ..." 1>&518577 +echo "${as_me:-configure}:6083: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 16016 18578 16017 18579 cf_rpath_dst= 16018 18580 for cf_rpath_src in $LDFLAGS 16019 @@ -6065,7 +6 243,7 @@18581 @@ -6065,7 +6117,7 @@ 16020 18582 then 16021 18583 test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 16022 18584 16023 18585 -echo "${as_me:-configure}:6068: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 16024 +echo "${as_me:-configure}:6 246: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&518586 +echo "${as_me:-configure}:6120: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 16025 18587 16026 18588 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" 16027 18589 fi 16028 @@ -6078,11 +6 256,11 @@18590 @@ -6078,11 +6130,11 @@ 16029 18591 16030 18592 test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 16031 18593 16032 18594 -echo "${as_me:-configure}:6081: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 16033 +echo "${as_me:-configure}:6 259: testing ...checked LDFLAGS $LDFLAGS ..." 1>&518595 +echo "${as_me:-configure}:6133: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 16034 18596 16035 18597 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 16036 18598 16037 18599 -echo "${as_me:-configure}:6085: testing ...checking LIBS $LIBS ..." 1>&5 16038 +echo "${as_me:-configure}:6 263: testing ...checking LIBS $LIBS ..." 1>&518600 +echo "${as_me:-configure}:6137: testing ...checking LIBS $LIBS ..." 1>&5 16039 18601 16040 18602 cf_rpath_dst= 16041 18603 for cf_rpath_src in $LIBS 16042 @@ -6119,7 +6 297,7 @@18604 @@ -6119,7 +6171,7 @@ 16043 18605 then 16044 18606 test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 16045 18607 16046 18608 -echo "${as_me:-configure}:6122: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 16047 +echo "${as_me:-configure}:6 300: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&518609 +echo "${as_me:-configure}:6174: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 16048 18610 16049 18611 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" 16050 18612 fi 16051 @@ -6132,11 +6 310,11 @@18613 @@ -6132,11 +6184,11 @@ 16052 18614 16053 18615 test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 16054 18616 16055 18617 -echo "${as_me:-configure}:6135: testing ...checked LIBS $LIBS ..." 1>&5 16056 +echo "${as_me:-configure}:6 313: testing ...checked LIBS $LIBS ..." 1>&518618 +echo "${as_me:-configure}:6187: testing ...checked LIBS $LIBS ..." 1>&5 16057 18619 16058 18620 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 16059 18621 16060 18622 -echo "${as_me:-configure}:6139: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 16061 +echo "${as_me:-configure}:6 317: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&516062 16063 fi 16064 16065 @@ -6147,7 +6 325,7 @@18623 +echo "${as_me:-configure}:6191: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 18624 18625 fi 18626 18627 @@ -6147,7 +6199,7 @@ 16066 18628 ############################################################################### 16067 18629 16068 18630 ### use option --disable-overwrite to leave out the link to -lcurses 16069 18631 -echo "$as_me:6150: checking if you wish to install ncurses overwriting curses" >&5 16070 +echo "$as_me:6 328: checking if you wish to install ncurses overwriting curses" >&518632 +echo "$as_me:6202: checking if you wish to install ncurses overwriting curses" >&5 16071 18633 echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6 16072 18634 16073 18635 # Check whether --enable-overwrite or --disable-overwrite was given. 16074 @@ -6157,10 +6 335,10 @@18636 @@ -6157,10 +6209,10 @@ 16075 18637 else 16076 18638 if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi 16077 18639 fi; 16078 18640 -echo "$as_me:6160: result: $with_overwrite" >&5 16079 +echo "$as_me:6 338: result: $with_overwrite" >&518641 +echo "$as_me:6212: result: $with_overwrite" >&5 16080 18642 echo "${ECHO_T}$with_overwrite" >&6 16081 18643 16082 18644 -echo "$as_me:6163: checking if external terminfo-database is used" >&5 16083 +echo "$as_me:6 341: checking if external terminfo-database is used" >&518645 +echo "$as_me:6215: checking if external terminfo-database is used" >&5 16084 18646 echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6 16085 18647 16086 18648 # Check whether --enable-database or --disable-database was given. 16087 @@ -6170,7 +6 348,7 @@18649 @@ -6170,7 +6222,7 @@ 16088 18650 else 16089 18651 use_database=yes 16090 18652 fi; 16091 18653 -echo "$as_me:6173: result: $use_database" >&5 16092 +echo "$as_me:6 351: result: $use_database" >&518654 +echo "$as_me:6225: result: $use_database" >&5 16093 18655 echo "${ECHO_T}$use_database" >&6 16094 18656 16095 18657 case $host_os in #(vi 16096 @@ -6182,17 +6 360,12 @@18658 @@ -6182,17 +6234,12 @@ 16097 18659 ;; 16098 18660 esac … … 16109 18671 16110 18672 - echo "$as_me:6195: checking which terminfo source-file will be installed" >&5 16111 + echo "$as_me:6 368: checking which terminfo source-file will be installed" >&518673 + echo "$as_me:6242: checking which terminfo source-file will be installed" >&5 16112 18674 echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6 16113 18675 16114 18676 # Check whether --with-database or --without-database was given. 16115 @@ -6200,10 +6 373,10 @@18677 @@ -6200,10 +6247,10 @@ 16116 18678 withval="$with_database" 16117 18679 TERMINFO_SRC=$withval 16118 18680 fi; 16119 18681 - echo "$as_me:6203: result: $TERMINFO_SRC" >&5 16120 + echo "$as_me:6 376: result: $TERMINFO_SRC" >&518682 + echo "$as_me:6250: result: $TERMINFO_SRC" >&5 16121 18683 echo "${ECHO_T}$TERMINFO_SRC" >&6 16122 18684 16123 18685 - echo "$as_me:6206: checking whether to use hashed database instead of directory/tree" >&5 16124 + echo "$as_me:6 379: checking whether to use hashed database instead of directory/tree" >&518686 + echo "$as_me:6253: checking whether to use hashed database instead of directory/tree" >&5 16125 18687 echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6 16126 18688 16127 18689 # Check whether --with-hashed-db or --without-hashed-db was given. 16128 @@ -6213,13 +6 386,13 @@18690 @@ -6213,13 +6260,13 @@ 16129 18691 else 16130 18692 with_hashed_db=no 16131 18693 fi; 16132 18694 - echo "$as_me:6216: result: $with_hashed_db" >&5 16133 + echo "$as_me:6 389: result: $with_hashed_db" >&518695 + echo "$as_me:6263: result: $with_hashed_db" >&5 16134 18696 echo "${ECHO_T}$with_hashed_db" >&6 16135 18697 else … … 16138 18700 16139 18701 -echo "$as_me:6222: checking for list of fallback descriptions" >&5 16140 +echo "$as_me:6 395: checking for list of fallback descriptions" >&518702 +echo "$as_me:6269: checking for list of fallback descriptions" >&5 16141 18703 echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6 16142 18704 16143 18705 # Check whether --with-fallbacks or --without-fallbacks was given. 16144 @@ -6229,11 +6 402,11 @@18706 @@ -6229,11 +6276,11 @@ 16145 18707 else 16146 18708 with_fallback= 16147 18709 fi; 16148 18710 -echo "$as_me:6232: result: $with_fallback" >&5 16149 +echo "$as_me:6 405: result: $with_fallback" >&518711 +echo "$as_me:6279: result: $with_fallback" >&5 16150 18712 echo "${ECHO_T}$with_fallback" >&6 16151 18713 FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'` 16152 18714 16153 18715 -echo "$as_me:6236: checking if you want modern xterm or antique" >&5 16154 +echo "$as_me:6 409: checking if you want modern xterm or antique" >&518716 +echo "$as_me:6283: checking if you want modern xterm or antique" >&5 16155 18717 echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6 16156 18718 16157 18719 # Check whether --with-xterm-new or --without-xterm-new was given. 16158 @@ -6247,19 +6 420,49 @@18720 @@ -6247,19 +6294,49 @@ 16159 18721 no) with_xterm_new=xterm-old;; 16160 18722 *) with_xterm_new=xterm-new;; 16161 18723 esac 16162 18724 -echo "$as_me:6250: result: $with_xterm_new" >&5 16163 +echo "$as_me:6 423: result: $with_xterm_new" >&518725 +echo "$as_me:6297: result: $with_xterm_new" >&5 16164 18726 echo "${ECHO_T}$with_xterm_new" >&6 16165 18727 WHICH_XTERM=$with_xterm_new 16166 18728 16167 +echo "$as_me:6 427: checking if xterm backspace sends BS or DEL" >&518729 +echo "$as_me:6301: checking if xterm backspace sends BS or DEL" >&5 16168 18730 +echo $ECHO_N "checking if xterm backspace sends BS or DEL... $ECHO_C" >&6 16169 18731 + … … 16186 18748 + ;; 16187 18749 +esac 16188 +echo "$as_me:6 448: result: $with_xterm_kbs" >&518750 +echo "$as_me:6322: result: $with_xterm_kbs" >&5 16189 18751 +echo "${ECHO_T}$with_xterm_kbs" >&6 16190 18752 +XTERM_KBS=$with_xterm_kbs … … 16197 18759 16198 18760 -echo "$as_me:6260: checking for list of terminfo directories" >&5 16199 +echo "$as_me:6 458: checking for list of terminfo directories" >&518761 +echo "$as_me:6332: checking for list of terminfo directories" >&5 16200 18762 echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6 16201 18763 … … 16208 18770 if test "${with_terminfo_dirs+set}" = set; then 16209 18771 withval="$with_terminfo_dirs" 16210 @@ -6297,7 +6500,7 @@ 18772 @@ -6285,7 +6362,7 @@ 18773 ;; 18774 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 18775 ;; 18776 -.\${*prefix}*) #(vi 18777 +.\${*prefix}*|.\${*dir}*) #(vi 18778 eval cf_src_path="$cf_src_path" 18779 case ".$cf_src_path" in #(vi 18780 .NONE/*) 18781 @@ -6297,7 +6374,7 @@ 16211 18782 cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%` 16212 18783 ;; 16213 18784 *) 16214 18785 - { { echo "$as_me:6300: error: expected a pathname, not \"$cf_src_path\"" >&5 16215 + { { echo "$as_me:6 503: error: expected a pathname, not \"$cf_src_path\"" >&518786 + { { echo "$as_me:6377: error: expected a pathname, not \"$cf_src_path\"" >&5 16216 18787 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;} 16217 18788 { (exit 1); exit 1; }; } 16218 18789 ;; 16219 @@ -6310,13 +6 513,13 @@18790 @@ -6310,13 +6387,13 @@ 16220 18791 16221 18792 eval 'TERMINFO_DIRS="$cf_dst_path"' 16222 18793 16223 18794 -echo "$as_me:6313: result: $TERMINFO_DIRS" >&5 16224 +echo "$as_me:6 516: result: $TERMINFO_DIRS" >&518795 +echo "$as_me:6390: result: $TERMINFO_DIRS" >&5 16225 18796 echo "${ECHO_T}$TERMINFO_DIRS" >&6 16226 18797 test -n "$TERMINFO_DIRS" && cat >>confdefs.h <<EOF … … 16229 18800 16230 18801 -echo "$as_me:6319: checking for default terminfo directory" >&5 16231 +echo "$as_me:6 522: checking for default terminfo directory" >&518802 +echo "$as_me:6396: checking for default terminfo directory" >&5 16232 18803 echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6 16233 18804 16234 18805 # Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given. 16235 @@ -6352,7 +6555,7 @@ 18806 @@ -6340,7 +6417,7 @@ 18807 ;; 18808 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 18809 ;; 18810 -.\${*prefix}*) #(vi 18811 +.\${*prefix}*|.\${*dir}*) #(vi 18812 eval withval="$withval" 18813 case ".$withval" in #(vi 18814 .NONE/*) 18815 @@ -6352,7 +6429,7 @@ 16236 18816 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 16237 18817 ;; 16238 18818 *) 16239 18819 - { { echo "$as_me:6355: error: expected a pathname, not \"$withval\"" >&5 16240 + { { echo "$as_me:6 558: error: expected a pathname, not \"$withval\"" >&518820 + { { echo "$as_me:6432: error: expected a pathname, not \"$withval\"" >&5 16241 18821 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 16242 18822 { (exit 1); exit 1; }; } 16243 18823 ;; 16244 @@ -6361,7 +6 564,7 @@18824 @@ -6361,7 +6438,7 @@ 16245 18825 fi 16246 18826 TERMINFO="$withval" 16247 18827 16248 18828 -echo "$as_me:6364: result: $TERMINFO" >&5 16249 +echo "$as_me:6 567: result: $TERMINFO" >&518829 +echo "$as_me:6441: result: $TERMINFO" >&5 16250 18830 echo "${ECHO_T}$TERMINFO" >&6 16251 18831 cat >>confdefs.h <<EOF 16252 18832 #define TERMINFO "$TERMINFO" 16253 @@ -6371,7 +6 574,7 @@18833 @@ -6371,7 +6448,7 @@ 16254 18834 16255 18835 ### use option --disable-big-core to make tic run on small machines 16256 18836 ### We need 4Mb, check if we can allocate 50% more than that. 16257 18837 -echo "$as_me:6374: checking if big-core option selected" >&5 16258 +echo "$as_me:6 577: checking if big-core option selected" >&518838 +echo "$as_me:6451: checking if big-core option selected" >&5 16259 18839 echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6 16260 18840 16261 18841 # Check whether --enable-big-core or --disable-big-core was given. 16262 @@ -6383,7 +6 586,7 @@18842 @@ -6383,7 +6460,7 @@ 16263 18843 with_big_core=no 16264 18844 else 16265 18845 cat >conftest.$ac_ext <<_ACEOF 16266 18846 -#line 6386 "configure" 16267 +#line 6 589"configure"18847 +#line 6463 "configure" 16268 18848 #include "confdefs.h" 16269 18849 16270 18850 #include <stdlib.h> 16271 @@ -6397,15 +6 600,15 @@18851 @@ -6397,15 +6474,15 @@ 16272 18852 } 16273 18853 _ACEOF 16274 18854 rm -f conftest$ac_exeext 16275 18855 -if { (eval echo "$as_me:6400: \"$ac_link\"") >&5 16276 +if { (eval echo "$as_me:6 603: \"$ac_link\"") >&518856 +if { (eval echo "$as_me:6477: \"$ac_link\"") >&5 16277 18857 (eval $ac_link) 2>&5 16278 18858 ac_status=$? 16279 18859 - echo "$as_me:6403: \$? = $ac_status" >&5 16280 + echo "$as_me:6 606: \$? = $ac_status" >&518860 + echo "$as_me:6480: \$? = $ac_status" >&5 16281 18861 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 16282 18862 - { (eval echo "$as_me:6405: \"$ac_try\"") >&5 16283 + { (eval echo "$as_me:6 608: \"$ac_try\"") >&518863 + { (eval echo "$as_me:6482: \"$ac_try\"") >&5 16284 18864 (eval $ac_try) 2>&5 16285 18865 ac_status=$? 16286 18866 - echo "$as_me:6408: \$? = $ac_status" >&5 16287 + echo "$as_me:6 611: \$? = $ac_status" >&518867 + echo "$as_me:6485: \$? = $ac_status" >&5 16288 18868 (exit $ac_status); }; }; then 16289 18869 with_big_core=yes 16290 18870 else 16291 @@ -6417,7 +6 620,7 @@18871 @@ -6417,7 +6494,7 @@ 16292 18872 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 16293 18873 fi 16294 18874 fi; 16295 18875 -echo "$as_me:6420: result: $with_big_core" >&5 16296 +echo "$as_me:6 623: result: $with_big_core" >&518876 +echo "$as_me:6497: result: $with_big_core" >&5 16297 18877 echo "${ECHO_T}$with_big_core" >&6 16298 18878 test "$with_big_core" = "yes" && cat >>confdefs.h <<\EOF 16299 18879 #define HAVE_BIG_CORE 1 16300 @@ -6426,7 +6 629,7 @@18880 @@ -6426,7 +6503,7 @@ 16301 18881 ### ISO C only guarantees 512-char strings, we have tables which load faster 16302 18882 ### when constructed using "big" strings. More than the C compiler, the awk 16303 18883 ### program is a limit on most vendor UNIX systems. Check that we can build. 16304 18884 -echo "$as_me:6429: checking if big-strings option selected" >&5 16305 +echo "$as_me:6 632: checking if big-strings option selected" >&518885 +echo "$as_me:6506: checking if big-strings option selected" >&5 16306 18886 echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6 16307 18887 16308 18888 # Check whether --enable-big-strings or --disable-big-strings was given. 16309 @@ -6440,8 +6 643,8 @@18889 @@ -6440,8 +6517,8 @@ 16310 18890 eval with_big_strings=no 16311 18891 ;; … … 16318 18898 else 16319 18899 eval with_big_strings=no 16320 @@ -6450,14 +6 653,14 @@18900 @@ -6450,14 +6527,14 @@ 16321 18901 esac 16322 18902 16323 18903 fi; 16324 18904 -echo "$as_me:6453: result: $with_big_strings" >&5 16325 +echo "$as_me:6 656: result: $with_big_strings" >&518905 +echo "$as_me:6530: result: $with_big_strings" >&5 16326 18906 echo "${ECHO_T}$with_big_strings" >&6 16327 18907 … … 16331 18911 ### use option --enable-termcap to compile in the termcap fallback support 16332 18912 -echo "$as_me:6460: checking if you want termcap-fallback support" >&5 16333 +echo "$as_me:6 663: checking if you want termcap-fallback support" >&518913 +echo "$as_me:6537: checking if you want termcap-fallback support" >&5 16334 18914 echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6 16335 18915 16336 18916 # Check whether --enable-termcap or --disable-termcap was given. 16337 @@ -6467,13 +6 670,13 @@18917 @@ -6467,13 +6544,13 @@ 16338 18918 else 16339 18919 with_termcap=no 16340 18920 fi; 16341 18921 -echo "$as_me:6470: result: $with_termcap" >&5 16342 +echo "$as_me:6 673: result: $with_termcap" >&518922 +echo "$as_me:6547: result: $with_termcap" >&5 16343 18923 echo "${ECHO_T}$with_termcap" >&6 16344 18924 … … 16347 18927 if test -z "$with_fallback" ; then 16348 18928 - { { echo "$as_me:6476: error: You have disabled the database w/o specifying fallbacks" >&5 16349 + { { echo "$as_me:6 679: error: You have disabled the database w/o specifying fallbacks" >&518929 + { { echo "$as_me:6553: error: You have disabled the database w/o specifying fallbacks" >&5 16350 18930 echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;} 16351 18931 { (exit 1); exit 1; }; } 16352 18932 fi 16353 @@ -6485,7 +6 688,7 @@18933 @@ -6485,7 +6562,7 @@ 16354 18934 else 16355 18935 16356 18936 if test "$with_ticlib" != no ; then 16357 18937 - { { echo "$as_me:6488: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5 16358 + { { echo "$as_me:6 691: error: Options --with-ticlib and --enable-termcap cannot be combined" >&518938 + { { echo "$as_me:6565: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5 16359 18939 echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;} 16360 18940 { (exit 1); exit 1; }; } 16361 18941 fi 16362 @@ -6494,7 +6 697,7 @@18942 @@ -6494,7 +6571,7 @@ 16363 18943 #define USE_TERMCAP 1 16364 18944 EOF 16365 18945 16366 18946 -echo "$as_me:6497: checking for list of termcap files" >&5 16367 +echo "$as_me:6 700: checking for list of termcap files" >&518947 +echo "$as_me:6574: checking for list of termcap files" >&5 16368 18948 echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6 16369 18949 16370 18950 # Check whether --with-termpath or --without-termpath was given. 16371 @@ -6534,7 +6737,7 @@ 18951 @@ -6522,7 +6599,7 @@ 18952 ;; 18953 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 18954 ;; 18955 -.\${*prefix}*) #(vi 18956 +.\${*prefix}*|.\${*dir}*) #(vi 18957 eval cf_src_path="$cf_src_path" 18958 case ".$cf_src_path" in #(vi 18959 .NONE/*) 18960 @@ -6534,7 +6611,7 @@ 16372 18961 cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%` 16373 18962 ;; 16374 18963 *) 16375 18964 - { { echo "$as_me:6537: error: expected a pathname, not \"$cf_src_path\"" >&5 16376 + { { echo "$as_me:6 740: error: expected a pathname, not \"$cf_src_path\"" >&518965 + { { echo "$as_me:6614: error: expected a pathname, not \"$cf_src_path\"" >&5 16377 18966 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;} 16378 18967 { (exit 1); exit 1; }; } 16379 18968 ;; 16380 @@ -6547,14 +6 750,14 @@18969 @@ -6547,14 +6624,14 @@ 16381 18970 16382 18971 eval 'TERMPATH="$cf_dst_path"' 16383 18972 16384 18973 -echo "$as_me:6550: result: $TERMPATH" >&5 16385 +echo "$as_me:6 753: result: $TERMPATH" >&518974 +echo "$as_me:6627: result: $TERMPATH" >&5 16386 18975 echo "${ECHO_T}$TERMPATH" >&6 16387 18976 test -n "$TERMPATH" && cat >>confdefs.h <<EOF … … 16391 18980 ### use option --enable-getcap to use a hacked getcap for reading termcaps 16392 18981 -echo "$as_me:6557: checking if fast termcap-loader is needed" >&5 16393 +echo "$as_me:6 760: checking if fast termcap-loader is needed" >&518982 +echo "$as_me:6634: checking if fast termcap-loader is needed" >&5 16394 18983 echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6 16395 18984 16396 18985 # Check whether --enable-getcap or --disable-getcap was given. 16397 @@ -6564,13 +6 767,13 @@18986 @@ -6564,13 +6641,13 @@ 16398 18987 else 16399 18988 with_getcap=no 16400 18989 fi; 16401 18990 -echo "$as_me:6567: result: $with_getcap" >&5 16402 +echo "$as_me:6 770: result: $with_getcap" >&518991 +echo "$as_me:6644: result: $with_getcap" >&5 16403 18992 echo "${ECHO_T}$with_getcap" >&6 16404 18993 test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF … … 16407 18996 16408 18997 -echo "$as_me:6573: checking if translated termcaps will be cached in ~/.terminfo" >&5 16409 +echo "$as_me:6 776: checking if translated termcaps will be cached in ~/.terminfo" >&518998 +echo "$as_me:6650: checking if translated termcaps will be cached in ~/.terminfo" >&5 16410 18999 echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6 16411 19000 16412 19001 # Check whether --enable-getcap-cache or --disable-getcap-cache was given. 16413 @@ -6580,7 +6 783,7 @@19002 @@ -6580,7 +6657,7 @@ 16414 19003 else 16415 19004 with_getcap_cache=no 16416 19005 fi; 16417 19006 -echo "$as_me:6583: result: $with_getcap_cache" >&5 16418 +echo "$as_me:6 786: result: $with_getcap_cache" >&519007 +echo "$as_me:6660: result: $with_getcap_cache" >&5 16419 19008 echo "${ECHO_T}$with_getcap_cache" >&6 16420 19009 test "$with_getcap_cache" = "yes" && cat >>confdefs.h <<\EOF 16421 19010 #define USE_GETCAP_CACHE 1 16422 @@ -6589,7 +6 792,7 @@19011 @@ -6589,7 +6666,7 @@ 16423 19012 fi 16424 19013 16425 19014 ### Use option --disable-home-terminfo to completely remove ~/.terminfo 16426 19015 -echo "$as_me:6592: checking if ~/.terminfo is wanted" >&5 16427 +echo "$as_me:6 795: checking if ~/.terminfo is wanted" >&519016 +echo "$as_me:6669: checking if ~/.terminfo is wanted" >&5 16428 19017 echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6 16429 19018 16430 19019 # Check whether --enable-home-terminfo or --disable-home-terminfo was given. 16431 @@ -6599,13 +6 802,13 @@19020 @@ -6599,13 +6676,13 @@ 16432 19021 else 16433 19022 with_home_terminfo=yes 16434 19023 fi; 16435 19024 -echo "$as_me:6602: result: $with_home_terminfo" >&5 16436 +echo "$as_me:6 805: result: $with_home_terminfo" >&519025 +echo "$as_me:6679: result: $with_home_terminfo" >&5 16437 19026 echo "${ECHO_T}$with_home_terminfo" >&6 16438 19027 test "$with_home_terminfo" = "yes" && cat >>confdefs.h <<\EOF … … 16441 19030 16442 19031 -echo "$as_me:6608: checking if you want to use restricted environment when running as root" >&5 16443 +echo "$as_me:6 811: checking if you want to use restricted environment when running as root" >&519032 +echo "$as_me:6685: checking if you want to use restricted environment when running as root" >&5 16444 19033 echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6 16445 19034 16446 19035 # Check whether --enable-root-environ or --disable-root-environ was given. 16447 @@ -6615,7 +6 818,7 @@19036 @@ -6615,7 +6692,7 @@ 16448 19037 else 16449 19038 with_root_environ=yes 16450 19039 fi; 16451 19040 -echo "$as_me:6618: result: $with_root_environ" >&5 16452 +echo "$as_me:6 821: result: $with_root_environ" >&519041 +echo "$as_me:6695: result: $with_root_environ" >&5 16453 19042 echo "${ECHO_T}$with_root_environ" >&6 16454 19043 test "$with_root_environ" = yes && cat >>confdefs.h <<\EOF 16455 19044 #define USE_ROOT_ENVIRON 1 16456 @@ -6629,13 +6 832,13 @@19045 @@ -6629,13 +6706,13 @@ 16457 19046 unlink 16458 19047 do 16459 19048 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 16460 19049 -echo "$as_me:6632: checking for $ac_func" >&5 16461 +echo "$as_me:6 835: checking for $ac_func" >&519050 +echo "$as_me:6709: checking for $ac_func" >&5 16462 19051 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 16463 19052 if eval "test \"\${$as_ac_var+set}\" = set"; then … … 16466 19055 cat >conftest.$ac_ext <<_ACEOF 16467 19056 -#line 6638 "configure" 16468 +#line 6 841"configure"19057 +#line 6715 "configure" 16469 19058 #include "confdefs.h" 16470 19059 /* System header to define __stub macros and hopefully few prototypes, 16471 19060 which can conflict with char $ac_func (); below. */ 16472 @@ -6666,16 +6869,16 @@ 19061 @@ -6658,7 +6735,7 @@ 19062 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 19063 choke me 19064 #else 19065 -f = $ac_func; 19066 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 19067 #endif 19068 19069 ; 19070 @@ -6666,16 +6743,16 @@ 16473 19071 } 16474 19072 _ACEOF 16475 19073 rm -f conftest.$ac_objext conftest$ac_exeext 16476 19074 -if { (eval echo "$as_me:6669: \"$ac_link\"") >&5 16477 +if { (eval echo "$as_me:6 872: \"$ac_link\"") >&519075 +if { (eval echo "$as_me:6746: \"$ac_link\"") >&5 16478 19076 (eval $ac_link) 2>&5 16479 19077 ac_status=$? 16480 19078 - echo "$as_me:6672: \$? = $ac_status" >&5 16481 + echo "$as_me:6 875: \$? = $ac_status" >&519079 + echo "$as_me:6749: \$? = $ac_status" >&5 16482 19080 (exit $ac_status); } && 16483 19081 { ac_try='test -s conftest$ac_exeext' 16484 19082 - { (eval echo "$as_me:6675: \"$ac_try\"") >&5 16485 + { (eval echo "$as_me:6 878: \"$ac_try\"") >&519083 + { (eval echo "$as_me:6752: \"$ac_try\"") >&5 16486 19084 (eval $ac_try) 2>&5 16487 19085 ac_status=$? 16488 19086 - echo "$as_me:6678: \$? = $ac_status" >&5 16489 + echo "$as_me:6 881: \$? = $ac_status" >&519087 + echo "$as_me:6755: \$? = $ac_status" >&5 16490 19088 (exit $ac_status); }; }; then 16491 19089 eval "$as_ac_var=yes" 16492 19090 else 16493 @@ -6685,7 +6 888,7 @@19091 @@ -6685,7 +6762,7 @@ 16494 19092 fi 16495 19093 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16496 19094 fi 16497 19095 -echo "$as_me:6688: result: `eval echo '${'$as_ac_var'}'`" >&5 16498 +echo "$as_me:6 891: result: `eval echo '${'$as_ac_var'}'`" >&519096 +echo "$as_me:6765: result: `eval echo '${'$as_ac_var'}'`" >&5 16499 19097 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 16500 19098 if test `eval echo '${'$as_ac_var'}'` = yes; then 16501 19099 cat >>confdefs.h <<EOF 16502 @@ -6702,13 +6 905,13 @@19100 @@ -6702,13 +6779,13 @@ 16503 19101 symlink 16504 19102 do 16505 19103 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 16506 19104 -echo "$as_me:6705: checking for $ac_func" >&5 16507 +echo "$as_me:6 908: checking for $ac_func" >&519105 +echo "$as_me:6782: checking for $ac_func" >&5 16508 19106 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 16509 19107 if eval "test \"\${$as_ac_var+set}\" = set"; then … … 16512 19110 cat >conftest.$ac_ext <<_ACEOF 16513 19111 -#line 6711 "configure" 16514 +#line 6 914"configure"19112 +#line 6788 "configure" 16515 19113 #include "confdefs.h" 16516 19114 /* System header to define __stub macros and hopefully few prototypes, 16517 19115 which can conflict with char $ac_func (); below. */ 16518 @@ -6739,16 +6942,16 @@ 19116 @@ -6731,7 +6808,7 @@ 19117 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 19118 choke me 19119 #else 19120 -f = $ac_func; 19121 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 19122 #endif 19123 19124 ; 19125 @@ -6739,16 +6816,16 @@ 16519 19126 } 16520 19127 _ACEOF 16521 19128 rm -f conftest.$ac_objext conftest$ac_exeext 16522 19129 -if { (eval echo "$as_me:6742: \"$ac_link\"") >&5 16523 +if { (eval echo "$as_me:6 945: \"$ac_link\"") >&519130 +if { (eval echo "$as_me:6819: \"$ac_link\"") >&5 16524 19131 (eval $ac_link) 2>&5 16525 19132 ac_status=$? 16526 19133 - echo "$as_me:6745: \$? = $ac_status" >&5 16527 + echo "$as_me:6 948: \$? = $ac_status" >&519134 + echo "$as_me:6822: \$? = $ac_status" >&5 16528 19135 (exit $ac_status); } && 16529 19136 { ac_try='test -s conftest$ac_exeext' 16530 19137 - { (eval echo "$as_me:6748: \"$ac_try\"") >&5 16531 + { (eval echo "$as_me:6 951: \"$ac_try\"") >&519138 + { (eval echo "$as_me:6825: \"$ac_try\"") >&5 16532 19139 (eval $ac_try) 2>&5 16533 19140 ac_status=$? 16534 19141 - echo "$as_me:6751: \$? = $ac_status" >&5 16535 + echo "$as_me:6 954: \$? = $ac_status" >&519142 + echo "$as_me:6828: \$? = $ac_status" >&5 16536 19143 (exit $ac_status); }; }; then 16537 19144 eval "$as_ac_var=yes" 16538 19145 else 16539 @@ -6758,7 +6 961,7 @@19146 @@ -6758,7 +6835,7 @@ 16540 19147 fi 16541 19148 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 16542 19149 fi 16543 19150 -echo "$as_me:6761: result: `eval echo '${'$as_ac_var'}'`" >&5 16544 +echo "$as_me:6 964: result: `eval echo '${'$as_ac_var'}'`" >&519151 +echo "$as_me:6838: result: `eval echo '${'$as_ac_var'}'`" >&5 16545 19152 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 16546 19153 if test `eval echo '${'$as_ac_var'}'` = yes; then 16547 19154 cat >>confdefs.h <<EOF 16548 @@ -6769,7 +6 972,7 @@19155 @@ -6769,7 +6846,7 @@ 16549 19156 done 16550 19157 16551 19158 else 16552 19159 - echo "$as_me:6772: checking if link/symlink functions work" >&5 16553 + echo "$as_me:6 975: checking if link/symlink functions work" >&519160 + echo "$as_me:6849: checking if link/symlink functions work" >&5 16554 19161 echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6 16555 19162 if test "${cf_cv_link_funcs+set}" = set; then 16556 19163 echo $ECHO_N "(cached) $ECHO_C" >&6 16557 @@ -6782,7 +6 985,7 @@19164 @@ -6782,7 +6859,7 @@ 16558 19165 eval 'ac_cv_func_'$cf_func'=error' 16559 19166 else 16560 19167 cat >conftest.$ac_ext <<_ACEOF 16561 19168 -#line 6785 "configure" 16562 +#line 6 988"configure"19169 +#line 6862 "configure" 16563 19170 #include "confdefs.h" 16564 19171 16565 19172 #include <sys/types.h> 16566 @@ -6812,15 + 7015,15 @@19173 @@ -6812,15 +6889,15 @@ 16567 19174 16568 19175 _ACEOF 16569 19176 rm -f conftest$ac_exeext 16570 19177 -if { (eval echo "$as_me:6815: \"$ac_link\"") >&5 16571 +if { (eval echo "$as_me: 7018: \"$ac_link\"") >&519178 +if { (eval echo "$as_me:6892: \"$ac_link\"") >&5 16572 19179 (eval $ac_link) 2>&5 16573 19180 ac_status=$? 16574 19181 - echo "$as_me:6818: \$? = $ac_status" >&5 16575 + echo "$as_me: 7021: \$? = $ac_status" >&519182 + echo "$as_me:6895: \$? = $ac_status" >&5 16576 19183 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 16577 19184 - { (eval echo "$as_me:6820: \"$ac_try\"") >&5 16578 + { (eval echo "$as_me: 7023: \"$ac_try\"") >&519185 + { (eval echo "$as_me:6897: \"$ac_try\"") >&5 16579 19186 (eval $ac_try) 2>&5 16580 19187 ac_status=$? 16581 19188 - echo "$as_me:6823: \$? = $ac_status" >&5 16582 + echo "$as_me: 7026: \$? = $ac_status" >&519189 + echo "$as_me:6900: \$? = $ac_status" >&5 16583 19190 (exit $ac_status); }; }; then 16584 19191 16585 19192 cf_cv_link_funcs="$cf_cv_link_funcs $cf_func" 16586 @@ -6838,7 + 7041,7 @@19193 @@ -6838,7 +6915,7 @@ 16587 19194 test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no 16588 19195 16589 19196 fi 16590 19197 -echo "$as_me:6841: result: $cf_cv_link_funcs" >&5 16591 +echo "$as_me: 7044: result: $cf_cv_link_funcs" >&519198 +echo "$as_me:6918: result: $cf_cv_link_funcs" >&5 16592 19199 echo "${ECHO_T}$cf_cv_link_funcs" >&6 16593 19200 test "$ac_cv_func_link" = yes && cat >>confdefs.h <<\EOF 16594 19201 #define HAVE_LINK 1 16595 @@ -6856,7 + 7059,7 @@19202 @@ -6856,7 +6933,7 @@ 16596 19203 # soft links (symbolic links) are useful for some systems where hard links do 16597 19204 # not work, or to make it simpler to copy terminfo trees around. 16598 19205 if test "$ac_cv_func_symlink" = yes ; then 16599 19206 - echo "$as_me:6859: checking if tic should use symbolic links" >&5 16600 + echo "$as_me: 7062: checking if tic should use symbolic links" >&519207 + echo "$as_me:6936: checking if tic should use symbolic links" >&5 16601 19208 echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6 16602 19209 16603 19210 # Check whether --enable-symlinks or --disable-symlinks was given. 16604 @@ -6866,21 + 7069,21 @@19211 @@ -6866,21 +6943,21 @@ 16605 19212 else 16606 19213 with_symlinks=no 16607 19214 fi; 16608 19215 - echo "$as_me:6869: result: $with_symlinks" >&5 16609 + echo "$as_me: 7072: result: $with_symlinks" >&519216 + echo "$as_me:6946: result: $with_symlinks" >&5 16610 19217 echo "${ECHO_T}$with_symlinks" >&6 16611 19218 fi … … 16615 19222 if test "$with_symlinks" = no ; then 16616 19223 - echo "$as_me:6876: checking if tic should use hard links" >&5 16617 + echo "$as_me: 7079: checking if tic should use hard links" >&519224 + echo "$as_me:6953: checking if tic should use hard links" >&5 16618 19225 echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6 16619 19226 if test "$ac_cv_func_link" = yes ; then … … 16623 19230 fi 16624 19231 - echo "$as_me:6883: result: $with_links" >&5 16625 + echo "$as_me: 7086: result: $with_links" >&519232 + echo "$as_me:6960: result: $with_links" >&5 16626 19233 echo "${ECHO_T}$with_links" >&6 16627 19234 fi 16628 19235 16629 @@ -6893,7 + 7096,7 @@19236 @@ -6893,7 +6970,7 @@ 16630 19237 EOF 16631 19238 16632 19239 ### use option --enable-broken-linker to force on use of broken-linker support 16633 19240 -echo "$as_me:6896: checking if you want broken-linker support code" >&5 16634 +echo "$as_me: 7099: checking if you want broken-linker support code" >&519241 +echo "$as_me:6973: checking if you want broken-linker support code" >&5 16635 19242 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6 16636 19243 16637 19244 # Check whether --enable-broken_linker or --disable-broken_linker was given. 16638 @@ -6903,7 + 7106,7 @@19245 @@ -6903,7 +6980,7 @@ 16639 19246 else 16640 19247 with_broken_linker=${BROKEN_LINKER:-no} 16641 19248 fi; 16642 19249 -echo "$as_me:6906: result: $with_broken_linker" >&5 16643 +echo "$as_me: 7109: result: $with_broken_linker" >&519250 +echo "$as_me:6983: result: $with_broken_linker" >&5 16644 19251 echo "${ECHO_T}$with_broken_linker" >&6 16645 19252 16646 19253 BROKEN_LINKER=0 16647 @@ -6923,14 +7 126,14 @@19254 @@ -6923,14 +7000,14 @@ 16648 19255 BROKEN_LINKER=1 16649 19256 test -n "$verbose" && echo " cygwin linker is broken anyway" 1>&6 16650 19257 16651 19258 -echo "${as_me:-configure}:6926: testing cygwin linker is broken anyway ..." 1>&5 16652 +echo "${as_me:-configure}:7 129: testing cygwin linker is broken anyway ..." 1>&519259 +echo "${as_me:-configure}:7003: testing cygwin linker is broken anyway ..." 1>&5 16653 19260 16654 19261 ;; … … 16658 19265 ### use option --enable-bsdpad to have tputs process BSD-style prefix padding 16659 19266 -echo "$as_me:6933: checking if tputs should process BSD-style prefix padding" >&5 16660 +echo "$as_me:7 136: checking if tputs should process BSD-style prefix padding" >&519267 +echo "$as_me:7010: checking if tputs should process BSD-style prefix padding" >&5 16661 19268 echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6 16662 19269 16663 19270 # Check whether --enable-bsdpad or --disable-bsdpad was given. 16664 @@ -6940,7 +7 143,7 @@19271 @@ -6940,7 +7017,7 @@ 16665 19272 else 16666 19273 with_bsdpad=no 16667 19274 fi; 16668 19275 -echo "$as_me:6943: result: $with_bsdpad" >&5 16669 +echo "$as_me:7 146: result: $with_bsdpad" >&519276 +echo "$as_me:7020: result: $with_bsdpad" >&5 16670 19277 echo "${ECHO_T}$with_bsdpad" >&6 16671 19278 test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF 16672 19279 #define BSD_TPUTS 1 16673 @@ -6962,7 +7 165,7 @@19280 @@ -6962,7 +7039,7 @@ 16674 19281 cf_xopen_source= 16675 19282 … … 16680 19287 ;; 16681 19288 cygwin) #(vi 16682 @@ -6973,6 +7 176,7 @@19289 @@ -6973,6 +7050,7 @@ 16683 19290 ;; 16684 19291 darwin*) #(vi … … 16688 19295 freebsd*|dragonfly*) #(vi 16689 19296 # 5.x headers associate 16690 @@ -6990,17 +7 194,18 @@19297 @@ -6990,17 +7068,18 @@ 16691 19298 ;; 16692 19299 irix[56].*) #(vi … … 16697 19304 16698 19305 -echo "$as_me:6996: checking if we must define _GNU_SOURCE" >&5 16699 +echo "$as_me:7 201: checking if we must define _GNU_SOURCE" >&519306 +echo "$as_me:7075: checking if we must define _GNU_SOURCE" >&5 16700 19307 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 16701 19308 if test "${cf_cv_gnu_source+set}" = set; then … … 16705 19312 cat >conftest.$ac_ext <<_ACEOF 16706 19313 -#line 7003 "configure" 16707 +#line 7 208"configure"19314 +#line 7082 "configure" 16708 19315 #include "confdefs.h" 16709 19316 #include <sys/types.h> 16710 19317 int 16711 @@ -7015,16 +7 220,16 @@19318 @@ -7015,16 +7094,16 @@ 16712 19319 } 16713 19320 _ACEOF 16714 19321 rm -f conftest.$ac_objext 16715 19322 -if { (eval echo "$as_me:7018: \"$ac_compile\"") >&5 16716 +if { (eval echo "$as_me:7 223: \"$ac_compile\"") >&519323 +if { (eval echo "$as_me:7097: \"$ac_compile\"") >&5 16717 19324 (eval $ac_compile) 2>&5 16718 19325 ac_status=$? 16719 19326 - echo "$as_me:7021: \$? = $ac_status" >&5 16720 + echo "$as_me:7 226: \$? = $ac_status" >&519327 + echo "$as_me:7100: \$? = $ac_status" >&5 16721 19328 (exit $ac_status); } && 16722 19329 { ac_try='test -s conftest.$ac_objext' 16723 19330 - { (eval echo "$as_me:7024: \"$ac_try\"") >&5 16724 + { (eval echo "$as_me:7 229: \"$ac_try\"") >&519331 + { (eval echo "$as_me:7103: \"$ac_try\"") >&5 16725 19332 (eval $ac_try) 2>&5 16726 19333 ac_status=$? 16727 19334 - echo "$as_me:7027: \$? = $ac_status" >&5 16728 + echo "$as_me:7 232: \$? = $ac_status" >&519335 + echo "$as_me:7106: \$? = $ac_status" >&5 16729 19336 (exit $ac_status); }; }; then 16730 19337 cf_cv_gnu_source=no 16731 19338 else 16732 @@ -7033,7 +7 238,7 @@19339 @@ -7033,7 +7112,7 @@ 16733 19340 cf_save="$CPPFLAGS" 16734 19341 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" 16735 19342 cat >conftest.$ac_ext <<_ACEOF 16736 19343 -#line 7036 "configure" 16737 +#line 7 241"configure"19344 +#line 7115 "configure" 16738 19345 #include "confdefs.h" 16739 19346 #include <sys/types.h> 16740 19347 int 16741 @@ -7048,16 +7 253,16 @@19348 @@ -7048,16 +7127,16 @@ 16742 19349 } 16743 19350 _ACEOF 16744 19351 rm -f conftest.$ac_objext 16745 19352 -if { (eval echo "$as_me:7051: \"$ac_compile\"") >&5 16746 +if { (eval echo "$as_me:7 256: \"$ac_compile\"") >&519353 +if { (eval echo "$as_me:7130: \"$ac_compile\"") >&5 16747 19354 (eval $ac_compile) 2>&5 16748 19355 ac_status=$? 16749 19356 - echo "$as_me:7054: \$? = $ac_status" >&5 16750 + echo "$as_me:7 259: \$? = $ac_status" >&519357 + echo "$as_me:7133: \$? = $ac_status" >&5 16751 19358 (exit $ac_status); } && 16752 19359 { ac_try='test -s conftest.$ac_objext' 16753 19360 - { (eval echo "$as_me:7057: \"$ac_try\"") >&5 16754 + { (eval echo "$as_me:7 262: \"$ac_try\"") >&519361 + { (eval echo "$as_me:7136: \"$ac_try\"") >&5 16755 19362 (eval $ac_try) 2>&5 16756 19363 ac_status=$? 16757 19364 - echo "$as_me:7060: \$? = $ac_status" >&5 16758 + echo "$as_me:7 265: \$? = $ac_status" >&519365 + echo "$as_me:7139: \$? = $ac_status" >&5 16759 19366 (exit $ac_status); }; }; then 16760 19367 cf_cv_gnu_source=no 16761 19368 else 16762 @@ -7072,51 +7 277,45 @@19369 @@ -7072,51 +7151,45 @@ 16763 19370 rm -f conftest.$ac_objext conftest.$ac_ext 16764 19371 16765 19372 fi 16766 19373 -echo "$as_me:7075: result: $cf_cv_gnu_source" >&5 16767 +echo "$as_me:7 280: result: $cf_cv_gnu_source" >&519374 +echo "$as_me:7154: result: $cf_cv_gnu_source" >&5 16768 19375 echo "${ECHO_T}$cf_cv_gnu_source" >&6 16769 19376 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" … … 16814 19421 + -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` 16815 19422 + 16816 +echo "$as_me:7 302: checking if we should define _POSIX_C_SOURCE" >&519423 +echo "$as_me:7176: checking if we should define _POSIX_C_SOURCE" >&5 16817 19424 +echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 16818 19425 +if test "${cf_cv_posix_c_source+set}" = set; then … … 16820 19427 else 16821 19428 16822 +echo "${as_me:-configure}:7 308: testing if the symbol is already defined go no further ..." 1>&519429 +echo "${as_me:-configure}:7182: testing if the symbol is already defined go no further ..." 1>&5 16823 19430 + 16824 19431 cat >conftest.$ac_ext <<_ACEOF 16825 19432 -#line 7112 "configure" 16826 +#line 7 311"configure"19433 +#line 7185 "configure" 16827 19434 #include "confdefs.h" 16828 19435 #include <sys/types.h> … … 16836 19443 #endif 16837 19444 ; 16838 @@ -7124,32 +7 323,44 @@19445 @@ -7124,32 +7197,44 @@ 16839 19446 } 16840 19447 _ACEOF 16841 19448 rm -f conftest.$ac_objext 16842 19449 -if { (eval echo "$as_me:7127: \"$ac_compile\"") >&5 16843 +if { (eval echo "$as_me:7 326: \"$ac_compile\"") >&519450 +if { (eval echo "$as_me:7200: \"$ac_compile\"") >&5 16844 19451 (eval $ac_compile) 2>&5 16845 19452 ac_status=$? 16846 19453 - echo "$as_me:7130: \$? = $ac_status" >&5 16847 + echo "$as_me:7 329: \$? = $ac_status" >&519454 + echo "$as_me:7203: \$? = $ac_status" >&5 16848 19455 (exit $ac_status); } && 16849 19456 { ac_try='test -s conftest.$ac_objext' 16850 19457 - { (eval echo "$as_me:7133: \"$ac_try\"") >&5 16851 + { (eval echo "$as_me:7 332: \"$ac_try\"") >&519458 + { (eval echo "$as_me:7206: \"$ac_try\"") >&5 16852 19459 (eval $ac_try) 2>&5 16853 19460 ac_status=$? 16854 19461 - echo "$as_me:7136: \$? = $ac_status" >&5 16855 + echo "$as_me:7 335: \$? = $ac_status" >&519462 + echo "$as_me:7209: \$? = $ac_status" >&5 16856 19463 (exit $ac_status); }; }; then 16857 19464 - cf_cv_xopen_source=no … … 16879 19486 + if test "$cf_want_posix_source" = yes ; then 16880 19487 + cat >conftest.$ac_ext <<_ACEOF 16881 +#line 7 356"configure"19488 +#line 7230 "configure" 16882 19489 #include "confdefs.h" 16883 19490 #include <sys/types.h> … … 16891 19498 #endif 16892 19499 ; 16893 @@ -7157,5 7 +7368,94@@19500 @@ -7157,50 +7242,87 @@ 16894 19501 } 16895 19502 _ACEOF 16896 19503 rm -f conftest.$ac_objext 16897 19504 -if { (eval echo "$as_me:7160: \"$ac_compile\"") >&5 16898 +if { (eval echo "$as_me:7 371: \"$ac_compile\"") >&519505 +if { (eval echo "$as_me:7245: \"$ac_compile\"") >&5 16899 19506 (eval $ac_compile) 2>&5 16900 19507 ac_status=$? 16901 19508 - echo "$as_me:7163: \$? = $ac_status" >&5 16902 + echo "$as_me:7 374: \$? = $ac_status" >&519509 + echo "$as_me:7248: \$? = $ac_status" >&5 16903 19510 (exit $ac_status); } && 16904 19511 { ac_try='test -s conftest.$ac_objext' 16905 19512 - { (eval echo "$as_me:7166: \"$ac_try\"") >&5 16906 + { (eval echo "$as_me:7 377: \"$ac_try\"") >&519513 + { (eval echo "$as_me:7251: \"$ac_try\"") >&5 16907 19514 (eval $ac_try) 2>&5 16908 19515 ac_status=$? 16909 19516 - echo "$as_me:7169: \$? = $ac_status" >&5 16910 + echo "$as_me:7 380: \$? = $ac_status" >&519517 + echo "$as_me:7254: \$? = $ac_status" >&5 16911 19518 (exit $ac_status); }; }; then 16912 19519 - cf_cv_xopen_source=no … … 16916 19523 cat conftest.$ac_ext >&5 16917 19524 -cf_cv_xopen_source=$cf_XOPEN_SOURCE 16918 -fi 16919 -rm -f conftest.$ac_objext conftest.$ac_ext 19525 +cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE" 19526 fi 19527 rm -f conftest.$ac_objext conftest.$ac_ext 16920 19528 - CPPFLAGS="$cf_save" 16921 -16922 +cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"16923 fi16924 rm -f conftest.$ac_objext conftest.$ac_ext16925 19529 + fi 16926 16927 -fi 16928 -echo "$as_me:7184: result: $cf_cv_xopen_source" >&5 16929 -echo "${ECHO_T}$cf_cv_xopen_source" >&6 16930 - if test "$cf_cv_xopen_source" != no ; then 16931 - 16932 -CFLAGS=`echo "$CFLAGS" | \ 16933 - sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 16934 - -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 16935 +echo "${as_me:-configure}:7391: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 16936 16937 -CPPFLAGS=`echo "$CPPFLAGS" | \ 16938 - sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 16939 - -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 19530 + 19531 +echo "${as_me:-configure}:7265: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 19532 + 16940 19533 + CFLAGS="$cf_trim_CFLAGS" 16941 19534 + CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 16942 16943 - cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 16944 +echo "${as_me:-configure}:7396: testing if the second compile does not leave our definition intact error ..." 1>&5 16945 16946 -cf_fix_cppflags=no 16947 -cf_new_cflags= 16948 -cf_new_cppflags= 16949 -cf_new_extra_cppflags= 19535 + 19536 +echo "${as_me:-configure}:7270: testing if the second compile does not leave our definition intact error ..." 1>&5 19537 + 16950 19538 + cat >conftest.$ac_ext <<_ACEOF 16951 +#line 7 399"configure"19539 +#line 7273 "configure" 16952 19540 +#include "confdefs.h" 16953 19541 +#include <sys/types.h> … … 16956 19544 +{ 16957 19545 16958 -for cf_add_cflags in $cf_temp_xopen_source16959 -do16960 -case $cf_fix_cppflags in16961 -no)16962 - case $cf_add_cflags in #(vi16963 - -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi16964 - case $cf_add_cflags in16965 - -D*)16966 19546 +#ifndef _POSIX_C_SOURCE 16967 19547 +make an error … … 16972 19552 +_ACEOF 16973 19553 +rm -f conftest.$ac_objext 16974 +if { (eval echo "$as_me:7 414: \"$ac_compile\"") >&519554 +if { (eval echo "$as_me:7288: \"$ac_compile\"") >&5 16975 19555 + (eval $ac_compile) 2>&5 16976 19556 + ac_status=$? 16977 + echo "$as_me:7 417: \$? = $ac_status" >&519557 + echo "$as_me:7291: \$? = $ac_status" >&5 16978 19558 + (exit $ac_status); } && 16979 19559 + { ac_try='test -s conftest.$ac_objext' 16980 + { (eval echo "$as_me:7 420: \"$ac_try\"") >&519560 + { (eval echo "$as_me:7294: \"$ac_try\"") >&5 16981 19561 + (eval $ac_try) 2>&5 16982 19562 + ac_status=$? 16983 + echo "$as_me:7 423: \$? = $ac_status" >&519563 + echo "$as_me:7297: \$? = $ac_status" >&5 16984 19564 + (exit $ac_status); }; }; then 16985 19565 + : … … 16988 19568 +cat conftest.$ac_ext >&5 16989 19569 +cf_cv_posix_c_source=no 16990 +fi16991 +rm -f conftest.$ac_objext conftest.$ac_ext19570 fi 19571 rm -f conftest.$ac_objext conftest.$ac_ext 16992 19572 + CFLAGS="$cf_save_CFLAGS" 16993 19573 + CPPFLAGS="$cf_save_CPPFLAGS" 16994 + 19574 19575 fi 19576 -echo "$as_me:7184: result: $cf_cv_xopen_source" >&5 19577 -echo "${ECHO_T}$cf_cv_xopen_source" >&6 19578 - if test "$cf_cv_xopen_source" != no ; then 19579 - 19580 -CFLAGS=`echo "$CFLAGS" | \ 19581 - sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 19582 - -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 19583 +rm -f conftest.$ac_objext conftest.$ac_ext 19584 19585 -CPPFLAGS=`echo "$CPPFLAGS" | \ 19586 - sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 19587 - -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 16995 19588 +fi 16996 +rm -f conftest.$ac_objext conftest.$ac_ext 16997 + 16998 +fi 16999 +echo "$as_me:7439: result: $cf_cv_posix_c_source" >&5 19589 +echo "$as_me:7313: result: $cf_cv_posix_c_source" >&5 17000 19590 +echo "${ECHO_T}$cf_cv_posix_c_source" >&6 17001 + 19591 19592 - cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 17002 19593 +if test "$cf_cv_posix_c_source" != no ; then 17003 19594 + CFLAGS="$cf_trim_CFLAGS" 17004 19595 + CPPFLAGS="$cf_trim_CPPFLAGS" 17005 + 17006 +cf_fix_cppflags=no 17007 +cf_new_cflags= 17008 +cf_new_cppflags= 17009 +cf_new_extra_cppflags= 17010 + 19596 19597 cf_fix_cppflags=no 19598 cf_new_cflags= 19599 cf_new_cppflags= 19600 cf_new_extra_cppflags= 19601 19602 -for cf_add_cflags in $cf_temp_xopen_source 17011 19603 +for cf_add_cflags in $cf_cv_posix_c_source 17012 +do 17013 +case $cf_fix_cppflags in 17014 +no) 17015 + case $cf_add_cflags in #(vi 17016 + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi 17017 + case $cf_add_cflags in 17018 + -D*) 17019 cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` 17020 17021 test "${cf_add_cflags}" != "${cf_tst_cflags}" \ 17022 @@ -7273,7 +7521,215 @@ 19604 do 19605 case $cf_fix_cppflags in 19606 no) 19607 @@ -7273,9 +7395,217 @@ 17023 19608 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 17024 19609 fi … … 17026 19611 - fi 17027 19612 +fi 17028 + 19613 19614 -cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE 17029 19615 + ;; 17030 19616 +netbsd*) #(vi … … 17053 19639 +*) 17054 19640 + 17055 +echo "$as_me:7 552: checking if we should define _XOPEN_SOURCE" >&519641 +echo "$as_me:7426: checking if we should define _XOPEN_SOURCE" >&5 17056 19642 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 17057 19643 +if test "${cf_cv_xopen_source+set}" = set; then … … 17060 19646 + 17061 19647 + cat >conftest.$ac_ext <<_ACEOF 17062 +#line 7 559"configure"19648 +#line 7433 "configure" 17063 19649 +#include "confdefs.h" 17064 19650 + … … 17079 19665 +_ACEOF 17080 19666 +rm -f conftest.$ac_objext 17081 +if { (eval echo "$as_me:7 578: \"$ac_compile\"") >&519667 +if { (eval echo "$as_me:7452: \"$ac_compile\"") >&5 17082 19668 + (eval $ac_compile) 2>&5 17083 19669 + ac_status=$? 17084 + echo "$as_me:7 581: \$? = $ac_status" >&519670 + echo "$as_me:7455: \$? = $ac_status" >&5 17085 19671 + (exit $ac_status); } && 17086 19672 + { ac_try='test -s conftest.$ac_objext' 17087 + { (eval echo "$as_me:7 584: \"$ac_try\"") >&519673 + { (eval echo "$as_me:7458: \"$ac_try\"") >&5 17088 19674 + (eval $ac_try) 2>&5 17089 19675 + ac_status=$? 17090 + echo "$as_me:7 587: \$? = $ac_status" >&519676 + echo "$as_me:7461: \$? = $ac_status" >&5 17091 19677 + (exit $ac_status); }; }; then 17092 19678 + cf_cv_xopen_source=no … … 17097 19683 + CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" 17098 19684 + cat >conftest.$ac_ext <<_ACEOF 17099 +#line 7 596"configure"19685 +#line 7470 "configure" 17100 19686 +#include "confdefs.h" 17101 19687 + … … 17116 19702 +_ACEOF 17117 19703 +rm -f conftest.$ac_objext 17118 +if { (eval echo "$as_me:7 615: \"$ac_compile\"") >&519704 +if { (eval echo "$as_me:7489: \"$ac_compile\"") >&5 17119 19705 + (eval $ac_compile) 2>&5 17120 19706 + ac_status=$? 17121 + echo "$as_me:7 618: \$? = $ac_status" >&519707 + echo "$as_me:7492: \$? = $ac_status" >&5 17122 19708 + (exit $ac_status); } && 17123 19709 + { ac_try='test -s conftest.$ac_objext' 17124 + { (eval echo "$as_me:7 621: \"$ac_try\"") >&519710 + { (eval echo "$as_me:7495: \"$ac_try\"") >&5 17125 19711 + (eval $ac_try) 2>&5 17126 19712 + ac_status=$? 17127 + echo "$as_me:7 624: \$? = $ac_status" >&519713 + echo "$as_me:7498: \$? = $ac_status" >&5 17128 19714 + (exit $ac_status); }; }; then 17129 19715 + cf_cv_xopen_source=no … … 17140 19726 + 17141 19727 +fi 17142 +echo "$as_me:7 639: result: $cf_cv_xopen_source" >&519728 +echo "$as_me:7513: result: $cf_cv_xopen_source" >&5 17143 19729 +echo "${ECHO_T}$cf_cv_xopen_source" >&6 17144 19730 + … … 17234 19820 + 17235 19821 +fi 17236 17237 cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE 17238 17239 @@ -7288,16 +7744,16 @@ 19822 + 19823 +cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE 19824 19825 cf_save_CFLAGS="$CFLAGS" 19826 cf_save_CPPFLAGS="$CPPFLAGS" 19827 @@ -7288,16 +7618,16 @@ 17240 19828 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 17241 19829 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'` 17242 19830 17243 19831 -echo "$as_me:7291: checking if we should define _POSIX_C_SOURCE" >&5 17244 +echo "$as_me:7 747: checking if we should define _POSIX_C_SOURCE" >&519832 +echo "$as_me:7621: checking if we should define _POSIX_C_SOURCE" >&5 17245 19833 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 17246 19834 if test "${cf_cv_posix_c_source+set}" = set; then … … 17249 19837 17250 19838 -echo "${as_me:-configure}:7297: testing if the symbol is already defined go no further ..." 1>&5 17251 +echo "${as_me:-configure}:7 753: testing if the symbol is already defined go no further ..." 1>&519839 +echo "${as_me:-configure}:7627: testing if the symbol is already defined go no further ..." 1>&5 17252 19840 17253 19841 cat >conftest.$ac_ext <<_ACEOF 17254 19842 -#line 7300 "configure" 17255 +#line 7 756"configure"19843 +#line 7630 "configure" 17256 19844 #include "confdefs.h" 17257 19845 #include <sys/types.h> 17258 19846 int 17259 @@ -7312,16 +7 768,16 @@19847 @@ -7312,16 +7642,16 @@ 17260 19848 } 17261 19849 _ACEOF 17262 19850 rm -f conftest.$ac_objext 17263 19851 -if { (eval echo "$as_me:7315: \"$ac_compile\"") >&5 17264 +if { (eval echo "$as_me:7 771: \"$ac_compile\"") >&519852 +if { (eval echo "$as_me:7645: \"$ac_compile\"") >&5 17265 19853 (eval $ac_compile) 2>&5 17266 19854 ac_status=$? 17267 19855 - echo "$as_me:7318: \$? = $ac_status" >&5 17268 + echo "$as_me:7 774: \$? = $ac_status" >&519856 + echo "$as_me:7648: \$? = $ac_status" >&5 17269 19857 (exit $ac_status); } && 17270 19858 { ac_try='test -s conftest.$ac_objext' 17271 19859 - { (eval echo "$as_me:7321: \"$ac_try\"") >&5 17272 + { (eval echo "$as_me:7 777: \"$ac_try\"") >&519860 + { (eval echo "$as_me:7651: \"$ac_try\"") >&5 17273 19861 (eval $ac_try) 2>&5 17274 19862 ac_status=$? 17275 19863 - echo "$as_me:7324: \$? = $ac_status" >&5 17276 + echo "$as_me:7 780: \$? = $ac_status" >&519864 + echo "$as_me:7654: \$? = $ac_status" >&5 17277 19865 (exit $ac_status); }; }; then 17278 19866 cf_cv_posix_c_source=no 17279 19867 else 17280 @@ -7342, 7 +7798,7@@19868 @@ -7342,14 +7672,362 @@ 17281 19869 esac 17282 19870 if test "$cf_want_posix_source" = yes ; then 17283 19871 cat >conftest.$ac_ext <<_ACEOF 17284 19872 -#line 7345 "configure" 17285 +#line 7801 "configure" 17286 #include "confdefs.h" 17287 #include <sys/types.h> 17288 int 17289 @@ -7357,16 +7813,16 @@ 17290 } 17291 _ACEOF 17292 rm -f conftest.$ac_objext 17293 -if { (eval echo "$as_me:7360: \"$ac_compile\"") >&5 17294 +if { (eval echo "$as_me:7816: \"$ac_compile\"") >&5 17295 (eval $ac_compile) 2>&5 17296 ac_status=$? 17297 - echo "$as_me:7363: \$? = $ac_status" >&5 17298 + echo "$as_me:7819: \$? = $ac_status" >&5 17299 (exit $ac_status); } && 17300 { ac_try='test -s conftest.$ac_objext' 17301 - { (eval echo "$as_me:7366: \"$ac_try\"") >&5 17302 + { (eval echo "$as_me:7822: \"$ac_try\"") >&5 17303 (eval $ac_try) 2>&5 17304 ac_status=$? 17305 - echo "$as_me:7369: \$? = $ac_status" >&5 17306 + echo "$as_me:7825: \$? = $ac_status" >&5 17307 (exit $ac_status); }; }; then 17308 : 17309 else 17310 @@ -7377,15 +7833,15 @@ 17311 rm -f conftest.$ac_objext conftest.$ac_ext 17312 fi 17313 17314 -echo "${as_me:-configure}:7380: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 17315 +echo "${as_me:-configure}:7836: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 17316 17317 CFLAGS="$cf_trim_CFLAGS" 17318 CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 17319 17320 -echo "${as_me:-configure}:7385: testing if the second compile does not leave our definition intact error ..." 1>&5 17321 +echo "${as_me:-configure}:7841: testing if the second compile does not leave our definition intact error ..." 1>&5 17322 17323 cat >conftest.$ac_ext <<_ACEOF 17324 -#line 7388 "configure" 17325 +#line 7844 "configure" 17326 #include "confdefs.h" 17327 #include <sys/types.h> 17328 int 17329 @@ -7400,16 +7856,16 @@ 17330 } 17331 _ACEOF 17332 rm -f conftest.$ac_objext 17333 -if { (eval echo "$as_me:7403: \"$ac_compile\"") >&5 17334 +if { (eval echo "$as_me:7859: \"$ac_compile\"") >&5 17335 (eval $ac_compile) 2>&5 17336 ac_status=$? 17337 - echo "$as_me:7406: \$? = $ac_status" >&5 17338 + echo "$as_me:7862: \$? = $ac_status" >&5 17339 (exit $ac_status); } && 17340 { ac_try='test -s conftest.$ac_objext' 17341 - { (eval echo "$as_me:7409: \"$ac_try\"") >&5 17342 + { (eval echo "$as_me:7865: \"$ac_try\"") >&5 17343 (eval $ac_try) 2>&5 17344 ac_status=$? 17345 - echo "$as_me:7412: \$? = $ac_status" >&5 17346 + echo "$as_me:7868: \$? = $ac_status" >&5 17347 (exit $ac_status); }; }; then 17348 : 17349 else 17350 @@ -7417,27 +7873,112 @@ 17351 cat conftest.$ac_ext >&5 17352 cf_cv_posix_c_source=no 17353 fi 17354 -rm -f conftest.$ac_objext conftest.$ac_ext 17355 - CFLAGS="$cf_save_CFLAGS" 17356 - CPPFLAGS="$cf_save_CPPFLAGS" 19873 +#line 7675 "configure" 19874 +#include "confdefs.h" 19875 +#include <sys/types.h> 19876 +int 19877 +main () 19878 +{ 19879 + 19880 +#ifdef _POSIX_SOURCE 19881 +make an error 19882 +#endif 19883 + ; 19884 + return 0; 19885 +} 19886 +_ACEOF 19887 +rm -f conftest.$ac_objext 19888 +if { (eval echo "$as_me:7690: \"$ac_compile\"") >&5 19889 + (eval $ac_compile) 2>&5 19890 + ac_status=$? 19891 + echo "$as_me:7693: \$? = $ac_status" >&5 19892 + (exit $ac_status); } && 19893 + { ac_try='test -s conftest.$ac_objext' 19894 + { (eval echo "$as_me:7696: \"$ac_try\"") >&5 19895 + (eval $ac_try) 2>&5 19896 + ac_status=$? 19897 + echo "$as_me:7699: \$? = $ac_status" >&5 19898 + (exit $ac_status); }; }; then 19899 + : 19900 +else 19901 + echo "$as_me: failed program was:" >&5 19902 +cat conftest.$ac_ext >&5 19903 +cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE" 19904 +fi 19905 +rm -f conftest.$ac_objext conftest.$ac_ext 19906 + fi 19907 + 19908 +echo "${as_me:-configure}:7710: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 19909 + 19910 + CFLAGS="$cf_trim_CFLAGS" 19911 + CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 19912 + 19913 +echo "${as_me:-configure}:7715: testing if the second compile does not leave our definition intact error ..." 1>&5 19914 + 19915 + cat >conftest.$ac_ext <<_ACEOF 19916 +#line 7718 "configure" 19917 +#include "confdefs.h" 19918 +#include <sys/types.h> 19919 +int 19920 +main () 19921 +{ 19922 + 19923 +#ifndef _POSIX_C_SOURCE 19924 +make an error 19925 +#endif 19926 + ; 19927 + return 0; 19928 +} 19929 +_ACEOF 19930 +rm -f conftest.$ac_objext 19931 +if { (eval echo "$as_me:7733: \"$ac_compile\"") >&5 19932 + (eval $ac_compile) 2>&5 19933 + ac_status=$? 19934 + echo "$as_me:7736: \$? = $ac_status" >&5 19935 + (exit $ac_status); } && 19936 + { ac_try='test -s conftest.$ac_objext' 19937 + { (eval echo "$as_me:7739: \"$ac_try\"") >&5 19938 + (eval $ac_try) 2>&5 19939 + ac_status=$? 19940 + echo "$as_me:7742: \$? = $ac_status" >&5 19941 + (exit $ac_status); }; }; then 19942 + : 19943 +else 19944 + echo "$as_me: failed program was:" >&5 19945 +cat conftest.$ac_ext >&5 19946 +cf_cv_posix_c_source=no 19947 +fi 17357 19948 +rm -f conftest.$ac_objext conftest.$ac_ext 17358 19949 + CFLAGS="$cf_save_CFLAGS" … … 17363 19954 + 17364 19955 +fi 17365 +echo "$as_me:7 884: result: $cf_cv_posix_c_source" >&519956 +echo "$as_me:7758: result: $cf_cv_posix_c_source" >&5 17366 19957 +echo "${ECHO_T}$cf_cv_posix_c_source" >&6 17367 19958 + … … 17439 20030 + 17440 20031 +if test -n "$cf_new_cppflags" ; then 17441 20032 + 17442 20033 + CPPFLAGS="$CPPFLAGS $cf_new_cppflags" 17443 fi 17444 -rm -f conftest.$ac_objext conftest.$ac_ext 17445 20034 +fi 20035 + 17446 20036 +if test -n "$cf_new_extra_cppflags" ; then 17447 20037 + 17448 20038 + EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 17449 fi 17450 -echo "$as_me:7428: result: $cf_cv_posix_c_source" >&5 17451 -echo "${ECHO_T}$cf_cv_posix_c_source" >&6 17452 17453 -if test "$cf_cv_posix_c_source" != no ; then 17454 - CFLAGS="$cf_trim_CFLAGS" 17455 - CPPFLAGS="$cf_trim_CPPFLAGS" 20039 +fi 20040 + 17456 20041 +fi 17457 20042 + … … 17460 20045 + 17461 20046 +if test -n "$cf_xopen_source" ; then 17462 17463 cf_fix_cppflags=no 17464 cf_new_cflags= 17465 cf_new_cppflags= 17466 cf_new_extra_cppflags= 17467 17468 -for cf_add_cflags in $cf_cv_posix_c_source 20047 + 20048 +cf_fix_cppflags=no 20049 +cf_new_cflags= 20050 +cf_new_cppflags= 20051 +cf_new_extra_cppflags= 20052 + 17469 20053 +for cf_add_cflags in $cf_xopen_source 17470 do 17471 case $cf_fix_cppflags in 17472 no) 17473 @@ -7512,17 +8053,196 @@ 17474 17475 fi 17476 17477 - ;; 17478 -esac 20054 +do 20055 +case $cf_fix_cppflags in 20056 +no) 20057 + case $cf_add_cflags in #(vi 20058 + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi 20059 + case $cf_add_cflags in 20060 + -D*) 20061 + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` 20062 + 20063 + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ 20064 + && test -z "${cf_tst_cflags}" \ 20065 + && cf_fix_cppflags=yes 20066 + 20067 + if test $cf_fix_cppflags = yes ; then 20068 + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20069 + continue 20070 + elif test "${cf_tst_cflags}" = "\"'" ; then 20071 + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20072 + continue 20073 + fi 20074 + ;; 20075 + esac 20076 + case "$CPPFLAGS" in 20077 + *$cf_add_cflags) #(vi 20078 + ;; 20079 + *) #(vi 20080 + case $cf_add_cflags in #(vi 20081 + -D*) 20082 + cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'` 20083 + 20084 +CPPFLAGS=`echo "$CPPFLAGS" | \ 20085 + sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \ 20086 + -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'` 20087 + 20088 + ;; 20089 + esac 20090 + cf_new_cppflags="$cf_new_cppflags $cf_add_cflags" 20091 + ;; 20092 + esac 20093 + ;; 20094 + *) 20095 + cf_new_cflags="$cf_new_cflags $cf_add_cflags" 20096 + ;; 20097 + esac 20098 + ;; 20099 +yes) 20100 + cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20101 + 20102 + cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` 20103 + 20104 + test "${cf_add_cflags}" != "${cf_tst_cflags}" \ 20105 + && test -z "${cf_tst_cflags}" \ 20106 + && cf_fix_cppflags=no 20107 + ;; 20108 +esac 20109 +done 20110 + 20111 +if test -n "$cf_new_cflags" ; then 20112 + 20113 + CFLAGS="$CFLAGS $cf_new_cflags" 20114 +fi 20115 + 20116 +if test -n "$cf_new_cppflags" ; then 20117 + 20118 + CPPFLAGS="$CPPFLAGS $cf_new_cppflags" 20119 +fi 20120 + 20121 +if test -n "$cf_new_extra_cppflags" ; then 20122 + 20123 + EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 20124 +fi 20125 + 20126 +fi 20127 + 17479 20128 +if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then 17480 + echo "$as_me: 8057: checking if _XOPEN_SOURCE really is set" >&520129 + echo "$as_me:7931: checking if _XOPEN_SOURCE really is set" >&5 17481 20130 +echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6 17482 20131 + cat >conftest.$ac_ext <<_ACEOF 17483 +#line 8060"configure"20132 +#line 7934 "configure" 17484 20133 +#include "confdefs.h" 17485 20134 +#include <stdlib.h> … … 17487 20136 +main () 17488 20137 +{ 17489 17490 -if test -n "$cf_xopen_source" ; then 20138 + 17491 20139 +#ifndef _XOPEN_SOURCE 17492 20140 +make an error … … 17497 20145 +_ACEOF 17498 20146 +rm -f conftest.$ac_objext 17499 +if { (eval echo "$as_me: 8075: \"$ac_compile\"") >&520147 +if { (eval echo "$as_me:7949: \"$ac_compile\"") >&5 17500 20148 + (eval $ac_compile) 2>&5 17501 20149 + ac_status=$? 17502 + echo "$as_me: 8078: \$? = $ac_status" >&520150 + echo "$as_me:7952: \$? = $ac_status" >&5 17503 20151 + (exit $ac_status); } && 17504 20152 + { ac_try='test -s conftest.$ac_objext' 17505 + { (eval echo "$as_me: 8081: \"$ac_try\"") >&520153 + { (eval echo "$as_me:7955: \"$ac_try\"") >&5 17506 20154 + (eval $ac_try) 2>&5 17507 20155 + ac_status=$? 17508 + echo "$as_me: 8084: \$? = $ac_status" >&520156 + echo "$as_me:7958: \$? = $ac_status" >&5 17509 20157 + (exit $ac_status); }; }; then 17510 20158 + cf_XOPEN_SOURCE_set=yes … … 17515 20163 +fi 17516 20164 +rm -f conftest.$ac_objext conftest.$ac_ext 17517 + echo "$as_me: 8093: result: $cf_XOPEN_SOURCE_set" >&520165 + echo "$as_me:7967: result: $cf_XOPEN_SOURCE_set" >&5 17518 20166 +echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6 17519 20167 + if test $cf_XOPEN_SOURCE_set = yes 17520 20168 + then 17521 20169 + cat >conftest.$ac_ext <<_ACEOF 17522 +#line 8098"configure"20170 +#line 7972 "configure" 17523 20171 +#include "confdefs.h" 17524 20172 +#include <stdlib.h> … … 17535 20183 +_ACEOF 17536 20184 +rm -f conftest.$ac_objext 17537 +if { (eval echo "$as_me: 8113: \"$ac_compile\"") >&520185 +if { (eval echo "$as_me:7987: \"$ac_compile\"") >&5 17538 20186 + (eval $ac_compile) 2>&5 17539 20187 + ac_status=$? 17540 + echo "$as_me: 8116: \$? = $ac_status" >&520188 + echo "$as_me:7990: \$? = $ac_status" >&5 17541 20189 + (exit $ac_status); } && 17542 20190 + { ac_try='test -s conftest.$ac_objext' 17543 + { (eval echo "$as_me: 8119: \"$ac_try\"") >&520191 + { (eval echo "$as_me:7993: \"$ac_try\"") >&5 17544 20192 + (eval $ac_try) 2>&5 17545 20193 + ac_status=$? 17546 + echo "$as_me: 8122: \$? = $ac_status" >&520194 + echo "$as_me:7996: \$? = $ac_status" >&5 17547 20195 + (exit $ac_status); }; }; then 17548 20196 + cf_XOPEN_SOURCE_set_ok=yes … … 17555 20203 + if test $cf_XOPEN_SOURCE_set_ok = no 17556 20204 + then 17557 + { echo "$as_me:8 133: WARNING: _XOPEN_SOURCE is lower than requested" >&520205 + { echo "$as_me:8007: WARNING: _XOPEN_SOURCE is lower than requested" >&5 17558 20206 +echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;} 17559 20207 + fi 17560 20208 + else 17561 20209 + 17562 +echo "$as_me:8 138: checking if we should define _XOPEN_SOURCE" >&520210 +echo "$as_me:8012: checking if we should define _XOPEN_SOURCE" >&5 17563 20211 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 17564 20212 +if test "${cf_cv_xopen_source+set}" = set; then … … 17567 20215 + 17568 20216 + cat >conftest.$ac_ext <<_ACEOF 17569 +#line 8 145"configure"17570 +#include "confdefs.h"20217 +#line 8019 "configure" 20218 #include "confdefs.h" 17571 20219 + 17572 20220 +#include <stdlib.h> 17573 20221 +#include <string.h> 17574 +#include <sys/types.h> 17575 + 17576 +int 17577 +main () 17578 +{ 17579 + 20222 #include <sys/types.h> 20223 + 20224 int 20225 main () 20226 { 20227 20228 -#ifdef _POSIX_SOURCE 17580 20229 +#ifndef _XOPEN_SOURCE 17581 +make an error 17582 +#endif 17583 + ; 17584 + return 0; 17585 +} 17586 +_ACEOF 17587 +rm -f conftest.$ac_objext 17588 +if { (eval echo "$as_me:8164: \"$ac_compile\"") >&5 17589 + (eval $ac_compile) 2>&5 17590 + ac_status=$? 17591 + echo "$as_me:8167: \$? = $ac_status" >&5 17592 + (exit $ac_status); } && 17593 + { ac_try='test -s conftest.$ac_objext' 17594 + { (eval echo "$as_me:8170: \"$ac_try\"") >&5 17595 + (eval $ac_try) 2>&5 17596 + ac_status=$? 17597 + echo "$as_me:8173: \$? = $ac_status" >&5 17598 + (exit $ac_status); }; }; then 20230 make an error 20231 #endif 20232 ; 20233 @@ -7357,42 +8035,36 @@ 20234 } 20235 _ACEOF 20236 rm -f conftest.$ac_objext 20237 -if { (eval echo "$as_me:7360: \"$ac_compile\"") >&5 20238 +if { (eval echo "$as_me:8038: \"$ac_compile\"") >&5 20239 (eval $ac_compile) 2>&5 20240 ac_status=$? 20241 - echo "$as_me:7363: \$? = $ac_status" >&5 20242 + echo "$as_me:8041: \$? = $ac_status" >&5 20243 (exit $ac_status); } && 20244 { ac_try='test -s conftest.$ac_objext' 20245 - { (eval echo "$as_me:7366: \"$ac_try\"") >&5 20246 + { (eval echo "$as_me:8044: \"$ac_try\"") >&5 20247 (eval $ac_try) 2>&5 20248 ac_status=$? 20249 - echo "$as_me:7369: \$? = $ac_status" >&5 20250 + echo "$as_me:8047: \$? = $ac_status" >&5 20251 (exit $ac_status); }; }; then 20252 - : 17599 20253 + cf_cv_xopen_source=no 17600 +else 17601 + echo "$as_me: failed program was:" >&5 17602 +cat conftest.$ac_ext >&5 20254 else 20255 echo "$as_me: failed program was:" >&5 20256 cat conftest.$ac_ext >&5 20257 -cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE" 20258 -fi 20259 -rm -f conftest.$ac_objext conftest.$ac_ext 20260 - fi 20261 - 20262 -echo "${as_me:-configure}:7380: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 20263 - 20264 - CFLAGS="$cf_trim_CFLAGS" 20265 - CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" 20266 - 20267 -echo "${as_me:-configure}:7385: testing if the second compile does not leave our definition intact error ..." 1>&5 20268 - 17603 20269 +cf_save="$CPPFLAGS" 17604 20270 + CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" 17605 + cat >conftest.$ac_ext <<_ACEOF 17606 +#line 8182 "configure" 17607 +#include "confdefs.h" 20271 cat >conftest.$ac_ext <<_ACEOF 20272 -#line 7388 "configure" 20273 +#line 8056 "configure" 20274 #include "confdefs.h" 17608 20275 + 17609 20276 +#include <stdlib.h> 17610 20277 +#include <string.h> 17611 +#include <sys/types.h> 17612 + 17613 +int 17614 +main () 17615 +{ 17616 + 20278 #include <sys/types.h> 20279 + 20280 int 20281 main () 20282 { 20283 20284 -#ifndef _POSIX_C_SOURCE 17617 20285 +#ifdef _XOPEN_SOURCE 17618 +make an error 17619 +#endif 17620 + ; 17621 + return 0; 17622 +} 17623 +_ACEOF 17624 +rm -f conftest.$ac_objext 17625 +if { (eval echo "$as_me:8201: \"$ac_compile\"") >&5 17626 + (eval $ac_compile) 2>&5 17627 + ac_status=$? 17628 + echo "$as_me:8204: \$? = $ac_status" >&5 17629 + (exit $ac_status); } && 17630 + { ac_try='test -s conftest.$ac_objext' 17631 + { (eval echo "$as_me:8207: \"$ac_try\"") >&5 17632 + (eval $ac_try) 2>&5 17633 + ac_status=$? 17634 + echo "$as_me:8210: \$? = $ac_status" >&5 17635 + (exit $ac_status); }; }; then 20286 make an error 20287 #endif 20288 ; 20289 @@ -7400,129 +8072,51 @@ 20290 } 20291 _ACEOF 20292 rm -f conftest.$ac_objext 20293 -if { (eval echo "$as_me:7403: \"$ac_compile\"") >&5 20294 +if { (eval echo "$as_me:8075: \"$ac_compile\"") >&5 20295 (eval $ac_compile) 2>&5 20296 ac_status=$? 20297 - echo "$as_me:7406: \$? = $ac_status" >&5 20298 + echo "$as_me:8078: \$? = $ac_status" >&5 20299 (exit $ac_status); } && 20300 { ac_try='test -s conftest.$ac_objext' 20301 - { (eval echo "$as_me:7409: \"$ac_try\"") >&5 20302 + { (eval echo "$as_me:8081: \"$ac_try\"") >&5 20303 (eval $ac_try) 2>&5 20304 ac_status=$? 20305 - echo "$as_me:7412: \$? = $ac_status" >&5 20306 + echo "$as_me:8084: \$? = $ac_status" >&5 20307 (exit $ac_status); }; }; then 20308 - : 17636 20309 + cf_cv_xopen_source=no 17637 +else 17638 + echo "$as_me: failed program was:" >&5 17639 +cat conftest.$ac_ext >&5 20310 else 20311 echo "$as_me: failed program was:" >&5 20312 cat conftest.$ac_ext >&5 20313 -cf_cv_posix_c_source=no 17640 20314 +cf_cv_xopen_source=$cf_XOPEN_SOURCE 17641 +fi 17642 +rm -f conftest.$ac_objext conftest.$ac_ext 20315 fi 20316 rm -f conftest.$ac_objext conftest.$ac_ext 20317 - CFLAGS="$cf_save_CFLAGS" 20318 - CPPFLAGS="$cf_save_CPPFLAGS" 17643 20319 + CPPFLAGS="$cf_save" 17644 + 17645 +fi 17646 +rm -f conftest.$ac_objext conftest.$ac_ext 17647 + 17648 +fi 17649 +echo "$as_me:8225: result: $cf_cv_xopen_source" >&5 20320 20321 fi 20322 rm -f conftest.$ac_objext conftest.$ac_ext 20323 20324 fi 20325 -echo "$as_me:7428: result: $cf_cv_posix_c_source" >&5 20326 -echo "${ECHO_T}$cf_cv_posix_c_source" >&6 20327 - 20328 -if test "$cf_cv_posix_c_source" != no ; then 20329 - CFLAGS="$cf_trim_CFLAGS" 20330 - CPPFLAGS="$cf_trim_CPPFLAGS" 20331 - 20332 -cf_fix_cppflags=no 20333 -cf_new_cflags= 20334 -cf_new_cppflags= 20335 -cf_new_extra_cppflags= 20336 - 20337 -for cf_add_cflags in $cf_cv_posix_c_source 20338 -do 20339 -case $cf_fix_cppflags in 20340 -no) 20341 - case $cf_add_cflags in #(vi 20342 - -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi 20343 - case $cf_add_cflags in 20344 - -D*) 20345 - cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'` 20346 +echo "$as_me:8099: result: $cf_cv_xopen_source" >&5 17650 20347 +echo "${ECHO_T}$cf_cv_xopen_source" >&6 17651 + 20348 20349 - test "${cf_add_cflags}" != "${cf_tst_cflags}" \ 20350 - && test -z "${cf_tst_cflags}" \ 20351 - && cf_fix_cppflags=yes 17652 20352 +if test "$cf_cv_xopen_source" != no ; then 17653 + 20353 20354 - if test $cf_fix_cppflags = yes ; then 20355 - cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20356 - continue 20357 - elif test "${cf_tst_cflags}" = "\"'" ; then 20358 - cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20359 - continue 20360 - fi 20361 - ;; 20362 - esac 20363 - case "$CPPFLAGS" in 20364 - *$cf_add_cflags) #(vi 20365 - ;; 20366 - *) #(vi 20367 - case $cf_add_cflags in #(vi 20368 - -D*) 20369 - cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'` 17654 20370 +CFLAGS=`echo "$CFLAGS" | \ 17655 20371 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 17656 20372 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 17657 + 17658 +CPPFLAGS=`echo "$CPPFLAGS" | \ 20373 20374 CPPFLAGS=`echo "$CPPFLAGS" | \ 20375 - sed -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?[ ]/ /g' \ 20376 - -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^ ]*\)\?$//g'` 20377 - 20378 - ;; 20379 - esac 20380 - cf_new_cppflags="$cf_new_cppflags $cf_add_cflags" 20381 - ;; 20382 - esac 20383 - ;; 20384 - *) 20385 - cf_new_cflags="$cf_new_cflags $cf_add_cflags" 20386 - ;; 20387 - esac 20388 - ;; 20389 -yes) 20390 - cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags" 20391 - 20392 - cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'` 20393 - 20394 - test "${cf_add_cflags}" != "${cf_tst_cflags}" \ 20395 - && test -z "${cf_tst_cflags}" \ 20396 - && cf_fix_cppflags=no 20397 - ;; 20398 -esac 20399 -done 20400 - 20401 -if test -n "$cf_new_cflags" ; then 20402 - 20403 - CFLAGS="$CFLAGS $cf_new_cflags" 20404 -fi 20405 - 20406 -if test -n "$cf_new_cppflags" ; then 20407 - 20408 - CPPFLAGS="$CPPFLAGS $cf_new_cppflags" 20409 -fi 20410 - 20411 -if test -n "$cf_new_extra_cppflags" ; then 20412 - 20413 - EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" 20414 -fi 20415 - 20416 -fi 20417 - 20418 - ;; 20419 -esac 17659 20420 + sed -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \ 17660 20421 + -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^ ]*\)\?$//g'` 17661 + 20422 20423 -if test -n "$cf_xopen_source" ; then 17662 20424 + cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source" 17663 20425 … … 17672 20434 case $cf_fix_cppflags in 17673 20435 no) 17674 @@ -7597,16 +8 317,19 @@20436 @@ -7597,16 +8191,19 @@ 17675 20437 17676 20438 fi … … 17682 20444 17683 20445 -echo "$as_me:7602: checking if SIGWINCH is defined" >&5 17684 +echo "$as_me:8 325: checking if SIGWINCH is defined" >&520446 +echo "$as_me:8199: checking if SIGWINCH is defined" >&5 17685 20447 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 17686 20448 if test "${cf_cv_define_sigwinch+set}" = set; then … … 17690 20452 cat >conftest.$ac_ext <<_ACEOF 17691 20453 -#line 7609 "configure" 17692 +#line 8 332"configure"20454 +#line 8206 "configure" 17693 20455 #include "confdefs.h" 17694 20456 17695 20457 #include <sys/types.h> 17696 @@ -7621,23 +8 344,23 @@20458 @@ -7621,23 +8218,23 @@ 17697 20459 } 17698 20460 _ACEOF 17699 20461 rm -f conftest.$ac_objext 17700 20462 -if { (eval echo "$as_me:7624: \"$ac_compile\"") >&5 17701 +if { (eval echo "$as_me:8 347: \"$ac_compile\"") >&520463 +if { (eval echo "$as_me:8221: \"$ac_compile\"") >&5 17702 20464 (eval $ac_compile) 2>&5 17703 20465 ac_status=$? 17704 20466 - echo "$as_me:7627: \$? = $ac_status" >&5 17705 + echo "$as_me:8 350: \$? = $ac_status" >&520467 + echo "$as_me:8224: \$? = $ac_status" >&5 17706 20468 (exit $ac_status); } && 17707 20469 { ac_try='test -s conftest.$ac_objext' 17708 20470 - { (eval echo "$as_me:7630: \"$ac_try\"") >&5 17709 + { (eval echo "$as_me:8 353: \"$ac_try\"") >&520471 + { (eval echo "$as_me:8227: \"$ac_try\"") >&5 17710 20472 (eval $ac_try) 2>&5 17711 20473 ac_status=$? 17712 20474 - echo "$as_me:7633: \$? = $ac_status" >&5 17713 + echo "$as_me:8 356: \$? = $ac_status" >&520475 + echo "$as_me:8230: \$? = $ac_status" >&5 17714 20476 (exit $ac_status); }; }; then 17715 20477 cf_cv_define_sigwinch=yes … … 17719 20481 cat >conftest.$ac_ext <<_ACEOF 17720 20482 -#line 7640 "configure" 17721 +#line 8 363"configure"20483 +#line 8237 "configure" 17722 20484 #include "confdefs.h" 17723 20485 17724 20486 #undef _XOPEN_SOURCE 17725 @@ -7655,16 +8 378,16 @@20487 @@ -7655,16 +8252,16 @@ 17726 20488 } 17727 20489 _ACEOF 17728 20490 rm -f conftest.$ac_objext 17729 20491 -if { (eval echo "$as_me:7658: \"$ac_compile\"") >&5 17730 +if { (eval echo "$as_me:8 381: \"$ac_compile\"") >&520492 +if { (eval echo "$as_me:8255: \"$ac_compile\"") >&5 17731 20493 (eval $ac_compile) 2>&5 17732 20494 ac_status=$? 17733 20495 - echo "$as_me:7661: \$? = $ac_status" >&5 17734 + echo "$as_me:8 384: \$? = $ac_status" >&520496 + echo "$as_me:8258: \$? = $ac_status" >&5 17735 20497 (exit $ac_status); } && 17736 20498 { ac_try='test -s conftest.$ac_objext' 17737 20499 - { (eval echo "$as_me:7664: \"$ac_try\"") >&5 17738 + { (eval echo "$as_me:8 387: \"$ac_try\"") >&520500 + { (eval echo "$as_me:8261: \"$ac_try\"") >&5 17739 20501 (eval $ac_try) 2>&5 17740 20502 ac_status=$? 17741 20503 - echo "$as_me:7667: \$? = $ac_status" >&5 17742 + echo "$as_me:8 390: \$? = $ac_status" >&520504 + echo "$as_me:8264: \$? = $ac_status" >&5 17743 20505 (exit $ac_status); }; }; then 17744 20506 cf_cv_define_sigwinch=maybe 17745 20507 else 17746 @@ -7678,11 +8 401,11 @@20508 @@ -7678,11 +8275,11 @@ 17747 20509 rm -f conftest.$ac_objext conftest.$ac_ext 17748 20510 17749 20511 fi 17750 20512 -echo "$as_me:7681: result: $cf_cv_define_sigwinch" >&5 17751 +echo "$as_me:8 404: result: $cf_cv_define_sigwinch" >&520513 +echo "$as_me:8278: result: $cf_cv_define_sigwinch" >&5 17752 20514 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 17753 20515 17754 20516 if test "$cf_cv_define_sigwinch" = maybe ; then 17755 20517 -echo "$as_me:7685: checking for actual SIGWINCH definition" >&5 17756 +echo "$as_me:8 408: checking for actual SIGWINCH definition" >&520518 +echo "$as_me:8282: checking for actual SIGWINCH definition" >&5 17757 20519 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 17758 20520 if test "${cf_cv_fixup_sigwinch+set}" = set; then 17759 20521 echo $ECHO_N "(cached) $ECHO_C" >&6 17760 @@ -7693,7 +8 416,7 @@20522 @@ -7693,7 +8290,7 @@ 17761 20523 while test $cf_sigwinch != 1 17762 20524 do 17763 20525 cat >conftest.$ac_ext <<_ACEOF 17764 20526 -#line 7696 "configure" 17765 +#line 8 419"configure"20527 +#line 8293 "configure" 17766 20528 #include "confdefs.h" 17767 20529 17768 20530 #undef _XOPEN_SOURCE 17769 @@ -7715,16 +8 438,16 @@20531 @@ -7715,16 +8312,16 @@ 17770 20532 } 17771 20533 _ACEOF 17772 20534 rm -f conftest.$ac_objext 17773 20535 -if { (eval echo "$as_me:7718: \"$ac_compile\"") >&5 17774 +if { (eval echo "$as_me:8 441: \"$ac_compile\"") >&520536 +if { (eval echo "$as_me:8315: \"$ac_compile\"") >&5 17775 20537 (eval $ac_compile) 2>&5 17776 20538 ac_status=$? 17777 20539 - echo "$as_me:7721: \$? = $ac_status" >&5 17778 + echo "$as_me:8 444: \$? = $ac_status" >&520540 + echo "$as_me:8318: \$? = $ac_status" >&5 17779 20541 (exit $ac_status); } && 17780 20542 { ac_try='test -s conftest.$ac_objext' 17781 20543 - { (eval echo "$as_me:7724: \"$ac_try\"") >&5 17782 + { (eval echo "$as_me:8 447: \"$ac_try\"") >&520544 + { (eval echo "$as_me:8321: \"$ac_try\"") >&5 17783 20545 (eval $ac_try) 2>&5 17784 20546 ac_status=$? 17785 20547 - echo "$as_me:7727: \$? = $ac_status" >&5 17786 + echo "$as_me:8 450: \$? = $ac_status" >&520548 + echo "$as_me:8324: \$? = $ac_status" >&5 17787 20549 (exit $ac_status); }; }; then 17788 20550 cf_cv_fixup_sigwinch=$cf_sigwinch 17789 20551 break 17790 @@ -7738,7 +8 461,7 @@20552 @@ -7738,7 +8335,7 @@ 17791 20553 done 17792 20554 17793 20555 fi 17794 20556 -echo "$as_me:7741: result: $cf_cv_fixup_sigwinch" >&5 17795 +echo "$as_me:8 464: result: $cf_cv_fixup_sigwinch" >&520557 +echo "$as_me:8338: result: $cf_cv_fixup_sigwinch" >&5 17796 20558 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 17797 20559 17798 20560 if test "$cf_cv_fixup_sigwinch" != unknown ; then 17799 @@ -7748,13 +8 471,13 @@20561 @@ -7748,13 +8345,13 @@ 17800 20562 17801 20563 # Checks for CODESET support. 17802 20564 17803 20565 - echo "$as_me:7751: checking for nl_langinfo and CODESET" >&5 17804 + echo "$as_me:8 474: checking for nl_langinfo and CODESET" >&520566 + echo "$as_me:8348: checking for nl_langinfo and CODESET" >&5 17805 20567 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 17806 20568 if test "${am_cv_langinfo_codeset+set}" = set; then … … 17809 20571 cat >conftest.$ac_ext <<_ACEOF 17810 20572 -#line 7757 "configure" 17811 +#line 8 480"configure"20573 +#line 8354 "configure" 17812 20574 #include "confdefs.h" 17813 20575 #include <langinfo.h> 17814 20576 int 17815 @@ -7766,16 +8 489,16 @@20577 @@ -7766,16 +8363,16 @@ 17816 20578 } 17817 20579 _ACEOF 17818 20580 rm -f conftest.$ac_objext conftest$ac_exeext 17819 20581 -if { (eval echo "$as_me:7769: \"$ac_link\"") >&5 17820 +if { (eval echo "$as_me:8 492: \"$ac_link\"") >&520582 +if { (eval echo "$as_me:8366: \"$ac_link\"") >&5 17821 20583 (eval $ac_link) 2>&5 17822 20584 ac_status=$? 17823 20585 - echo "$as_me:7772: \$? = $ac_status" >&5 17824 + echo "$as_me:8 495: \$? = $ac_status" >&520586 + echo "$as_me:8369: \$? = $ac_status" >&5 17825 20587 (exit $ac_status); } && 17826 20588 { ac_try='test -s conftest$ac_exeext' 17827 20589 - { (eval echo "$as_me:7775: \"$ac_try\"") >&5 17828 + { (eval echo "$as_me:8 498: \"$ac_try\"") >&520590 + { (eval echo "$as_me:8372: \"$ac_try\"") >&5 17829 20591 (eval $ac_try) 2>&5 17830 20592 ac_status=$? 17831 20593 - echo "$as_me:7778: \$? = $ac_status" >&5 17832 + echo "$as_me:8 501: \$? = $ac_status" >&520594 + echo "$as_me:8375: \$? = $ac_status" >&5 17833 20595 (exit $ac_status); }; }; then 17834 20596 am_cv_langinfo_codeset=yes 17835 20597 else 17836 @@ -7786,7 +8 509,7 @@20598 @@ -7786,7 +8383,7 @@ 17837 20599 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 17838 20600 17839 20601 fi 17840 20602 -echo "$as_me:7789: result: $am_cv_langinfo_codeset" >&5 17841 +echo "$as_me:8 512: result: $am_cv_langinfo_codeset" >&520603 +echo "$as_me:8386: result: $am_cv_langinfo_codeset" >&5 17842 20604 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 17843 20605 if test $am_cv_langinfo_codeset = yes; then 17844 20606 17845 @@ -7800,7 +8 523,7 @@20607 @@ -7800,7 +8397,7 @@ 17846 20608 NCURSES_OK_WCHAR_T= 17847 20609 NCURSES_OK_WINT_T= 17848 20610 17849 20611 -echo "$as_me:7803: checking if you want wide-character code" >&5 17850 +echo "$as_me:8 526: checking if you want wide-character code" >&520612 +echo "$as_me:8400: checking if you want wide-character code" >&5 17851 20613 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6 17852 20614 17853 20615 # Check whether --enable-widec or --disable-widec was given. 17854 @@ -7810,7 +8 533,7 @@20616 @@ -7810,7 +8407,7 @@ 17855 20617 else 17856 20618 with_widec=no 17857 20619 fi; 17858 20620 -echo "$as_me:7813: result: $with_widec" >&5 17859 +echo "$as_me:8 536: result: $with_widec" >&520621 +echo "$as_me:8410: result: $with_widec" >&5 17860 20622 echo "${ECHO_T}$with_widec" >&6 17861 20623 if test "$with_widec" = yes ; then 17862 20624 LIB_SUFFIX="w${LIB_SUFFIX}" 17863 @@ -7818,15 +8 541,63 @@20625 @@ -7818,15 +8415,63 @@ 17864 20626 #define USE_WIDEC_SUPPORT 1 17865 20627 EOF … … 17873 20635 +EOF 17874 20636 + 17875 +echo "$as_me:8 548: checking if wchar.h can be used as is" >&520637 +echo "$as_me:8422: checking if wchar.h can be used as is" >&5 17876 20638 +echo $ECHO_N "checking if wchar.h can be used as is... $ECHO_C" >&6 17877 20639 +if test "${cf_cv_wchar_h_okay+set}" = set; then … … 17880 20642 + 17881 20643 +cat >conftest.$ac_ext <<_ACEOF 17882 +#line 8 555"configure"20644 +#line 8429 "configure" 17883 20645 +#include "confdefs.h" 17884 20646 + … … 17897 20659 +_ACEOF 17898 20660 +rm -f conftest.$ac_objext 17899 +if { (eval echo "$as_me:8 572: \"$ac_compile\"") >&520661 +if { (eval echo "$as_me:8446: \"$ac_compile\"") >&5 17900 20662 + (eval $ac_compile) 2>&5 17901 20663 + ac_status=$? 17902 + echo "$as_me:8 575: \$? = $ac_status" >&520664 + echo "$as_me:8449: \$? = $ac_status" >&5 17903 20665 + (exit $ac_status); } && 17904 20666 + { ac_try='test -s conftest.$ac_objext' 17905 + { (eval echo "$as_me:8 578: \"$ac_try\"") >&520667 + { (eval echo "$as_me:8452: \"$ac_try\"") >&5 17906 20668 + (eval $ac_try) 2>&5 17907 20669 + ac_status=$? 17908 + echo "$as_me:8 581: \$? = $ac_status" >&520670 + echo "$as_me:8455: \$? = $ac_status" >&5 17909 20671 + (exit $ac_status); }; }; then 17910 20672 + cf_cv_wchar_h_okay=yes … … 17916 20678 +rm -f conftest.$ac_objext conftest.$ac_ext 17917 20679 +fi 17918 +echo "$as_me:8 591: result: $cf_cv_wchar_h_okay" >&520680 +echo "$as_me:8465: result: $cf_cv_wchar_h_okay" >&5 17919 20681 +echo "${ECHO_T}$cf_cv_wchar_h_okay" >&6 17920 20682 + … … 17923 20685 17924 20686 -echo "$as_me:7826: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 17925 +echo "$as_me:8 597: checking if we must define _XOPEN_SOURCE_EXTENDED" >&520687 +echo "$as_me:8471: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 17926 20688 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 17927 20689 cat >conftest.$ac_ext <<_ACEOF 17928 20690 -#line 7829 "configure" 17929 +#line 8 600"configure"20691 +#line 8474 "configure" 17930 20692 #include "confdefs.h" 17931 20693 #include <sys/types.h> 17932 20694 17933 @@ -7842,16 +8 613,16 @@20695 @@ -7842,16 +8487,16 @@ 17934 20696 } 17935 20697 _ACEOF 17936 20698 rm -f conftest.$ac_objext 17937 20699 -if { (eval echo "$as_me:7845: \"$ac_compile\"") >&5 17938 +if { (eval echo "$as_me:8 616: \"$ac_compile\"") >&520700 +if { (eval echo "$as_me:8490: \"$ac_compile\"") >&5 17939 20701 (eval $ac_compile) 2>&5 17940 20702 ac_status=$? 17941 20703 - echo "$as_me:7848: \$? = $ac_status" >&5 17942 + echo "$as_me:8 619: \$? = $ac_status" >&520704 + echo "$as_me:8493: \$? = $ac_status" >&5 17943 20705 (exit $ac_status); } && 17944 20706 { ac_try='test -s conftest.$ac_objext' 17945 20707 - { (eval echo "$as_me:7851: \"$ac_try\"") >&5 17946 + { (eval echo "$as_me:8 622: \"$ac_try\"") >&520708 + { (eval echo "$as_me:8496: \"$ac_try\"") >&5 17947 20709 (eval $ac_try) 2>&5 17948 20710 ac_status=$? 17949 20711 - echo "$as_me:7854: \$? = $ac_status" >&5 17950 + echo "$as_me:8 625: \$? = $ac_status" >&520712 + echo "$as_me:8499: \$? = $ac_status" >&5 17951 20713 (exit $ac_status); }; }; then 17952 20714 cf_result=no 17953 20715 else 17954 @@ -7860,16 +8 631,16 @@20716 @@ -7860,16 +8505,16 @@ 17955 20717 cf_result=yes 17956 20718 fi 17957 20719 rm -f conftest.$ac_objext conftest.$ac_ext 17958 20720 -echo "$as_me:7863: result: $cf_result" >&5 17959 +echo "$as_me:8 634: result: $cf_result" >&520721 +echo "$as_me:8508: result: $cf_result" >&5 17960 20722 echo "${ECHO_T}$cf_result" >&6 17961 20723 … … 17964 20726 elif test "x" != "x" ; then 17965 20727 - echo "$as_me:7869: checking checking for compatible value versus " >&5 17966 + echo "$as_me:8 640: checking checking for compatible value versus " >&520728 + echo "$as_me:8514: checking checking for compatible value versus " >&5 17967 20729 echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6 17968 20730 cat >conftest.$ac_ext <<_ACEOF 17969 20731 -#line 7872 "configure" 17970 +#line 8 643"configure"20732 +#line 8517 "configure" 17971 20733 #include "confdefs.h" 17972 20734 #include <sys/types.h> 17973 20735 17974 @@ -7885,16 +8 656,16 @@20736 @@ -7885,16 +8530,16 @@ 17975 20737 } 17976 20738 _ACEOF 17977 20739 rm -f conftest.$ac_objext 17978 20740 -if { (eval echo "$as_me:7888: \"$ac_compile\"") >&5 17979 +if { (eval echo "$as_me:8 659: \"$ac_compile\"") >&520741 +if { (eval echo "$as_me:8533: \"$ac_compile\"") >&5 17980 20742 (eval $ac_compile) 2>&5 17981 20743 ac_status=$? 17982 20744 - echo "$as_me:7891: \$? = $ac_status" >&5 17983 + echo "$as_me:8 662: \$? = $ac_status" >&520745 + echo "$as_me:8536: \$? = $ac_status" >&5 17984 20746 (exit $ac_status); } && 17985 20747 { ac_try='test -s conftest.$ac_objext' 17986 20748 - { (eval echo "$as_me:7894: \"$ac_try\"") >&5 17987 + { (eval echo "$as_me:8 665: \"$ac_try\"") >&520749 + { (eval echo "$as_me:8539: \"$ac_try\"") >&5 17988 20750 (eval $ac_try) 2>&5 17989 20751 ac_status=$? 17990 20752 - echo "$as_me:7897: \$? = $ac_status" >&5 17991 + echo "$as_me:8 668: \$? = $ac_status" >&520753 + echo "$as_me:8542: \$? = $ac_status" >&5 17992 20754 (exit $ac_status); }; }; then 17993 20755 cf_result=yes 17994 20756 else 17995 @@ -7903,7 +8 674,7 @@20757 @@ -7903,7 +8548,7 @@ 17996 20758 cf_result=no 17997 20759 fi 17998 20760 rm -f conftest.$ac_objext conftest.$ac_ext 17999 20761 - echo "$as_me:7906: result: $cf_result" >&5 18000 + echo "$as_me:8 677: result: $cf_result" >&520762 + echo "$as_me:8551: result: $cf_result" >&5 18001 20763 echo "${ECHO_T}$cf_result" >&6 18002 20764 if test "$cf_result" = no ; then 18003 20765 # perhaps we can override it - try... 18004 @@ -7911,8 +8 682,7 @@20766 @@ -7911,8 +8556,7 @@ 18005 20767 fi 18006 20768 fi … … 18012 20774 # with_overwrite=no 18013 20775 NCURSES_CH_T=cchar_t 18014 @@ -7920,13 +8 690,13 @@20776 @@ -7920,13 +8564,13 @@ 18015 20777 for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs 18016 20778 do 18017 20779 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 18018 20780 -echo "$as_me:7923: checking for $ac_func" >&5 18019 +echo "$as_me:8 693: checking for $ac_func" >&520781 +echo "$as_me:8567: checking for $ac_func" >&5 18020 20782 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 18021 20783 if eval "test \"\${$as_ac_var+set}\" = set"; then … … 18024 20786 cat >conftest.$ac_ext <<_ACEOF 18025 20787 -#line 7929 "configure" 18026 +#line 8 699"configure"20788 +#line 8573 "configure" 18027 20789 #include "confdefs.h" 18028 20790 /* System header to define __stub macros and hopefully few prototypes, 18029 20791 which can conflict with char $ac_func (); below. */ 18030 @@ -7957,16 +8727,16 @@ 20792 @@ -7949,7 +8593,7 @@ 20793 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 20794 choke me 20795 #else 20796 -f = $ac_func; 20797 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 20798 #endif 20799 20800 ; 20801 @@ -7957,16 +8601,16 @@ 18031 20802 } 18032 20803 _ACEOF 18033 20804 rm -f conftest.$ac_objext conftest$ac_exeext 18034 20805 -if { (eval echo "$as_me:7960: \"$ac_link\"") >&5 18035 +if { (eval echo "$as_me:8 730: \"$ac_link\"") >&520806 +if { (eval echo "$as_me:8604: \"$ac_link\"") >&5 18036 20807 (eval $ac_link) 2>&5 18037 20808 ac_status=$? 18038 20809 - echo "$as_me:7963: \$? = $ac_status" >&5 18039 + echo "$as_me:8 733: \$? = $ac_status" >&520810 + echo "$as_me:8607: \$? = $ac_status" >&5 18040 20811 (exit $ac_status); } && 18041 20812 { ac_try='test -s conftest$ac_exeext' 18042 20813 - { (eval echo "$as_me:7966: \"$ac_try\"") >&5 18043 + { (eval echo "$as_me:8 736: \"$ac_try\"") >&520814 + { (eval echo "$as_me:8610: \"$ac_try\"") >&5 18044 20815 (eval $ac_try) 2>&5 18045 20816 ac_status=$? 18046 20817 - echo "$as_me:7969: \$? = $ac_status" >&5 18047 + echo "$as_me:8 739: \$? = $ac_status" >&520818 + echo "$as_me:8613: \$? = $ac_status" >&5 18048 20819 (exit $ac_status); }; }; then 18049 20820 eval "$as_ac_var=yes" 18050 20821 else 18051 @@ -7976,7 +8 746,7 @@20822 @@ -7976,7 +8620,7 @@ 18052 20823 fi 18053 20824 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 18054 20825 fi 18055 20826 -echo "$as_me:7979: result: `eval echo '${'$as_ac_var'}'`" >&5 18056 +echo "$as_me:8 749: result: `eval echo '${'$as_ac_var'}'`" >&520827 +echo "$as_me:8623: result: `eval echo '${'$as_ac_var'}'`" >&5 18057 20828 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 18058 20829 if test `eval echo '${'$as_ac_var'}'` = yes; then 18059 20830 cat >>confdefs.h <<EOF 18060 @@ -7988,7 +8 758,7 @@20831 @@ -7988,7 +8632,7 @@ 18061 20832 18062 20833 if test "$ac_cv_func_putwc" != yes ; then 18063 20834 18064 20835 -echo "$as_me:7991: checking for multibyte character support" >&5 18065 +echo "$as_me:8 761: checking for multibyte character support" >&520836 +echo "$as_me:8635: checking for multibyte character support" >&5 18066 20837 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 18067 20838 if test "${cf_cv_utf8_lib+set}" = set; then 18068 20839 echo $ECHO_N "(cached) $ECHO_C" >&6 18069 @@ -7996,7 +8 766,7 @@20840 @@ -7996,7 +8640,7 @@ 18070 20841 18071 20842 cf_save_LIBS="$LIBS" 18072 20843 cat >conftest.$ac_ext <<_ACEOF 18073 20844 -#line 7999 "configure" 18074 +#line 8 769"configure"20845 +#line 8643 "configure" 18075 20846 #include "confdefs.h" 18076 20847 18077 20848 #include <stdlib.h> 18078 @@ -8009,16 +8 779,16 @@20849 @@ -8009,16 +8653,16 @@ 18079 20850 } 18080 20851 _ACEOF 18081 20852 rm -f conftest.$ac_objext conftest$ac_exeext 18082 20853 -if { (eval echo "$as_me:8012: \"$ac_link\"") >&5 18083 +if { (eval echo "$as_me:8 782: \"$ac_link\"") >&520854 +if { (eval echo "$as_me:8656: \"$ac_link\"") >&5 18084 20855 (eval $ac_link) 2>&5 18085 20856 ac_status=$? 18086 20857 - echo "$as_me:8015: \$? = $ac_status" >&5 18087 + echo "$as_me:8 785: \$? = $ac_status" >&520858 + echo "$as_me:8659: \$? = $ac_status" >&5 18088 20859 (exit $ac_status); } && 18089 20860 { ac_try='test -s conftest$ac_exeext' 18090 20861 - { (eval echo "$as_me:8018: \"$ac_try\"") >&5 18091 + { (eval echo "$as_me:8 788: \"$ac_try\"") >&520862 + { (eval echo "$as_me:8662: \"$ac_try\"") >&5 18092 20863 (eval $ac_try) 2>&5 18093 20864 ac_status=$? 18094 20865 - echo "$as_me:8021: \$? = $ac_status" >&5 18095 + echo "$as_me:8 791: \$? = $ac_status" >&520866 + echo "$as_me:8665: \$? = $ac_status" >&5 18096 20867 (exit $ac_status); }; }; then 18097 20868 cf_cv_utf8_lib=yes 18098 20869 else 18099 @@ -8030,12 +8 800,12 @@20870 @@ -8030,12 +8674,12 @@ 18100 20871 cf_cv_header_path_utf8= 18101 20872 cf_cv_library_path_utf8= 18102 20873 18103 20874 -echo "${as_me:-configure}:8033: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 18104 +echo "${as_me:-configure}:8 803: testing Starting FIND_LINKAGE(utf8,) ..." 1>&520875 +echo "${as_me:-configure}:8677: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 18105 20876 18106 20877 cf_save_LIBS="$LIBS" … … 18108 20879 cat >conftest.$ac_ext <<_ACEOF 18109 20880 -#line 8038 "configure" 18110 +#line 8 808"configure"20881 +#line 8682 "configure" 18111 20882 #include "confdefs.h" 18112 20883 18113 20884 #include <libutf8.h> 18114 @@ -8048,16 +8 818,16 @@20885 @@ -8048,16 +8692,16 @@ 18115 20886 } 18116 20887 _ACEOF 18117 20888 rm -f conftest.$ac_objext conftest$ac_exeext 18118 20889 -if { (eval echo "$as_me:8051: \"$ac_link\"") >&5 18119 +if { (eval echo "$as_me:8 821: \"$ac_link\"") >&520890 +if { (eval echo "$as_me:8695: \"$ac_link\"") >&5 18120 20891 (eval $ac_link) 2>&5 18121 20892 ac_status=$? 18122 20893 - echo "$as_me:8054: \$? = $ac_status" >&5 18123 + echo "$as_me:8 824: \$? = $ac_status" >&520894 + echo "$as_me:8698: \$? = $ac_status" >&5 18124 20895 (exit $ac_status); } && 18125 20896 { ac_try='test -s conftest$ac_exeext' 18126 20897 - { (eval echo "$as_me:8057: \"$ac_try\"") >&5 18127 + { (eval echo "$as_me:8 827: \"$ac_try\"") >&520898 + { (eval echo "$as_me:8701: \"$ac_try\"") >&5 18128 20899 (eval $ac_try) 2>&5 18129 20900 ac_status=$? 18130 20901 - echo "$as_me:8060: \$? = $ac_status" >&5 18131 + echo "$as_me:8 830: \$? = $ac_status" >&520902 + echo "$as_me:8704: \$? = $ac_status" >&5 18132 20903 (exit $ac_status); }; }; then 18133 20904 18134 20905 cf_cv_find_linkage_utf8=yes 18135 @@ -8071,7 +8 841,7 @@20906 @@ -8071,7 +8715,7 @@ 18136 20907 LIBS="-lutf8 $cf_save_LIBS" 18137 20908 18138 20909 cat >conftest.$ac_ext <<_ACEOF 18139 20910 -#line 8074 "configure" 18140 +#line 8 844"configure"20911 +#line 8718 "configure" 18141 20912 #include "confdefs.h" 18142 20913 18143 20914 #include <libutf8.h> 18144 @@ -8084,16 +8 854,16 @@20915 @@ -8084,16 +8728,16 @@ 18145 20916 } 18146 20917 _ACEOF 18147 20918 rm -f conftest.$ac_objext conftest$ac_exeext 18148 20919 -if { (eval echo "$as_me:8087: \"$ac_link\"") >&5 18149 +if { (eval echo "$as_me:8 857: \"$ac_link\"") >&520920 +if { (eval echo "$as_me:8731: \"$ac_link\"") >&5 18150 20921 (eval $ac_link) 2>&5 18151 20922 ac_status=$? 18152 20923 - echo "$as_me:8090: \$? = $ac_status" >&5 18153 + echo "$as_me:8 860: \$? = $ac_status" >&520924 + echo "$as_me:8734: \$? = $ac_status" >&5 18154 20925 (exit $ac_status); } && 18155 20926 { ac_try='test -s conftest$ac_exeext' 18156 20927 - { (eval echo "$as_me:8093: \"$ac_try\"") >&5 18157 + { (eval echo "$as_me:8 863: \"$ac_try\"") >&520928 + { (eval echo "$as_me:8737: \"$ac_try\"") >&5 18158 20929 (eval $ac_try) 2>&5 18159 20930 ac_status=$? 18160 20931 - echo "$as_me:8096: \$? = $ac_status" >&5 18161 + echo "$as_me:8 866: \$? = $ac_status" >&520932 + echo "$as_me:8740: \$? = $ac_status" >&5 18162 20933 (exit $ac_status); }; }; then 18163 20934 18164 20935 cf_cv_find_linkage_utf8=yes 18165 @@ -8110,9 +8 880,9 @@20936 @@ -8110,9 +8754,9 @@ 18166 20937 18167 20938 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 18168 20939 18169 20940 -echo "${as_me:-configure}:8113: testing find linkage for utf8 library ..." 1>&5 18170 +echo "${as_me:-configure}:8 883: testing find linkage for utf8 library ..." 1>&520941 +echo "${as_me:-configure}:8757: testing find linkage for utf8 library ..." 1>&5 18171 20942 18172 20943 -echo "${as_me:-configure}:8115: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 18173 +echo "${as_me:-configure}:8 885: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&520944 +echo "${as_me:-configure}:8759: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 18174 20945 18175 20946 cf_save_CPPFLAGS="$CPPFLAGS" 18176 20947 cf_test_CPPFLAGS="$CPPFLAGS" 18177 @@ -8225,11 +8 995,11 @@20948 @@ -8225,11 +8869,11 @@ 18178 20949 if test -d $cf_cv_header_path_utf8 ; then 18179 20950 test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 18180 20951 18181 20952 -echo "${as_me:-configure}:8228: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 18182 +echo "${as_me:-configure}:8 998: testing ... testing $cf_cv_header_path_utf8 ..." 1>&520953 +echo "${as_me:-configure}:8872: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 18183 20954 18184 20955 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" 18185 20956 cat >conftest.$ac_ext <<_ACEOF 18186 20957 -#line 8232 "configure" 18187 +#line 9002"configure"20958 +#line 8876 "configure" 18188 20959 #include "confdefs.h" 18189 20960 18190 20961 #include <libutf8.h> 18191 @@ -8242,21 + 9012,21 @@20962 @@ -8242,21 +8886,21 @@ 18192 20963 } 18193 20964 _ACEOF 18194 20965 rm -f conftest.$ac_objext 18195 20966 -if { (eval echo "$as_me:8245: \"$ac_compile\"") >&5 18196 +if { (eval echo "$as_me: 9015: \"$ac_compile\"") >&520967 +if { (eval echo "$as_me:8889: \"$ac_compile\"") >&5 18197 20968 (eval $ac_compile) 2>&5 18198 20969 ac_status=$? 18199 20970 - echo "$as_me:8248: \$? = $ac_status" >&5 18200 + echo "$as_me: 9018: \$? = $ac_status" >&520971 + echo "$as_me:8892: \$? = $ac_status" >&5 18201 20972 (exit $ac_status); } && 18202 20973 { ac_try='test -s conftest.$ac_objext' 18203 20974 - { (eval echo "$as_me:8251: \"$ac_try\"") >&5 18204 + { (eval echo "$as_me: 9021: \"$ac_try\"") >&520975 + { (eval echo "$as_me:8895: \"$ac_try\"") >&5 18205 20976 (eval $ac_try) 2>&5 18206 20977 ac_status=$? 18207 20978 - echo "$as_me:8254: \$? = $ac_status" >&5 18208 + echo "$as_me: 9024: \$? = $ac_status" >&520979 + echo "$as_me:8898: \$? = $ac_status" >&5 18209 20980 (exit $ac_status); }; }; then 18210 20981 … … 18212 20983 18213 20984 -echo "${as_me:-configure}:8259: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 18214 +echo "${as_me:-configure}: 9029: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&520985 +echo "${as_me:-configure}:8903: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 18215 20986 18216 20987 cf_cv_find_linkage_utf8=maybe 18217 20988 cf_test_CPPFLAGS="$CPPFLAGS" 18218 @@ -8274,7 + 9044,7 @@20989 @@ -8274,7 +8918,7 @@ 18219 20990 18220 20991 if test "$cf_cv_find_linkage_utf8" = maybe ; then 18221 20992 18222 20993 -echo "${as_me:-configure}:8277: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 18223 +echo "${as_me:-configure}: 9047: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&520994 +echo "${as_me:-configure}:8921: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 18224 20995 18225 20996 cf_save_LIBS="$LIBS" 18226 20997 cf_save_LDFLAGS="$LDFLAGS" 18227 @@ -8371,13 +9 141,13 @@20998 @@ -8371,13 +9015,13 @@ 18228 20999 if test -d $cf_cv_library_path_utf8 ; then 18229 21000 test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 18230 21001 18231 21002 -echo "${as_me:-configure}:8374: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 18232 +echo "${as_me:-configure}:9 144: testing ... testing $cf_cv_library_path_utf8 ..." 1>&521003 +echo "${as_me:-configure}:9018: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 18233 21004 18234 21005 CPPFLAGS="$cf_test_CPPFLAGS" … … 18237 21008 cat >conftest.$ac_ext <<_ACEOF 18238 21009 -#line 8380 "configure" 18239 +#line 9 150"configure"21010 +#line 9024 "configure" 18240 21011 #include "confdefs.h" 18241 21012 18242 21013 #include <libutf8.h> 18243 @@ -8390,21 +9 160,21 @@21014 @@ -8390,21 +9034,21 @@ 18244 21015 } 18245 21016 _ACEOF 18246 21017 rm -f conftest.$ac_objext conftest$ac_exeext 18247 21018 -if { (eval echo "$as_me:8393: \"$ac_link\"") >&5 18248 +if { (eval echo "$as_me:9 163: \"$ac_link\"") >&521019 +if { (eval echo "$as_me:9037: \"$ac_link\"") >&5 18249 21020 (eval $ac_link) 2>&5 18250 21021 ac_status=$? 18251 21022 - echo "$as_me:8396: \$? = $ac_status" >&5 18252 + echo "$as_me:9 166: \$? = $ac_status" >&521023 + echo "$as_me:9040: \$? = $ac_status" >&5 18253 21024 (exit $ac_status); } && 18254 21025 { ac_try='test -s conftest$ac_exeext' 18255 21026 - { (eval echo "$as_me:8399: \"$ac_try\"") >&5 18256 + { (eval echo "$as_me:9 169: \"$ac_try\"") >&521027 + { (eval echo "$as_me:9043: \"$ac_try\"") >&5 18257 21028 (eval $ac_try) 2>&5 18258 21029 ac_status=$? 18259 21030 - echo "$as_me:8402: \$? = $ac_status" >&5 18260 + echo "$as_me:9 172: \$? = $ac_status" >&521031 + echo "$as_me:9046: \$? = $ac_status" >&5 18261 21032 (exit $ac_status); }; }; then 18262 21033 … … 18264 21035 18265 21036 -echo "${as_me:-configure}:8407: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 18266 +echo "${as_me:-configure}:9 177: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&521037 +echo "${as_me:-configure}:9051: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 18267 21038 18268 21039 cf_cv_find_linkage_utf8=yes 18269 21040 cf_cv_library_file_utf8="-lutf8" 18270 @@ -8446,7 +9 216,7 @@21041 @@ -8446,7 +9090,7 @@ 18271 21042 fi 18272 21043 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 18273 21044 fi 18274 21045 -echo "$as_me:8449: result: $cf_cv_utf8_lib" >&5 18275 +echo "$as_me:9 219: result: $cf_cv_utf8_lib" >&521046 +echo "$as_me:9093: result: $cf_cv_utf8_lib" >&5 18276 21047 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 18277 21048 18278 21049 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between 18279 @@ -8480,7 +9 250,7 @@21050 @@ -8480,7 +9124,7 @@ 18280 21051 cf_save_CPPFLAGS=$CPPFLAGS 18281 21052 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 18282 21053 cat >conftest.$ac_ext <<_ACEOF 18283 21054 -#line 8483 "configure" 18284 +#line 9 253"configure"21055 +#line 9127 "configure" 18285 21056 #include "confdefs.h" 18286 21057 #include <stdio.h> 18287 21058 int 18288 @@ -8492,16 +9 262,16 @@21059 @@ -8492,16 +9136,16 @@ 18289 21060 } 18290 21061 _ACEOF 18291 21062 rm -f conftest.$ac_objext 18292 21063 -if { (eval echo "$as_me:8495: \"$ac_compile\"") >&5 18293 +if { (eval echo "$as_me:9 265: \"$ac_compile\"") >&521064 +if { (eval echo "$as_me:9139: \"$ac_compile\"") >&5 18294 21065 (eval $ac_compile) 2>&5 18295 21066 ac_status=$? 18296 21067 - echo "$as_me:8498: \$? = $ac_status" >&5 18297 + echo "$as_me:9 268: \$? = $ac_status" >&521068 + echo "$as_me:9142: \$? = $ac_status" >&5 18298 21069 (exit $ac_status); } && 18299 21070 { ac_try='test -s conftest.$ac_objext' 18300 21071 - { (eval echo "$as_me:8501: \"$ac_try\"") >&5 18301 + { (eval echo "$as_me:9 271: \"$ac_try\"") >&521072 + { (eval echo "$as_me:9145: \"$ac_try\"") >&5 18302 21073 (eval $ac_try) 2>&5 18303 21074 ac_status=$? 18304 21075 - echo "$as_me:8504: \$? = $ac_status" >&5 18305 + echo "$as_me:9 274: \$? = $ac_status" >&521076 + echo "$as_me:9148: \$? = $ac_status" >&5 18306 21077 (exit $ac_status); }; }; then 18307 21078 : 18308 21079 else 18309 @@ -8518,7 +9 288,7 @@21080 @@ -8518,7 +9162,7 @@ 18310 21081 if test "$cf_have_incdir" = no ; then 18311 21082 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 18312 21083 18313 21084 -echo "${as_me:-configure}:8521: testing adding $cf_add_incdir to include-path ..." 1>&5 18314 +echo "${as_me:-configure}:9 291: testing adding $cf_add_incdir to include-path ..." 1>&521085 +echo "${as_me:-configure}:9165: testing adding $cf_add_incdir to include-path ..." 1>&5 18315 21086 18316 21087 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 18317 21088 18318 @@ -8552,7 +9 322,7 @@21089 @@ -8552,7 +9196,7 @@ 18319 21090 if test "$cf_have_libdir" = no ; then 18320 21091 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 18321 21092 18322 21093 -echo "${as_me:-configure}:8555: testing adding $cf_add_libdir to library-path ..." 1>&5 18323 +echo "${as_me:-configure}:9 325: testing adding $cf_add_libdir to library-path ..." 1>&521094 +echo "${as_me:-configure}:9199: testing adding $cf_add_libdir to library-path ..." 1>&5 18324 21095 18325 21096 LDFLAGS="-L$cf_add_libdir $LDFLAGS" 18326 21097 fi 18327 @@ -8569,14 +9 339,14 @@21098 @@ -8569,14 +9213,14 @@ 18328 21099 fi 18329 21100 18330 21101 # This is needed on Tru64 5.0 to declare mbstate_t 18331 21102 -echo "$as_me:8572: checking if we must include wchar.h to declare mbstate_t" >&5 18332 +echo "$as_me:9 342: checking if we must include wchar.h to declare mbstate_t" >&521103 +echo "$as_me:9216: checking if we must include wchar.h to declare mbstate_t" >&5 18333 21104 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6 18334 21105 if test "${cf_cv_mbstate_t+set}" = set; then … … 18338 21109 cat >conftest.$ac_ext <<_ACEOF 18339 21110 -#line 8579 "configure" 18340 +#line 9 349"configure"21111 +#line 9223 "configure" 18341 21112 #include "confdefs.h" 18342 21113 18343 21114 #include <stdlib.h> 18344 @@ -8594,23 +9 364,23 @@21115 @@ -8594,23 +9238,23 @@ 18345 21116 } 18346 21117 _ACEOF 18347 21118 rm -f conftest.$ac_objext 18348 21119 -if { (eval echo "$as_me:8597: \"$ac_compile\"") >&5 18349 +if { (eval echo "$as_me:9 367: \"$ac_compile\"") >&521120 +if { (eval echo "$as_me:9241: \"$ac_compile\"") >&5 18350 21121 (eval $ac_compile) 2>&5 18351 21122 ac_status=$? 18352 21123 - echo "$as_me:8600: \$? = $ac_status" >&5 18353 + echo "$as_me:9 370: \$? = $ac_status" >&521124 + echo "$as_me:9244: \$? = $ac_status" >&5 18354 21125 (exit $ac_status); } && 18355 21126 { ac_try='test -s conftest.$ac_objext' 18356 21127 - { (eval echo "$as_me:8603: \"$ac_try\"") >&5 18357 + { (eval echo "$as_me:9 373: \"$ac_try\"") >&521128 + { (eval echo "$as_me:9247: \"$ac_try\"") >&5 18358 21129 (eval $ac_try) 2>&5 18359 21130 ac_status=$? 18360 21131 - echo "$as_me:8606: \$? = $ac_status" >&5 18361 + echo "$as_me:9 376: \$? = $ac_status" >&521132 + echo "$as_me:9250: \$? = $ac_status" >&5 18362 21133 (exit $ac_status); }; }; then 18363 21134 cf_cv_mbstate_t=no … … 18367 21138 cat >conftest.$ac_ext <<_ACEOF 18368 21139 -#line 8613 "configure" 18369 +#line 9 383"configure"21140 +#line 9257 "configure" 18370 21141 #include "confdefs.h" 18371 21142 18372 21143 #include <stdlib.h> 18373 @@ -8629,16 +9 399,16 @@21144 @@ -8629,16 +9273,16 @@ 18374 21145 } 18375 21146 _ACEOF 18376 21147 rm -f conftest.$ac_objext 18377 21148 -if { (eval echo "$as_me:8632: \"$ac_compile\"") >&5 18378 +if { (eval echo "$as_me:9 402: \"$ac_compile\"") >&521149 +if { (eval echo "$as_me:9276: \"$ac_compile\"") >&5 18379 21150 (eval $ac_compile) 2>&5 18380 21151 ac_status=$? 18381 21152 - echo "$as_me:8635: \$? = $ac_status" >&5 18382 + echo "$as_me:9 405: \$? = $ac_status" >&521153 + echo "$as_me:9279: \$? = $ac_status" >&5 18383 21154 (exit $ac_status); } && 18384 21155 { ac_try='test -s conftest.$ac_objext' 18385 21156 - { (eval echo "$as_me:8638: \"$ac_try\"") >&5 18386 + { (eval echo "$as_me:9 408: \"$ac_try\"") >&521157 + { (eval echo "$as_me:9282: \"$ac_try\"") >&5 18387 21158 (eval $ac_try) 2>&5 18388 21159 ac_status=$? 18389 21160 - echo "$as_me:8641: \$? = $ac_status" >&5 18390 + echo "$as_me:9 411: \$? = $ac_status" >&521161 + echo "$as_me:9285: \$? = $ac_status" >&5 18391 21162 (exit $ac_status); }; }; then 18392 21163 cf_cv_mbstate_t=yes 18393 21164 else 18394 @@ -8650,7 +9 420,7 @@21165 @@ -8650,7 +9294,7 @@ 18395 21166 fi 18396 21167 rm -f conftest.$ac_objext conftest.$ac_ext 18397 21168 fi 18398 21169 -echo "$as_me:8653: result: $cf_cv_mbstate_t" >&5 18399 +echo "$as_me:9 423: result: $cf_cv_mbstate_t" >&521170 +echo "$as_me:9297: result: $cf_cv_mbstate_t" >&5 18400 21171 echo "${ECHO_T}$cf_cv_mbstate_t" >&6 18401 21172 18402 21173 if test "$cf_cv_mbstate_t" = yes ; then 18403 @@ -8667,14 +9 437,14 @@21174 @@ -8667,14 +9311,14 @@ 18404 21175 fi 18405 21176 18406 21177 # This is needed on Tru64 5.0 to declare wchar_t 18407 21178 -echo "$as_me:8670: checking if we must include wchar.h to declare wchar_t" >&5 18408 +echo "$as_me:9 440: checking if we must include wchar.h to declare wchar_t" >&521179 +echo "$as_me:9314: checking if we must include wchar.h to declare wchar_t" >&5 18409 21180 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6 18410 21181 if test "${cf_cv_wchar_t+set}" = set; then … … 18414 21185 cat >conftest.$ac_ext <<_ACEOF 18415 21186 -#line 8677 "configure" 18416 +#line 9 447"configure"21187 +#line 9321 "configure" 18417 21188 #include "confdefs.h" 18418 21189 18419 21190 #include <stdlib.h> 18420 @@ -8692,23 +9 462,23 @@21191 @@ -8692,23 +9336,23 @@ 18421 21192 } 18422 21193 _ACEOF 18423 21194 rm -f conftest.$ac_objext 18424 21195 -if { (eval echo "$as_me:8695: \"$ac_compile\"") >&5 18425 +if { (eval echo "$as_me:9 465: \"$ac_compile\"") >&521196 +if { (eval echo "$as_me:9339: \"$ac_compile\"") >&5 18426 21197 (eval $ac_compile) 2>&5 18427 21198 ac_status=$? 18428 21199 - echo "$as_me:8698: \$? = $ac_status" >&5 18429 + echo "$as_me:9 468: \$? = $ac_status" >&521200 + echo "$as_me:9342: \$? = $ac_status" >&5 18430 21201 (exit $ac_status); } && 18431 21202 { ac_try='test -s conftest.$ac_objext' 18432 21203 - { (eval echo "$as_me:8701: \"$ac_try\"") >&5 18433 + { (eval echo "$as_me:9 471: \"$ac_try\"") >&521204 + { (eval echo "$as_me:9345: \"$ac_try\"") >&5 18434 21205 (eval $ac_try) 2>&5 18435 21206 ac_status=$? 18436 21207 - echo "$as_me:8704: \$? = $ac_status" >&5 18437 + echo "$as_me:9 474: \$? = $ac_status" >&521208 + echo "$as_me:9348: \$? = $ac_status" >&5 18438 21209 (exit $ac_status); }; }; then 18439 21210 cf_cv_wchar_t=no … … 18443 21214 cat >conftest.$ac_ext <<_ACEOF 18444 21215 -#line 8711 "configure" 18445 +#line 9 481"configure"21216 +#line 9355 "configure" 18446 21217 #include "confdefs.h" 18447 21218 18448 21219 #include <stdlib.h> 18449 @@ -8727,16 +9 497,16 @@21220 @@ -8727,16 +9371,16 @@ 18450 21221 } 18451 21222 _ACEOF 18452 21223 rm -f conftest.$ac_objext 18453 21224 -if { (eval echo "$as_me:8730: \"$ac_compile\"") >&5 18454 +if { (eval echo "$as_me:9 500: \"$ac_compile\"") >&521225 +if { (eval echo "$as_me:9374: \"$ac_compile\"") >&5 18455 21226 (eval $ac_compile) 2>&5 18456 21227 ac_status=$? 18457 21228 - echo "$as_me:8733: \$? = $ac_status" >&5 18458 + echo "$as_me:9 503: \$? = $ac_status" >&521229 + echo "$as_me:9377: \$? = $ac_status" >&5 18459 21230 (exit $ac_status); } && 18460 21231 { ac_try='test -s conftest.$ac_objext' 18461 21232 - { (eval echo "$as_me:8736: \"$ac_try\"") >&5 18462 + { (eval echo "$as_me:9 506: \"$ac_try\"") >&521233 + { (eval echo "$as_me:9380: \"$ac_try\"") >&5 18463 21234 (eval $ac_try) 2>&5 18464 21235 ac_status=$? 18465 21236 - echo "$as_me:8739: \$? = $ac_status" >&5 18466 + echo "$as_me:9 509: \$? = $ac_status" >&521237 + echo "$as_me:9383: \$? = $ac_status" >&5 18467 21238 (exit $ac_status); }; }; then 18468 21239 cf_cv_wchar_t=yes 18469 21240 else 18470 @@ -8748,7 +9 518,7 @@21241 @@ -8748,7 +9392,7 @@ 18471 21242 fi 18472 21243 rm -f conftest.$ac_objext conftest.$ac_ext 18473 21244 fi 18474 21245 -echo "$as_me:8751: result: $cf_cv_wchar_t" >&5 18475 +echo "$as_me:9 521: result: $cf_cv_wchar_t" >&521246 +echo "$as_me:9395: result: $cf_cv_wchar_t" >&5 18476 21247 echo "${ECHO_T}$cf_cv_wchar_t" >&6 18477 21248 18478 21249 if test "$cf_cv_wchar_t" = yes ; then 18479 @@ -8770,14 +9 540,14 @@21250 @@ -8770,14 +9414,14 @@ 18480 21251 fi 18481 21252 18482 21253 # This is needed on Tru64 5.0 to declare wint_t 18483 21254 -echo "$as_me:8773: checking if we must include wchar.h to declare wint_t" >&5 18484 +echo "$as_me:9 543: checking if we must include wchar.h to declare wint_t" >&521255 +echo "$as_me:9417: checking if we must include wchar.h to declare wint_t" >&5 18485 21256 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6 18486 21257 if test "${cf_cv_wint_t+set}" = set; then … … 18490 21261 cat >conftest.$ac_ext <<_ACEOF 18491 21262 -#line 8780 "configure" 18492 +#line 9 550"configure"21263 +#line 9424 "configure" 18493 21264 #include "confdefs.h" 18494 21265 18495 21266 #include <stdlib.h> 18496 @@ -8795,23 +9 565,23 @@21267 @@ -8795,23 +9439,23 @@ 18497 21268 } 18498 21269 _ACEOF 18499 21270 rm -f conftest.$ac_objext 18500 21271 -if { (eval echo "$as_me:8798: \"$ac_compile\"") >&5 18501 +if { (eval echo "$as_me:9 568: \"$ac_compile\"") >&521272 +if { (eval echo "$as_me:9442: \"$ac_compile\"") >&5 18502 21273 (eval $ac_compile) 2>&5 18503 21274 ac_status=$? 18504 21275 - echo "$as_me:8801: \$? = $ac_status" >&5 18505 + echo "$as_me:9 571: \$? = $ac_status" >&521276 + echo "$as_me:9445: \$? = $ac_status" >&5 18506 21277 (exit $ac_status); } && 18507 21278 { ac_try='test -s conftest.$ac_objext' 18508 21279 - { (eval echo "$as_me:8804: \"$ac_try\"") >&5 18509 + { (eval echo "$as_me:9 574: \"$ac_try\"") >&521280 + { (eval echo "$as_me:9448: \"$ac_try\"") >&5 18510 21281 (eval $ac_try) 2>&5 18511 21282 ac_status=$? 18512 21283 - echo "$as_me:8807: \$? = $ac_status" >&5 18513 + echo "$as_me:9 577: \$? = $ac_status" >&521284 + echo "$as_me:9451: \$? = $ac_status" >&5 18514 21285 (exit $ac_status); }; }; then 18515 21286 cf_cv_wint_t=no … … 18519 21290 cat >conftest.$ac_ext <<_ACEOF 18520 21291 -#line 8814 "configure" 18521 +#line 9 584"configure"21292 +#line 9458 "configure" 18522 21293 #include "confdefs.h" 18523 21294 18524 21295 #include <stdlib.h> 18525 @@ -8830,16 +9 600,16 @@21296 @@ -8830,16 +9474,16 @@ 18526 21297 } 18527 21298 _ACEOF 18528 21299 rm -f conftest.$ac_objext 18529 21300 -if { (eval echo "$as_me:8833: \"$ac_compile\"") >&5 18530 +if { (eval echo "$as_me:9 603: \"$ac_compile\"") >&521301 +if { (eval echo "$as_me:9477: \"$ac_compile\"") >&5 18531 21302 (eval $ac_compile) 2>&5 18532 21303 ac_status=$? 18533 21304 - echo "$as_me:8836: \$? = $ac_status" >&5 18534 + echo "$as_me:9 606: \$? = $ac_status" >&521305 + echo "$as_me:9480: \$? = $ac_status" >&5 18535 21306 (exit $ac_status); } && 18536 21307 { ac_try='test -s conftest.$ac_objext' 18537 21308 - { (eval echo "$as_me:8839: \"$ac_try\"") >&5 18538 + { (eval echo "$as_me:9 609: \"$ac_try\"") >&521309 + { (eval echo "$as_me:9483: \"$ac_try\"") >&5 18539 21310 (eval $ac_try) 2>&5 18540 21311 ac_status=$? 18541 21312 - echo "$as_me:8842: \$? = $ac_status" >&5 18542 + echo "$as_me:9 612: \$? = $ac_status" >&521313 + echo "$as_me:9486: \$? = $ac_status" >&5 18543 21314 (exit $ac_status); }; }; then 18544 21315 cf_cv_wint_t=yes 18545 21316 else 18546 @@ -8851,7 +9 621,7 @@21317 @@ -8851,7 +9495,7 @@ 18547 21318 fi 18548 21319 rm -f conftest.$ac_objext conftest.$ac_ext 18549 21320 fi 18550 21321 -echo "$as_me:8854: result: $cf_cv_wint_t" >&5 18551 +echo "$as_me:9 624: result: $cf_cv_wint_t" >&521322 +echo "$as_me:9498: result: $cf_cv_wint_t" >&5 18552 21323 echo "${ECHO_T}$cf_cv_wint_t" >&6 18553 21324 18554 21325 if test "$cf_cv_wint_t" = yes ; then 18555 @@ -8890,7 +9 660,7 @@21326 @@ -8890,7 +9534,7 @@ 18556 21327 ;; 18557 21328 esac 18558 21329 18559 21330 -echo "$as_me:8893: checking whether to enable _LP64 definition in curses.h" >&5 18560 +echo "$as_me:9 663: checking whether to enable _LP64 definition in curses.h" >&521331 +echo "$as_me:9537: checking whether to enable _LP64 definition in curses.h" >&5 18561 21332 echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6 18562 21333 18563 21334 # Check whether --enable-lp64 or --disable-lp64 was given. 18564 @@ -8900,7 +9 670,7 @@21335 @@ -8900,7 +9544,7 @@ 18565 21336 else 18566 21337 with_lp64=$default_with_lp64 18567 21338 fi; 18568 21339 -echo "$as_me:8903: result: $with_lp64" >&5 18569 +echo "$as_me:9 673: result: $with_lp64" >&521340 +echo "$as_me:9547: result: $with_lp64" >&5 18570 21341 echo "${ECHO_T}$with_lp64" >&6 18571 21342 18572 21343 if test "$with_lp64" = yes ; then 18573 @@ -8916,7 +9 686,7 @@21344 @@ -8916,7 +9560,7 @@ 18574 21345 fi; 18575 21346 if test "$enable_largefile" != no; then 18576 21347 18577 21348 - echo "$as_me:8919: checking for special C compiler options needed for large files" >&5 18578 + echo "$as_me:9 689: checking for special C compiler options needed for large files" >&521349 + echo "$as_me:9563: checking for special C compiler options needed for large files" >&5 18579 21350 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 18580 21351 if test "${ac_cv_sys_largefile_CC+set}" = set; then 18581 21352 echo $ECHO_N "(cached) $ECHO_C" >&6 18582 @@ -8928,7 +9 698,7 @@21353 @@ -8928,7 +9572,7 @@ 18583 21354 # IRIX 6.2 and later do not support large files by default, 18584 21355 # so use the C compiler's -n32 option if that helps. 18585 21356 cat >conftest.$ac_ext <<_ACEOF 18586 21357 -#line 8931 "configure" 18587 +#line 9 701"configure"21358 +#line 9575 "configure" 18588 21359 #include "confdefs.h" 18589 21360 #include <sys/types.h> 18590 21361 /* Check that off_t can represent 2**63 - 1 correctly. 18591 @@ -8948,16 +9 718,16 @@21362 @@ -8948,16 +9592,16 @@ 18592 21363 } 18593 21364 _ACEOF 18594 21365 rm -f conftest.$ac_objext 18595 21366 -if { (eval echo "$as_me:8951: \"$ac_compile\"") >&5 18596 +if { (eval echo "$as_me:9 721: \"$ac_compile\"") >&521367 +if { (eval echo "$as_me:9595: \"$ac_compile\"") >&5 18597 21368 (eval $ac_compile) 2>&5 18598 21369 ac_status=$? 18599 21370 - echo "$as_me:8954: \$? = $ac_status" >&5 18600 + echo "$as_me:9 724: \$? = $ac_status" >&521371 + echo "$as_me:9598: \$? = $ac_status" >&5 18601 21372 (exit $ac_status); } && 18602 21373 { ac_try='test -s conftest.$ac_objext' 18603 21374 - { (eval echo "$as_me:8957: \"$ac_try\"") >&5 18604 + { (eval echo "$as_me:9 727: \"$ac_try\"") >&521375 + { (eval echo "$as_me:9601: \"$ac_try\"") >&5 18605 21376 (eval $ac_try) 2>&5 18606 21377 ac_status=$? 18607 21378 - echo "$as_me:8960: \$? = $ac_status" >&5 18608 + echo "$as_me:9 730: \$? = $ac_status" >&521379 + echo "$as_me:9604: \$? = $ac_status" >&5 18609 21380 (exit $ac_status); }; }; then 18610 21381 break 18611 21382 else 18612 @@ -8967,16 +9 737,16 @@21383 @@ -8967,16 +9611,16 @@ 18613 21384 rm -f conftest.$ac_objext 18614 21385 CC="$CC -n32" 18615 21386 rm -f conftest.$ac_objext 18616 21387 -if { (eval echo "$as_me:8970: \"$ac_compile\"") >&5 18617 +if { (eval echo "$as_me:9 740: \"$ac_compile\"") >&521388 +if { (eval echo "$as_me:9614: \"$ac_compile\"") >&5 18618 21389 (eval $ac_compile) 2>&5 18619 21390 ac_status=$? 18620 21391 - echo "$as_me:8973: \$? = $ac_status" >&5 18621 + echo "$as_me:9 743: \$? = $ac_status" >&521392 + echo "$as_me:9617: \$? = $ac_status" >&5 18622 21393 (exit $ac_status); } && 18623 21394 { ac_try='test -s conftest.$ac_objext' 18624 21395 - { (eval echo "$as_me:8976: \"$ac_try\"") >&5 18625 + { (eval echo "$as_me:9 746: \"$ac_try\"") >&521396 + { (eval echo "$as_me:9620: \"$ac_try\"") >&5 18626 21397 (eval $ac_try) 2>&5 18627 21398 ac_status=$? 18628 21399 - echo "$as_me:8979: \$? = $ac_status" >&5 18629 + echo "$as_me:9 749: \$? = $ac_status" >&521400 + echo "$as_me:9623: \$? = $ac_status" >&5 18630 21401 (exit $ac_status); }; }; then 18631 21402 ac_cv_sys_largefile_CC=' -n32'; break 18632 21403 else 18633 @@ -8990,13 +9 760,13 @@21404 @@ -8990,13 +9634,13 @@ 18634 21405 rm -f conftest.$ac_ext 18635 21406 fi 18636 21407 fi 18637 21408 -echo "$as_me:8993: result: $ac_cv_sys_largefile_CC" >&5 18638 +echo "$as_me:9 763: result: $ac_cv_sys_largefile_CC" >&521409 +echo "$as_me:9637: result: $ac_cv_sys_largefile_CC" >&5 18639 21410 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 18640 21411 if test "$ac_cv_sys_largefile_CC" != no; then … … 18643 21414 18644 21415 - echo "$as_me:8999: checking for _FILE_OFFSET_BITS value needed for large files" >&5 18645 + echo "$as_me:9 769: checking for _FILE_OFFSET_BITS value needed for large files" >&521416 + echo "$as_me:9643: checking for _FILE_OFFSET_BITS value needed for large files" >&5 18646 21417 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 18647 21418 if test "${ac_cv_sys_file_offset_bits+set}" = set; then 18648 21419 echo $ECHO_N "(cached) $ECHO_C" >&6 18649 @@ -9004,7 +9 774,7 @@21420 @@ -9004,7 +9648,7 @@ 18650 21421 while :; do 18651 21422 ac_cv_sys_file_offset_bits=no 18652 21423 cat >conftest.$ac_ext <<_ACEOF 18653 21424 -#line 9007 "configure" 18654 +#line 9 777"configure"21425 +#line 9651 "configure" 18655 21426 #include "confdefs.h" 18656 21427 #include <sys/types.h> 18657 21428 /* Check that off_t can represent 2**63 - 1 correctly. 18658 @@ -9024,16 +9 794,16 @@21429 @@ -9024,16 +9668,16 @@ 18659 21430 } 18660 21431 _ACEOF 18661 21432 rm -f conftest.$ac_objext 18662 21433 -if { (eval echo "$as_me:9027: \"$ac_compile\"") >&5 18663 +if { (eval echo "$as_me:9 797: \"$ac_compile\"") >&521434 +if { (eval echo "$as_me:9671: \"$ac_compile\"") >&5 18664 21435 (eval $ac_compile) 2>&5 18665 21436 ac_status=$? 18666 21437 - echo "$as_me:9030: \$? = $ac_status" >&5 18667 + echo "$as_me:9 800: \$? = $ac_status" >&521438 + echo "$as_me:9674: \$? = $ac_status" >&5 18668 21439 (exit $ac_status); } && 18669 21440 { ac_try='test -s conftest.$ac_objext' 18670 21441 - { (eval echo "$as_me:9033: \"$ac_try\"") >&5 18671 + { (eval echo "$as_me:9 803: \"$ac_try\"") >&521442 + { (eval echo "$as_me:9677: \"$ac_try\"") >&5 18672 21443 (eval $ac_try) 2>&5 18673 21444 ac_status=$? 18674 21445 - echo "$as_me:9036: \$? = $ac_status" >&5 18675 + echo "$as_me:9 806: \$? = $ac_status" >&521446 + echo "$as_me:9680: \$? = $ac_status" >&5 18676 21447 (exit $ac_status); }; }; then 18677 21448 break 18678 21449 else 18679 @@ -9042,7 +9 812,7 @@21450 @@ -9042,7 +9686,7 @@ 18680 21451 fi 18681 21452 rm -f conftest.$ac_objext conftest.$ac_ext 18682 21453 cat >conftest.$ac_ext <<_ACEOF 18683 21454 -#line 9045 "configure" 18684 +#line 9 815"configure"21455 +#line 9689 "configure" 18685 21456 #include "confdefs.h" 18686 21457 #define _FILE_OFFSET_BITS 64 18687 21458 #include <sys/types.h> 18688 @@ -9063,16 +9 833,16 @@21459 @@ -9063,16 +9707,16 @@ 18689 21460 } 18690 21461 _ACEOF 18691 21462 rm -f conftest.$ac_objext 18692 21463 -if { (eval echo "$as_me:9066: \"$ac_compile\"") >&5 18693 +if { (eval echo "$as_me:9 836: \"$ac_compile\"") >&521464 +if { (eval echo "$as_me:9710: \"$ac_compile\"") >&5 18694 21465 (eval $ac_compile) 2>&5 18695 21466 ac_status=$? 18696 21467 - echo "$as_me:9069: \$? = $ac_status" >&5 18697 + echo "$as_me:9 839: \$? = $ac_status" >&521468 + echo "$as_me:9713: \$? = $ac_status" >&5 18698 21469 (exit $ac_status); } && 18699 21470 { ac_try='test -s conftest.$ac_objext' 18700 21471 - { (eval echo "$as_me:9072: \"$ac_try\"") >&5 18701 + { (eval echo "$as_me:9 842: \"$ac_try\"") >&521472 + { (eval echo "$as_me:9716: \"$ac_try\"") >&5 18702 21473 (eval $ac_try) 2>&5 18703 21474 ac_status=$? 18704 21475 - echo "$as_me:9075: \$? = $ac_status" >&5 18705 + echo "$as_me:9 845: \$? = $ac_status" >&521476 + echo "$as_me:9719: \$? = $ac_status" >&5 18706 21477 (exit $ac_status); }; }; then 18707 21478 ac_cv_sys_file_offset_bits=64; break 18708 21479 else 18709 @@ -9083,7 +9 853,7 @@21480 @@ -9083,7 +9727,7 @@ 18710 21481 break 18711 21482 done 18712 21483 fi 18713 21484 -echo "$as_me:9086: result: $ac_cv_sys_file_offset_bits" >&5 18714 +echo "$as_me:9 856: result: $ac_cv_sys_file_offset_bits" >&521485 +echo "$as_me:9730: result: $ac_cv_sys_file_offset_bits" >&5 18715 21486 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 18716 21487 if test "$ac_cv_sys_file_offset_bits" != no; then 18717 21488 18718 @@ -9093,7 +9 863,7 @@21489 @@ -9093,7 +9737,7 @@ 18719 21490 18720 21491 fi 18721 21492 rm -rf conftest* 18722 21493 - echo "$as_me:9096: checking for _LARGE_FILES value needed for large files" >&5 18723 + echo "$as_me:9 866: checking for _LARGE_FILES value needed for large files" >&521494 + echo "$as_me:9740: checking for _LARGE_FILES value needed for large files" >&5 18724 21495 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 18725 21496 if test "${ac_cv_sys_large_files+set}" = set; then 18726 21497 echo $ECHO_N "(cached) $ECHO_C" >&6 18727 @@ -9101,7 +9 871,7 @@21498 @@ -9101,7 +9745,7 @@ 18728 21499 while :; do 18729 21500 ac_cv_sys_large_files=no 18730 21501 cat >conftest.$ac_ext <<_ACEOF 18731 21502 -#line 9104 "configure" 18732 +#line 9 874"configure"21503 +#line 9748 "configure" 18733 21504 #include "confdefs.h" 18734 21505 #include <sys/types.h> 18735 21506 /* Check that off_t can represent 2**63 - 1 correctly. 18736 @@ -9121,16 +9 891,16 @@21507 @@ -9121,16 +9765,16 @@ 18737 21508 } 18738 21509 _ACEOF 18739 21510 rm -f conftest.$ac_objext 18740 21511 -if { (eval echo "$as_me:9124: \"$ac_compile\"") >&5 18741 +if { (eval echo "$as_me:9 894: \"$ac_compile\"") >&521512 +if { (eval echo "$as_me:9768: \"$ac_compile\"") >&5 18742 21513 (eval $ac_compile) 2>&5 18743 21514 ac_status=$? 18744 21515 - echo "$as_me:9127: \$? = $ac_status" >&5 18745 + echo "$as_me:9 897: \$? = $ac_status" >&521516 + echo "$as_me:9771: \$? = $ac_status" >&5 18746 21517 (exit $ac_status); } && 18747 21518 { ac_try='test -s conftest.$ac_objext' 18748 21519 - { (eval echo "$as_me:9130: \"$ac_try\"") >&5 18749 + { (eval echo "$as_me:9 900: \"$ac_try\"") >&521520 + { (eval echo "$as_me:9774: \"$ac_try\"") >&5 18750 21521 (eval $ac_try) 2>&5 18751 21522 ac_status=$? 18752 21523 - echo "$as_me:9133: \$? = $ac_status" >&5 18753 + echo "$as_me:9 903: \$? = $ac_status" >&521524 + echo "$as_me:9777: \$? = $ac_status" >&5 18754 21525 (exit $ac_status); }; }; then 18755 21526 break 18756 21527 else 18757 @@ -9139,7 +9 909,7 @@21528 @@ -9139,7 +9783,7 @@ 18758 21529 fi 18759 21530 rm -f conftest.$ac_objext conftest.$ac_ext 18760 21531 cat >conftest.$ac_ext <<_ACEOF 18761 21532 -#line 9142 "configure" 18762 +#line 9 912"configure"21533 +#line 9786 "configure" 18763 21534 #include "confdefs.h" 18764 21535 #define _LARGE_FILES 1 18765 21536 #include <sys/types.h> 18766 @@ -9160,16 +9 930,16 @@21537 @@ -9160,16 +9804,16 @@ 18767 21538 } 18768 21539 _ACEOF 18769 21540 rm -f conftest.$ac_objext 18770 21541 -if { (eval echo "$as_me:9163: \"$ac_compile\"") >&5 18771 +if { (eval echo "$as_me:9 933: \"$ac_compile\"") >&521542 +if { (eval echo "$as_me:9807: \"$ac_compile\"") >&5 18772 21543 (eval $ac_compile) 2>&5 18773 21544 ac_status=$? 18774 21545 - echo "$as_me:9166: \$? = $ac_status" >&5 18775 + echo "$as_me:9 936: \$? = $ac_status" >&521546 + echo "$as_me:9810: \$? = $ac_status" >&5 18776 21547 (exit $ac_status); } && 18777 21548 { ac_try='test -s conftest.$ac_objext' 18778 21549 - { (eval echo "$as_me:9169: \"$ac_try\"") >&5 18779 + { (eval echo "$as_me:9 939: \"$ac_try\"") >&521550 + { (eval echo "$as_me:9813: \"$ac_try\"") >&5 18780 21551 (eval $ac_try) 2>&5 18781 21552 ac_status=$? 18782 21553 - echo "$as_me:9172: \$? = $ac_status" >&5 18783 + echo "$as_me:9 942: \$? = $ac_status" >&521554 + echo "$as_me:9816: \$? = $ac_status" >&5 18784 21555 (exit $ac_status); }; }; then 18785 21556 ac_cv_sys_large_files=1; break 18786 21557 else 18787 @@ -9180,7 +9 950,7 @@21558 @@ -9180,7 +9824,7 @@ 18788 21559 break 18789 21560 done 18790 21561 fi 18791 21562 -echo "$as_me:9183: result: $ac_cv_sys_large_files" >&5 18792 +echo "$as_me:9 953: result: $ac_cv_sys_large_files" >&521563 +echo "$as_me:9827: result: $ac_cv_sys_large_files" >&5 18793 21564 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 18794 21565 if test "$ac_cv_sys_large_files" != no; then 18795 21566 18796 @@ -9193,7 +9 963,7 @@21567 @@ -9193,7 +9837,7 @@ 18797 21568 fi 18798 21569 18799 21570 if test "$enable_largefile" != no ; then 18800 21571 - echo "$as_me:9196: checking for _LARGEFILE_SOURCE value needed for large files" >&5 18801 + echo "$as_me:9 966: checking for _LARGEFILE_SOURCE value needed for large files" >&521572 + echo "$as_me:9840: checking for _LARGEFILE_SOURCE value needed for large files" >&5 18802 21573 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 18803 21574 if test "${ac_cv_sys_largefile_source+set}" = set; then 18804 21575 echo $ECHO_N "(cached) $ECHO_C" >&6 18805 @@ -9201,7 +9 971,7 @@21576 @@ -9201,7 +9845,7 @@ 18806 21577 while :; do 18807 21578 ac_cv_sys_largefile_source=no 18808 21579 cat >conftest.$ac_ext <<_ACEOF 18809 21580 -#line 9204 "configure" 18810 +#line 9 974"configure"21581 +#line 9848 "configure" 18811 21582 #include "confdefs.h" 18812 21583 #include <stdio.h> 18813 21584 int 18814 @@ -9213,16 +9 983,16 @@21585 @@ -9213,16 +9857,16 @@ 18815 21586 } 18816 21587 _ACEOF 18817 21588 rm -f conftest.$ac_objext 18818 21589 -if { (eval echo "$as_me:9216: \"$ac_compile\"") >&5 18819 +if { (eval echo "$as_me:9 986: \"$ac_compile\"") >&521590 +if { (eval echo "$as_me:9860: \"$ac_compile\"") >&5 18820 21591 (eval $ac_compile) 2>&5 18821 21592 ac_status=$? 18822 21593 - echo "$as_me:9219: \$? = $ac_status" >&5 18823 + echo "$as_me:9 989: \$? = $ac_status" >&521594 + echo "$as_me:9863: \$? = $ac_status" >&5 18824 21595 (exit $ac_status); } && 18825 21596 { ac_try='test -s conftest.$ac_objext' 18826 21597 - { (eval echo "$as_me:9222: \"$ac_try\"") >&5 18827 + { (eval echo "$as_me:9 992: \"$ac_try\"") >&521598 + { (eval echo "$as_me:9866: \"$ac_try\"") >&5 18828 21599 (eval $ac_try) 2>&5 18829 21600 ac_status=$? 18830 21601 - echo "$as_me:9225: \$? = $ac_status" >&5 18831 + echo "$as_me:9 995: \$? = $ac_status" >&521602 + echo "$as_me:9869: \$? = $ac_status" >&5 18832 21603 (exit $ac_status); }; }; then 18833 21604 break 18834 21605 else 18835 @@ -9231,7 + 10001,7 @@21606 @@ -9231,7 +9875,7 @@ 18836 21607 fi 18837 21608 rm -f conftest.$ac_objext conftest.$ac_ext 18838 21609 cat >conftest.$ac_ext <<_ACEOF 18839 21610 -#line 9234 "configure" 18840 +#line 10004"configure"21611 +#line 9878 "configure" 18841 21612 #include "confdefs.h" 18842 21613 #define _LARGEFILE_SOURCE 1 18843 21614 #include <stdio.h> 18844 @@ -9244,16 + 10014,16 @@21615 @@ -9244,16 +9888,16 @@ 18845 21616 } 18846 21617 _ACEOF 18847 21618 rm -f conftest.$ac_objext 18848 21619 -if { (eval echo "$as_me:9247: \"$ac_compile\"") >&5 18849 +if { (eval echo "$as_me: 10017: \"$ac_compile\"") >&521620 +if { (eval echo "$as_me:9891: \"$ac_compile\"") >&5 18850 21621 (eval $ac_compile) 2>&5 18851 21622 ac_status=$? 18852 21623 - echo "$as_me:9250: \$? = $ac_status" >&5 18853 + echo "$as_me: 10020: \$? = $ac_status" >&521624 + echo "$as_me:9894: \$? = $ac_status" >&5 18854 21625 (exit $ac_status); } && 18855 21626 { ac_try='test -s conftest.$ac_objext' 18856 21627 - { (eval echo "$as_me:9253: \"$ac_try\"") >&5 18857 + { (eval echo "$as_me: 10023: \"$ac_try\"") >&521628 + { (eval echo "$as_me:9897: \"$ac_try\"") >&5 18858 21629 (eval $ac_try) 2>&5 18859 21630 ac_status=$? 18860 21631 - echo "$as_me:9256: \$? = $ac_status" >&5 18861 + echo "$as_me: 10026: \$? = $ac_status" >&521632 + echo "$as_me:9900: \$? = $ac_status" >&5 18862 21633 (exit $ac_status); }; }; then 18863 21634 ac_cv_sys_largefile_source=1; break 18864 21635 else 18865 @@ -9264,7 + 10034,7 @@21636 @@ -9264,7 +9908,7 @@ 18866 21637 break 18867 21638 done 18868 21639 fi 18869 21640 -echo "$as_me:9267: result: $ac_cv_sys_largefile_source" >&5 18870 +echo "$as_me: 10037: result: $ac_cv_sys_largefile_source" >&521641 +echo "$as_me:9911: result: $ac_cv_sys_largefile_source" >&5 18871 21642 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 18872 21643 if test "$ac_cv_sys_largefile_source" != no; then 18873 21644 18874 @@ -9278,13 + 10048,13 @@21645 @@ -9278,13 +9922,13 @@ 18875 21646 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug 18876 21647 # in glibc 2.1.3, but that breaks too many other things. 18877 21648 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. 18878 21649 -echo "$as_me:9281: checking for fseeko" >&5 18879 +echo "$as_me: 10051: checking for fseeko" >&521650 +echo "$as_me:9925: checking for fseeko" >&5 18880 21651 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 18881 21652 if test "${ac_cv_func_fseeko+set}" = set; then … … 18884 21655 cat >conftest.$ac_ext <<_ACEOF 18885 21656 -#line 9287 "configure" 18886 +#line 10057"configure"21657 +#line 9931 "configure" 18887 21658 #include "confdefs.h" 18888 21659 #include <stdio.h> 18889 21660 int 18890 @@ -9296,16 + 10066,16 @@21661 @@ -9296,16 +9940,16 @@ 18891 21662 } 18892 21663 _ACEOF 18893 21664 rm -f conftest.$ac_objext conftest$ac_exeext 18894 21665 -if { (eval echo "$as_me:9299: \"$ac_link\"") >&5 18895 +if { (eval echo "$as_me: 10069: \"$ac_link\"") >&521666 +if { (eval echo "$as_me:9943: \"$ac_link\"") >&5 18896 21667 (eval $ac_link) 2>&5 18897 21668 ac_status=$? 18898 21669 - echo "$as_me:9302: \$? = $ac_status" >&5 18899 + echo "$as_me: 10072: \$? = $ac_status" >&521670 + echo "$as_me:9946: \$? = $ac_status" >&5 18900 21671 (exit $ac_status); } && 18901 21672 { ac_try='test -s conftest$ac_exeext' 18902 21673 - { (eval echo "$as_me:9305: \"$ac_try\"") >&5 18903 + { (eval echo "$as_me: 10075: \"$ac_try\"") >&521674 + { (eval echo "$as_me:9949: \"$ac_try\"") >&5 18904 21675 (eval $ac_try) 2>&5 18905 21676 ac_status=$? 18906 21677 - echo "$as_me:9308: \$? = $ac_status" >&5 18907 + echo "$as_me: 10078: \$? = $ac_status" >&521678 + echo "$as_me:9952: \$? = $ac_status" >&5 18908 21679 (exit $ac_status); }; }; then 18909 21680 ac_cv_func_fseeko=yes 18910 21681 else 18911 @@ -9315,7 + 10085,7 @@21682 @@ -9315,7 +9959,7 @@ 18912 21683 fi 18913 21684 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 18914 21685 fi 18915 21686 -echo "$as_me:9318: result: $ac_cv_func_fseeko" >&5 18916 +echo "$as_me: 10088: result: $ac_cv_func_fseeko" >&521687 +echo "$as_me:9962: result: $ac_cv_func_fseeko" >&5 18917 21688 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 18918 21689 if test $ac_cv_func_fseeko = yes; then 18919 21690 18920 @@ -9336,14 + 10106,14 @@21691 @@ -9336,14 +9980,14 @@ 18921 21692 test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " 18922 21693 test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " 18923 21694 18924 21695 - echo "$as_me:9339: checking whether to use struct dirent64" >&5 18925 + echo "$as_me: 10109: checking whether to use struct dirent64" >&521696 + echo "$as_me:9983: checking whether to use struct dirent64" >&5 18926 21697 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 18927 21698 if test "${cf_cv_struct_dirent64+set}" = set; then … … 18931 21702 cat >conftest.$ac_ext <<_ACEOF 18932 21703 -#line 9346 "configure" 18933 +#line 10116"configure"21704 +#line 9990 "configure" 18934 21705 #include "confdefs.h" 18935 21706 18936 21707 #include <sys/types.h> 18937 @@ -9364,16 +10 134,16 @@21708 @@ -9364,16 +10008,16 @@ 18938 21709 } 18939 21710 _ACEOF 18940 21711 rm -f conftest.$ac_objext 18941 21712 -if { (eval echo "$as_me:9367: \"$ac_compile\"") >&5 18942 +if { (eval echo "$as_me:10 137: \"$ac_compile\"") >&521713 +if { (eval echo "$as_me:10011: \"$ac_compile\"") >&5 18943 21714 (eval $ac_compile) 2>&5 18944 21715 ac_status=$? 18945 21716 - echo "$as_me:9370: \$? = $ac_status" >&5 18946 + echo "$as_me:10 140: \$? = $ac_status" >&521717 + echo "$as_me:10014: \$? = $ac_status" >&5 18947 21718 (exit $ac_status); } && 18948 21719 { ac_try='test -s conftest.$ac_objext' 18949 21720 - { (eval echo "$as_me:9373: \"$ac_try\"") >&5 18950 + { (eval echo "$as_me:10 143: \"$ac_try\"") >&521721 + { (eval echo "$as_me:10017: \"$ac_try\"") >&5 18951 21722 (eval $ac_try) 2>&5 18952 21723 ac_status=$? 18953 21724 - echo "$as_me:9376: \$? = $ac_status" >&5 18954 + echo "$as_me:10 146: \$? = $ac_status" >&521725 + echo "$as_me:10020: \$? = $ac_status" >&5 18955 21726 (exit $ac_status); }; }; then 18956 21727 cf_cv_struct_dirent64=yes 18957 21728 else 18958 @@ -9384,7 +10 154,7 @@21729 @@ -9384,7 +10028,7 @@ 18959 21730 rm -f conftest.$ac_objext conftest.$ac_ext 18960 21731 18961 21732 fi 18962 21733 -echo "$as_me:9387: result: $cf_cv_struct_dirent64" >&5 18963 +echo "$as_me:10 157: result: $cf_cv_struct_dirent64" >&521734 +echo "$as_me:10031: result: $cf_cv_struct_dirent64" >&5 18964 21735 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 18965 21736 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF 18966 21737 #define HAVE_STRUCT_DIRENT64 1 18967 @@ -9393,7 +10 163,7 @@21738 @@ -9393,7 +10037,7 @@ 18968 21739 fi 18969 21740 18970 21741 ### use option --disable-tparm-varargs to make tparm() conform to X/Open 18971 21742 -echo "$as_me:9396: checking if you want tparm not to use X/Open fixed-parameter list" >&5 18972 +echo "$as_me:10 166: checking if you want tparm not to use X/Open fixed-parameter list" >&521743 +echo "$as_me:10040: checking if you want tparm not to use X/Open fixed-parameter list" >&5 18973 21744 echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6 18974 21745 18975 21746 # Check whether --enable-tparm-varargs or --disable-tparm-varargs was given. 18976 @@ -9403,14 +10 173,14 @@21747 @@ -9403,14 +10047,14 @@ 18977 21748 else 18978 21749 with_tparm_varargs=yes 18979 21750 fi; 18980 21751 -echo "$as_me:9406: result: $with_tparm_varargs" >&5 18981 +echo "$as_me:10 176: result: $with_tparm_varargs" >&521752 +echo "$as_me:10050: result: $with_tparm_varargs" >&5 18982 21753 echo "${ECHO_T}$with_tparm_varargs" >&6 18983 21754 NCURSES_TPARM_VARARGS=0 … … 18987 21758 if test "$with_ticlib" != no ; then 18988 21759 -echo "$as_me:9413: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5 18989 +echo "$as_me:10 183: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&521760 +echo "$as_me:10057: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5 18990 21761 echo $ECHO_N "checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library... $ECHO_C" >&6 18991 21762 18992 21763 # Check whether --enable-tic-depends or --disable-tic-depends was given. 18993 @@ -9420,14 +10 190,14 @@21764 @@ -9420,14 +10064,14 @@ 18994 21765 else 18995 21766 with_tic_depends=yes 18996 21767 fi; 18997 21768 -echo "$as_me:9423: result: $with_tic_depends" >&5 18998 +echo "$as_me:10 193: result: $with_tic_depends" >&521769 +echo "$as_me:10067: result: $with_tic_depends" >&5 18999 21770 echo "${ECHO_T}$with_tic_depends" >&6 19000 21771 else … … 19004 21775 ### use option --with-bool to override bool's type 19005 21776 -echo "$as_me:9430: checking for type of bool" >&5 19006 +echo "$as_me:10 200: checking for type of bool" >&521777 +echo "$as_me:10074: checking for type of bool" >&5 19007 21778 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6 19008 21779 19009 21780 # Check whether --with-bool or --without-bool was given. 19010 @@ -9437,10 +10 207,10 @@21781 @@ -9437,10 +10081,10 @@ 19011 21782 else 19012 21783 NCURSES_BOOL=auto 19013 21784 fi; 19014 21785 -echo "$as_me:9440: result: $NCURSES_BOOL" >&5 19015 +echo "$as_me:10 210: result: $NCURSES_BOOL" >&521786 +echo "$as_me:10084: result: $NCURSES_BOOL" >&5 19016 21787 echo "${ECHO_T}$NCURSES_BOOL" >&6 19017 21788 19018 21789 -echo "$as_me:9443: checking for alternate terminal capabilities file" >&5 19019 +echo "$as_me:10 213: checking for alternate terminal capabilities file" >&521790 +echo "$as_me:10087: checking for alternate terminal capabilities file" >&5 19020 21791 echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6 19021 21792 19022 21793 # Check whether --with-caps or --without-caps was given. 19023 @@ -9451,11 +10 221,11 @@21794 @@ -9451,11 +10095,11 @@ 19024 21795 TERMINFO_CAPS=Caps 19025 21796 fi; 19026 21797 test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps 19027 21798 -echo "$as_me:9454: result: $TERMINFO_CAPS" >&5 19028 +echo "$as_me:10 224: result: $TERMINFO_CAPS" >&521799 +echo "$as_me:10098: result: $TERMINFO_CAPS" >&5 19029 21800 echo "${ECHO_T}$TERMINFO_CAPS" >&6 19030 21801 19031 21802 ### use option --with-chtype to override chtype's type 19032 21803 -echo "$as_me:9458: checking for type of chtype" >&5 19033 +echo "$as_me:10 228: checking for type of chtype" >&521804 +echo "$as_me:10102: checking for type of chtype" >&5 19034 21805 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6 19035 21806 19036 21807 # Check whether --with-chtype or --without-chtype was given. 19037 @@ -9465,11 +10 235,11 @@21808 @@ -9465,11 +10109,11 @@ 19038 21809 else 19039 21810 NCURSES_CHTYPE=auto 19040 21811 fi; 19041 21812 -echo "$as_me:9468: result: $NCURSES_CHTYPE" >&5 19042 +echo "$as_me:10 238: result: $NCURSES_CHTYPE" >&521813 +echo "$as_me:10112: result: $NCURSES_CHTYPE" >&5 19043 21814 echo "${ECHO_T}$NCURSES_CHTYPE" >&6 19044 21815 19045 21816 ### use option --with-ospeed to override ospeed's type 19046 21817 -echo "$as_me:9472: checking for type of ospeed" >&5 19047 +echo "$as_me:10 242: checking for type of ospeed" >&521818 +echo "$as_me:10116: checking for type of ospeed" >&5 19048 21819 echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6 19049 21820 19050 21821 # Check whether --with-ospeed or --without-ospeed was given. 19051 @@ -9479,11 +10 249,11 @@21822 @@ -9479,11 +10123,11 @@ 19052 21823 else 19053 21824 NCURSES_OSPEED=short 19054 21825 fi; 19055 21826 -echo "$as_me:9482: result: $NCURSES_OSPEED" >&5 19056 +echo "$as_me:10 252: result: $NCURSES_OSPEED" >&521827 +echo "$as_me:10126: result: $NCURSES_OSPEED" >&5 19057 21828 echo "${ECHO_T}$NCURSES_OSPEED" >&6 19058 21829 19059 21830 ### use option --with-mmask-t to override mmask_t's type 19060 21831 -echo "$as_me:9486: checking for type of mmask_t" >&5 19061 +echo "$as_me:10 256: checking for type of mmask_t" >&521832 +echo "$as_me:10130: checking for type of mmask_t" >&5 19062 21833 echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6 19063 21834 19064 21835 # Check whether --with-mmask-t or --without-mmask-t was given. 19065 @@ -9493,11 +10 263,11 @@21836 @@ -9493,11 +10137,11 @@ 19066 21837 else 19067 21838 NCURSES_MMASK_T=auto 19068 21839 fi; 19069 21840 -echo "$as_me:9496: result: $NCURSES_MMASK_T" >&5 19070 +echo "$as_me:10 266: result: $NCURSES_MMASK_T" >&521841 +echo "$as_me:10140: result: $NCURSES_MMASK_T" >&5 19071 21842 echo "${ECHO_T}$NCURSES_MMASK_T" >&6 19072 21843 19073 21844 ### use option --with-ccharw-max to override CCHARW_MAX size 19074 21845 -echo "$as_me:9500: checking for size CCHARW_MAX" >&5 19075 +echo "$as_me:10 270: checking for size CCHARW_MAX" >&521846 +echo "$as_me:10144: checking for size CCHARW_MAX" >&5 19076 21847 echo $ECHO_N "checking for size CCHARW_MAX... $ECHO_C" >&6 19077 21848 19078 21849 # Check whether --with-ccharw-max or --without-ccharw-max was given. 19079 @@ -9507,11 +10 277,11@@21850 @@ -9507,11 +10151,25 @@ 19080 21851 else 19081 21852 NCURSES_CCHARW_MAX=5 19082 21853 fi; 19083 21854 -echo "$as_me:9510: result: $NCURSES_CCHARW_MAX" >&5 19084 +echo "$as_me:10 280: result: $NCURSES_CCHARW_MAX" >&521855 +echo "$as_me:10154: result: $NCURSES_CCHARW_MAX" >&5 19085 21856 echo "${ECHO_T}$NCURSES_CCHARW_MAX" >&6 19086 21857 21858 +### use option --with-tparm-arg to override tparm's argument type 21859 +echo "$as_me:10158: checking for type of tparm args" >&5 21860 +echo $ECHO_N "checking for type of tparm args... $ECHO_C" >&6 21861 + 21862 +# Check whether --with-tparm-arg or --without-tparm-arg was given. 21863 +if test "${with_tparm_arg+set}" = set; then 21864 + withval="$with_tparm_arg" 21865 + NCURSES_TPARM_ARG="$withval" 21866 +else 21867 + NCURSES_TPARM_ARG=long 21868 +fi; 21869 +echo "$as_me:10168: result: $NCURSES_TPARM_ARG" >&5 21870 +echo "${ECHO_T}$NCURSES_TPARM_ARG" >&6 21871 + 19087 21872 ### Enable compiling-in rcs id's 19088 21873 -echo "$as_me:9514: checking if RCS identifiers should be compiled-in" >&5 19089 +echo "$as_me:10 284: checking if RCS identifiers should be compiled-in" >&521874 +echo "$as_me:10172: checking if RCS identifiers should be compiled-in" >&5 19090 21875 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6 19091 21876 19092 21877 # Check whether --with-rcs-ids or --without-rcs-ids was given. 19093 @@ -9521,7 +10 291,7 @@21878 @@ -9521,7 +10179,7 @@ 19094 21879 else 19095 21880 with_rcs_ids=no 19096 21881 fi; 19097 21882 -echo "$as_me:9524: result: $with_rcs_ids" >&5 19098 +echo "$as_me:10 294: result: $with_rcs_ids" >&521883 +echo "$as_me:10182: result: $with_rcs_ids" >&5 19099 21884 echo "${ECHO_T}$with_rcs_ids" >&6 19100 21885 test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF 19101 21886 #define USE_RCS_IDS 1 19102 @@ -9529,7 +10 299,7 @@21887 @@ -9529,7 +10187,7 @@ 19103 21888 19104 21889 ############################################################################### 19105 21890 19106 21891 -echo "$as_me:9532: checking format of man-pages" >&5 19107 +echo "$as_me:10 302: checking format of man-pages" >&521892 +echo "$as_me:10190: checking format of man-pages" >&5 19108 21893 echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6 19109 21894 19110 21895 # Check whether --with-manpage-format or --without-manpage-format was given. 19111 @@ -9618,14 +10 388,14 @@21896 @@ -9618,14 +10276,14 @@ 19112 21897 ;; 19113 21898 esac 19114 21899 19115 21900 -echo "$as_me:9621: result: $MANPAGE_FORMAT" >&5 19116 +echo "$as_me:10 391: result: $MANPAGE_FORMAT" >&521901 +echo "$as_me:10279: result: $MANPAGE_FORMAT" >&5 19117 21902 echo "${ECHO_T}$MANPAGE_FORMAT" >&6 19118 21903 if test -n "$cf_unknown" ; then 19119 21904 - { echo "$as_me:9624: WARNING: Unexpected manpage-format $cf_unknown" >&5 19120 + { echo "$as_me:10 394: WARNING: Unexpected manpage-format $cf_unknown" >&521905 + { echo "$as_me:10282: WARNING: Unexpected manpage-format $cf_unknown" >&5 19121 21906 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;} 19122 21907 fi 19123 21908 19124 21909 -echo "$as_me:9628: checking for manpage renaming" >&5 19125 +echo "$as_me:10 398: checking for manpage renaming" >&521910 +echo "$as_me:10286: checking for manpage renaming" >&5 19126 21911 echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6 19127 21912 19128 21913 # Check whether --with-manpage-renames or --without-manpage-renames was given. 19129 @@ -9653,7 +10 423,7 @@21914 @@ -9653,7 +10311,7 @@ 19130 21915 if test -f $srcdir/man/$MANPAGE_RENAMES ; then 19131 21916 MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES 19132 21917 elif test ! -f $MANPAGE_RENAMES ; then 19133 21918 - { { echo "$as_me:9656: error: not a filename: $MANPAGE_RENAMES" >&5 19134 + { { echo "$as_me:10 426: error: not a filename: $MANPAGE_RENAMES" >&521919 + { { echo "$as_me:10314: error: not a filename: $MANPAGE_RENAMES" >&5 19135 21920 echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;} 19136 21921 { (exit 1); exit 1; }; } 19137 21922 fi 19138 @@ -9667,10 +10 437,10 @@21923 @@ -9667,10 +10325,10 @@ 19139 21924 fi 19140 21925 fi 19141 21926 19142 21927 -echo "$as_me:9670: result: $MANPAGE_RENAMES" >&5 19143 +echo "$as_me:10 440: result: $MANPAGE_RENAMES" >&521928 +echo "$as_me:10328: result: $MANPAGE_RENAMES" >&5 19144 21929 echo "${ECHO_T}$MANPAGE_RENAMES" >&6 19145 21930 19146 21931 -echo "$as_me:9673: checking if manpage aliases will be installed" >&5 19147 +echo "$as_me:10 443: checking if manpage aliases will be installed" >&521932 +echo "$as_me:10331: checking if manpage aliases will be installed" >&5 19148 21933 echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6 19149 21934 19150 21935 # Check whether --with-manpage-aliases or --without-manpage-aliases was given. 19151 @@ -9681,7 +10 451,7 @@21936 @@ -9681,7 +10339,7 @@ 19152 21937 MANPAGE_ALIASES=yes 19153 21938 fi; 19154 21939 19155 21940 -echo "$as_me:9684: result: $MANPAGE_ALIASES" >&5 19156 +echo "$as_me:10 454: result: $MANPAGE_ALIASES" >&521941 +echo "$as_me:10342: result: $MANPAGE_ALIASES" >&5 19157 21942 echo "${ECHO_T}$MANPAGE_ALIASES" >&6 19158 21943 19159 21944 case "x$LN_S" in #(vi 19160 @@ -9695,7 +10 465,7 @@21945 @@ -9695,7 +10353,7 @@ 19161 21946 19162 21947 MANPAGE_SYMLINKS=no 19163 21948 if test "$MANPAGE_ALIASES" = yes ; then 19164 21949 -echo "$as_me:9698: checking if manpage symlinks should be used" >&5 19165 +echo "$as_me:10 468: checking if manpage symlinks should be used" >&521950 +echo "$as_me:10356: checking if manpage symlinks should be used" >&5 19166 21951 echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6 19167 21952 19168 21953 # Check whether --with-manpage-symlinks or --without-manpage-symlinks was given. 19169 @@ -9708,17 +10 478,17 @@21954 @@ -9708,17 +10366,17 @@ 19170 21955 19171 21956 if test "$$cf_use_symlinks" = no; then 19172 21957 if test "$MANPAGE_SYMLINKS" = yes ; then 19173 21958 - { echo "$as_me:9711: WARNING: cannot make symlinks" >&5 19174 + { echo "$as_me:10 481: WARNING: cannot make symlinks" >&521959 + { echo "$as_me:10369: WARNING: cannot make symlinks" >&5 19175 21960 echo "$as_me: WARNING: cannot make symlinks" >&2;} 19176 21961 MANPAGE_SYMLINKS=no … … 19179 21964 19180 21965 -echo "$as_me:9717: result: $MANPAGE_SYMLINKS" >&5 19181 +echo "$as_me:10 487: result: $MANPAGE_SYMLINKS" >&521966 +echo "$as_me:10375: result: $MANPAGE_SYMLINKS" >&5 19182 21967 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6 19183 21968 fi 19184 21969 19185 21970 -echo "$as_me:9721: checking for manpage tbl" >&5 19186 +echo "$as_me:10 491: checking for manpage tbl" >&521971 +echo "$as_me:10379: checking for manpage tbl" >&5 19187 21972 echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6 19188 21973 19189 21974 # Check whether --with-manpage-tbl or --without-manpage-tbl was given. 19190 @@ -9729,7 +10 499,7 @@21975 @@ -9729,7 +10387,7 @@ 19191 21976 MANPAGE_TBL=no 19192 21977 fi; 19193 21978 19194 21979 -echo "$as_me:9732: result: $MANPAGE_TBL" >&5 19195 +echo "$as_me:10 502: result: $MANPAGE_TBL" >&521980 +echo "$as_me:10390: result: $MANPAGE_TBL" >&5 19196 21981 echo "${ECHO_T}$MANPAGE_TBL" >&6 19197 21982 19198 21983 if test "$prefix" = "NONE" ; then 19199 @@ -9869,7 +10639,9 @@ 21984 @@ -9776,6 +10434,7 @@ 21985 # this script is generated by the configure-script CF_MAN_PAGES macro. 21986 21987 prefix="$cf_prefix" 21988 +datarootdir="$datarootdir" 21989 datadir="$datadir" 21990 21991 NCURSES_MAJOR="$NCURSES_MAJOR" 21992 @@ -9869,7 +10528,9 @@ 19200 21993 19201 21994 if test "$MANPAGE_ALIASES" != no ; then … … 19208 22001 fi 19209 22002 19210 @@ -9915,6 +10 687,13 @@22003 @@ -9915,6 +10576,13 @@ 19211 22004 fi 19212 22005 CF_EOF … … 19222 22015 cat >>$cf_edit_man <<CF_EOF 19223 22016 sed -e "/\#[ ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out 19224 @@ -10051,7 +10 830,7 @@22017 @@ -10051,7 +10719,7 @@ 19225 22018 ############################################################################### 19226 22019 19227 22020 ### Note that some functions (such as const) are normally disabled anyway. 19228 22021 -echo "$as_me:10054: checking if you want to build with function extensions" >&5 19229 +echo "$as_me:10 833: checking if you want to build with function extensions" >&522022 +echo "$as_me:10722: checking if you want to build with function extensions" >&5 19230 22023 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6 19231 22024 19232 22025 # Check whether --enable-ext-funcs or --disable-ext-funcs was given. 19233 @@ -10061,11 +10 840,15 @@22026 @@ -10061,11 +10729,15 @@ 19234 22027 else 19235 22028 with_ext_funcs=yes 19236 22029 fi; 19237 22030 -echo "$as_me:10064: result: $with_ext_funcs" >&5 19238 +echo "$as_me:10 843: result: $with_ext_funcs" >&522031 +echo "$as_me:10732: result: $with_ext_funcs" >&5 19239 22032 echo "${ECHO_T}$with_ext_funcs" >&6 19240 22033 if test "$with_ext_funcs" = yes ; then … … 19248 22041 EOF 19249 22042 19250 @@ -10090,6 +10 873,14 @@22043 @@ -10090,6 +10762,14 @@ 19251 22044 EOF 19252 22045 … … 19263 22056 EOF 19264 22057 19265 @@ -10103,7 +10 894,7 @@22058 @@ -10103,7 +10783,7 @@ 19266 22059 GENERATED_EXT_FUNCS= 19267 22060 fi 19268 22061 19269 22062 -echo "$as_me:10106: checking if you want to build with experimental SCREEN extensions" >&5 19270 +echo "$as_me:10 897: checking if you want to build with experimental SCREEN extensions" >&522063 +echo "$as_me:10786: checking if you want to build with experimental SCREEN extensions" >&5 19271 22064 echo $ECHO_N "checking if you want to build with experimental SCREEN extensions... $ECHO_C" >&6 19272 22065 19273 22066 # Check whether --enable-sp-funcs or --disable-sp-funcs was given. 19274 @@ -10113,7 +10 904,7 @@22067 @@ -10113,7 +10793,7 @@ 19275 22068 else 19276 22069 with_sp_funcs=no 19277 22070 fi; 19278 22071 -echo "$as_me:10116: result: $with_sp_funcs" >&5 19279 +echo "$as_me:10 907: result: $with_sp_funcs" >&522072 +echo "$as_me:10796: result: $with_sp_funcs" >&5 19280 22073 echo "${ECHO_T}$with_sp_funcs" >&6 19281 22074 if test "$with_sp_funcs" = yes ; then 19282 22075 NCURSES_SP_FUNCS=1 19283 @@ -10127,7 +10 918,7 @@22076 @@ -10127,7 +10807,7 @@ 19284 22077 GENERATED_SP_FUNCS= 19285 22078 fi 19286 22079 19287 22080 -echo "$as_me:10130: checking if you want to build with experimental terminal-driver" >&5 19288 +echo "$as_me:10 921: checking if you want to build with experimental terminal-driver" >&522081 +echo "$as_me:10810: checking if you want to build with experimental terminal-driver" >&5 19289 22082 echo $ECHO_N "checking if you want to build with experimental terminal-driver... $ECHO_C" >&6 19290 22083 19291 22084 # Check whether --enable-term-driver or --disable-term-driver was given. 19292 @@ -10137,7 +10 928,7 @@22085 @@ -10137,7 +10817,7 @@ 19293 22086 else 19294 22087 with_term_driver=no 19295 22088 fi; 19296 22089 -echo "$as_me:10140: result: $with_term_driver" >&5 19297 +echo "$as_me:10 931: result: $with_term_driver" >&522090 +echo "$as_me:10820: result: $with_term_driver" >&5 19298 22091 echo "${ECHO_T}$with_term_driver" >&6 19299 22092 if test "$with_term_driver" = yes ; then 19300 22093 cat >>confdefs.h <<\EOF 19301 @@ -10145,14 +10 936,14 @@22094 @@ -10145,14 +10825,14 @@ 19302 22095 EOF 19303 22096 19304 22097 if test "$with_sp_funcs" != yes ; then 19305 22098 - { { echo "$as_me:10148: error: The term-driver option relies upon sp-funcs" >&5 19306 + { { echo "$as_me:10 939: error: The term-driver option relies upon sp-funcs" >&522099 + { { echo "$as_me:10828: error: The term-driver option relies upon sp-funcs" >&5 19307 22100 echo "$as_me: error: The term-driver option relies upon sp-funcs" >&2;} 19308 22101 { (exit 1); exit 1; }; } … … 19312 22105 ### use option --enable-const to turn on use of const beyond that in XSI. 19313 22106 -echo "$as_me:10155: checking for extended use of const keyword" >&5 19314 +echo "$as_me:10 946: checking for extended use of const keyword" >&522107 +echo "$as_me:10835: checking for extended use of const keyword" >&5 19315 22108 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6 19316 22109 19317 22110 # Check whether --enable-const or --disable-const was given. 19318 @@ -10162,7 +10 953,7 @@22111 @@ -10162,7 +10842,7 @@ 19319 22112 else 19320 22113 with_ext_const=no 19321 22114 fi; 19322 22115 -echo "$as_me:10165: result: $with_ext_const" >&5 19323 +echo "$as_me:10 956: result: $with_ext_const" >&522116 +echo "$as_me:10845: result: $with_ext_const" >&5 19324 22117 echo "${ECHO_T}$with_ext_const" >&6 19325 22118 NCURSES_CONST='/*nothing*/' 19326 22119 if test "$with_ext_const" = yes ; then 19327 @@ -10170,7 +10 961,7 @@22120 @@ -10170,7 +10850,7 @@ 19328 22121 fi 19329 22122 19330 22123 ### use option --enable-ext-colors to turn on use of colors beyond 16. 19331 22124 -echo "$as_me:10173: checking if you want to use extended colors" >&5 19332 +echo "$as_me:10 964: checking if you want to use extended colors" >&522125 +echo "$as_me:10853: checking if you want to use extended colors" >&5 19333 22126 echo $ECHO_N "checking if you want to use extended colors... $ECHO_C" >&6 19334 22127 19335 22128 # Check whether --enable-ext-colors or --disable-ext-colors was given. 19336 @@ -10180,12 +10 971,12 @@22129 @@ -10180,12 +10860,12 @@ 19337 22130 else 19338 22131 with_ext_colors=no 19339 22132 fi; 19340 22133 -echo "$as_me:10183: result: $with_ext_colors" >&5 19341 +echo "$as_me:10 974: result: $with_ext_colors" >&522134 +echo "$as_me:10863: result: $with_ext_colors" >&5 19342 22135 echo "${ECHO_T}$with_ext_colors" >&6 19343 22136 NCURSES_EXT_COLORS=0 … … 19345 22138 if test "$with_widec" != yes ; then 19346 22139 - { { echo "$as_me:10188: error: This option applies only to wide-character library" >&5 19347 + { { echo "$as_me:10 979: error: This option applies only to wide-character library" >&522140 + { { echo "$as_me:10868: error: This option applies only to wide-character library" >&5 19348 22141 echo "$as_me: error: This option applies only to wide-character library" >&2;} 19349 22142 { (exit 1); exit 1; }; } 19350 22143 else 19351 @@ -10196,7 +10 987,7 @@22144 @@ -10196,7 +10876,7 @@ 19352 22145 5.*) 19353 22146 cf_cv_rel_version=6.0 19354 22147 cf_cv_abi_version=6 19355 22148 - { echo "$as_me:10199: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 19356 + { echo "$as_me:10 990: WARNING: Overriding ABI version to $cf_cv_abi_version" >&522149 + { echo "$as_me:10879: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 19357 22150 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;} 19358 22151 ;; 19359 22152 esac 19360 @@ -10211,7 +1 1002,7 @@22153 @@ -10211,7 +10891,7 @@ 19361 22154 fi 19362 22155 19363 22156 ### use option --enable-ext-mouse to modify coding to support 5-button mice 19364 22157 -echo "$as_me:10214: checking if you want to use extended mouse encoding" >&5 19365 +echo "$as_me:1 1005: checking if you want to use extended mouse encoding" >&522158 +echo "$as_me:10894: checking if you want to use extended mouse encoding" >&5 19366 22159 echo $ECHO_N "checking if you want to use extended mouse encoding... $ECHO_C" >&6 19367 22160 19368 22161 # Check whether --enable-ext-mouse or --disable-ext-mouse was given. 19369 @@ -10221,7 +1 1012,7 @@22162 @@ -10221,7 +10901,7 @@ 19370 22163 else 19371 22164 with_ext_mouse=no 19372 22165 fi; 19373 22166 -echo "$as_me:10224: result: $with_ext_mouse" >&5 19374 +echo "$as_me:1 1015: result: $with_ext_mouse" >&522167 +echo "$as_me:10904: result: $with_ext_mouse" >&5 19375 22168 echo "${ECHO_T}$with_ext_mouse" >&6 19376 22169 NCURSES_MOUSE_VERSION=1 19377 22170 if test "$with_ext_mouse" = yes ; then 19378 @@ -10232,7 +1 1023,7 @@22171 @@ -10232,7 +10912,7 @@ 19379 22172 5.*) 19380 22173 cf_cv_rel_version=6.0 19381 22174 cf_cv_abi_version=6 19382 22175 - { echo "$as_me:10235: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 19383 + { echo "$as_me:1 1026: WARNING: Overriding ABI version to $cf_cv_abi_version" >&522176 + { echo "$as_me:10915: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 19384 22177 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;} 19385 22178 ;; 19386 22179 esac 19387 @@ -10240,7 +1 1031,7 @@22180 @@ -10240,7 +10920,7 @@ 19388 22181 19389 22182 fi 19390 22183 19391 22184 -echo "$as_me:10243: checking if you want \$NCURSES_NO_PADDING code" >&5 19392 +echo "$as_me:1 1034: checking if you want \$NCURSES_NO_PADDING code" >&522185 +echo "$as_me:10923: checking if you want \$NCURSES_NO_PADDING code" >&5 19393 22186 echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6 19394 22187 19395 22188 # Check whether --enable-no-padding or --disable-no-padding was given. 19396 @@ -10250,19 +1 1041,19 @@22189 @@ -10250,19 +10930,19 @@ 19397 22190 else 19398 22191 with_no_padding=$with_ext_funcs 19399 22192 fi; 19400 22193 -echo "$as_me:10253: result: $with_no_padding" >&5 19401 +echo "$as_me:1 1044: result: $with_no_padding" >&522194 +echo "$as_me:10933: result: $with_no_padding" >&5 19402 22195 echo "${ECHO_T}$with_no_padding" >&6 19403 22196 test "$with_no_padding" = yes && cat >>confdefs.h <<\EOF … … 19406 22199 19407 22200 -echo "$as_me:10259: checking for ANSI C header files" >&5 19408 +echo "$as_me:1 1050: checking for ANSI C header files" >&522201 +echo "$as_me:10939: checking for ANSI C header files" >&5 19409 22202 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 19410 22203 if test "${ac_cv_header_stdc+set}" = set; then … … 19413 22206 cat >conftest.$ac_ext <<_ACEOF 19414 22207 -#line 10265 "configure" 19415 +#line 1 1056"configure"22208 +#line 10945 "configure" 19416 22209 #include "confdefs.h" 19417 22210 #include <stdlib.h> 19418 22211 #include <stdarg.h> 19419 @@ -10270,13 +1 1061,13 @@22212 @@ -10270,13 +10950,13 @@ 19420 22213 #include <float.h> 19421 22214 19422 22215 _ACEOF 19423 22216 -if { (eval echo "$as_me:10273: \"$ac_cpp conftest.$ac_ext\"") >&5 19424 +if { (eval echo "$as_me:1 1064: \"$ac_cpp conftest.$ac_ext\"") >&522217 +if { (eval echo "$as_me:10953: \"$ac_cpp conftest.$ac_ext\"") >&5 19425 22218 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 19426 22219 ac_status=$? … … 19429 22222 cat conftest.err >&5 19430 22223 - echo "$as_me:10279: \$? = $ac_status" >&5 19431 + echo "$as_me:1 1070: \$? = $ac_status" >&522224 + echo "$as_me:10959: \$? = $ac_status" >&5 19432 22225 (exit $ac_status); } >/dev/null; then 19433 22226 if test -s conftest.err; then 19434 22227 ac_cpp_err=$ac_c_preproc_warn_flag 19435 @@ -10298,7 +1 1089,7 @@22228 @@ -10298,7 +10978,7 @@ 19436 22229 if test $ac_cv_header_stdc = yes; then 19437 22230 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 19438 22231 cat >conftest.$ac_ext <<_ACEOF 19439 22232 -#line 10301 "configure" 19440 +#line 1 1092"configure"22233 +#line 10981 "configure" 19441 22234 #include "confdefs.h" 19442 22235 #include <string.h> 19443 22236 19444 @@ -10316,7 +1 1107,7 @@22237 @@ -10316,7 +10996,7 @@ 19445 22238 if test $ac_cv_header_stdc = yes; then 19446 22239 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 19447 22240 cat >conftest.$ac_ext <<_ACEOF 19448 22241 -#line 10319 "configure" 19449 +#line 1 1110"configure"22242 +#line 10999 "configure" 19450 22243 #include "confdefs.h" 19451 22244 #include <stdlib.h> 19452 22245 19453 @@ -10337,7 +11 128,7 @@22246 @@ -10337,7 +11017,7 @@ 19454 22247 : 19455 22248 else 19456 22249 cat >conftest.$ac_ext <<_ACEOF 19457 22250 -#line 10340 "configure" 19458 +#line 11 131"configure"22251 +#line 11020 "configure" 19459 22252 #include "confdefs.h" 19460 22253 #include <ctype.h> 19461 22254 #if ((' ' & 0x0FF) == 0x020) 19462 @@ -10363,15 +11 154,15 @@22255 @@ -10363,15 +11043,15 @@ 19463 22256 } 19464 22257 _ACEOF 19465 22258 rm -f conftest$ac_exeext 19466 22259 -if { (eval echo "$as_me:10366: \"$ac_link\"") >&5 19467 +if { (eval echo "$as_me:11 157: \"$ac_link\"") >&522260 +if { (eval echo "$as_me:11046: \"$ac_link\"") >&5 19468 22261 (eval $ac_link) 2>&5 19469 22262 ac_status=$? 19470 22263 - echo "$as_me:10369: \$? = $ac_status" >&5 19471 + echo "$as_me:11 160: \$? = $ac_status" >&522264 + echo "$as_me:11049: \$? = $ac_status" >&5 19472 22265 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 19473 22266 - { (eval echo "$as_me:10371: \"$ac_try\"") >&5 19474 + { (eval echo "$as_me:11 162: \"$ac_try\"") >&522267 + { (eval echo "$as_me:11051: \"$ac_try\"") >&5 19475 22268 (eval $ac_try) 2>&5 19476 22269 ac_status=$? 19477 22270 - echo "$as_me:10374: \$? = $ac_status" >&5 19478 + echo "$as_me:11 165: \$? = $ac_status" >&522271 + echo "$as_me:11054: \$? = $ac_status" >&5 19479 22272 (exit $ac_status); }; }; then 19480 22273 : 19481 22274 else 19482 @@ -10384,7 +11 175,7 @@22275 @@ -10384,7 +11064,7 @@ 19483 22276 fi 19484 22277 fi 19485 22278 fi 19486 22279 -echo "$as_me:10387: result: $ac_cv_header_stdc" >&5 19487 +echo "$as_me:11 178: result: $ac_cv_header_stdc" >&522280 +echo "$as_me:11067: result: $ac_cv_header_stdc" >&5 19488 22281 echo "${ECHO_T}$ac_cv_header_stdc" >&6 19489 22282 if test $ac_cv_header_stdc = yes; then 19490 22283 19491 @@ -10400,28 +11 191,28 @@22284 @@ -10400,28 +11080,28 @@ 19492 22285 inttypes.h stdint.h unistd.h 19493 22286 do 19494 22287 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 19495 22288 -echo "$as_me:10403: checking for $ac_header" >&5 19496 +echo "$as_me:11 194: checking for $ac_header" >&522289 +echo "$as_me:11083: checking for $ac_header" >&5 19497 22290 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 19498 22291 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 19501 22294 cat >conftest.$ac_ext <<_ACEOF 19502 22295 -#line 10409 "configure" 19503 +#line 11 200"configure"22296 +#line 11089 "configure" 19504 22297 #include "confdefs.h" 19505 22298 $ac_includes_default … … 19508 22301 rm -f conftest.$ac_objext 19509 22302 -if { (eval echo "$as_me:10415: \"$ac_compile\"") >&5 19510 +if { (eval echo "$as_me:11 206: \"$ac_compile\"") >&522303 +if { (eval echo "$as_me:11095: \"$ac_compile\"") >&5 19511 22304 (eval $ac_compile) 2>&5 19512 22305 ac_status=$? 19513 22306 - echo "$as_me:10418: \$? = $ac_status" >&5 19514 + echo "$as_me:11 209: \$? = $ac_status" >&522307 + echo "$as_me:11098: \$? = $ac_status" >&5 19515 22308 (exit $ac_status); } && 19516 22309 { ac_try='test -s conftest.$ac_objext' 19517 22310 - { (eval echo "$as_me:10421: \"$ac_try\"") >&5 19518 + { (eval echo "$as_me:11 212: \"$ac_try\"") >&522311 + { (eval echo "$as_me:11101: \"$ac_try\"") >&5 19519 22312 (eval $ac_try) 2>&5 19520 22313 ac_status=$? 19521 22314 - echo "$as_me:10424: \$? = $ac_status" >&5 19522 + echo "$as_me:11 215: \$? = $ac_status" >&522315 + echo "$as_me:11104: \$? = $ac_status" >&5 19523 22316 (exit $ac_status); }; }; then 19524 22317 eval "$as_ac_Header=yes" 19525 22318 else 19526 @@ -10431,7 +11 222,7 @@22319 @@ -10431,7 +11111,7 @@ 19527 22320 fi 19528 22321 rm -f conftest.$ac_objext conftest.$ac_ext 19529 22322 fi 19530 22323 -echo "$as_me:10434: result: `eval echo '${'$as_ac_Header'}'`" >&5 19531 +echo "$as_me:11 225: result: `eval echo '${'$as_ac_Header'}'`" >&522324 +echo "$as_me:11114: result: `eval echo '${'$as_ac_Header'}'`" >&5 19532 22325 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 19533 22326 if test `eval echo '${'$as_ac_Header'}'` = yes; then 19534 22327 cat >>confdefs.h <<EOF 19535 @@ -10441,13 +11 232,13 @@22328 @@ -10441,13 +11121,13 @@ 19536 22329 fi 19537 22330 done 19538 22331 19539 22332 -echo "$as_me:10444: checking for signed char" >&5 19540 +echo "$as_me:11 235: checking for signed char" >&522333 +echo "$as_me:11124: checking for signed char" >&5 19541 22334 echo $ECHO_N "checking for signed char... $ECHO_C" >&6 19542 22335 if test "${ac_cv_type_signed_char+set}" = set; then … … 19545 22338 cat >conftest.$ac_ext <<_ACEOF 19546 22339 -#line 10450 "configure" 19547 +#line 11 241"configure"22340 +#line 11130 "configure" 19548 22341 #include "confdefs.h" 19549 22342 $ac_includes_default 19550 22343 int 19551 @@ -10462,16 +11 253,16 @@22344 @@ -10462,16 +11142,16 @@ 19552 22345 } 19553 22346 _ACEOF 19554 22347 rm -f conftest.$ac_objext 19555 22348 -if { (eval echo "$as_me:10465: \"$ac_compile\"") >&5 19556 +if { (eval echo "$as_me:11 256: \"$ac_compile\"") >&522349 +if { (eval echo "$as_me:11145: \"$ac_compile\"") >&5 19557 22350 (eval $ac_compile) 2>&5 19558 22351 ac_status=$? 19559 22352 - echo "$as_me:10468: \$? = $ac_status" >&5 19560 + echo "$as_me:11 259: \$? = $ac_status" >&522353 + echo "$as_me:11148: \$? = $ac_status" >&5 19561 22354 (exit $ac_status); } && 19562 22355 { ac_try='test -s conftest.$ac_objext' 19563 22356 - { (eval echo "$as_me:10471: \"$ac_try\"") >&5 19564 + { (eval echo "$as_me:11 262: \"$ac_try\"") >&522357 + { (eval echo "$as_me:11151: \"$ac_try\"") >&5 19565 22358 (eval $ac_try) 2>&5 19566 22359 ac_status=$? 19567 22360 - echo "$as_me:10474: \$? = $ac_status" >&5 19568 + echo "$as_me:11 265: \$? = $ac_status" >&522361 + echo "$as_me:11154: \$? = $ac_status" >&5 19569 22362 (exit $ac_status); }; }; then 19570 22363 ac_cv_type_signed_char=yes 19571 22364 else 19572 @@ -10481,10 +11 272,10 @@22365 @@ -10481,10 +11161,10 @@ 19573 22366 fi 19574 22367 rm -f conftest.$ac_objext conftest.$ac_ext 19575 22368 fi 19576 22369 -echo "$as_me:10484: result: $ac_cv_type_signed_char" >&5 19577 +echo "$as_me:11 275: result: $ac_cv_type_signed_char" >&522370 +echo "$as_me:11164: result: $ac_cv_type_signed_char" >&5 19578 22371 echo "${ECHO_T}$ac_cv_type_signed_char" >&6 19579 22372 19580 22373 -echo "$as_me:10487: checking size of signed char" >&5 19581 +echo "$as_me:11 278: checking size of signed char" >&522374 +echo "$as_me:11167: checking size of signed char" >&5 19582 22375 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6 19583 22376 if test "${ac_cv_sizeof_signed_char+set}" = set; then 19584 22377 echo $ECHO_N "(cached) $ECHO_C" >&6 19585 @@ -10493,7 +11 284,7 @@22378 @@ -10493,7 +11173,7 @@ 19586 22379 if test "$cross_compiling" = yes; then 19587 22380 # Depending upon the size, compute the lo and hi bounds. 19588 22381 cat >conftest.$ac_ext <<_ACEOF 19589 22382 -#line 10496 "configure" 19590 +#line 11 287"configure"22383 +#line 11176 "configure" 19591 22384 #include "confdefs.h" 19592 22385 $ac_includes_default 19593 22386 int 19594 @@ -10505,21 +11 296,21 @@22387 @@ -10505,21 +11185,21 @@ 19595 22388 } 19596 22389 _ACEOF 19597 22390 rm -f conftest.$ac_objext 19598 22391 -if { (eval echo "$as_me:10508: \"$ac_compile\"") >&5 19599 +if { (eval echo "$as_me:11 299: \"$ac_compile\"") >&522392 +if { (eval echo "$as_me:11188: \"$ac_compile\"") >&5 19600 22393 (eval $ac_compile) 2>&5 19601 22394 ac_status=$? 19602 22395 - echo "$as_me:10511: \$? = $ac_status" >&5 19603 + echo "$as_me:11 302: \$? = $ac_status" >&522396 + echo "$as_me:11191: \$? = $ac_status" >&5 19604 22397 (exit $ac_status); } && 19605 22398 { ac_try='test -s conftest.$ac_objext' 19606 22399 - { (eval echo "$as_me:10514: \"$ac_try\"") >&5 19607 + { (eval echo "$as_me:11 305: \"$ac_try\"") >&522400 + { (eval echo "$as_me:11194: \"$ac_try\"") >&5 19608 22401 (eval $ac_try) 2>&5 19609 22402 ac_status=$? 19610 22403 - echo "$as_me:10517: \$? = $ac_status" >&5 19611 + echo "$as_me:11 308: \$? = $ac_status" >&522404 + echo "$as_me:11197: \$? = $ac_status" >&5 19612 22405 (exit $ac_status); }; }; then 19613 22406 ac_lo=0 ac_mid=0 … … 19615 22408 cat >conftest.$ac_ext <<_ACEOF 19616 22409 -#line 10522 "configure" 19617 +#line 11 313"configure"22410 +#line 11202 "configure" 19618 22411 #include "confdefs.h" 19619 22412 $ac_includes_default 19620 22413 int 19621 @@ -10531,16 +11 322,16 @@22414 @@ -10531,16 +11211,16 @@ 19622 22415 } 19623 22416 _ACEOF 19624 22417 rm -f conftest.$ac_objext 19625 22418 -if { (eval echo "$as_me:10534: \"$ac_compile\"") >&5 19626 +if { (eval echo "$as_me:11 325: \"$ac_compile\"") >&522419 +if { (eval echo "$as_me:11214: \"$ac_compile\"") >&5 19627 22420 (eval $ac_compile) 2>&5 19628 22421 ac_status=$? 19629 22422 - echo "$as_me:10537: \$? = $ac_status" >&5 19630 + echo "$as_me:11 328: \$? = $ac_status" >&522423 + echo "$as_me:11217: \$? = $ac_status" >&5 19631 22424 (exit $ac_status); } && 19632 22425 { ac_try='test -s conftest.$ac_objext' 19633 22426 - { (eval echo "$as_me:10540: \"$ac_try\"") >&5 19634 + { (eval echo "$as_me:11 331: \"$ac_try\"") >&522427 + { (eval echo "$as_me:11220: \"$ac_try\"") >&5 19635 22428 (eval $ac_try) 2>&5 19636 22429 ac_status=$? 19637 22430 - echo "$as_me:10543: \$? = $ac_status" >&5 19638 + echo "$as_me:11 334: \$? = $ac_status" >&522431 + echo "$as_me:11223: \$? = $ac_status" >&5 19639 22432 (exit $ac_status); }; }; then 19640 22433 ac_hi=$ac_mid; break 19641 22434 else 19642 @@ -10556,7 +11 347,7 @@22435 @@ -10556,7 +11236,7 @@ 19643 22436 ac_hi=-1 ac_mid=-1 19644 22437 while :; do 19645 22438 cat >conftest.$ac_ext <<_ACEOF 19646 22439 -#line 10559 "configure" 19647 +#line 11 350"configure"22440 +#line 11239 "configure" 19648 22441 #include "confdefs.h" 19649 22442 $ac_includes_default 19650 22443 int 19651 @@ -10568,16 +11 359,16 @@22444 @@ -10568,16 +11248,16 @@ 19652 22445 } 19653 22446 _ACEOF 19654 22447 rm -f conftest.$ac_objext 19655 22448 -if { (eval echo "$as_me:10571: \"$ac_compile\"") >&5 19656 +if { (eval echo "$as_me:11 362: \"$ac_compile\"") >&522449 +if { (eval echo "$as_me:11251: \"$ac_compile\"") >&5 19657 22450 (eval $ac_compile) 2>&5 19658 22451 ac_status=$? 19659 22452 - echo "$as_me:10574: \$? = $ac_status" >&5 19660 + echo "$as_me:11 365: \$? = $ac_status" >&522453 + echo "$as_me:11254: \$? = $ac_status" >&5 19661 22454 (exit $ac_status); } && 19662 22455 { ac_try='test -s conftest.$ac_objext' 19663 22456 - { (eval echo "$as_me:10577: \"$ac_try\"") >&5 19664 + { (eval echo "$as_me:11 368: \"$ac_try\"") >&522457 + { (eval echo "$as_me:11257: \"$ac_try\"") >&5 19665 22458 (eval $ac_try) 2>&5 19666 22459 ac_status=$? 19667 22460 - echo "$as_me:10580: \$? = $ac_status" >&5 19668 + echo "$as_me:11 371: \$? = $ac_status" >&522461 + echo "$as_me:11260: \$? = $ac_status" >&5 19669 22462 (exit $ac_status); }; }; then 19670 22463 ac_lo=$ac_mid; break 19671 22464 else 19672 @@ -10593,7 +11 384,7 @@22465 @@ -10593,7 +11273,7 @@ 19673 22466 while test "x$ac_lo" != "x$ac_hi"; do 19674 22467 ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` 19675 22468 cat >conftest.$ac_ext <<_ACEOF 19676 22469 -#line 10596 "configure" 19677 +#line 11 387"configure"22470 +#line 11276 "configure" 19678 22471 #include "confdefs.h" 19679 22472 $ac_includes_default 19680 22473 int 19681 @@ -10605,16 +11 396,16 @@22474 @@ -10605,16 +11285,16 @@ 19682 22475 } 19683 22476 _ACEOF 19684 22477 rm -f conftest.$ac_objext 19685 22478 -if { (eval echo "$as_me:10608: \"$ac_compile\"") >&5 19686 +if { (eval echo "$as_me:11 399: \"$ac_compile\"") >&522479 +if { (eval echo "$as_me:11288: \"$ac_compile\"") >&5 19687 22480 (eval $ac_compile) 2>&5 19688 22481 ac_status=$? 19689 22482 - echo "$as_me:10611: \$? = $ac_status" >&5 19690 + echo "$as_me:11 402: \$? = $ac_status" >&522483 + echo "$as_me:11291: \$? = $ac_status" >&5 19691 22484 (exit $ac_status); } && 19692 22485 { ac_try='test -s conftest.$ac_objext' 19693 22486 - { (eval echo "$as_me:10614: \"$ac_try\"") >&5 19694 + { (eval echo "$as_me:11 405: \"$ac_try\"") >&522487 + { (eval echo "$as_me:11294: \"$ac_try\"") >&5 19695 22488 (eval $ac_try) 2>&5 19696 22489 ac_status=$? 19697 22490 - echo "$as_me:10617: \$? = $ac_status" >&5 19698 + echo "$as_me:11 408: \$? = $ac_status" >&522491 + echo "$as_me:11297: \$? = $ac_status" >&5 19699 22492 (exit $ac_status); }; }; then 19700 22493 ac_hi=$ac_mid 19701 22494 else 19702 @@ -10627,12 +11 418,12 @@22495 @@ -10627,12 +11307,12 @@ 19703 22496 ac_cv_sizeof_signed_char=$ac_lo 19704 22497 else 19705 22498 if test "$cross_compiling" = yes; then 19706 22499 - { { echo "$as_me:10630: error: cannot run test program while cross compiling" >&5 19707 + { { echo "$as_me:11 421: error: cannot run test program while cross compiling" >&522500 + { { echo "$as_me:11310: error: cannot run test program while cross compiling" >&5 19708 22501 echo "$as_me: error: cannot run test program while cross compiling" >&2;} 19709 22502 { (exit 1); exit 1; }; } … … 19711 22504 cat >conftest.$ac_ext <<_ACEOF 19712 22505 -#line 10635 "configure" 19713 +#line 11 426"configure"22506 +#line 11315 "configure" 19714 22507 #include "confdefs.h" 19715 22508 $ac_includes_default 19716 22509 int 19717 @@ -10648,15 +11 439,15 @@22510 @@ -10648,15 +11328,15 @@ 19718 22511 } 19719 22512 _ACEOF 19720 22513 rm -f conftest$ac_exeext 19721 22514 -if { (eval echo "$as_me:10651: \"$ac_link\"") >&5 19722 +if { (eval echo "$as_me:11 442: \"$ac_link\"") >&522515 +if { (eval echo "$as_me:11331: \"$ac_link\"") >&5 19723 22516 (eval $ac_link) 2>&5 19724 22517 ac_status=$? 19725 22518 - echo "$as_me:10654: \$? = $ac_status" >&5 19726 + echo "$as_me:11 445: \$? = $ac_status" >&522519 + echo "$as_me:11334: \$? = $ac_status" >&5 19727 22520 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 19728 22521 - { (eval echo "$as_me:10656: \"$ac_try\"") >&5 19729 + { (eval echo "$as_me:11 447: \"$ac_try\"") >&522522 + { (eval echo "$as_me:11336: \"$ac_try\"") >&5 19730 22523 (eval $ac_try) 2>&5 19731 22524 ac_status=$? 19732 22525 - echo "$as_me:10659: \$? = $ac_status" >&5 19733 + echo "$as_me:11 450: \$? = $ac_status" >&522526 + echo "$as_me:11339: \$? = $ac_status" >&5 19734 22527 (exit $ac_status); }; }; then 19735 22528 ac_cv_sizeof_signed_char=`cat conftest.val` 19736 22529 else 19737 @@ -10672,7 +11 463,7 @@22530 @@ -10672,7 +11352,7 @@ 19738 22531 ac_cv_sizeof_signed_char=0 19739 22532 fi 19740 22533 fi 19741 22534 -echo "$as_me:10675: result: $ac_cv_sizeof_signed_char" >&5 19742 +echo "$as_me:11 466: result: $ac_cv_sizeof_signed_char" >&522535 +echo "$as_me:11355: result: $ac_cv_sizeof_signed_char" >&5 19743 22536 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6 19744 22537 cat >>confdefs.h <<EOF 19745 22538 #define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char 19746 @@ -10683,7 +11 474,7 @@22539 @@ -10683,7 +11363,7 @@ 19747 22540 else 19748 22541 NCURSES_SBOOL="char" 19749 22542 fi 19750 22543 -echo "$as_me:10686: checking if you want to use signed Boolean array in term.h" >&5 19751 +echo "$as_me:11 477: checking if you want to use signed Boolean array in term.h" >&522544 +echo "$as_me:11366: checking if you want to use signed Boolean array in term.h" >&5 19752 22545 echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6 19753 22546 19754 22547 # Check whether --enable-signed-char or --disable-signed-char was given. 19755 @@ -10693,12 +11 484,12 @@22548 @@ -10693,12 +11373,12 @@ 19756 22549 else 19757 22550 with_signed_char=no 19758 22551 fi; 19759 22552 -echo "$as_me:10696: result: $with_signed_char" >&5 19760 +echo "$as_me:11 487: result: $with_signed_char" >&522553 +echo "$as_me:11376: result: $with_signed_char" >&5 19761 22554 echo "${ECHO_T}$with_signed_char" >&6 19762 22555 test "$with_signed_char" != yes && NCURSES_SBOOL="char" … … 19764 22557 ### use option --enable-sigwinch to turn on use of SIGWINCH logic 19765 22558 -echo "$as_me:10701: checking if you want SIGWINCH handler" >&5 19766 +echo "$as_me:11 492: checking if you want SIGWINCH handler" >&522559 +echo "$as_me:11381: checking if you want SIGWINCH handler" >&5 19767 22560 echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6 19768 22561 19769 22562 # Check whether --enable-sigwinch or --disable-sigwinch was given. 19770 @@ -10708,14 +11 499,14 @@22563 @@ -10708,14 +11388,14 @@ 19771 22564 else 19772 22565 with_sigwinch=$with_ext_funcs 19773 22566 fi; 19774 22567 -echo "$as_me:10711: result: $with_sigwinch" >&5 19775 +echo "$as_me:11 502: result: $with_sigwinch" >&522568 +echo "$as_me:11391: result: $with_sigwinch" >&5 19776 22569 echo "${ECHO_T}$with_sigwinch" >&6 19777 22570 test "$with_sigwinch" = yes && cat >>confdefs.h <<\EOF … … 19781 22574 ### use option --enable-tcap-names to allow user to define new capabilities 19782 22575 -echo "$as_me:10718: checking if you want user-definable terminal capabilities like termcap" >&5 19783 +echo "$as_me:11 509: checking if you want user-definable terminal capabilities like termcap" >&522576 +echo "$as_me:11398: checking if you want user-definable terminal capabilities like termcap" >&5 19784 22577 echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6 19785 22578 19786 22579 # Check whether --enable-tcap-names or --disable-tcap-names was given. 19787 @@ -10725,7 +11 516,7 @@22580 @@ -10725,7 +11405,7 @@ 19788 22581 else 19789 22582 with_tcap_names=$with_ext_funcs 19790 22583 fi; 19791 22584 -echo "$as_me:10728: result: $with_tcap_names" >&5 19792 +echo "$as_me:11 519: result: $with_tcap_names" >&522585 +echo "$as_me:11408: result: $with_tcap_names" >&5 19793 22586 echo "${ECHO_T}$with_tcap_names" >&6 19794 22587 NCURSES_XNAMES=0 19795 22588 test "$with_tcap_names" = yes && NCURSES_XNAMES=1 19796 @@ -10733,7 +11 524,7 @@22589 @@ -10733,7 +11413,7 @@ 19797 22590 ############################################################################### 19798 22591 # These options are relatively safe to experiment with. 19799 22592 19800 22593 -echo "$as_me:10736: checking if you want all development code" >&5 19801 +echo "$as_me:11 527: checking if you want all development code" >&522594 +echo "$as_me:11416: checking if you want all development code" >&5 19802 22595 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6 19803 22596 19804 22597 # Check whether --with-develop or --without-develop was given. 19805 @@ -10743,11 +11 534,11 @@22598 @@ -10743,11 +11423,11 @@ 19806 22599 else 19807 22600 with_develop=no 19808 22601 fi; 19809 22602 -echo "$as_me:10746: result: $with_develop" >&5 19810 +echo "$as_me:11 537: result: $with_develop" >&522603 +echo "$as_me:11426: result: $with_develop" >&5 19811 22604 echo "${ECHO_T}$with_develop" >&6 19812 22605 19813 22606 ### use option --enable-hard-tabs to turn on use of hard-tabs optimize 19814 22607 -echo "$as_me:10750: checking if you want hard-tabs code" >&5 19815 +echo "$as_me:11 541: checking if you want hard-tabs code" >&522608 +echo "$as_me:11430: checking if you want hard-tabs code" >&5 19816 22609 echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6 19817 22610 19818 22611 # Check whether --enable-hard-tabs or --disable-hard-tabs was given. 19819 @@ -10757,14 +11 548,14 @@22612 @@ -10757,14 +11437,14 @@ 19820 22613 else 19821 22614 enable_hard_tabs=$with_develop 19822 22615 fi; 19823 22616 -echo "$as_me:10760: result: $enable_hard_tabs" >&5 19824 +echo "$as_me:11 551: result: $enable_hard_tabs" >&522617 +echo "$as_me:11440: result: $enable_hard_tabs" >&5 19825 22618 echo "${ECHO_T}$enable_hard_tabs" >&6 19826 22619 test "$enable_hard_tabs" = yes && cat >>confdefs.h <<\EOF … … 19830 22623 ### use option --enable-xmc-glitch to turn on use of magic-cookie optimize 19831 22624 -echo "$as_me:10767: checking if you want limited support for xmc" >&5 19832 +echo "$as_me:11 558: checking if you want limited support for xmc" >&522625 +echo "$as_me:11447: checking if you want limited support for xmc" >&5 19833 22626 echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6 19834 22627 19835 22628 # Check whether --enable-xmc-glitch or --disable-xmc-glitch was given. 19836 @@ -10774,7 +11 565,7 @@22629 @@ -10774,7 +11454,7 @@ 19837 22630 else 19838 22631 enable_xmc_glitch=$with_develop 19839 22632 fi; 19840 22633 -echo "$as_me:10777: result: $enable_xmc_glitch" >&5 19841 +echo "$as_me:11 568: result: $enable_xmc_glitch" >&522634 +echo "$as_me:11457: result: $enable_xmc_glitch" >&5 19842 22635 echo "${ECHO_T}$enable_xmc_glitch" >&6 19843 22636 test "$enable_xmc_glitch" = yes && cat >>confdefs.h <<\EOF 19844 22637 #define USE_XMC_SUPPORT 1 19845 @@ -10783,7 +11 574,7 @@22638 @@ -10783,7 +11463,7 @@ 19846 22639 ############################################################################### 19847 22640 # These are just experimental, probably should not be in a package: 19848 22641 19849 22642 -echo "$as_me:10786: checking if you do not want to assume colors are white-on-black" >&5 19850 +echo "$as_me:11 577: checking if you do not want to assume colors are white-on-black" >&522643 +echo "$as_me:11466: checking if you do not want to assume colors are white-on-black" >&5 19851 22644 echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6 19852 22645 19853 22646 # Check whether --enable-assumed-color or --disable-assumed-color was given. 19854 @@ -10793,14 +11 584,14 @@22647 @@ -10793,14 +11473,14 @@ 19855 22648 else 19856 22649 with_assumed_color=yes 19857 22650 fi; 19858 22651 -echo "$as_me:10796: result: $with_assumed_color" >&5 19859 +echo "$as_me:11 587: result: $with_assumed_color" >&522652 +echo "$as_me:11476: result: $with_assumed_color" >&5 19860 22653 echo "${ECHO_T}$with_assumed_color" >&6 19861 22654 test "$with_assumed_color" = yes && cat >>confdefs.h <<\EOF … … 19865 22658 ### use option --enable-hashmap to turn on use of hashmap scrolling logic 19866 22659 -echo "$as_me:10803: checking if you want hashmap scrolling-optimization code" >&5 19867 +echo "$as_me:11 594: checking if you want hashmap scrolling-optimization code" >&522660 +echo "$as_me:11483: checking if you want hashmap scrolling-optimization code" >&5 19868 22661 echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6 19869 22662 19870 22663 # Check whether --enable-hashmap or --disable-hashmap was given. 19871 @@ -10810,14 +11 601,14 @@22664 @@ -10810,14 +11490,14 @@ 19872 22665 else 19873 22666 with_hashmap=yes 19874 22667 fi; 19875 22668 -echo "$as_me:10813: result: $with_hashmap" >&5 19876 +echo "$as_me:11 604: result: $with_hashmap" >&522669 +echo "$as_me:11493: result: $with_hashmap" >&5 19877 22670 echo "${ECHO_T}$with_hashmap" >&6 19878 22671 test "$with_hashmap" = yes && cat >>confdefs.h <<\EOF … … 19882 22675 ### use option --enable-colorfgbg to turn on use of $COLORFGBG environment 19883 22676 -echo "$as_me:10820: checking if you want colorfgbg code" >&5 19884 +echo "$as_me:11 611: checking if you want colorfgbg code" >&522677 +echo "$as_me:11500: checking if you want colorfgbg code" >&5 19885 22678 echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6 19886 22679 19887 22680 # Check whether --enable-colorfgbg or --disable-colorfgbg was given. 19888 @@ -10827,14 +11 618,14 @@22681 @@ -10827,14 +11507,14 @@ 19889 22682 else 19890 22683 with_colorfgbg=no 19891 22684 fi; 19892 22685 -echo "$as_me:10830: result: $with_colorfgbg" >&5 19893 +echo "$as_me:11 621: result: $with_colorfgbg" >&522686 +echo "$as_me:11510: result: $with_colorfgbg" >&5 19894 22687 echo "${ECHO_T}$with_colorfgbg" >&6 19895 22688 test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF … … 19899 22692 ### use option --enable-interop to turn on use of bindings used for interop 19900 22693 -echo "$as_me:10837: checking if you want interop bindings" >&5 19901 +echo "$as_me:11 628: checking if you want interop bindings" >&522694 +echo "$as_me:11517: checking if you want interop bindings" >&5 19902 22695 echo $ECHO_N "checking if you want interop bindings... $ECHO_C" >&6 19903 22696 19904 22697 # Check whether --enable-interop or --disable-interop was given. 19905 @@ -10844,7 +11 635,7 @@22698 @@ -10844,7 +11524,7 @@ 19906 22699 else 19907 22700 with_exp_interop=no 19908 22701 fi; 19909 22702 -echo "$as_me:10847: result: $with_exp_interop" >&5 19910 +echo "$as_me:11 638: result: $with_exp_interop" >&522703 +echo "$as_me:11527: result: $with_exp_interop" >&5 19911 22704 echo "${ECHO_T}$with_exp_interop" >&6 19912 22705 19913 22706 NCURSES_INTEROP_FUNCS=0 19914 @@ -10853,7 +11 644,7 @@22707 @@ -10853,7 +11533,7 @@ 19915 22708 # This is still experimental (20080329), but should ultimately be moved to 19916 22709 # the script-block --with-normal, etc. 19917 22710 19918 22711 -echo "$as_me:10856: checking if you want to link with the pthread library" >&5 19919 +echo "$as_me:11 647: checking if you want to link with the pthread library" >&522712 +echo "$as_me:11536: checking if you want to link with the pthread library" >&5 19920 22713 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6 19921 22714 19922 22715 # Check whether --with-pthread or --without-pthread was given. 19923 @@ -10863,27 +11 654,27 @@22716 @@ -10863,27 +11543,27 @@ 19924 22717 else 19925 22718 with_pthread=no 19926 22719 fi; 19927 22720 -echo "$as_me:10866: result: $with_pthread" >&5 19928 +echo "$as_me:11 657: result: $with_pthread" >&522721 +echo "$as_me:11546: result: $with_pthread" >&5 19929 22722 echo "${ECHO_T}$with_pthread" >&6 19930 22723 19931 22724 if test "$with_pthread" != no ; then 19932 22725 - echo "$as_me:10870: checking for pthread.h" >&5 19933 + echo "$as_me:11 661: checking for pthread.h" >&522726 + echo "$as_me:11550: checking for pthread.h" >&5 19934 22727 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6 19935 22728 if test "${ac_cv_header_pthread_h+set}" = set; then … … 19938 22731 cat >conftest.$ac_ext <<_ACEOF 19939 22732 -#line 10876 "configure" 19940 +#line 11 667"configure"22733 +#line 11556 "configure" 19941 22734 #include "confdefs.h" 19942 22735 #include <pthread.h> 19943 22736 _ACEOF 19944 22737 -if { (eval echo "$as_me:10880: \"$ac_cpp conftest.$ac_ext\"") >&5 19945 +if { (eval echo "$as_me:11 671: \"$ac_cpp conftest.$ac_ext\"") >&522738 +if { (eval echo "$as_me:11560: \"$ac_cpp conftest.$ac_ext\"") >&5 19946 22739 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 19947 22740 ac_status=$? … … 19950 22743 cat conftest.err >&5 19951 22744 - echo "$as_me:10886: \$? = $ac_status" >&5 19952 + echo "$as_me:11 677: \$? = $ac_status" >&522745 + echo "$as_me:11566: \$? = $ac_status" >&5 19953 22746 (exit $ac_status); } >/dev/null; then 19954 22747 if test -s conftest.err; then 19955 22748 ac_cpp_err=$ac_c_preproc_warn_flag 19956 @@ -10902,7 +11 693,7 @@22749 @@ -10902,7 +11582,7 @@ 19957 22750 fi 19958 22751 rm -f conftest.err conftest.$ac_ext 19959 22752 fi 19960 22753 -echo "$as_me:10905: result: $ac_cv_header_pthread_h" >&5 19961 +echo "$as_me:11 696: result: $ac_cv_header_pthread_h" >&522754 +echo "$as_me:11585: result: $ac_cv_header_pthread_h" >&5 19962 22755 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6 19963 22756 if test $ac_cv_header_pthread_h = yes; then 19964 22757 19965 @@ -10910,12 +11 701,14 @@22758 @@ -10910,12 +11590,14 @@ 19966 22759 #define HAVE_PTHREADS_H 1 19967 22760 EOF … … 19975 22768 + for cf_lib_pthread in pthread c_r 19976 22769 + do 19977 + echo "$as_me:11 706: checking if we can link with the $cf_lib_pthread library" >&522770 + echo "$as_me:11595: checking if we can link with the $cf_lib_pthread library" >&5 19978 22771 +echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6 19979 22772 + cf_save_LIBS="$LIBS" 19980 22773 + LIBS="-l$cf_lib_pthread $LIBS" 19981 22774 + cat >conftest.$ac_ext <<_ACEOF 19982 +#line 11 711"configure"22775 +#line 11600 "configure" 19983 22776 #include "confdefs.h" 19984 22777 19985 22778 #include <pthread.h> 19986 @@ -10924,23 +11 717,24 @@22779 @@ -10924,23 +11606,24 @@ 19987 22780 main () 19988 22781 { … … 19998 22791 rm -f conftest.$ac_objext conftest$ac_exeext 19999 22792 -if { (eval echo "$as_me:10934: \"$ac_link\"") >&5 20000 +if { (eval echo "$as_me:11 728: \"$ac_link\"") >&522793 +if { (eval echo "$as_me:11617: \"$ac_link\"") >&5 20001 22794 (eval $ac_link) 2>&5 20002 22795 ac_status=$? 20003 22796 - echo "$as_me:10937: \$? = $ac_status" >&5 20004 + echo "$as_me:11 731: \$? = $ac_status" >&522797 + echo "$as_me:11620: \$? = $ac_status" >&5 20005 22798 (exit $ac_status); } && 20006 22799 { ac_try='test -s conftest$ac_exeext' 20007 22800 - { (eval echo "$as_me:10940: \"$ac_try\"") >&5 20008 + { (eval echo "$as_me:11 734: \"$ac_try\"") >&522801 + { (eval echo "$as_me:11623: \"$ac_try\"") >&5 20009 22802 (eval $ac_try) 2>&5 20010 22803 ac_status=$? 20011 22804 - echo "$as_me:10943: \$? = $ac_status" >&5 20012 + echo "$as_me:11 737: \$? = $ac_status" >&522805 + echo "$as_me:11626: \$? = $ac_status" >&5 20013 22806 (exit $ac_status); }; }; then 20014 22807 with_pthread=yes 20015 22808 else 20016 @@ -10949,34 +11 743,36 @@22809 @@ -10949,34 +11632,36 @@ 20017 22810 with_pthread=no 20018 22811 fi … … 20021 22814 - echo "$as_me:10953: result: $with_pthread" >&5 20022 22815 + LIBS="$cf_save_LIBS" 20023 + echo "$as_me:11 747: result: $with_pthread" >&522816 + echo "$as_me:11636: result: $with_pthread" >&5 20024 22817 echo "${ECHO_T}$with_pthread" >&6 20025 22818 + test "$with_pthread" = yes && break … … 20038 22831 - { { echo "$as_me:10963: error: Cannot link with pthread library" >&5 20039 22832 + else 20040 + { { echo "$as_me:11 759: error: Cannot link with pthread library" >&522833 + { { echo "$as_me:11648: error: Cannot link with pthread library" >&5 20041 22834 echo "$as_me: error: Cannot link with pthread library" >&2;} 20042 22835 { (exit 1); exit 1; }; } … … 20050 22843 if test "x$with_pthread" != xno; then 20051 22844 - echo "$as_me:10973: checking for pthread_kill" >&5 20052 + echo "$as_me:11 769: checking for pthread_kill" >&522845 + echo "$as_me:11658: checking for pthread_kill" >&5 20053 22846 echo $ECHO_N "checking for pthread_kill... $ECHO_C" >&6 20054 22847 if test "${ac_cv_func_pthread_kill+set}" = set; then … … 20057 22850 cat >conftest.$ac_ext <<_ACEOF 20058 22851 -#line 10979 "configure" 20059 +#line 11 775"configure"22852 +#line 11664 "configure" 20060 22853 #include "confdefs.h" 20061 22854 /* System header to define __stub macros and hopefully few prototypes, 20062 22855 which can conflict with char pthread_kill (); below. */ 20063 @@ -11007,16 +11803,16 @@ 22856 @@ -10999,7 +11684,7 @@ 22857 #if defined (__stub_pthread_kill) || defined (__stub___pthread_kill) 22858 choke me 22859 #else 22860 -f = pthread_kill; 22861 +f = pthread_kill; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 22862 #endif 22863 22864 ; 22865 @@ -11007,16 +11692,16 @@ 20064 22866 } 20065 22867 _ACEOF 20066 22868 rm -f conftest.$ac_objext conftest$ac_exeext 20067 22869 -if { (eval echo "$as_me:11010: \"$ac_link\"") >&5 20068 +if { (eval echo "$as_me:11 806: \"$ac_link\"") >&522870 +if { (eval echo "$as_me:11695: \"$ac_link\"") >&5 20069 22871 (eval $ac_link) 2>&5 20070 22872 ac_status=$? 20071 22873 - echo "$as_me:11013: \$? = $ac_status" >&5 20072 + echo "$as_me:11 809: \$? = $ac_status" >&522874 + echo "$as_me:11698: \$? = $ac_status" >&5 20073 22875 (exit $ac_status); } && 20074 22876 { ac_try='test -s conftest$ac_exeext' 20075 22877 - { (eval echo "$as_me:11016: \"$ac_try\"") >&5 20076 + { (eval echo "$as_me:11 812: \"$ac_try\"") >&522878 + { (eval echo "$as_me:11701: \"$ac_try\"") >&5 20077 22879 (eval $ac_try) 2>&5 20078 22880 ac_status=$? 20079 22881 - echo "$as_me:11019: \$? = $ac_status" >&5 20080 + echo "$as_me:11 815: \$? = $ac_status" >&522882 + echo "$as_me:11704: \$? = $ac_status" >&5 20081 22883 (exit $ac_status); }; }; then 20082 22884 ac_cv_func_pthread_kill=yes 20083 22885 else 20084 @@ -11026,11 +11 822,11 @@22886 @@ -11026,11 +11711,11 @@ 20085 22887 fi 20086 22888 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20087 22889 fi 20088 22890 -echo "$as_me:11029: result: $ac_cv_func_pthread_kill" >&5 20089 +echo "$as_me:11 825: result: $ac_cv_func_pthread_kill" >&522891 +echo "$as_me:11714: result: $ac_cv_func_pthread_kill" >&5 20090 22892 echo "${ECHO_T}$ac_cv_func_pthread_kill" >&6 20091 22893 if test $ac_cv_func_pthread_kill = yes; then 20092 22894 20093 22895 - echo "$as_me:11033: checking if you want to allow EINTR in wgetch with pthreads" >&5 20094 + echo "$as_me:11 829: checking if you want to allow EINTR in wgetch with pthreads" >&522896 + echo "$as_me:11718: checking if you want to allow EINTR in wgetch with pthreads" >&5 20095 22897 echo $ECHO_N "checking if you want to allow EINTR in wgetch with pthreads... $ECHO_C" >&6 20096 22898 20097 22899 # Check whether --enable-pthreads-eintr or --disable-pthreads-eintr was given. 20098 @@ -11040,7 +11 836,7 @@22900 @@ -11040,7 +11725,7 @@ 20099 22901 else 20100 22902 use_pthreads_eintr=no 20101 22903 fi; 20102 22904 - echo "$as_me:11043: result: $use_pthreads_eintr" >&5 20103 + echo "$as_me:11 839: result: $use_pthreads_eintr" >&522905 + echo "$as_me:11728: result: $use_pthreads_eintr" >&5 20104 22906 echo "${ECHO_T}$use_pthreads_eintr" >&6 20105 22907 if test $use_pthreads_eintr = yes ; then 20106 22908 cat >>confdefs.h <<\EOF 20107 @@ -11050,7 +11 846,7 @@22909 @@ -11050,7 +11735,7 @@ 20108 22910 fi 20109 22911 fi 20110 22912 20111 22913 - echo "$as_me:11053: checking if you want to use weak-symbols for pthreads" >&5 20112 + echo "$as_me:11 849: checking if you want to use weak-symbols for pthreads" >&522914 + echo "$as_me:11738: checking if you want to use weak-symbols for pthreads" >&5 20113 22915 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6 20114 22916 20115 22917 # Check whether --enable-weak-symbols or --disable-weak-symbols was given. 20116 @@ -11060,18 +11 856,18 @@22918 @@ -11060,18 +11745,18 @@ 20117 22919 else 20118 22920 use_weak_symbols=no 20119 22921 fi; 20120 22922 - echo "$as_me:11063: result: $use_weak_symbols" >&5 20121 + echo "$as_me:11 859: result: $use_weak_symbols" >&522923 + echo "$as_me:11748: result: $use_weak_symbols" >&5 20122 22924 echo "${ECHO_T}$use_weak_symbols" >&6 20123 22925 if test "$use_weak_symbols" = yes ; then 20124 22926 20125 22927 -echo "$as_me:11067: checking if $CC supports weak symbols" >&5 20126 +echo "$as_me:11 863: checking if $CC supports weak symbols" >&522928 +echo "$as_me:11752: checking if $CC supports weak symbols" >&5 20127 22929 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6 20128 22930 if test "${cf_cv_weak_symbols+set}" = set; then … … 20132 22934 cat >conftest.$ac_ext <<_ACEOF 20133 22935 -#line 11074 "configure" 20134 +#line 11 870"configure"22936 +#line 11759 "configure" 20135 22937 #include "confdefs.h" 20136 22938 20137 22939 #include <stdio.h> 20138 @@ -11097,16 +11 893,16 @@22940 @@ -11097,16 +11782,16 @@ 20139 22941 } 20140 22942 _ACEOF 20141 22943 rm -f conftest.$ac_objext 20142 22944 -if { (eval echo "$as_me:11100: \"$ac_compile\"") >&5 20143 +if { (eval echo "$as_me:11 896: \"$ac_compile\"") >&522945 +if { (eval echo "$as_me:11785: \"$ac_compile\"") >&5 20144 22946 (eval $ac_compile) 2>&5 20145 22947 ac_status=$? 20146 22948 - echo "$as_me:11103: \$? = $ac_status" >&5 20147 + echo "$as_me:11 899: \$? = $ac_status" >&522949 + echo "$as_me:11788: \$? = $ac_status" >&5 20148 22950 (exit $ac_status); } && 20149 22951 { ac_try='test -s conftest.$ac_objext' 20150 22952 - { (eval echo "$as_me:11106: \"$ac_try\"") >&5 20151 + { (eval echo "$as_me:11 902: \"$ac_try\"") >&522953 + { (eval echo "$as_me:11791: \"$ac_try\"") >&5 20152 22954 (eval $ac_try) 2>&5 20153 22955 ac_status=$? 20154 22956 - echo "$as_me:11109: \$? = $ac_status" >&5 20155 + echo "$as_me:11 905: \$? = $ac_status" >&522957 + echo "$as_me:11794: \$? = $ac_status" >&5 20156 22958 (exit $ac_status); }; }; then 20157 22959 cf_cv_weak_symbols=yes 20158 22960 else 20159 @@ -11117,7 +11 913,7 @@22961 @@ -11117,7 +11802,7 @@ 20160 22962 rm -f conftest.$ac_objext conftest.$ac_ext 20161 22963 20162 22964 fi 20163 22965 -echo "$as_me:11120: result: $cf_cv_weak_symbols" >&5 20164 +echo "$as_me:11 916: result: $cf_cv_weak_symbols" >&522966 +echo "$as_me:11805: result: $cf_cv_weak_symbols" >&5 20165 22967 echo "${ECHO_T}$cf_cv_weak_symbols" >&6 20166 22968 20167 22969 else 20168 @@ -11148,7 +11 944,7 @@22970 @@ -11148,7 +11833,7 @@ 20169 22971 # opaque outside of that, so there is no --enable-opaque option. We can use 20170 22972 # this option without --with-pthreads, but this will be always set for 20171 22973 # pthreads. 20172 22974 -echo "$as_me:11151: checking if you want experimental reentrant code" >&5 20173 +echo "$as_me:11 947: checking if you want experimental reentrant code" >&522975 +echo "$as_me:11836: checking if you want experimental reentrant code" >&5 20174 22976 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6 20175 22977 20176 22978 # Check whether --enable-reentrant or --disable-reentrant was given. 20177 @@ -11158,7 +11 954,7 @@22979 @@ -11158,7 +11843,7 @@ 20178 22980 else 20179 22981 with_reentrant=no 20180 22982 fi; 20181 22983 -echo "$as_me:11161: result: $with_reentrant" >&5 20182 +echo "$as_me:11 957: result: $with_reentrant" >&522984 +echo "$as_me:11846: result: $with_reentrant" >&5 20183 22985 echo "${ECHO_T}$with_reentrant" >&6 20184 22986 if test "$with_reentrant" = yes ; then 20185 22987 cf_cv_enable_reentrant=1 20186 @@ -11184,7 +11 980,7 @@22988 @@ -11184,7 +11869,7 @@ 20187 22989 5.*) 20188 22990 cf_cv_rel_version=6.0 20189 22991 cf_cv_abi_version=6 20190 22992 - { echo "$as_me:11187: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 20191 + { echo "$as_me:11 983: WARNING: Overriding ABI version to $cf_cv_abi_version" >&522993 + { echo "$as_me:11872: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5 20192 22994 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;} 20193 22995 ;; 20194 22996 esac 20195 @@ -11199,7 +11 995,7 @@22997 @@ -11199,7 +11884,7 @@ 20196 22998 20197 22999 ### Allow using a different wrap-prefix 20198 23000 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then 20199 23001 - echo "$as_me:11202: checking for prefix used to wrap public variables" >&5 20200 + echo "$as_me:11 998: checking for prefix used to wrap public variables" >&523002 + echo "$as_me:11887: checking for prefix used to wrap public variables" >&5 20201 23003 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6 20202 23004 20203 23005 # Check whether --with-wrap-prefix or --without-wrap-prefix was given. 20204 @@ -11209,7 +1 2005,7 @@23006 @@ -11209,7 +11894,7 @@ 20205 23007 else 20206 23008 NCURSES_WRAP_PREFIX=_nc_ 20207 23009 fi; 20208 23010 - echo "$as_me:11212: result: $NCURSES_WRAP_PREFIX" >&5 20209 + echo "$as_me:1 2008: result: $NCURSES_WRAP_PREFIX" >&523011 + echo "$as_me:11897: result: $NCURSES_WRAP_PREFIX" >&5 20210 23012 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6 20211 23013 else 20212 23014 NCURSES_WRAP_PREFIX=_nc_ 20213 @@ -11219,7 +1 2015,7 @@23015 @@ -11219,7 +11904,7 @@ 20214 23016 #define NCURSES_WRAP_PREFIX "$NCURSES_WRAP_PREFIX" 20215 23017 EOF 20216 23018 20217 23019 -echo "$as_me:11222: checking if you want experimental safe-sprintf code" >&5 20218 +echo "$as_me:1 2018: checking if you want experimental safe-sprintf code" >&523020 +echo "$as_me:11907: checking if you want experimental safe-sprintf code" >&5 20219 23021 echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6 20220 23022 20221 23023 # Check whether --enable-safe-sprintf or --disable-safe-sprintf was given. 20222 @@ -11229,7 +1 2025,7 @@23024 @@ -11229,7 +11914,7 @@ 20223 23025 else 20224 23026 with_safe_sprintf=no 20225 23027 fi; 20226 23028 -echo "$as_me:11232: result: $with_safe_sprintf" >&5 20227 +echo "$as_me:1 2028: result: $with_safe_sprintf" >&523029 +echo "$as_me:11917: result: $with_safe_sprintf" >&5 20228 23030 echo "${ECHO_T}$with_safe_sprintf" >&6 20229 23031 test "$with_safe_sprintf" = yes && cat >>confdefs.h <<\EOF 20230 23032 #define USE_SAFE_SPRINTF 1 20231 @@ -11238,7 +1 2034,7 @@23033 @@ -11238,7 +11923,7 @@ 20232 23034 ### use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic 20233 23035 # when hashmap is used scroll hints are useless 20234 23036 if test "$with_hashmap" = no ; then 20235 23037 -echo "$as_me:11241: checking if you want to experiment without scrolling-hints code" >&5 20236 +echo "$as_me:1 2037: checking if you want to experiment without scrolling-hints code" >&523038 +echo "$as_me:11926: checking if you want to experiment without scrolling-hints code" >&5 20237 23039 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6 20238 23040 20239 23041 # Check whether --enable-scroll-hints or --disable-scroll-hints was given. 20240 @@ -11248,7 +1 2044,7 @@23042 @@ -11248,7 +11933,7 @@ 20241 23043 else 20242 23044 with_scroll_hints=yes 20243 23045 fi; 20244 23046 -echo "$as_me:11251: result: $with_scroll_hints" >&5 20245 +echo "$as_me:1 2047: result: $with_scroll_hints" >&523047 +echo "$as_me:11936: result: $with_scroll_hints" >&5 20246 23048 echo "${ECHO_T}$with_scroll_hints" >&6 20247 23049 test "$with_scroll_hints" = yes && cat >>confdefs.h <<\EOF 20248 23050 #define USE_SCROLL_HINTS 1 20249 @@ -11256,7 +1 2052,7 @@23051 @@ -11256,7 +11941,7 @@ 20250 23052 20251 23053 fi 20252 23054 20253 23055 -echo "$as_me:11259: checking if you want experimental wgetch-events code" >&5 20254 +echo "$as_me:1 2055: checking if you want experimental wgetch-events code" >&523056 +echo "$as_me:11944: checking if you want experimental wgetch-events code" >&5 20255 23057 echo $ECHO_N "checking if you want experimental wgetch-events code... $ECHO_C" >&6 20256 23058 20257 23059 # Check whether --enable-wgetch-events or --disable-wgetch-events was given. 20258 @@ -11266,7 +1 2062,7 @@23060 @@ -11266,7 +11951,7 @@ 20259 23061 else 20260 23062 with_wgetch_events=no 20261 23063 fi; 20262 23064 -echo "$as_me:11269: result: $with_wgetch_events" >&5 20263 +echo "$as_me:1 2065: result: $with_wgetch_events" >&523065 +echo "$as_me:11954: result: $with_wgetch_events" >&5 20264 23066 echo "${ECHO_T}$with_wgetch_events" >&6 20265 23067 test "$with_wgetch_events" = yes && cat >>confdefs.h <<\EOF 20266 23068 #define NCURSES_WGETCH_EVENTS 1 20267 @@ -11275, 7 +12071,7@@23069 @@ -11275,28 +11960,54 @@ 20268 23070 ############################################################################### 20269 23071 20270 23072 ### use option --disable-echo to suppress full display compiling commands 20271 23073 -echo "$as_me:11278: checking if you want to display full commands during build" >&5 20272 +echo "$as_me:12074: checking if you want to display full commands during build" >&5 20273 echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6 23074 -echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6 23075 + 23076 +echo "$as_me:11964: checking if you want to see long compiling messages" >&5 23077 +echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6 20274 23078 20275 23079 # Check whether --enable-echo or --disable-echo was given. 20276 @@ -11292,11 +12088,11 @@ 23080 if test "${enable_echo+set}" = set; then 23081 enableval="$enable_echo" 23082 - with_echo=$enableval 23083 + test "$enableval" != no && enableval=yes 23084 + if test "$enableval" != "yes" ; then 23085 + 23086 + ECHO_LT='--silent' 23087 + ECHO_LD='@echo linking $@;' 23088 + RULE_CC='@echo compiling $<' 23089 + SHOW_CC='@echo compiling $@' 23090 + ECHO_CC='@' 23091 + 23092 + else 23093 + 23094 + ECHO_LT='' 23095 + ECHO_LD='' 23096 + RULE_CC='' 23097 + SHOW_CC='' 23098 + ECHO_CC='' 23099 + 23100 + fi 23101 else 23102 - with_echo=yes 23103 + enableval=yes 23104 + 23105 + ECHO_LT='' 23106 + ECHO_LD='' 23107 + RULE_CC='' 23108 + SHOW_CC='' 23109 + ECHO_CC='' 23110 + 23111 fi; 23112 -if test "$with_echo" = yes; then 23113 +echo "$as_me:11998: result: $enableval" >&5 23114 +echo "${ECHO_T}$enableval" >&6 23115 + 23116 +if test "$enable_echo" = yes; then 23117 ECHO_LINK= 23118 else 23119 ECHO_LINK='@ echo linking $@ ... ;' 20277 23120 test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent" 20278 23121 test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent" 20279 23122 fi 20280 23123 -echo "$as_me:11295: result: $with_echo" >&5 20281 +echo "$as_me:12091: result: $with_echo" >&5 20282 echo "${ECHO_T}$with_echo" >&6 23124 -echo "${ECHO_T}$with_echo" >&6 20283 23125 20284 23126 ### use option --enable-warnings to turn on all gcc warnings 20285 23127 -echo "$as_me:11299: checking if you want to see compiler warnings" >&5 20286 +echo "$as_me:120 95: checking if you want to see compiler warnings" >&523128 +echo "$as_me:12010: checking if you want to see compiler warnings" >&5 20287 23129 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6 20288 23130 20289 23131 # Check whether --enable-warnings or --disable-warnings was given. 20290 @@ -11304,7 +12 100,7 @@23132 @@ -11304,7 +12015,7 @@ 20291 23133 enableval="$enable_warnings" 20292 23134 with_warnings=$enableval 20293 23135 fi; 20294 23136 -echo "$as_me:11307: result: $with_warnings" >&5 20295 +echo "$as_me:12 103: result: $with_warnings" >&523137 +echo "$as_me:12018: result: $with_warnings" >&5 20296 23138 echo "${ECHO_T}$with_warnings" >&6 20297 23139 20298 23140 if test "x$with_warnings" = "xyes"; then 20299 @@ -11316,12 +12 112,12 @@23141 @@ -11316,12 +12027,12 @@ 20300 23142 if test "$GCC" = yes ; then 20301 23143 case $host_os in 20302 23144 linux*|gnu*) 20303 23145 - echo "$as_me:11319: checking if this is really Intel C compiler" >&5 20304 + echo "$as_me:12 115: checking if this is really Intel C compiler" >&523146 + echo "$as_me:12030: checking if this is really Intel C compiler" >&5 20305 23147 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6 20306 23148 cf_save_CFLAGS="$CFLAGS" … … 20308 23150 cat >conftest.$ac_ext <<_ACEOF 20309 23151 -#line 11324 "configure" 20310 +#line 12 120"configure"23152 +#line 12035 "configure" 20311 23153 #include "confdefs.h" 20312 23154 20313 23155 int 20314 @@ -11338,16 +12 134,16 @@23156 @@ -11338,16 +12049,16 @@ 20315 23157 } 20316 23158 _ACEOF 20317 23159 rm -f conftest.$ac_objext 20318 23160 -if { (eval echo "$as_me:11341: \"$ac_compile\"") >&5 20319 +if { (eval echo "$as_me:12 137: \"$ac_compile\"") >&523161 +if { (eval echo "$as_me:12052: \"$ac_compile\"") >&5 20320 23162 (eval $ac_compile) 2>&5 20321 23163 ac_status=$? 20322 23164 - echo "$as_me:11344: \$? = $ac_status" >&5 20323 + echo "$as_me:12 140: \$? = $ac_status" >&523165 + echo "$as_me:12055: \$? = $ac_status" >&5 20324 23166 (exit $ac_status); } && 20325 23167 { ac_try='test -s conftest.$ac_objext' 20326 23168 - { (eval echo "$as_me:11347: \"$ac_try\"") >&5 20327 + { (eval echo "$as_me:12 143: \"$ac_try\"") >&523169 + { (eval echo "$as_me:12058: \"$ac_try\"") >&5 20328 23170 (eval $ac_try) 2>&5 20329 23171 ac_status=$? 20330 23172 - echo "$as_me:11350: \$? = $ac_status" >&5 20331 + echo "$as_me:12 146: \$? = $ac_status" >&523173 + echo "$as_me:12061: \$? = $ac_status" >&5 20332 23174 (exit $ac_status); }; }; then 20333 23175 INTEL_COMPILER=yes 20334 23176 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" 20335 @@ -11358,14 +12154,14 @@ 23177 @@ -11357,15 +12068,64 @@ 23178 cat conftest.$ac_ext >&5 20336 23179 fi 20337 23180 rm -f conftest.$ac_objext conftest.$ac_ext 20338 CFLAGS="$cf_save_CFLAGS"23181 - CFLAGS="$cf_save_CFLAGS" 20339 23182 - echo "$as_me:11361: result: $INTEL_COMPILER" >&5 20340 + echo "$as_me:12157: result: $INTEL_COMPILER" >&5 20341 echo "${ECHO_T}$INTEL_COMPILER" >&6 20342 ;; 20343 esac 23183 -echo "${ECHO_T}$INTEL_COMPILER" >&6 23184 - ;; 23185 - esac 23186 + CFLAGS="$cf_save_CFLAGS" 23187 + echo "$as_me:12072: result: $INTEL_COMPILER" >&5 23188 +echo "${ECHO_T}$INTEL_COMPILER" >&6 23189 + ;; 23190 + esac 23191 +fi 23192 + 23193 +CLANG_COMPILER=no 23194 + 23195 +if test "$GCC" = yes ; then 23196 + echo "$as_me:12081: checking if this is really Clang C compiler" >&5 23197 +echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6 23198 + cf_save_CFLAGS="$CFLAGS" 23199 + CFLAGS="$CFLAGS -Qunused-arguments" 23200 + cat >conftest.$ac_ext <<_ACEOF 23201 +#line 12086 "configure" 23202 +#include "confdefs.h" 23203 + 23204 +int 23205 +main () 23206 +{ 23207 + 23208 +#ifdef __clang__ 23209 +#else 23210 +make an error 23211 +#endif 23212 + 23213 + ; 23214 + return 0; 23215 +} 23216 +_ACEOF 23217 +rm -f conftest.$ac_objext 23218 +if { (eval echo "$as_me:12103: \"$ac_compile\"") >&5 23219 + (eval $ac_compile) 2>&5 23220 + ac_status=$? 23221 + echo "$as_me:12106: \$? = $ac_status" >&5 23222 + (exit $ac_status); } && 23223 + { ac_try='test -s conftest.$ac_objext' 23224 + { (eval echo "$as_me:12109: \"$ac_try\"") >&5 23225 + (eval $ac_try) 2>&5 23226 + ac_status=$? 23227 + echo "$as_me:12112: \$? = $ac_status" >&5 23228 + (exit $ac_status); }; }; then 23229 + CLANG_COMPILER=yes 23230 +cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" 23231 + 23232 +else 23233 + echo "$as_me: failed program was:" >&5 23234 +cat conftest.$ac_ext >&5 23235 +fi 23236 +rm -f conftest.$ac_objext conftest.$ac_ext 23237 + CFLAGS="$cf_save_CFLAGS" 23238 + echo "$as_me:12123: result: $CLANG_COMPILER" >&5 23239 +echo "${ECHO_T}$CLANG_COMPILER" >&6 20344 23240 fi 20345 23241 20346 23242 cat > conftest.$ac_ext <<EOF 20347 23243 -#line 11368 "${as_me:-configure}" 20348 +#line 121 64"${as_me:-configure}"23244 +#line 12128 "${as_me:-configure}" 20349 23245 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } 20350 23246 EOF 20351 23247 20352 @@ -11382,7 +121 78,7 @@23248 @@ -11382,7 +12142,7 @@ 20353 23249 # remark #981: operands are evaluated in unspecified order 20354 23250 # warning #279: controlling expression is constant 20355 23251 20356 23252 - { echo "$as_me:11385: checking for $CC warning options..." >&5 20357 + { echo "$as_me:121 81: checking for $CC warning options..." >&523253 + { echo "$as_me:12145: checking for $CC warning options..." >&5 20358 23254 echo "$as_me: checking for $CC warning options..." >&6;} 20359 23255 cf_save_CFLAGS="$CFLAGS" 20360 23256 EXTRA_CFLAGS="-Wall" 20361 @@ -11398,12 +121 94,12 @@23257 @@ -11398,12 +12158,12 @@ 20362 23258 wd981 20363 23259 do 20364 23260 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" 20365 23261 - if { (eval echo "$as_me:11401: \"$ac_compile\"") >&5 20366 + if { (eval echo "$as_me:121 97: \"$ac_compile\"") >&523262 + if { (eval echo "$as_me:12161: \"$ac_compile\"") >&5 20367 23263 (eval $ac_compile) 2>&5 20368 23264 ac_status=$? 20369 23265 - echo "$as_me:11404: \$? = $ac_status" >&5 20370 + echo "$as_me:12 200: \$? = $ac_status" >&523266 + echo "$as_me:12164: \$? = $ac_status" >&5 20371 23267 (exit $ac_status); }; then 20372 23268 - test -n "$verbose" && echo "$as_me:11406: result: ... -$cf_opt" >&5 20373 + test -n "$verbose" && echo "$as_me:12 202: result: ... -$cf_opt" >&523269 + test -n "$verbose" && echo "$as_me:12166: result: ... -$cf_opt" >&5 20374 23270 echo "${ECHO_T}... -$cf_opt" >&6 20375 23271 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" 20376 23272 fi 20377 @@ -11412,7 +12 208,7 @@23273 @@ -11412,7 +12172,7 @@ 20378 23274 20379 23275 elif test "$GCC" = yes 20380 23276 then 20381 23277 - { echo "$as_me:11415: checking for $CC warning options..." >&5 20382 + { echo "$as_me:12 211: checking for $CC warning options..." >&523278 + { echo "$as_me:12175: checking for $CC warning options..." >&5 20383 23279 echo "$as_me: checking for $CC warning options..." >&6;} 20384 23280 cf_save_CFLAGS="$CFLAGS" 20385 23281 EXTRA_CFLAGS= 20386 @@ -11432,12 +12 228,12 @@23282 @@ -11432,12 +12192,12 @@ 20387 23283 Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum 20388 23284 do 20389 23285 CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" 20390 23286 - if { (eval echo "$as_me:11435: \"$ac_compile\"") >&5 20391 + if { (eval echo "$as_me:12 231: \"$ac_compile\"") >&523287 + if { (eval echo "$as_me:12195: \"$ac_compile\"") >&5 20392 23288 (eval $ac_compile) 2>&5 20393 23289 ac_status=$? 20394 23290 - echo "$as_me:11438: \$? = $ac_status" >&5 20395 + echo "$as_me:12 234: \$? = $ac_status" >&523291 + echo "$as_me:12198: \$? = $ac_status" >&5 20396 23292 (exit $ac_status); }; then 20397 23293 - test -n "$verbose" && echo "$as_me:11440: result: ... -$cf_opt" >&5 20398 + test -n "$verbose" && echo "$as_me:122 36: result: ... -$cf_opt" >&523294 + test -n "$verbose" && echo "$as_me:12200: result: ... -$cf_opt" >&5 20399 23295 echo "${ECHO_T}... -$cf_opt" >&6 20400 23296 case $cf_opt in #(vi 20401 23297 Wcast-qual) #(vi 20402 @@ -11448,7 +122 44,7 @@23298 @@ -11448,7 +12208,17 @@ 20403 23299 [34].*) 20404 23300 test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 20405 23301 20406 23302 -echo "${as_me:-configure}:11451: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 20407 +echo "${as_me:-configure}:12247: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 23303 +echo "${as_me:-configure}:12211: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 23304 + 23305 + continue;; 23306 + esac 23307 + ;; 23308 + Wpointer-arith) #(vi 23309 + case $GCC_VERSION in 23310 + [12].*) 23311 + test -n "$verbose" && echo " feature is broken in gcc $GCC_VERSION" 1>&6 23312 + 23313 +echo "${as_me:-configure}:12221: testing feature is broken in gcc $GCC_VERSION ..." 1>&5 20408 23314 20409 23315 continue;; 20410 23316 esac 20411 @@ -11468,12 +122 64,12 @@23317 @@ -11468,12 +12238,12 @@ 20412 23318 if test "$GCC" = yes ; then 20413 23319 case $host_os in 20414 23320 linux*|gnu*) 20415 23321 - echo "$as_me:11471: checking if this is really Intel C++ compiler" >&5 20416 + echo "$as_me:122 67: checking if this is really Intel C++ compiler" >&523322 + echo "$as_me:12241: checking if this is really Intel C++ compiler" >&5 20417 23323 echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6 20418 23324 cf_save_CFLAGS="$CXXFLAGS" … … 20420 23326 cat >conftest.$ac_ext <<_ACEOF 20421 23327 -#line 11476 "configure" 20422 +#line 122 72"configure"23328 +#line 12246 "configure" 20423 23329 #include "confdefs.h" 20424 23330 20425 23331 int 20426 @@ -11490,16 +122 86,16 @@23332 @@ -11490,16 +12260,16 @@ 20427 23333 } 20428 23334 _ACEOF 20429 23335 rm -f conftest.$ac_objext 20430 23336 -if { (eval echo "$as_me:11493: \"$ac_compile\"") >&5 20431 +if { (eval echo "$as_me:122 89: \"$ac_compile\"") >&523337 +if { (eval echo "$as_me:12263: \"$ac_compile\"") >&5 20432 23338 (eval $ac_compile) 2>&5 20433 23339 ac_status=$? 20434 23340 - echo "$as_me:11496: \$? = $ac_status" >&5 20435 + echo "$as_me:122 92: \$? = $ac_status" >&523341 + echo "$as_me:12266: \$? = $ac_status" >&5 20436 23342 (exit $ac_status); } && 20437 23343 { ac_try='test -s conftest.$ac_objext' 20438 23344 - { (eval echo "$as_me:11499: \"$ac_try\"") >&5 20439 + { (eval echo "$as_me:122 95: \"$ac_try\"") >&523345 + { (eval echo "$as_me:12269: \"$ac_try\"") >&5 20440 23346 (eval $ac_try) 2>&5 20441 23347 ac_status=$? 20442 23348 - echo "$as_me:11502: \$? = $ac_status" >&5 20443 + echo "$as_me:122 98: \$? = $ac_status" >&523349 + echo "$as_me:12272: \$? = $ac_status" >&5 20444 23350 (exit $ac_status); }; }; then 20445 23351 INTEL_CPLUSPLUS=yes 20446 23352 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc" 20447 @@ -11510, 7 +12306,7@@23353 @@ -11510,12 +12280,61 @@ 20448 23354 fi 20449 23355 rm -f conftest.$ac_objext conftest.$ac_ext 20450 23356 CXXFLAGS="$cf_save_CFLAGS" 20451 23357 - echo "$as_me:11513: result: $INTEL_CPLUSPLUS" >&5 20452 + echo "$as_me:12 309: result: $INTEL_CPLUSPLUS" >&523358 + echo "$as_me:12283: result: $INTEL_CPLUSPLUS" >&5 20453 23359 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6 20454 23360 ;; 20455 23361 esac 20456 @@ -11524,7 +12320,7 @@ 23362 fi 23363 23364 +CLANG_CPLUSPLUS=no 23365 + 23366 +if test "$GCC" = yes ; then 23367 + echo "$as_me:12292: checking if this is really Clang C++ compiler" >&5 23368 +echo $ECHO_N "checking if this is really Clang C++ compiler... $ECHO_C" >&6 23369 + cf_save_CFLAGS="$CXXFLAGS" 23370 + CXXFLAGS="$CXXFLAGS -Qunused-arguments" 23371 + cat >conftest.$ac_ext <<_ACEOF 23372 +#line 12297 "configure" 23373 +#include "confdefs.h" 23374 + 23375 +int 23376 +main () 23377 +{ 23378 + 23379 +#ifdef __clang__ 23380 +#else 23381 +make an error 23382 +#endif 23383 + 23384 + ; 23385 + return 0; 23386 +} 23387 +_ACEOF 23388 +rm -f conftest.$ac_objext 23389 +if { (eval echo "$as_me:12314: \"$ac_compile\"") >&5 23390 + (eval $ac_compile) 2>&5 23391 + ac_status=$? 23392 + echo "$as_me:12317: \$? = $ac_status" >&5 23393 + (exit $ac_status); } && 23394 + { ac_try='test -s conftest.$ac_objext' 23395 + { (eval echo "$as_me:12320: \"$ac_try\"") >&5 23396 + (eval $ac_try) 2>&5 23397 + ac_status=$? 23398 + echo "$as_me:12323: \$? = $ac_status" >&5 23399 + (exit $ac_status); }; }; then 23400 + CLANG_CPLUSPLUS=yes 23401 +cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments" 23402 + 23403 +else 23404 + echo "$as_me: failed program was:" >&5 23405 +cat conftest.$ac_ext >&5 23406 +fi 23407 +rm -f conftest.$ac_objext conftest.$ac_ext 23408 + CXXFLAGS="$cf_save_CFLAGS" 23409 + echo "$as_me:12334: result: $CLANG_CPLUSPLUS" >&5 23410 +echo "${ECHO_T}$CLANG_CPLUSPLUS" >&6 23411 +fi 23412 + 23413 ac_ext=cc 23414 ac_cpp='$CXXCPP $CPPFLAGS' 23415 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' 23416 @@ -11524,7 +12343,7 @@ 20457 23417 ac_main_return=return 20458 23418 20459 23419 cat > conftest.$ac_ext <<EOF 20460 23420 -#line 11527 "configure" 20461 +#line 123 23"configure"23421 +#line 12346 "configure" 20462 23422 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } 20463 23423 EOF 20464 23424 20465 @@ -11542,7 +123 38,7 @@23425 @@ -11542,7 +12361,7 @@ 20466 23426 # remark #981: operands are evaluated in unspecified order 20467 23427 # warning #269: invalid format string conversion 20468 23428 20469 23429 - { echo "$as_me:11545: checking for $CC warning options..." >&5 20470 + { echo "$as_me:123 41: checking for $CC warning options..." >&523430 + { echo "$as_me:12364: checking for $CC warning options..." >&5 20471 23431 echo "$as_me: checking for $CC warning options..." >&6;} 20472 23432 cf_save_CXXFLAGS="$CXXFLAGS" 20473 23433 EXTRA_CXXFLAGS="-Wall" 20474 @@ -11559,12 +123 55,12 @@23434 @@ -11559,12 +12378,12 @@ 20475 23435 wd981 20476 23436 do 20477 23437 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt" 20478 23438 - if { (eval echo "$as_me:11562: \"$ac_compile\"") >&5 20479 + if { (eval echo "$as_me:123 58: \"$ac_compile\"") >&523439 + if { (eval echo "$as_me:12381: \"$ac_compile\"") >&5 20480 23440 (eval $ac_compile) 2>&5 20481 23441 ac_status=$? 20482 23442 - echo "$as_me:11565: \$? = $ac_status" >&5 20483 + echo "$as_me:123 61: \$? = $ac_status" >&523443 + echo "$as_me:12384: \$? = $ac_status" >&5 20484 23444 (exit $ac_status); }; then 20485 23445 - test -n "$verbose" && echo "$as_me:11567: result: ... -$cf_opt" >&5 20486 + test -n "$verbose" && echo "$as_me:123 63: result: ... -$cf_opt" >&523446 + test -n "$verbose" && echo "$as_me:12386: result: ... -$cf_opt" >&5 20487 23447 echo "${ECHO_T}... -$cf_opt" >&6 20488 23448 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" 20489 23449 fi 20490 @@ -11573,7 +123 69,7 @@23450 @@ -11573,7 +12392,7 @@ 20491 23451 20492 23452 elif test "$GXX" = yes 20493 23453 then 20494 23454 - { echo "$as_me:11576: checking for $CXX warning options..." >&5 20495 + { echo "$as_me:123 72: checking for $CXX warning options..." >&523455 + { echo "$as_me:12395: checking for $CXX warning options..." >&5 20496 23456 echo "$as_me: checking for $CXX warning options..." >&6;} 20497 23457 cf_save_CXXFLAGS="$CXXFLAGS" 20498 23458 EXTRA_CXXFLAGS="-W -Wall" 20499 @@ -11602,16 +12 398,16 @@23459 @@ -11602,16 +12421,16 @@ 20500 23460 Wundef $cf_gxx_extra_warnings Wno-unused 20501 23461 do 20502 23462 CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt" 20503 23463 - if { (eval echo "$as_me:11605: \"$ac_compile\"") >&5 20504 + if { (eval echo "$as_me:124 01: \"$ac_compile\"") >&523464 + if { (eval echo "$as_me:12424: \"$ac_compile\"") >&5 20505 23465 (eval $ac_compile) 2>&5 20506 23466 ac_status=$? 20507 23467 - echo "$as_me:11608: \$? = $ac_status" >&5 20508 + echo "$as_me:124 04: \$? = $ac_status" >&523468 + echo "$as_me:12427: \$? = $ac_status" >&5 20509 23469 (exit $ac_status); }; then 20510 23470 - test -n "$verbose" && echo "$as_me:11610: result: ... -$cf_opt" >&5 20511 + test -n "$verbose" && echo "$as_me:124 06: result: ... -$cf_opt" >&523471 + test -n "$verbose" && echo "$as_me:12429: result: ... -$cf_opt" >&5 20512 23472 echo "${ECHO_T}... -$cf_opt" >&6 20513 23473 EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt" 20514 23474 else 20515 23475 - test -n "$verbose" && echo "$as_me:11614: result: ... no -$cf_opt" >&5 20516 + test -n "$verbose" && echo "$as_me:124 10: result: ... no -$cf_opt" >&523476 + test -n "$verbose" && echo "$as_me:12433: result: ... no -$cf_opt" >&5 20517 23477 echo "${ECHO_T}... no -$cf_opt" >&6 20518 23478 fi 20519 23479 done 20520 @@ -11647,10 +124 43,10 @@23480 @@ -11647,10 +12466,10 @@ 20521 23481 EOF 20522 23482 if test "$GCC" = yes 20523 23483 then 20524 23484 - { echo "$as_me:11650: checking for $CC __attribute__ directives..." >&5 20525 + { echo "$as_me:124 46: checking for $CC __attribute__ directives..." >&523485 + { echo "$as_me:12469: checking for $CC __attribute__ directives..." >&5 20526 23486 echo "$as_me: checking for $CC __attribute__ directives..." >&6;} 20527 23487 cat > conftest.$ac_ext <<EOF 20528 23488 -#line 11653 "${as_me:-configure}" 20529 +#line 124 49"${as_me:-configure}"23489 +#line 12472 "${as_me:-configure}" 20530 23490 #include "confdefs.h" 20531 23491 #include "conftest.h" 20532 23492 #include "conftest.i" 20533 @@ -11699,12 +12 495,12 @@23493 @@ -11699,12 +12518,12 @@ 20534 23494 ;; 20535 23495 esac 20536 23496 20537 23497 - if { (eval echo "$as_me:11702: \"$ac_compile\"") >&5 20538 + if { (eval echo "$as_me:12 498: \"$ac_compile\"") >&523498 + if { (eval echo "$as_me:12521: \"$ac_compile\"") >&5 20539 23499 (eval $ac_compile) 2>&5 20540 23500 ac_status=$? 20541 23501 - echo "$as_me:11705: \$? = $ac_status" >&5 20542 + echo "$as_me:125 01: \$? = $ac_status" >&523502 + echo "$as_me:12524: \$? = $ac_status" >&5 20543 23503 (exit $ac_status); }; then 20544 23504 - test -n "$verbose" && echo "$as_me:11707: result: ... $cf_attribute" >&5 20545 + test -n "$verbose" && echo "$as_me:125 03: result: ... $cf_attribute" >&523505 + test -n "$verbose" && echo "$as_me:12526: result: ... $cf_attribute" >&5 20546 23506 echo "${ECHO_T}... $cf_attribute" >&6 20547 23507 cat conftest.h >>confdefs.h 20548 23508 case $cf_attribute in #(vi 20549 @@ -11740,7 +12536,7 @@ 20550 fi 20551 23509 @@ -11739,8 +12558,100 @@ 23510 rm -rf conftest* 23511 fi 23512 23513 +echo "$as_me:12561: checking if you want to work around bogus compiler/loader warnings" >&5 23514 +echo $ECHO_N "checking if you want to work around bogus compiler/loader warnings... $ECHO_C" >&6 23515 + 23516 +# Check whether --enable-string-hacks or --disable-string-hacks was given. 23517 +if test "${enable_string_hacks+set}" = set; then 23518 + enableval="$enable_string_hacks" 23519 + with_string_hacks=$enableval 23520 +else 23521 + with_string_hacks=no 23522 +fi; 23523 +echo "$as_me:12571: result: $with_string_hacks" >&5 23524 +echo "${ECHO_T}$with_string_hacks" >&6 23525 + 23526 +if test "x$with_string_hacks" = "xyes"; then 23527 + cat >>confdefs.h <<\EOF 23528 +#define USE_STRING_HACKS 1 23529 +EOF 23530 + 23531 + { echo "$as_me:12579: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5 23532 +echo "$as_me: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&2;} 23533 + 23534 +for ac_func in strlcat strlcpy snprintf 23535 +do 23536 +as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 23537 +echo "$as_me:12585: checking for $ac_func" >&5 23538 +echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 23539 +if eval "test \"\${$as_ac_var+set}\" = set"; then 23540 + echo $ECHO_N "(cached) $ECHO_C" >&6 23541 +else 23542 + cat >conftest.$ac_ext <<_ACEOF 23543 +#line 12591 "configure" 23544 +#include "confdefs.h" 23545 +/* System header to define __stub macros and hopefully few prototypes, 23546 + which can conflict with char $ac_func (); below. */ 23547 +#include <assert.h> 23548 +/* Override any gcc2 internal prototype to avoid an error. */ 23549 +#ifdef __cplusplus 23550 +extern "C" 23551 +#endif 23552 +/* We use char because int might match the return type of a gcc2 23553 + builtin and then its argument prototype would still apply. */ 23554 +char $ac_func (); 23555 +char (*f) (); 23556 + 23557 +int 23558 +main () 23559 +{ 23560 +/* The GNU C library defines this for functions which it implements 23561 + to always fail with ENOSYS. Some functions are actually named 23562 + something starting with __ and the normal name is an alias. */ 23563 +#if defined (__stub_$ac_func) || defined (__stub___$ac_func) 23564 +choke me 23565 +#else 23566 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 23567 +#endif 23568 + 23569 + ; 23570 + return 0; 23571 +} 23572 +_ACEOF 23573 +rm -f conftest.$ac_objext conftest$ac_exeext 23574 +if { (eval echo "$as_me:12622: \"$ac_link\"") >&5 23575 + (eval $ac_link) 2>&5 23576 + ac_status=$? 23577 + echo "$as_me:12625: \$? = $ac_status" >&5 23578 + (exit $ac_status); } && 23579 + { ac_try='test -s conftest$ac_exeext' 23580 + { (eval echo "$as_me:12628: \"$ac_try\"") >&5 23581 + (eval $ac_try) 2>&5 23582 + ac_status=$? 23583 + echo "$as_me:12631: \$? = $ac_status" >&5 23584 + (exit $ac_status); }; }; then 23585 + eval "$as_ac_var=yes" 23586 +else 23587 + echo "$as_me: failed program was:" >&5 23588 +cat conftest.$ac_ext >&5 23589 +eval "$as_ac_var=no" 23590 +fi 23591 +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23592 +fi 23593 +echo "$as_me:12641: result: `eval echo '${'$as_ac_var'}'`" >&5 23594 +echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 23595 +if test `eval echo '${'$as_ac_var'}'` = yes; then 23596 + cat >>confdefs.h <<EOF 23597 +#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 23598 +EOF 23599 + 23600 +fi 23601 +done 23602 + 23603 +fi 23604 + 20552 23605 ### use option --enable-assertions to turn on generation of assertion code 20553 23606 -echo "$as_me:11743: checking if you want to enable runtime assertions" >&5 20554 +echo "$as_me:12 539: checking if you want to enable runtime assertions" >&523607 +echo "$as_me:12654: checking if you want to enable runtime assertions" >&5 20555 23608 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6 20556 23609 20557 23610 # Check whether --enable-assertions or --disable-assertions was given. 20558 @@ -11750, 7 +12546,7@@23611 @@ -11750,16 +12661,12 @@ 20559 23612 else 20560 23613 with_assertions=no 20561 23614 fi; 20562 23615 -echo "$as_me:11753: result: $with_assertions" >&5 20563 +echo "$as_me:12 549: result: $with_assertions" >&523616 +echo "$as_me:12664: result: $with_assertions" >&5 20564 23617 echo "${ECHO_T}$with_assertions" >&6 20565 23618 if test -n "$GCC" 20566 23619 then 20567 @@ -11770,7 +12566,7 @@ 23620 if test "$with_assertions" = no 23621 then 23622 - cat >>confdefs.h <<\EOF 23623 -#define NDEBUG 1 23624 -EOF 23625 - 23626 CPPFLAGS="$CPPFLAGS -DNDEBUG" 23627 else 23628 23629 @@ -11770,7 +12677,7 @@ 20568 23630 20569 23631 ### use option --disable-leaks to suppress "permanent" leaks, for testing 20570 23632 20571 23633 -echo "$as_me:11773: checking if you want to use dmalloc for testing" >&5 20572 +echo "$as_me:12 569: checking if you want to use dmalloc for testing" >&523634 +echo "$as_me:12680: checking if you want to use dmalloc for testing" >&5 20573 23635 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 20574 23636 20575 23637 # Check whether --with-dmalloc or --without-dmalloc was given. 20576 @@ -11786,7 +12 582,7 @@23638 @@ -11786,7 +12693,7 @@ 20577 23639 else 20578 23640 with_dmalloc= 20579 23641 fi; 20580 23642 -echo "$as_me:11789: result: ${with_dmalloc:-no}" >&5 20581 +echo "$as_me:12 585: result: ${with_dmalloc:-no}" >&523643 +echo "$as_me:12696: result: ${with_dmalloc:-no}" >&5 20582 23644 echo "${ECHO_T}${with_dmalloc:-no}" >&6 20583 23645 20584 23646 case .$with_cflags in #(vi 20585 @@ -11880,23 +12 676,23 @@23647 @@ -11880,23 +12787,23 @@ 20586 23648 esac 20587 23649 20588 23650 if test "$with_dmalloc" = yes ; then 20589 23651 - echo "$as_me:11883: checking for dmalloc.h" >&5 20590 + echo "$as_me:12 679: checking for dmalloc.h" >&523652 + echo "$as_me:12790: checking for dmalloc.h" >&5 20591 23653 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 20592 23654 if test "${ac_cv_header_dmalloc_h+set}" = set; then … … 20595 23657 cat >conftest.$ac_ext <<_ACEOF 20596 23658 -#line 11889 "configure" 20597 +#line 12 685"configure"23659 +#line 12796 "configure" 20598 23660 #include "confdefs.h" 20599 23661 #include <dmalloc.h> 20600 23662 _ACEOF 20601 23663 -if { (eval echo "$as_me:11893: \"$ac_cpp conftest.$ac_ext\"") >&5 20602 +if { (eval echo "$as_me:12 689: \"$ac_cpp conftest.$ac_ext\"") >&523664 +if { (eval echo "$as_me:12800: \"$ac_cpp conftest.$ac_ext\"") >&5 20603 23665 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 20604 23666 ac_status=$? … … 20607 23669 cat conftest.err >&5 20608 23670 - echo "$as_me:11899: \$? = $ac_status" >&5 20609 + echo "$as_me:12 695: \$? = $ac_status" >&523671 + echo "$as_me:12806: \$? = $ac_status" >&5 20610 23672 (exit $ac_status); } >/dev/null; then 20611 23673 if test -s conftest.err; then 20612 23674 ac_cpp_err=$ac_c_preproc_warn_flag 20613 @@ -11915,11 +12 711,11 @@23675 @@ -11915,11 +12822,11 @@ 20614 23676 fi 20615 23677 rm -f conftest.err conftest.$ac_ext 20616 23678 fi 20617 23679 -echo "$as_me:11918: result: $ac_cv_header_dmalloc_h" >&5 20618 +echo "$as_me:12 714: result: $ac_cv_header_dmalloc_h" >&523680 +echo "$as_me:12825: result: $ac_cv_header_dmalloc_h" >&5 20619 23681 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 20620 23682 if test $ac_cv_header_dmalloc_h = yes; then 20621 23683 20622 23684 -echo "$as_me:11922: checking for dmalloc_debug in -ldmalloc" >&5 20623 +echo "$as_me:12 718: checking for dmalloc_debug in -ldmalloc" >&523685 +echo "$as_me:12829: checking for dmalloc_debug in -ldmalloc" >&5 20624 23686 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 20625 23687 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then 20626 23688 echo $ECHO_N "(cached) $ECHO_C" >&6 20627 @@ -11927,7 +12 723,7 @@23689 @@ -11927,7 +12834,7 @@ 20628 23690 ac_check_lib_save_LIBS=$LIBS 20629 23691 LIBS="-ldmalloc $LIBS" 20630 23692 cat >conftest.$ac_ext <<_ACEOF 20631 23693 -#line 11930 "configure" 20632 +#line 12 726"configure"23694 +#line 12837 "configure" 20633 23695 #include "confdefs.h" 20634 23696 20635 23697 /* Override any gcc2 internal prototype to avoid an error. */ 20636 @@ -11946,16 +12 742,16 @@23698 @@ -11946,16 +12853,16 @@ 20637 23699 } 20638 23700 _ACEOF 20639 23701 rm -f conftest.$ac_objext conftest$ac_exeext 20640 23702 -if { (eval echo "$as_me:11949: \"$ac_link\"") >&5 20641 +if { (eval echo "$as_me:12 745: \"$ac_link\"") >&523703 +if { (eval echo "$as_me:12856: \"$ac_link\"") >&5 20642 23704 (eval $ac_link) 2>&5 20643 23705 ac_status=$? 20644 23706 - echo "$as_me:11952: \$? = $ac_status" >&5 20645 + echo "$as_me:12 748: \$? = $ac_status" >&523707 + echo "$as_me:12859: \$? = $ac_status" >&5 20646 23708 (exit $ac_status); } && 20647 23709 { ac_try='test -s conftest$ac_exeext' 20648 23710 - { (eval echo "$as_me:11955: \"$ac_try\"") >&5 20649 + { (eval echo "$as_me:12 751: \"$ac_try\"") >&523711 + { (eval echo "$as_me:12862: \"$ac_try\"") >&5 20650 23712 (eval $ac_try) 2>&5 20651 23713 ac_status=$? 20652 23714 - echo "$as_me:11958: \$? = $ac_status" >&5 20653 + echo "$as_me:12 754: \$? = $ac_status" >&523715 + echo "$as_me:12865: \$? = $ac_status" >&5 20654 23716 (exit $ac_status); }; }; then 20655 23717 ac_cv_lib_dmalloc_dmalloc_debug=yes 20656 23718 else 20657 @@ -11966,7 +12 762,7 @@23719 @@ -11966,7 +12873,7 @@ 20658 23720 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20659 23721 LIBS=$ac_check_lib_save_LIBS 20660 23722 fi 20661 23723 -echo "$as_me:11969: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 20662 +echo "$as_me:12 765: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&523724 +echo "$as_me:12876: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 20663 23725 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 20664 23726 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then 20665 23727 cat >>confdefs.h <<EOF 20666 @@ -11981,7 +12 777,7 @@23728 @@ -11981,7 +12888,7 @@ 20667 23729 20668 23730 fi 20669 23731 20670 23732 -echo "$as_me:11984: checking if you want to use dbmalloc for testing" >&5 20671 +echo "$as_me:12 780: checking if you want to use dbmalloc for testing" >&523733 +echo "$as_me:12891: checking if you want to use dbmalloc for testing" >&5 20672 23734 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 20673 23735 20674 23736 # Check whether --with-dbmalloc or --without-dbmalloc was given. 20675 @@ -11997,7 +12 793,7 @@23737 @@ -11997,7 +12904,7 @@ 20676 23738 else 20677 23739 with_dbmalloc= 20678 23740 fi; 20679 23741 -echo "$as_me:12000: result: ${with_dbmalloc:-no}" >&5 20680 +echo "$as_me:12 796: result: ${with_dbmalloc:-no}" >&523742 +echo "$as_me:12907: result: ${with_dbmalloc:-no}" >&5 20681 23743 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 20682 23744 20683 23745 case .$with_cflags in #(vi 20684 @@ -12091,23 +12 887,23 @@23746 @@ -12091,23 +12998,23 @@ 20685 23747 esac 20686 23748 20687 23749 if test "$with_dbmalloc" = yes ; then 20688 23750 - echo "$as_me:12094: checking for dbmalloc.h" >&5 20689 + echo "$as_me:1 2890: checking for dbmalloc.h" >&523751 + echo "$as_me:13001: checking for dbmalloc.h" >&5 20690 23752 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 20691 23753 if test "${ac_cv_header_dbmalloc_h+set}" = set; then … … 20694 23756 cat >conftest.$ac_ext <<_ACEOF 20695 23757 -#line 12100 "configure" 20696 +#line 1 2896"configure"23758 +#line 13007 "configure" 20697 23759 #include "confdefs.h" 20698 23760 #include <dbmalloc.h> 20699 23761 _ACEOF 20700 23762 -if { (eval echo "$as_me:12104: \"$ac_cpp conftest.$ac_ext\"") >&5 20701 +if { (eval echo "$as_me:1 2900: \"$ac_cpp conftest.$ac_ext\"") >&523763 +if { (eval echo "$as_me:13011: \"$ac_cpp conftest.$ac_ext\"") >&5 20702 23764 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 20703 23765 ac_status=$? … … 20706 23768 cat conftest.err >&5 20707 23769 - echo "$as_me:12110: \$? = $ac_status" >&5 20708 + echo "$as_me:1 2906: \$? = $ac_status" >&523770 + echo "$as_me:13017: \$? = $ac_status" >&5 20709 23771 (exit $ac_status); } >/dev/null; then 20710 23772 if test -s conftest.err; then 20711 23773 ac_cpp_err=$ac_c_preproc_warn_flag 20712 @@ -12126,11 +1 2922,11 @@23774 @@ -12126,11 +13033,11 @@ 20713 23775 fi 20714 23776 rm -f conftest.err conftest.$ac_ext 20715 23777 fi 20716 23778 -echo "$as_me:12129: result: $ac_cv_header_dbmalloc_h" >&5 20717 +echo "$as_me:1 2925: result: $ac_cv_header_dbmalloc_h" >&523779 +echo "$as_me:13036: result: $ac_cv_header_dbmalloc_h" >&5 20718 23780 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 20719 23781 if test $ac_cv_header_dbmalloc_h = yes; then 20720 23782 20721 23783 -echo "$as_me:12133: checking for debug_malloc in -ldbmalloc" >&5 20722 +echo "$as_me:1 2929: checking for debug_malloc in -ldbmalloc" >&523784 +echo "$as_me:13040: checking for debug_malloc in -ldbmalloc" >&5 20723 23785 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 20724 23786 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then 20725 23787 echo $ECHO_N "(cached) $ECHO_C" >&6 20726 @@ -12138,7 +1 2934,7 @@23788 @@ -12138,7 +13045,7 @@ 20727 23789 ac_check_lib_save_LIBS=$LIBS 20728 23790 LIBS="-ldbmalloc $LIBS" 20729 23791 cat >conftest.$ac_ext <<_ACEOF 20730 23792 -#line 12141 "configure" 20731 +#line 1 2937"configure"23793 +#line 13048 "configure" 20732 23794 #include "confdefs.h" 20733 23795 20734 23796 /* Override any gcc2 internal prototype to avoid an error. */ 20735 @@ -12157,16 +1 2953,16 @@23797 @@ -12157,16 +13064,16 @@ 20736 23798 } 20737 23799 _ACEOF 20738 23800 rm -f conftest.$ac_objext conftest$ac_exeext 20739 23801 -if { (eval echo "$as_me:12160: \"$ac_link\"") >&5 20740 +if { (eval echo "$as_me:1 2956: \"$ac_link\"") >&523802 +if { (eval echo "$as_me:13067: \"$ac_link\"") >&5 20741 23803 (eval $ac_link) 2>&5 20742 23804 ac_status=$? 20743 23805 - echo "$as_me:12163: \$? = $ac_status" >&5 20744 + echo "$as_me:1 2959: \$? = $ac_status" >&523806 + echo "$as_me:13070: \$? = $ac_status" >&5 20745 23807 (exit $ac_status); } && 20746 23808 { ac_try='test -s conftest$ac_exeext' 20747 23809 - { (eval echo "$as_me:12166: \"$ac_try\"") >&5 20748 + { (eval echo "$as_me:1 2962: \"$ac_try\"") >&523810 + { (eval echo "$as_me:13073: \"$ac_try\"") >&5 20749 23811 (eval $ac_try) 2>&5 20750 23812 ac_status=$? 20751 23813 - echo "$as_me:12169: \$? = $ac_status" >&5 20752 + echo "$as_me:1 2965: \$? = $ac_status" >&523814 + echo "$as_me:13076: \$? = $ac_status" >&5 20753 23815 (exit $ac_status); }; }; then 20754 23816 ac_cv_lib_dbmalloc_debug_malloc=yes 20755 23817 else 20756 @@ -12177,7 +1 2973,7 @@23818 @@ -12177,7 +13084,7 @@ 20757 23819 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20758 23820 LIBS=$ac_check_lib_save_LIBS 20759 23821 fi 20760 23822 -echo "$as_me:12180: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 20761 +echo "$as_me:1 2976: result: $ac_cv_lib_dbmalloc_debug_malloc" >&523823 +echo "$as_me:13087: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 20762 23824 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 20763 23825 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then 20764 23826 cat >>confdefs.h <<EOF 20765 @@ -12192,7 +1 2988,7 @@23827 @@ -12192,7 +13099,7 @@ 20766 23828 20767 23829 fi 20768 23830 20769 23831 -echo "$as_me:12195: checking if you want to use valgrind for testing" >&5 20770 +echo "$as_me:1 2991: checking if you want to use valgrind for testing" >&523832 +echo "$as_me:13102: checking if you want to use valgrind for testing" >&5 20771 23833 echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6 20772 23834 20773 23835 # Check whether --with-valgrind or --without-valgrind was given. 20774 @@ -12208,7 +13 004,7 @@23836 @@ -12208,7 +13115,7 @@ 20775 23837 else 20776 23838 with_valgrind= 20777 23839 fi; 20778 23840 -echo "$as_me:12211: result: ${with_valgrind:-no}" >&5 20779 +echo "$as_me:13 007: result: ${with_valgrind:-no}" >&523841 +echo "$as_me:13118: result: ${with_valgrind:-no}" >&5 20780 23842 echo "${ECHO_T}${with_valgrind:-no}" >&6 20781 23843 20782 23844 case .$with_cflags in #(vi 20783 @@ -12301,7 +13 097,7 @@23845 @@ -12301,7 +13208,7 @@ 20784 23846 ;; 20785 23847 esac 20786 23848 20787 23849 -echo "$as_me:12304: checking if you want to perform memory-leak testing" >&5 20788 +echo "$as_me:13 100: checking if you want to perform memory-leak testing" >&523850 +echo "$as_me:13211: checking if you want to perform memory-leak testing" >&5 20789 23851 echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6 20790 23852 20791 23853 # Check whether --enable-leaks or --disable-leaks was given. 20792 @@ -12311,7 +13 107,7 @@23854 @@ -12311,7 +13218,7 @@ 20793 23855 else 20794 23856 : ${with_no_leaks:=no} 20795 23857 fi; 20796 23858 -echo "$as_me:12314: result: $with_no_leaks" >&5 20797 +echo "$as_me:13 110: result: $with_no_leaks" >&523859 +echo "$as_me:13221: result: $with_no_leaks" >&5 20798 23860 echo "${ECHO_T}$with_no_leaks" >&6 20799 23861 20800 23862 if test "$with_no_leaks" = yes ; then 20801 @@ -12360,7 +13 156,7 @@23863 @@ -12360,7 +13267,7 @@ 20802 23864 ;; 20803 23865 esac 20804 23866 20805 23867 -echo "$as_me:12363: checking whether to add trace feature to all models" >&5 20806 +echo "$as_me:13 159: checking whether to add trace feature to all models" >&523868 +echo "$as_me:13270: checking whether to add trace feature to all models" >&5 20807 23869 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6 20808 23870 20809 23871 # Check whether --with-trace or --without-trace was given. 20810 @@ -12370,7 +13 166,7 @@23872 @@ -12370,7 +13277,7 @@ 20811 23873 else 20812 23874 cf_with_trace=$cf_all_traces 20813 23875 fi; 20814 23876 -echo "$as_me:12373: result: $cf_with_trace" >&5 20815 +echo "$as_me:13 169: result: $cf_with_trace" >&523877 +echo "$as_me:13280: result: $cf_with_trace" >&5 20816 23878 echo "${ECHO_T}$cf_with_trace" >&6 20817 23879 20818 23880 if test "$cf_with_trace" = yes ; then 20819 @@ -12465,13 +13 261,13 @@23881 @@ -12465,13 +13372,13 @@ 20820 23882 *mingw32*) #(vi 20821 23883 ;; 20822 23884 *) 20823 23885 -echo "$as_me:12468: checking for gettimeofday" >&5 20824 +echo "$as_me:13 264: checking for gettimeofday" >&523886 +echo "$as_me:13375: checking for gettimeofday" >&5 20825 23887 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6 20826 23888 if test "${ac_cv_func_gettimeofday+set}" = set; then … … 20829 23891 cat >conftest.$ac_ext <<_ACEOF 20830 23892 -#line 12474 "configure" 20831 +#line 13 270"configure"23893 +#line 13381 "configure" 20832 23894 #include "confdefs.h" 20833 23895 /* System header to define __stub macros and hopefully few prototypes, 20834 23896 which can conflict with char gettimeofday (); below. */ 20835 @@ -12502,16 +13298,16 @@ 23897 @@ -12494,7 +13401,7 @@ 23898 #if defined (__stub_gettimeofday) || defined (__stub___gettimeofday) 23899 choke me 23900 #else 23901 -f = gettimeofday; 23902 +f = gettimeofday; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 23903 #endif 23904 23905 ; 23906 @@ -12502,16 +13409,16 @@ 20836 23907 } 20837 23908 _ACEOF 20838 23909 rm -f conftest.$ac_objext conftest$ac_exeext 20839 23910 -if { (eval echo "$as_me:12505: \"$ac_link\"") >&5 20840 +if { (eval echo "$as_me:13 301: \"$ac_link\"") >&523911 +if { (eval echo "$as_me:13412: \"$ac_link\"") >&5 20841 23912 (eval $ac_link) 2>&5 20842 23913 ac_status=$? 20843 23914 - echo "$as_me:12508: \$? = $ac_status" >&5 20844 + echo "$as_me:13 304: \$? = $ac_status" >&523915 + echo "$as_me:13415: \$? = $ac_status" >&5 20845 23916 (exit $ac_status); } && 20846 23917 { ac_try='test -s conftest$ac_exeext' 20847 23918 - { (eval echo "$as_me:12511: \"$ac_try\"") >&5 20848 + { (eval echo "$as_me:13 307: \"$ac_try\"") >&523919 + { (eval echo "$as_me:13418: \"$ac_try\"") >&5 20849 23920 (eval $ac_try) 2>&5 20850 23921 ac_status=$? 20851 23922 - echo "$as_me:12514: \$? = $ac_status" >&5 20852 + echo "$as_me:13 310: \$? = $ac_status" >&523923 + echo "$as_me:13421: \$? = $ac_status" >&5 20853 23924 (exit $ac_status); }; }; then 20854 23925 ac_cv_func_gettimeofday=yes 20855 23926 else 20856 @@ -12521,7 +13 317,7 @@23927 @@ -12521,7 +13428,7 @@ 20857 23928 fi 20858 23929 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20859 23930 fi 20860 23931 -echo "$as_me:12524: result: $ac_cv_func_gettimeofday" >&5 20861 +echo "$as_me:13 320: result: $ac_cv_func_gettimeofday" >&523932 +echo "$as_me:13431: result: $ac_cv_func_gettimeofday" >&5 20862 23933 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6 20863 23934 if test $ac_cv_func_gettimeofday = yes; then 20864 23935 cat >>confdefs.h <<\EOF 20865 @@ -12530,7 +13 326,7 @@23936 @@ -12530,7 +13437,7 @@ 20866 23937 20867 23938 else 20868 23939 20869 23940 -echo "$as_me:12533: checking for gettimeofday in -lbsd" >&5 20870 +echo "$as_me:13 329: checking for gettimeofday in -lbsd" >&523941 +echo "$as_me:13440: checking for gettimeofday in -lbsd" >&5 20871 23942 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6 20872 23943 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then 20873 23944 echo $ECHO_N "(cached) $ECHO_C" >&6 20874 @@ -12538,7 +13 334,7 @@23945 @@ -12538,7 +13445,7 @@ 20875 23946 ac_check_lib_save_LIBS=$LIBS 20876 23947 LIBS="-lbsd $LIBS" 20877 23948 cat >conftest.$ac_ext <<_ACEOF 20878 23949 -#line 12541 "configure" 20879 +#line 13 337"configure"23950 +#line 13448 "configure" 20880 23951 #include "confdefs.h" 20881 23952 20882 23953 /* Override any gcc2 internal prototype to avoid an error. */ 20883 @@ -12557,16 +13 353,16 @@23954 @@ -12557,16 +13464,16 @@ 20884 23955 } 20885 23956 _ACEOF 20886 23957 rm -f conftest.$ac_objext conftest$ac_exeext 20887 23958 -if { (eval echo "$as_me:12560: \"$ac_link\"") >&5 20888 +if { (eval echo "$as_me:13 356: \"$ac_link\"") >&523959 +if { (eval echo "$as_me:13467: \"$ac_link\"") >&5 20889 23960 (eval $ac_link) 2>&5 20890 23961 ac_status=$? 20891 23962 - echo "$as_me:12563: \$? = $ac_status" >&5 20892 + echo "$as_me:13 359: \$? = $ac_status" >&523963 + echo "$as_me:13470: \$? = $ac_status" >&5 20893 23964 (exit $ac_status); } && 20894 23965 { ac_try='test -s conftest$ac_exeext' 20895 23966 - { (eval echo "$as_me:12566: \"$ac_try\"") >&5 20896 + { (eval echo "$as_me:13 362: \"$ac_try\"") >&523967 + { (eval echo "$as_me:13473: \"$ac_try\"") >&5 20897 23968 (eval $ac_try) 2>&5 20898 23969 ac_status=$? 20899 23970 - echo "$as_me:12569: \$? = $ac_status" >&5 20900 + echo "$as_me:13 365: \$? = $ac_status" >&523971 + echo "$as_me:13476: \$? = $ac_status" >&5 20901 23972 (exit $ac_status); }; }; then 20902 23973 ac_cv_lib_bsd_gettimeofday=yes 20903 23974 else 20904 @@ -12577,7 +13 373,7 @@23975 @@ -12577,7 +13484,7 @@ 20905 23976 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20906 23977 LIBS=$ac_check_lib_save_LIBS 20907 23978 fi 20908 23979 -echo "$as_me:12580: result: $ac_cv_lib_bsd_gettimeofday" >&5 20909 +echo "$as_me:13 376: result: $ac_cv_lib_bsd_gettimeofday" >&523980 +echo "$as_me:13487: result: $ac_cv_lib_bsd_gettimeofday" >&5 20910 23981 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6 20911 23982 if test $ac_cv_lib_bsd_gettimeofday = yes; then 20912 23983 cat >>confdefs.h <<\EOF 20913 @@ -12591,14 +13 387,14 @@23984 @@ -12591,14 +13498,14 @@ 20914 23985 ;; 20915 23986 esac 20916 23987 20917 23988 -echo "$as_me:12594: checking if -lm needed for math functions" >&5 20918 +echo "$as_me:13 390: checking if -lm needed for math functions" >&523989 +echo "$as_me:13501: checking if -lm needed for math functions" >&5 20919 23990 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6 20920 23991 if test "${cf_cv_need_libm+set}" = set; then … … 20924 23995 cat >conftest.$ac_ext <<_ACEOF 20925 23996 -#line 12601 "configure" 20926 +#line 13 397"configure"23997 +#line 13508 "configure" 20927 23998 #include "confdefs.h" 20928 23999 20929 24000 #include <stdio.h> 20930 @@ -12613,16 +13 409,16 @@24001 @@ -12613,16 +13520,16 @@ 20931 24002 } 20932 24003 _ACEOF 20933 24004 rm -f conftest.$ac_objext conftest$ac_exeext 20934 24005 -if { (eval echo "$as_me:12616: \"$ac_link\"") >&5 20935 +if { (eval echo "$as_me:13 412: \"$ac_link\"") >&524006 +if { (eval echo "$as_me:13523: \"$ac_link\"") >&5 20936 24007 (eval $ac_link) 2>&5 20937 24008 ac_status=$? 20938 24009 - echo "$as_me:12619: \$? = $ac_status" >&5 20939 + echo "$as_me:13 415: \$? = $ac_status" >&524010 + echo "$as_me:13526: \$? = $ac_status" >&5 20940 24011 (exit $ac_status); } && 20941 24012 { ac_try='test -s conftest$ac_exeext' 20942 24013 - { (eval echo "$as_me:12622: \"$ac_try\"") >&5 20943 + { (eval echo "$as_me:13 418: \"$ac_try\"") >&524014 + { (eval echo "$as_me:13529: \"$ac_try\"") >&5 20944 24015 (eval $ac_try) 2>&5 20945 24016 ac_status=$? 20946 24017 - echo "$as_me:12625: \$? = $ac_status" >&5 20947 + echo "$as_me:13 421: \$? = $ac_status" >&524018 + echo "$as_me:13532: \$? = $ac_status" >&5 20948 24019 (exit $ac_status); }; }; then 20949 24020 cf_cv_need_libm=no 20950 24021 else 20951 @@ -12632,7 +13 428,7 @@24022 @@ -12632,7 +13539,7 @@ 20952 24023 fi 20953 24024 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 20954 24025 fi 20955 24026 -echo "$as_me:12635: result: $cf_cv_need_libm" >&5 20956 +echo "$as_me:13 431: result: $cf_cv_need_libm" >&524027 +echo "$as_me:13542: result: $cf_cv_need_libm" >&5 20957 24028 echo "${ECHO_T}$cf_cv_need_libm" >&6 20958 24029 if test "$cf_cv_need_libm" = yes 20959 24030 then 20960 @@ -12640,13 +13 436,13 @@24031 @@ -12640,13 +13547,13 @@ 20961 24032 fi 20962 24033 20963 24034 ### Checks for header files. 20964 24035 -echo "$as_me:12643: checking for ANSI C header files" >&5 20965 +echo "$as_me:13 439: checking for ANSI C header files" >&524036 +echo "$as_me:13550: checking for ANSI C header files" >&5 20966 24037 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 20967 24038 if test "${ac_cv_header_stdc+set}" = set; then … … 20970 24041 cat >conftest.$ac_ext <<_ACEOF 20971 24042 -#line 12649 "configure" 20972 +#line 13 445"configure"24043 +#line 13556 "configure" 20973 24044 #include "confdefs.h" 20974 24045 #include <stdlib.h> 20975 24046 #include <stdarg.h> 20976 @@ -12654,13 +13 450,13 @@24047 @@ -12654,13 +13561,13 @@ 20977 24048 #include <float.h> 20978 24049 20979 24050 _ACEOF 20980 24051 -if { (eval echo "$as_me:12657: \"$ac_cpp conftest.$ac_ext\"") >&5 20981 +if { (eval echo "$as_me:13 453: \"$ac_cpp conftest.$ac_ext\"") >&524052 +if { (eval echo "$as_me:13564: \"$ac_cpp conftest.$ac_ext\"") >&5 20982 24053 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 20983 24054 ac_status=$? … … 20986 24057 cat conftest.err >&5 20987 24058 - echo "$as_me:12663: \$? = $ac_status" >&5 20988 + echo "$as_me:13 459: \$? = $ac_status" >&524059 + echo "$as_me:13570: \$? = $ac_status" >&5 20989 24060 (exit $ac_status); } >/dev/null; then 20990 24061 if test -s conftest.err; then 20991 24062 ac_cpp_err=$ac_c_preproc_warn_flag 20992 @@ -12682,7 +13 478,7 @@24063 @@ -12682,7 +13589,7 @@ 20993 24064 if test $ac_cv_header_stdc = yes; then 20994 24065 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 20995 24066 cat >conftest.$ac_ext <<_ACEOF 20996 24067 -#line 12685 "configure" 20997 +#line 13 481"configure"24068 +#line 13592 "configure" 20998 24069 #include "confdefs.h" 20999 24070 #include <string.h> 21000 24071 21001 @@ -12700,7 +13 496,7 @@24072 @@ -12700,7 +13607,7 @@ 21002 24073 if test $ac_cv_header_stdc = yes; then 21003 24074 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 21004 24075 cat >conftest.$ac_ext <<_ACEOF 21005 24076 -#line 12703 "configure" 21006 +#line 13 499"configure"24077 +#line 13610 "configure" 21007 24078 #include "confdefs.h" 21008 24079 #include <stdlib.h> 21009 24080 21010 @@ -12721,7 +13 517,7 @@24081 @@ -12721,7 +13628,7 @@ 21011 24082 : 21012 24083 else 21013 24084 cat >conftest.$ac_ext <<_ACEOF 21014 24085 -#line 12724 "configure" 21015 +#line 13 520"configure"24086 +#line 13631 "configure" 21016 24087 #include "confdefs.h" 21017 24088 #include <ctype.h> 21018 24089 #if ((' ' & 0x0FF) == 0x020) 21019 @@ -12747,15 +13 543,15 @@24090 @@ -12747,15 +13654,15 @@ 21020 24091 } 21021 24092 _ACEOF 21022 24093 rm -f conftest$ac_exeext 21023 24094 -if { (eval echo "$as_me:12750: \"$ac_link\"") >&5 21024 +if { (eval echo "$as_me:13 546: \"$ac_link\"") >&524095 +if { (eval echo "$as_me:13657: \"$ac_link\"") >&5 21025 24096 (eval $ac_link) 2>&5 21026 24097 ac_status=$? 21027 24098 - echo "$as_me:12753: \$? = $ac_status" >&5 21028 + echo "$as_me:13 549: \$? = $ac_status" >&524099 + echo "$as_me:13660: \$? = $ac_status" >&5 21029 24100 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 21030 24101 - { (eval echo "$as_me:12755: \"$ac_try\"") >&5 21031 + { (eval echo "$as_me:13 551: \"$ac_try\"") >&524102 + { (eval echo "$as_me:13662: \"$ac_try\"") >&5 21032 24103 (eval $ac_try) 2>&5 21033 24104 ac_status=$? 21034 24105 - echo "$as_me:12758: \$? = $ac_status" >&5 21035 + echo "$as_me:13 554: \$? = $ac_status" >&524106 + echo "$as_me:13665: \$? = $ac_status" >&5 21036 24107 (exit $ac_status); }; }; then 21037 24108 : 21038 24109 else 21039 @@ -12768,7 +13 564,7 @@24110 @@ -12768,7 +13675,7 @@ 21040 24111 fi 21041 24112 fi 21042 24113 fi 21043 24114 -echo "$as_me:12771: result: $ac_cv_header_stdc" >&5 21044 +echo "$as_me:13 567: result: $ac_cv_header_stdc" >&524115 +echo "$as_me:13678: result: $ac_cv_header_stdc" >&5 21045 24116 echo "${ECHO_T}$ac_cv_header_stdc" >&6 21046 24117 if test $ac_cv_header_stdc = yes; then 21047 24118 21048 @@ -12781,13 +13 577,13 @@24119 @@ -12781,13 +13688,13 @@ 21049 24120 ac_header_dirent=no 21050 24121 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do 21051 24122 as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` 21052 24123 -echo "$as_me:12784: checking for $ac_hdr that defines DIR" >&5 21053 +echo "$as_me:13 580: checking for $ac_hdr that defines DIR" >&524124 +echo "$as_me:13691: checking for $ac_hdr that defines DIR" >&5 21054 24125 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 21055 24126 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 21058 24129 cat >conftest.$ac_ext <<_ACEOF 21059 24130 -#line 12790 "configure" 21060 +#line 13 586"configure"24131 +#line 13697 "configure" 21061 24132 #include "confdefs.h" 21062 24133 #include <sys/types.h> 21063 24134 #include <$ac_hdr> 21064 @@ -12802,16 +13 598,16 @@24135 @@ -12802,16 +13709,16 @@ 21065 24136 } 21066 24137 _ACEOF 21067 24138 rm -f conftest.$ac_objext 21068 24139 -if { (eval echo "$as_me:12805: \"$ac_compile\"") >&5 21069 +if { (eval echo "$as_me:13 601: \"$ac_compile\"") >&524140 +if { (eval echo "$as_me:13712: \"$ac_compile\"") >&5 21070 24141 (eval $ac_compile) 2>&5 21071 24142 ac_status=$? 21072 24143 - echo "$as_me:12808: \$? = $ac_status" >&5 21073 + echo "$as_me:13 604: \$? = $ac_status" >&524144 + echo "$as_me:13715: \$? = $ac_status" >&5 21074 24145 (exit $ac_status); } && 21075 24146 { ac_try='test -s conftest.$ac_objext' 21076 24147 - { (eval echo "$as_me:12811: \"$ac_try\"") >&5 21077 + { (eval echo "$as_me:13 607: \"$ac_try\"") >&524148 + { (eval echo "$as_me:13718: \"$ac_try\"") >&5 21078 24149 (eval $ac_try) 2>&5 21079 24150 ac_status=$? 21080 24151 - echo "$as_me:12814: \$? = $ac_status" >&5 21081 + echo "$as_me:13 610: \$? = $ac_status" >&524152 + echo "$as_me:13721: \$? = $ac_status" >&5 21082 24153 (exit $ac_status); }; }; then 21083 24154 eval "$as_ac_Header=yes" 21084 24155 else 21085 @@ -12821,7 +13 617,7 @@24156 @@ -12821,7 +13728,7 @@ 21086 24157 fi 21087 24158 rm -f conftest.$ac_objext conftest.$ac_ext 21088 24159 fi 21089 24160 -echo "$as_me:12824: result: `eval echo '${'$as_ac_Header'}'`" >&5 21090 +echo "$as_me:13 620: result: `eval echo '${'$as_ac_Header'}'`" >&524161 +echo "$as_me:13731: result: `eval echo '${'$as_ac_Header'}'`" >&5 21091 24162 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 21092 24163 if test `eval echo '${'$as_ac_Header'}'` = yes; then 21093 24164 cat >>confdefs.h <<EOF 21094 @@ -12834,7 +13 630,7 @@24165 @@ -12834,7 +13741,7 @@ 21095 24166 done 21096 24167 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. 21097 24168 if test $ac_header_dirent = dirent.h; then 21098 24169 - echo "$as_me:12837: checking for opendir in -ldir" >&5 21099 + echo "$as_me:13 633: checking for opendir in -ldir" >&524170 + echo "$as_me:13744: checking for opendir in -ldir" >&5 21100 24171 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 21101 24172 if test "${ac_cv_lib_dir_opendir+set}" = set; then 21102 24173 echo $ECHO_N "(cached) $ECHO_C" >&6 21103 @@ -12842,7 +13 638,7 @@24174 @@ -12842,7 +13749,7 @@ 21104 24175 ac_check_lib_save_LIBS=$LIBS 21105 24176 LIBS="-ldir $LIBS" 21106 24177 cat >conftest.$ac_ext <<_ACEOF 21107 24178 -#line 12845 "configure" 21108 +#line 13 641"configure"24179 +#line 13752 "configure" 21109 24180 #include "confdefs.h" 21110 24181 21111 24182 /* Override any gcc2 internal prototype to avoid an error. */ 21112 @@ -12861,16 +13 657,16 @@24183 @@ -12861,16 +13768,16 @@ 21113 24184 } 21114 24185 _ACEOF 21115 24186 rm -f conftest.$ac_objext conftest$ac_exeext 21116 24187 -if { (eval echo "$as_me:12864: \"$ac_link\"") >&5 21117 +if { (eval echo "$as_me:13 660: \"$ac_link\"") >&524188 +if { (eval echo "$as_me:13771: \"$ac_link\"") >&5 21118 24189 (eval $ac_link) 2>&5 21119 24190 ac_status=$? 21120 24191 - echo "$as_me:12867: \$? = $ac_status" >&5 21121 + echo "$as_me:13 663: \$? = $ac_status" >&524192 + echo "$as_me:13774: \$? = $ac_status" >&5 21122 24193 (exit $ac_status); } && 21123 24194 { ac_try='test -s conftest$ac_exeext' 21124 24195 - { (eval echo "$as_me:12870: \"$ac_try\"") >&5 21125 + { (eval echo "$as_me:13 666: \"$ac_try\"") >&524196 + { (eval echo "$as_me:13777: \"$ac_try\"") >&5 21126 24197 (eval $ac_try) 2>&5 21127 24198 ac_status=$? 21128 24199 - echo "$as_me:12873: \$? = $ac_status" >&5 21129 + echo "$as_me:13 669: \$? = $ac_status" >&524200 + echo "$as_me:13780: \$? = $ac_status" >&5 21130 24201 (exit $ac_status); }; }; then 21131 24202 ac_cv_lib_dir_opendir=yes 21132 24203 else 21133 @@ -12881,14 +13 677,14 @@24204 @@ -12881,14 +13788,14 @@ 21134 24205 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21135 24206 LIBS=$ac_check_lib_save_LIBS 21136 24207 fi 21137 24208 -echo "$as_me:12884: result: $ac_cv_lib_dir_opendir" >&5 21138 +echo "$as_me:13 680: result: $ac_cv_lib_dir_opendir" >&524209 +echo "$as_me:13791: result: $ac_cv_lib_dir_opendir" >&5 21139 24210 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 21140 24211 if test $ac_cv_lib_dir_opendir = yes; then … … 21144 24215 else 21145 24216 - echo "$as_me:12891: checking for opendir in -lx" >&5 21146 + echo "$as_me:13 687: checking for opendir in -lx" >&524217 + echo "$as_me:13798: checking for opendir in -lx" >&5 21147 24218 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 21148 24219 if test "${ac_cv_lib_x_opendir+set}" = set; then 21149 24220 echo $ECHO_N "(cached) $ECHO_C" >&6 21150 @@ -12896,7 +13 692,7 @@24221 @@ -12896,7 +13803,7 @@ 21151 24222 ac_check_lib_save_LIBS=$LIBS 21152 24223 LIBS="-lx $LIBS" 21153 24224 cat >conftest.$ac_ext <<_ACEOF 21154 24225 -#line 12899 "configure" 21155 +#line 13 695"configure"24226 +#line 13806 "configure" 21156 24227 #include "confdefs.h" 21157 24228 21158 24229 /* Override any gcc2 internal prototype to avoid an error. */ 21159 @@ -12915,16 +13 711,16 @@24230 @@ -12915,16 +13822,16 @@ 21160 24231 } 21161 24232 _ACEOF 21162 24233 rm -f conftest.$ac_objext conftest$ac_exeext 21163 24234 -if { (eval echo "$as_me:12918: \"$ac_link\"") >&5 21164 +if { (eval echo "$as_me:13 714: \"$ac_link\"") >&524235 +if { (eval echo "$as_me:13825: \"$ac_link\"") >&5 21165 24236 (eval $ac_link) 2>&5 21166 24237 ac_status=$? 21167 24238 - echo "$as_me:12921: \$? = $ac_status" >&5 21168 + echo "$as_me:13 717: \$? = $ac_status" >&524239 + echo "$as_me:13828: \$? = $ac_status" >&5 21169 24240 (exit $ac_status); } && 21170 24241 { ac_try='test -s conftest$ac_exeext' 21171 24242 - { (eval echo "$as_me:12924: \"$ac_try\"") >&5 21172 + { (eval echo "$as_me:13 720: \"$ac_try\"") >&524243 + { (eval echo "$as_me:13831: \"$ac_try\"") >&5 21173 24244 (eval $ac_try) 2>&5 21174 24245 ac_status=$? 21175 24246 - echo "$as_me:12927: \$? = $ac_status" >&5 21176 + echo "$as_me:13 723: \$? = $ac_status" >&524247 + echo "$as_me:13834: \$? = $ac_status" >&5 21177 24248 (exit $ac_status); }; }; then 21178 24249 ac_cv_lib_x_opendir=yes 21179 24250 else 21180 @@ -12935,7 +13 731,7 @@24251 @@ -12935,7 +13842,7 @@ 21181 24252 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21182 24253 LIBS=$ac_check_lib_save_LIBS 21183 24254 fi 21184 24255 -echo "$as_me:12938: result: $ac_cv_lib_x_opendir" >&5 21185 +echo "$as_me:13 734: result: $ac_cv_lib_x_opendir" >&524256 +echo "$as_me:13845: result: $ac_cv_lib_x_opendir" >&5 21186 24257 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 21187 24258 if test $ac_cv_lib_x_opendir = yes; then 21188 24259 LIBS="$LIBS -lx" 21189 @@ -12943,13 +13 739,13 @@24260 @@ -12943,13 +13850,13 @@ 21190 24261 21191 24262 fi 21192 24263 21193 24264 -echo "$as_me:12946: checking whether time.h and sys/time.h may both be included" >&5 21194 +echo "$as_me:13 742: checking whether time.h and sys/time.h may both be included" >&524265 +echo "$as_me:13853: checking whether time.h and sys/time.h may both be included" >&5 21195 24266 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 21196 24267 if test "${ac_cv_header_time+set}" = set; then … … 21199 24270 cat >conftest.$ac_ext <<_ACEOF 21200 24271 -#line 12952 "configure" 21201 +#line 13 748"configure"24272 +#line 13859 "configure" 21202 24273 #include "confdefs.h" 21203 24274 #include <sys/types.h> 21204 24275 #include <sys/time.h> 21205 @@ -12965,16 +13 761,16 @@24276 @@ -12965,16 +13872,16 @@ 21206 24277 } 21207 24278 _ACEOF 21208 24279 rm -f conftest.$ac_objext 21209 24280 -if { (eval echo "$as_me:12968: \"$ac_compile\"") >&5 21210 +if { (eval echo "$as_me:13 764: \"$ac_compile\"") >&524281 +if { (eval echo "$as_me:13875: \"$ac_compile\"") >&5 21211 24282 (eval $ac_compile) 2>&5 21212 24283 ac_status=$? 21213 24284 - echo "$as_me:12971: \$? = $ac_status" >&5 21214 + echo "$as_me:13 767: \$? = $ac_status" >&524285 + echo "$as_me:13878: \$? = $ac_status" >&5 21215 24286 (exit $ac_status); } && 21216 24287 { ac_try='test -s conftest.$ac_objext' 21217 24288 - { (eval echo "$as_me:12974: \"$ac_try\"") >&5 21218 + { (eval echo "$as_me:13 770: \"$ac_try\"") >&524289 + { (eval echo "$as_me:13881: \"$ac_try\"") >&5 21219 24290 (eval $ac_try) 2>&5 21220 24291 ac_status=$? 21221 24292 - echo "$as_me:12977: \$? = $ac_status" >&5 21222 + echo "$as_me:13 773: \$? = $ac_status" >&524293 + echo "$as_me:13884: \$? = $ac_status" >&5 21223 24294 (exit $ac_status); }; }; then 21224 24295 ac_cv_header_time=yes 21225 24296 else 21226 @@ -12984,7 +13 780,7 @@24297 @@ -12984,7 +13891,7 @@ 21227 24298 fi 21228 24299 rm -f conftest.$ac_objext conftest.$ac_ext 21229 24300 fi 21230 24301 -echo "$as_me:12987: result: $ac_cv_header_time" >&5 21231 +echo "$as_me:13 783: result: $ac_cv_header_time" >&524302 +echo "$as_me:13894: result: $ac_cv_header_time" >&5 21232 24303 echo "${ECHO_T}$ac_cv_header_time" >&6 21233 24304 if test $ac_cv_header_time = yes; then 21234 24305 21235 @@ -12999,17 +13 795,17 @@24306 @@ -12999,17 +13906,17 @@ 21236 24307 cf_regex_libs="regex re" 21237 24308 case $host_os in #(vi … … 21243 24314 21244 24315 -echo "$as_me:13006: checking for regcomp" >&5 21245 +echo "$as_me:13 802: checking for regcomp" >&524316 +echo "$as_me:13913: checking for regcomp" >&5 21246 24317 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6 21247 24318 if test "${ac_cv_func_regcomp+set}" = set; then … … 21250 24321 cat >conftest.$ac_ext <<_ACEOF 21251 24322 -#line 13012 "configure" 21252 +#line 13 808"configure"24323 +#line 13919 "configure" 21253 24324 #include "confdefs.h" 21254 24325 /* System header to define __stub macros and hopefully few prototypes, 21255 24326 which can conflict with char regcomp (); below. */ 21256 @@ -13040,16 +13836,16 @@ 24327 @@ -13032,7 +13939,7 @@ 24328 #if defined (__stub_regcomp) || defined (__stub___regcomp) 24329 choke me 24330 #else 24331 -f = regcomp; 24332 +f = regcomp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 24333 #endif 24334 24335 ; 24336 @@ -13040,16 +13947,16 @@ 21257 24337 } 21258 24338 _ACEOF 21259 24339 rm -f conftest.$ac_objext conftest$ac_exeext 21260 24340 -if { (eval echo "$as_me:13043: \"$ac_link\"") >&5 21261 +if { (eval echo "$as_me:13 839: \"$ac_link\"") >&524341 +if { (eval echo "$as_me:13950: \"$ac_link\"") >&5 21262 24342 (eval $ac_link) 2>&5 21263 24343 ac_status=$? 21264 24344 - echo "$as_me:13046: \$? = $ac_status" >&5 21265 + echo "$as_me:13 842: \$? = $ac_status" >&524345 + echo "$as_me:13953: \$? = $ac_status" >&5 21266 24346 (exit $ac_status); } && 21267 24347 { ac_try='test -s conftest$ac_exeext' 21268 24348 - { (eval echo "$as_me:13049: \"$ac_try\"") >&5 21269 + { (eval echo "$as_me:13 845: \"$ac_try\"") >&524349 + { (eval echo "$as_me:13956: \"$ac_try\"") >&5 21270 24350 (eval $ac_try) 2>&5 21271 24351 ac_status=$? 21272 24352 - echo "$as_me:13052: \$? = $ac_status" >&5 21273 + echo "$as_me:13 848: \$? = $ac_status" >&524353 + echo "$as_me:13959: \$? = $ac_status" >&5 21274 24354 (exit $ac_status); }; }; then 21275 24355 ac_cv_func_regcomp=yes 21276 24356 else 21277 @@ -13059,7 +13 855,7 @@24357 @@ -13059,7 +13966,7 @@ 21278 24358 fi 21279 24359 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21280 24360 fi 21281 24361 -echo "$as_me:13062: result: $ac_cv_func_regcomp" >&5 21282 +echo "$as_me:13 858: result: $ac_cv_func_regcomp" >&524362 +echo "$as_me:13969: result: $ac_cv_func_regcomp" >&5 21283 24363 echo "${ECHO_T}$ac_cv_func_regcomp" >&6 21284 24364 if test $ac_cv_func_regcomp = yes; then 21285 24365 cf_regex_func=regcomp 21286 @@ -13068,7 +13 864,7 @@24366 @@ -13068,7 +13975,7 @@ 21287 24367 for cf_regex_lib in $cf_regex_libs 21288 24368 do 21289 24369 as_ac_Lib=`echo "ac_cv_lib_$cf_regex_lib''_regcomp" | $as_tr_sh` 21290 24370 -echo "$as_me:13071: checking for regcomp in -l$cf_regex_lib" >&5 21291 +echo "$as_me:13 867: checking for regcomp in -l$cf_regex_lib" >&524371 +echo "$as_me:13978: checking for regcomp in -l$cf_regex_lib" >&5 21292 24372 echo $ECHO_N "checking for regcomp in -l$cf_regex_lib... $ECHO_C" >&6 21293 24373 if eval "test \"\${$as_ac_Lib+set}\" = set"; then 21294 24374 echo $ECHO_N "(cached) $ECHO_C" >&6 21295 @@ -13076,7 +13 872,7 @@24375 @@ -13076,7 +13983,7 @@ 21296 24376 ac_check_lib_save_LIBS=$LIBS 21297 24377 LIBS="-l$cf_regex_lib $LIBS" 21298 24378 cat >conftest.$ac_ext <<_ACEOF 21299 24379 -#line 13079 "configure" 21300 +#line 13 875"configure"24380 +#line 13986 "configure" 21301 24381 #include "confdefs.h" 21302 24382 21303 24383 /* Override any gcc2 internal prototype to avoid an error. */ 21304 @@ -13095,16 +1 3891,16 @@24384 @@ -13095,16 +14002,16 @@ 21305 24385 } 21306 24386 _ACEOF 21307 24387 rm -f conftest.$ac_objext conftest$ac_exeext 21308 24388 -if { (eval echo "$as_me:13098: \"$ac_link\"") >&5 21309 +if { (eval echo "$as_me:1 3894: \"$ac_link\"") >&524389 +if { (eval echo "$as_me:14005: \"$ac_link\"") >&5 21310 24390 (eval $ac_link) 2>&5 21311 24391 ac_status=$? 21312 24392 - echo "$as_me:13101: \$? = $ac_status" >&5 21313 + echo "$as_me:1 3897: \$? = $ac_status" >&524393 + echo "$as_me:14008: \$? = $ac_status" >&5 21314 24394 (exit $ac_status); } && 21315 24395 { ac_try='test -s conftest$ac_exeext' 21316 24396 - { (eval echo "$as_me:13104: \"$ac_try\"") >&5 21317 + { (eval echo "$as_me:1 3900: \"$ac_try\"") >&524397 + { (eval echo "$as_me:14011: \"$ac_try\"") >&5 21318 24398 (eval $ac_try) 2>&5 21319 24399 ac_status=$? 21320 24400 - echo "$as_me:13107: \$? = $ac_status" >&5 21321 + echo "$as_me:1 3903: \$? = $ac_status" >&524401 + echo "$as_me:14014: \$? = $ac_status" >&5 21322 24402 (exit $ac_status); }; }; then 21323 24403 eval "$as_ac_Lib=yes" 21324 24404 else 21325 @@ -13115,7 +1 3911,7 @@24405 @@ -13115,7 +14022,7 @@ 21326 24406 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21327 24407 LIBS=$ac_check_lib_save_LIBS 21328 24408 fi 21329 24409 -echo "$as_me:13118: result: `eval echo '${'$as_ac_Lib'}'`" >&5 21330 +echo "$as_me:1 3914: result: `eval echo '${'$as_ac_Lib'}'`" >&524410 +echo "$as_me:14025: result: `eval echo '${'$as_ac_Lib'}'`" >&5 21331 24411 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 21332 24412 if test `eval echo '${'$as_ac_Lib'}'` = yes; then 21333 24413 21334 @@ -13129,13 +1 3925,13 @@24414 @@ -13129,13 +14036,13 @@ 21335 24415 fi 21336 24416 21337 24417 if test "$cf_regex_func" = no ; then 21338 24418 - echo "$as_me:13132: checking for compile" >&5 21339 + echo "$as_me:1 3928: checking for compile" >&524419 + echo "$as_me:14039: checking for compile" >&5 21340 24420 echo $ECHO_N "checking for compile... $ECHO_C" >&6 21341 24421 if test "${ac_cv_func_compile+set}" = set; then … … 21344 24424 cat >conftest.$ac_ext <<_ACEOF 21345 24425 -#line 13138 "configure" 21346 +#line 1 3934"configure"24426 +#line 14045 "configure" 21347 24427 #include "confdefs.h" 21348 24428 /* System header to define __stub macros and hopefully few prototypes, 21349 24429 which can conflict with char compile (); below. */ 21350 @@ -13166,16 +13962,16 @@ 24430 @@ -13158,7 +14065,7 @@ 24431 #if defined (__stub_compile) || defined (__stub___compile) 24432 choke me 24433 #else 24434 -f = compile; 24435 +f = compile; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 24436 #endif 24437 24438 ; 24439 @@ -13166,16 +14073,16 @@ 21351 24440 } 21352 24441 _ACEOF 21353 24442 rm -f conftest.$ac_objext conftest$ac_exeext 21354 24443 -if { (eval echo "$as_me:13169: \"$ac_link\"") >&5 21355 +if { (eval echo "$as_me:1 3965: \"$ac_link\"") >&524444 +if { (eval echo "$as_me:14076: \"$ac_link\"") >&5 21356 24445 (eval $ac_link) 2>&5 21357 24446 ac_status=$? 21358 24447 - echo "$as_me:13172: \$? = $ac_status" >&5 21359 + echo "$as_me:1 3968: \$? = $ac_status" >&524448 + echo "$as_me:14079: \$? = $ac_status" >&5 21360 24449 (exit $ac_status); } && 21361 24450 { ac_try='test -s conftest$ac_exeext' 21362 24451 - { (eval echo "$as_me:13175: \"$ac_try\"") >&5 21363 + { (eval echo "$as_me:1 3971: \"$ac_try\"") >&524452 + { (eval echo "$as_me:14082: \"$ac_try\"") >&5 21364 24453 (eval $ac_try) 2>&5 21365 24454 ac_status=$? 21366 24455 - echo "$as_me:13178: \$? = $ac_status" >&5 21367 + echo "$as_me:1 3974: \$? = $ac_status" >&524456 + echo "$as_me:14085: \$? = $ac_status" >&5 21368 24457 (exit $ac_status); }; }; then 21369 24458 ac_cv_func_compile=yes 21370 24459 else 21371 @@ -13185,13 +1 3981,13 @@24460 @@ -13185,13 +14092,13 @@ 21372 24461 fi 21373 24462 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21374 24463 fi 21375 24464 -echo "$as_me:13188: result: $ac_cv_func_compile" >&5 21376 +echo "$as_me:1 3984: result: $ac_cv_func_compile" >&524465 +echo "$as_me:14095: result: $ac_cv_func_compile" >&5 21377 24466 echo "${ECHO_T}$ac_cv_func_compile" >&6 21378 24467 if test $ac_cv_func_compile = yes; then … … 21381 24470 21382 24471 - echo "$as_me:13194: checking for compile in -lgen" >&5 21383 + echo "$as_me:1 3990: checking for compile in -lgen" >&524472 + echo "$as_me:14101: checking for compile in -lgen" >&5 21384 24473 echo $ECHO_N "checking for compile in -lgen... $ECHO_C" >&6 21385 24474 if test "${ac_cv_lib_gen_compile+set}" = set; then 21386 24475 echo $ECHO_N "(cached) $ECHO_C" >&6 21387 @@ -13199,7 +1 3995,7 @@24476 @@ -13199,7 +14106,7 @@ 21388 24477 ac_check_lib_save_LIBS=$LIBS 21389 24478 LIBS="-lgen $LIBS" 21390 24479 cat >conftest.$ac_ext <<_ACEOF 21391 24480 -#line 13202 "configure" 21392 +#line 1 3998"configure"24481 +#line 14109 "configure" 21393 24482 #include "confdefs.h" 21394 24483 21395 24484 /* Override any gcc2 internal prototype to avoid an error. */ 21396 @@ -13218,16 +14 014,16 @@24485 @@ -13218,16 +14125,16 @@ 21397 24486 } 21398 24487 _ACEOF 21399 24488 rm -f conftest.$ac_objext conftest$ac_exeext 21400 24489 -if { (eval echo "$as_me:13221: \"$ac_link\"") >&5 21401 +if { (eval echo "$as_me:14 017: \"$ac_link\"") >&524490 +if { (eval echo "$as_me:14128: \"$ac_link\"") >&5 21402 24491 (eval $ac_link) 2>&5 21403 24492 ac_status=$? 21404 24493 - echo "$as_me:13224: \$? = $ac_status" >&5 21405 + echo "$as_me:14 020: \$? = $ac_status" >&524494 + echo "$as_me:14131: \$? = $ac_status" >&5 21406 24495 (exit $ac_status); } && 21407 24496 { ac_try='test -s conftest$ac_exeext' 21408 24497 - { (eval echo "$as_me:13227: \"$ac_try\"") >&5 21409 + { (eval echo "$as_me:14 023: \"$ac_try\"") >&524498 + { (eval echo "$as_me:14134: \"$ac_try\"") >&5 21410 24499 (eval $ac_try) 2>&5 21411 24500 ac_status=$? 21412 24501 - echo "$as_me:13230: \$? = $ac_status" >&5 21413 + echo "$as_me:14 026: \$? = $ac_status" >&524502 + echo "$as_me:14137: \$? = $ac_status" >&5 21414 24503 (exit $ac_status); }; }; then 21415 24504 ac_cv_lib_gen_compile=yes 21416 24505 else 21417 @@ -13238,7 +14 034,7 @@24506 @@ -13238,7 +14145,7 @@ 21418 24507 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21419 24508 LIBS=$ac_check_lib_save_LIBS 21420 24509 fi 21421 24510 -echo "$as_me:13241: result: $ac_cv_lib_gen_compile" >&5 21422 +echo "$as_me:14 037: result: $ac_cv_lib_gen_compile" >&524511 +echo "$as_me:14148: result: $ac_cv_lib_gen_compile" >&5 21423 24512 echo "${ECHO_T}$ac_cv_lib_gen_compile" >&6 21424 24513 if test $ac_cv_lib_gen_compile = yes; then 21425 24514 21426 @@ -13251,11 +14 047,11 @@24515 @@ -13251,11 +14158,11 @@ 21427 24516 fi 21428 24517 21429 24518 if test "$cf_regex_func" = no ; then 21430 24519 - { echo "$as_me:13254: WARNING: cannot find regular expression library" >&5 21431 + { echo "$as_me:14 050: WARNING: cannot find regular expression library" >&524520 + { echo "$as_me:14161: WARNING: cannot find regular expression library" >&5 21432 24521 echo "$as_me: WARNING: cannot find regular expression library" >&2;} 21433 24522 fi 21434 24523 21435 24524 -echo "$as_me:13258: checking for regular-expression headers" >&5 21436 +echo "$as_me:14 054: checking for regular-expression headers" >&524525 +echo "$as_me:14165: checking for regular-expression headers" >&5 21437 24526 echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6 21438 24527 if test "${cf_cv_regex_hdrs+set}" = set; then 21439 24528 echo $ECHO_N "(cached) $ECHO_C" >&6 21440 @@ -13267,7 +14 063,7 @@24529 @@ -13267,7 +14174,7 @@ 21441 24530 for cf_regex_hdr in regexp.h regexpr.h 21442 24531 do 21443 24532 cat >conftest.$ac_ext <<_ACEOF 21444 24533 -#line 13270 "configure" 21445 +#line 14 066"configure"24534 +#line 14177 "configure" 21446 24535 #include "confdefs.h" 21447 24536 #include <$cf_regex_hdr> 21448 24537 int 21449 @@ -13282,16 +14 078,16 @@24538 @@ -13282,16 +14189,16 @@ 21450 24539 } 21451 24540 _ACEOF 21452 24541 rm -f conftest.$ac_objext conftest$ac_exeext 21453 24542 -if { (eval echo "$as_me:13285: \"$ac_link\"") >&5 21454 +if { (eval echo "$as_me:14 081: \"$ac_link\"") >&524543 +if { (eval echo "$as_me:14192: \"$ac_link\"") >&5 21455 24544 (eval $ac_link) 2>&5 21456 24545 ac_status=$? 21457 24546 - echo "$as_me:13288: \$? = $ac_status" >&5 21458 + echo "$as_me:14 084: \$? = $ac_status" >&524547 + echo "$as_me:14195: \$? = $ac_status" >&5 21459 24548 (exit $ac_status); } && 21460 24549 { ac_try='test -s conftest$ac_exeext' 21461 24550 - { (eval echo "$as_me:13291: \"$ac_try\"") >&5 21462 + { (eval echo "$as_me:14 087: \"$ac_try\"") >&524551 + { (eval echo "$as_me:14198: \"$ac_try\"") >&5 21463 24552 (eval $ac_try) 2>&5 21464 24553 ac_status=$? 21465 24554 - echo "$as_me:13294: \$? = $ac_status" >&5 21466 + echo "$as_me:14 090: \$? = $ac_status" >&524555 + echo "$as_me:14201: \$? = $ac_status" >&5 21467 24556 (exit $ac_status); }; }; then 21468 24557 21469 24558 cf_cv_regex_hdrs=$cf_regex_hdr 21470 @@ -13308,7 +14 104,7 @@24559 @@ -13308,7 +14215,7 @@ 21471 24560 for cf_regex_hdr in regex.h 21472 24561 do 21473 24562 cat >conftest.$ac_ext <<_ACEOF 21474 24563 -#line 13311 "configure" 21475 +#line 14 107"configure"24564 +#line 14218 "configure" 21476 24565 #include "confdefs.h" 21477 24566 #include <sys/types.h> 21478 24567 #include <$cf_regex_hdr> 21479 @@ -13326,16 +14 122,16 @@24568 @@ -13326,16 +14233,16 @@ 21480 24569 } 21481 24570 _ACEOF 21482 24571 rm -f conftest.$ac_objext conftest$ac_exeext 21483 24572 -if { (eval echo "$as_me:13329: \"$ac_link\"") >&5 21484 +if { (eval echo "$as_me:14 125: \"$ac_link\"") >&524573 +if { (eval echo "$as_me:14236: \"$ac_link\"") >&5 21485 24574 (eval $ac_link) 2>&5 21486 24575 ac_status=$? 21487 24576 - echo "$as_me:13332: \$? = $ac_status" >&5 21488 + echo "$as_me:14 128: \$? = $ac_status" >&524577 + echo "$as_me:14239: \$? = $ac_status" >&5 21489 24578 (exit $ac_status); } && 21490 24579 { ac_try='test -s conftest$ac_exeext' 21491 24580 - { (eval echo "$as_me:13335: \"$ac_try\"") >&5 21492 + { (eval echo "$as_me:14 131: \"$ac_try\"") >&524581 + { (eval echo "$as_me:14242: \"$ac_try\"") >&5 21493 24582 (eval $ac_try) 2>&5 21494 24583 ac_status=$? 21495 24584 - echo "$as_me:13338: \$? = $ac_status" >&5 21496 + echo "$as_me:14 134: \$? = $ac_status" >&524585 + echo "$as_me:14245: \$? = $ac_status" >&5 21497 24586 (exit $ac_status); }; }; then 21498 24587 21499 24588 cf_cv_regex_hdrs=$cf_regex_hdr 21500 @@ -13351,11 +14 147,11 @@24589 @@ -13351,11 +14258,11 @@ 21501 24590 esac 21502 24591 21503 24592 fi 21504 24593 -echo "$as_me:13354: result: $cf_cv_regex_hdrs" >&5 21505 +echo "$as_me:14 150: result: $cf_cv_regex_hdrs" >&524594 +echo "$as_me:14261: result: $cf_cv_regex_hdrs" >&5 21506 24595 echo "${ECHO_T}$cf_cv_regex_hdrs" >&6 21507 24596 21508 24597 case $cf_cv_regex_hdrs in #(vi 21509 24598 - no) { echo "$as_me:13358: WARNING: no regular expression header found" >&5 21510 + no) { echo "$as_me:14 154: WARNING: no regular expression header found" >&524599 + no) { echo "$as_me:14265: WARNING: no regular expression header found" >&5 21511 24600 echo "$as_me: WARNING: no regular expression header found" >&2;} ;; #(vi 21512 24601 regex.h) cat >>confdefs.h <<\EOF 21513 24602 #define HAVE_REGEX_H_FUNCS 1 21514 @@ -13391,23 +14 187,71 @@24603 @@ -13391,23 +14298,71 @@ 21515 24604 21516 24605 do 21517 24606 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 21518 24607 -echo "$as_me:13394: checking for $ac_header" >&5 21519 +echo "$as_me:14 190: checking for $ac_header" >&524608 +echo "$as_me:14301: checking for $ac_header" >&5 21520 24609 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 21521 24610 +if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 21523 24612 +else 21524 24613 + cat >conftest.$ac_ext <<_ACEOF 21525 +#line 14 196"configure"24614 +#line 14307 "configure" 21526 24615 +#include "confdefs.h" 21527 24616 +#include <$ac_header> 21528 24617 +_ACEOF 21529 +if { (eval echo "$as_me:14 200: \"$ac_cpp conftest.$ac_ext\"") >&524618 +if { (eval echo "$as_me:14311: \"$ac_cpp conftest.$ac_ext\"") >&5 21530 24619 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 21531 24620 + ac_status=$? … … 21533 24622 + rm -f conftest.er1 21534 24623 + cat conftest.err >&5 21535 + echo "$as_me:14 206: \$? = $ac_status" >&524624 + echo "$as_me:14317: \$? = $ac_status" >&5 21536 24625 + (exit $ac_status); } >/dev/null; then 21537 24626 + if test -s conftest.err; then … … 21552 24641 +rm -f conftest.err conftest.$ac_ext 21553 24642 +fi 21554 +echo "$as_me:14 225: result: `eval echo '${'$as_ac_Header'}'`" >&524643 +echo "$as_me:14336: result: `eval echo '${'$as_ac_Header'}'`" >&5 21555 24644 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 21556 24645 +if test `eval echo '${'$as_ac_Header'}'` = yes; then … … 21565 24654 +do 21566 24655 +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 21567 +echo "$as_me:14 238: checking for $ac_header" >&524656 +echo "$as_me:14349: checking for $ac_header" >&5 21568 24657 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 21569 24658 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 21572 24661 cat >conftest.$ac_ext <<_ACEOF 21573 24662 -#line 13400 "configure" 21574 +#line 14 244"configure"24663 +#line 14355 "configure" 21575 24664 #include "confdefs.h" 21576 24665 #include <$ac_header> 21577 24666 _ACEOF 21578 24667 -if { (eval echo "$as_me:13404: \"$ac_cpp conftest.$ac_ext\"") >&5 21579 +if { (eval echo "$as_me:14 248: \"$ac_cpp conftest.$ac_ext\"") >&524668 +if { (eval echo "$as_me:14359: \"$ac_cpp conftest.$ac_ext\"") >&5 21580 24669 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 21581 24670 ac_status=$? … … 21584 24673 cat conftest.err >&5 21585 24674 - echo "$as_me:13410: \$? = $ac_status" >&5 21586 + echo "$as_me:14 254: \$? = $ac_status" >&524675 + echo "$as_me:14365: \$? = $ac_status" >&5 21587 24676 (exit $ac_status); } >/dev/null; then 21588 24677 if test -s conftest.err; then 21589 24678 ac_cpp_err=$ac_c_preproc_warn_flag 21590 @@ -13426,7 +14 270,7 @@24679 @@ -13426,7 +14381,7 @@ 21591 24680 fi 21592 24681 rm -f conftest.err conftest.$ac_ext 21593 24682 fi 21594 24683 -echo "$as_me:13429: result: `eval echo '${'$as_ac_Header'}'`" >&5 21595 +echo "$as_me:14 273: result: `eval echo '${'$as_ac_Header'}'`" >&524684 +echo "$as_me:14384: result: `eval echo '${'$as_ac_Header'}'`" >&5 21596 24685 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 21597 24686 if test `eval echo '${'$as_ac_Header'}'` = yes; then 21598 24687 cat >>confdefs.h <<EOF 21599 @@ -13436,11 +14 280,64 @@24688 @@ -13436,11 +14391,64 @@ 21600 24689 fi 21601 24690 done 21602 24691 21603 +echo "$as_me:14 283: checking for header declaring getopt variables" >&524692 +echo "$as_me:14394: checking for header declaring getopt variables" >&5 21604 24693 +echo $ECHO_N "checking for header declaring getopt variables... $ECHO_C" >&6 21605 24694 +if test "${cf_cv_getopt_header+set}" = set; then … … 21611 24700 +do 21612 24701 +cat >conftest.$ac_ext <<_ACEOF 21613 +#line 14 293"configure"24702 +#line 14404 "configure" 21614 24703 +#include "confdefs.h" 21615 24704 + … … 21624 24713 +_ACEOF 21625 24714 +rm -f conftest.$ac_objext 21626 +if { (eval echo "$as_me:14 306: \"$ac_compile\"") >&524715 +if { (eval echo "$as_me:14417: \"$ac_compile\"") >&5 21627 24716 + (eval $ac_compile) 2>&5 21628 24717 + ac_status=$? 21629 + echo "$as_me:14 309: \$? = $ac_status" >&524718 + echo "$as_me:14420: \$? = $ac_status" >&5 21630 24719 + (exit $ac_status); } && 21631 24720 + { ac_try='test -s conftest.$ac_objext' 21632 + { (eval echo "$as_me:14 312: \"$ac_try\"") >&524721 + { (eval echo "$as_me:14423: \"$ac_try\"") >&5 21633 24722 + (eval $ac_try) 2>&5 21634 24723 + ac_status=$? 21635 + echo "$as_me:14 315: \$? = $ac_status" >&524724 + echo "$as_me:14426: \$? = $ac_status" >&5 21636 24725 + (exit $ac_status); }; }; then 21637 24726 + cf_cv_getopt_header=$cf_header … … 21645 24734 + 21646 24735 +fi 21647 +echo "$as_me:14 327: result: $cf_cv_getopt_header" >&524736 +echo "$as_me:14438: result: $cf_cv_getopt_header" >&5 21648 24737 +echo "${ECHO_T}$cf_cv_getopt_header" >&6 21649 24738 +if test $cf_cv_getopt_header != none ; then … … 21659 24748 21660 24749 -echo "$as_me:13443: checking for main in -lcposix" >&5 21661 +echo "$as_me:14 340: checking for main in -lcposix" >&524750 +echo "$as_me:14451: checking for main in -lcposix" >&5 21662 24751 echo $ECHO_N "checking for main in -lcposix... $ECHO_C" >&6 21663 24752 if test "${ac_cv_lib_cposix_main+set}" = set; then 21664 24753 echo $ECHO_N "(cached) $ECHO_C" >&6 21665 @@ -13448,7 +14 345,7 @@24754 @@ -13448,7 +14456,7 @@ 21666 24755 ac_check_lib_save_LIBS=$LIBS 21667 24756 LIBS="-lcposix $LIBS" 21668 24757 cat >conftest.$ac_ext <<_ACEOF 21669 24758 -#line 13451 "configure" 21670 +#line 14 348"configure"24759 +#line 14459 "configure" 21671 24760 #include "confdefs.h" 21672 24761 21673 24762 int 21674 @@ -13460,16 +14 357,16 @@24763 @@ -13460,16 +14468,16 @@ 21675 24764 } 21676 24765 _ACEOF 21677 24766 rm -f conftest.$ac_objext conftest$ac_exeext 21678 24767 -if { (eval echo "$as_me:13463: \"$ac_link\"") >&5 21679 +if { (eval echo "$as_me:14 360: \"$ac_link\"") >&524768 +if { (eval echo "$as_me:14471: \"$ac_link\"") >&5 21680 24769 (eval $ac_link) 2>&5 21681 24770 ac_status=$? 21682 24771 - echo "$as_me:13466: \$? = $ac_status" >&5 21683 + echo "$as_me:14 363: \$? = $ac_status" >&524772 + echo "$as_me:14474: \$? = $ac_status" >&5 21684 24773 (exit $ac_status); } && 21685 24774 { ac_try='test -s conftest$ac_exeext' 21686 24775 - { (eval echo "$as_me:13469: \"$ac_try\"") >&5 21687 + { (eval echo "$as_me:14 366: \"$ac_try\"") >&524776 + { (eval echo "$as_me:14477: \"$ac_try\"") >&5 21688 24777 (eval $ac_try) 2>&5 21689 24778 ac_status=$? 21690 24779 - echo "$as_me:13472: \$? = $ac_status" >&5 21691 + echo "$as_me:14 369: \$? = $ac_status" >&524780 + echo "$as_me:14480: \$? = $ac_status" >&5 21692 24781 (exit $ac_status); }; }; then 21693 24782 ac_cv_lib_cposix_main=yes 21694 24783 else 21695 @@ -13480,7 +14 377,7 @@24784 @@ -13480,7 +14488,7 @@ 21696 24785 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21697 24786 LIBS=$ac_check_lib_save_LIBS 21698 24787 fi 21699 24788 -echo "$as_me:13483: result: $ac_cv_lib_cposix_main" >&5 21700 +echo "$as_me:14 380: result: $ac_cv_lib_cposix_main" >&524789 +echo "$as_me:14491: result: $ac_cv_lib_cposix_main" >&5 21701 24790 echo "${ECHO_T}$ac_cv_lib_cposix_main" >&6 21702 24791 if test $ac_cv_lib_cposix_main = yes; then 21703 24792 cat >>confdefs.h <<EOF 21704 @@ -13491,7 +14 388,7 @@24793 @@ -13491,7 +14499,7 @@ 21705 24794 21706 24795 fi 21707 24796 21708 24797 - echo "$as_me:13494: checking for bzero in -linet" >&5 21709 + echo "$as_me:14 391: checking for bzero in -linet" >&524798 + echo "$as_me:14502: checking for bzero in -linet" >&5 21710 24799 echo $ECHO_N "checking for bzero in -linet... $ECHO_C" >&6 21711 24800 if test "${ac_cv_lib_inet_bzero+set}" = set; then 21712 24801 echo $ECHO_N "(cached) $ECHO_C" >&6 21713 @@ -13499,7 +14 396,7 @@24802 @@ -13499,7 +14507,7 @@ 21714 24803 ac_check_lib_save_LIBS=$LIBS 21715 24804 LIBS="-linet $LIBS" 21716 24805 cat >conftest.$ac_ext <<_ACEOF 21717 24806 -#line 13502 "configure" 21718 +#line 14 399"configure"24807 +#line 14510 "configure" 21719 24808 #include "confdefs.h" 21720 24809 21721 24810 /* Override any gcc2 internal prototype to avoid an error. */ 21722 @@ -13518,16 +14 415,16 @@24811 @@ -13518,16 +14526,16 @@ 21723 24812 } 21724 24813 _ACEOF 21725 24814 rm -f conftest.$ac_objext conftest$ac_exeext 21726 24815 -if { (eval echo "$as_me:13521: \"$ac_link\"") >&5 21727 +if { (eval echo "$as_me:14 418: \"$ac_link\"") >&524816 +if { (eval echo "$as_me:14529: \"$ac_link\"") >&5 21728 24817 (eval $ac_link) 2>&5 21729 24818 ac_status=$? 21730 24819 - echo "$as_me:13524: \$? = $ac_status" >&5 21731 + echo "$as_me:14 421: \$? = $ac_status" >&524820 + echo "$as_me:14532: \$? = $ac_status" >&5 21732 24821 (exit $ac_status); } && 21733 24822 { ac_try='test -s conftest$ac_exeext' 21734 24823 - { (eval echo "$as_me:13527: \"$ac_try\"") >&5 21735 + { (eval echo "$as_me:14 424: \"$ac_try\"") >&524824 + { (eval echo "$as_me:14535: \"$ac_try\"") >&5 21736 24825 (eval $ac_try) 2>&5 21737 24826 ac_status=$? 21738 24827 - echo "$as_me:13530: \$? = $ac_status" >&5 21739 + echo "$as_me:14 427: \$? = $ac_status" >&524828 + echo "$as_me:14538: \$? = $ac_status" >&5 21740 24829 (exit $ac_status); }; }; then 21741 24830 ac_cv_lib_inet_bzero=yes 21742 24831 else 21743 @@ -13538,21 +14 435,21 @@24832 @@ -13538,21 +14546,21 @@ 21744 24833 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 21745 24834 LIBS=$ac_check_lib_save_LIBS 21746 24835 fi 21747 24836 -echo "$as_me:13541: result: $ac_cv_lib_inet_bzero" >&5 21748 +echo "$as_me:14 438: result: $ac_cv_lib_inet_bzero" >&524837 +echo "$as_me:14549: result: $ac_cv_lib_inet_bzero" >&5 21749 24838 echo "${ECHO_T}$ac_cv_lib_inet_bzero" >&6 21750 24839 if test $ac_cv_lib_inet_bzero = yes; then … … 21754 24843 21755 24844 -echo "$as_me:13548: checking if sys/time.h works with sys/select.h" >&5 21756 +echo "$as_me:14 445: checking if sys/time.h works with sys/select.h" >&524845 +echo "$as_me:14556: checking if sys/time.h works with sys/select.h" >&5 21757 24846 echo $ECHO_N "checking if sys/time.h works with sys/select.h... $ECHO_C" >&6 21758 24847 if test "${cf_cv_sys_time_select+set}" = set; then … … 21762 24851 cat >conftest.$ac_ext <<_ACEOF 21763 24852 -#line 13555 "configure" 21764 +#line 14 452"configure"24853 +#line 14563 "configure" 21765 24854 #include "confdefs.h" 21766 24855 21767 24856 #include <sys/types.h> 21768 @@ -13572,16 +14 469,16 @@24857 @@ -13572,16 +14580,16 @@ 21769 24858 } 21770 24859 _ACEOF 21771 24860 rm -f conftest.$ac_objext 21772 24861 -if { (eval echo "$as_me:13575: \"$ac_compile\"") >&5 21773 +if { (eval echo "$as_me:14 472: \"$ac_compile\"") >&524862 +if { (eval echo "$as_me:14583: \"$ac_compile\"") >&5 21774 24863 (eval $ac_compile) 2>&5 21775 24864 ac_status=$? 21776 24865 - echo "$as_me:13578: \$? = $ac_status" >&5 21777 + echo "$as_me:14 475: \$? = $ac_status" >&524866 + echo "$as_me:14586: \$? = $ac_status" >&5 21778 24867 (exit $ac_status); } && 21779 24868 { ac_try='test -s conftest.$ac_objext' 21780 24869 - { (eval echo "$as_me:13581: \"$ac_try\"") >&5 21781 + { (eval echo "$as_me:14 478: \"$ac_try\"") >&524870 + { (eval echo "$as_me:14589: \"$ac_try\"") >&5 21782 24871 (eval $ac_try) 2>&5 21783 24872 ac_status=$? 21784 24873 - echo "$as_me:13584: \$? = $ac_status" >&5 21785 + echo "$as_me:14 481: \$? = $ac_status" >&524874 + echo "$as_me:14592: \$? = $ac_status" >&5 21786 24875 (exit $ac_status); }; }; then 21787 24876 cf_cv_sys_time_select=yes 21788 24877 else 21789 @@ -13593,7 +14 490,7 @@24878 @@ -13593,7 +14601,7 @@ 21790 24879 21791 24880 fi 21792 24881 21793 24882 -echo "$as_me:13596: result: $cf_cv_sys_time_select" >&5 21794 +echo "$as_me:14 493: result: $cf_cv_sys_time_select" >&524883 +echo "$as_me:14604: result: $cf_cv_sys_time_select" >&5 21795 24884 echo "${ECHO_T}$cf_cv_sys_time_select" >&6 21796 24885 test "$cf_cv_sys_time_select" = yes && cat >>confdefs.h <<\EOF 21797 24886 #define HAVE_SYS_TIME_SELECT 1 21798 @@ -13607,7 +14 504,7 @@24887 @@ -13607,7 +14615,7 @@ 21799 24888 ac_compiler_gnu=$ac_cv_c_compiler_gnu 21800 24889 ac_main_return=return 21801 24890 21802 24891 -echo "$as_me:13610: checking for $CC option to accept ANSI C" >&5 21803 +echo "$as_me:14 507: checking for $CC option to accept ANSI C" >&524892 +echo "$as_me:14618: checking for $CC option to accept ANSI C" >&5 21804 24893 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 21805 24894 if test "${ac_cv_prog_cc_stdc+set}" = set; then 21806 24895 echo $ECHO_N "(cached) $ECHO_C" >&6 21807 @@ -13615,7 +14 512,7 @@24896 @@ -13615,7 +14623,7 @@ 21808 24897 ac_cv_prog_cc_stdc=no 21809 24898 ac_save_CC=$CC 21810 24899 cat >conftest.$ac_ext <<_ACEOF 21811 24900 -#line 13618 "configure" 21812 +#line 14 515"configure"24901 +#line 14626 "configure" 21813 24902 #include "confdefs.h" 21814 24903 #include <stdarg.h> 21815 24904 #include <stdio.h> 21816 @@ -13664,16 +14 561,16 @@24905 @@ -13664,16 +14672,16 @@ 21817 24906 do 21818 24907 CC="$ac_save_CC $ac_arg" 21819 24908 rm -f conftest.$ac_objext 21820 24909 -if { (eval echo "$as_me:13667: \"$ac_compile\"") >&5 21821 +if { (eval echo "$as_me:14 564: \"$ac_compile\"") >&524910 +if { (eval echo "$as_me:14675: \"$ac_compile\"") >&5 21822 24911 (eval $ac_compile) 2>&5 21823 24912 ac_status=$? 21824 24913 - echo "$as_me:13670: \$? = $ac_status" >&5 21825 + echo "$as_me:14 567: \$? = $ac_status" >&524914 + echo "$as_me:14678: \$? = $ac_status" >&5 21826 24915 (exit $ac_status); } && 21827 24916 { ac_try='test -s conftest.$ac_objext' 21828 24917 - { (eval echo "$as_me:13673: \"$ac_try\"") >&5 21829 + { (eval echo "$as_me:14 570: \"$ac_try\"") >&524918 + { (eval echo "$as_me:14681: \"$ac_try\"") >&5 21830 24919 (eval $ac_try) 2>&5 21831 24920 ac_status=$? 21832 24921 - echo "$as_me:13676: \$? = $ac_status" >&5 21833 + echo "$as_me:14 573: \$? = $ac_status" >&524922 + echo "$as_me:14684: \$? = $ac_status" >&5 21834 24923 (exit $ac_status); }; }; then 21835 24924 ac_cv_prog_cc_stdc=$ac_arg 21836 24925 break 21837 @@ -13690,21 +14 587,21 @@24926 @@ -13690,21 +14698,21 @@ 21838 24927 21839 24928 case "x$ac_cv_prog_cc_stdc" in 21840 24929 x|xno) 21841 24930 - echo "$as_me:13693: result: none needed" >&5 21842 + echo "$as_me:14 590: result: none needed" >&524931 + echo "$as_me:14701: result: none needed" >&5 21843 24932 echo "${ECHO_T}none needed" >&6 ;; 21844 24933 *) 21845 24934 - echo "$as_me:13696: result: $ac_cv_prog_cc_stdc" >&5 21846 + echo "$as_me:14 593: result: $ac_cv_prog_cc_stdc" >&524935 + echo "$as_me:14704: result: $ac_cv_prog_cc_stdc" >&5 21847 24936 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 21848 24937 CC="$CC $ac_cv_prog_cc_stdc" ;; … … 21850 24939 21851 24940 -echo "$as_me:13701: checking for an ANSI C-conforming const" >&5 21852 +echo "$as_me:14 598: checking for an ANSI C-conforming const" >&524941 +echo "$as_me:14709: checking for an ANSI C-conforming const" >&5 21853 24942 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 21854 24943 if test "${ac_cv_c_const+set}" = set; then … … 21857 24946 cat >conftest.$ac_ext <<_ACEOF 21858 24947 -#line 13707 "configure" 21859 +#line 14 604"configure"24948 +#line 14715 "configure" 21860 24949 #include "confdefs.h" 21861 24950 21862 24951 int 21863 @@ -13762,16 +14 659,16 @@24952 @@ -13762,16 +14770,16 @@ 21864 24953 } 21865 24954 _ACEOF 21866 24955 rm -f conftest.$ac_objext 21867 24956 -if { (eval echo "$as_me:13765: \"$ac_compile\"") >&5 21868 +if { (eval echo "$as_me:14 662: \"$ac_compile\"") >&524957 +if { (eval echo "$as_me:14773: \"$ac_compile\"") >&5 21869 24958 (eval $ac_compile) 2>&5 21870 24959 ac_status=$? 21871 24960 - echo "$as_me:13768: \$? = $ac_status" >&5 21872 + echo "$as_me:14 665: \$? = $ac_status" >&524961 + echo "$as_me:14776: \$? = $ac_status" >&5 21873 24962 (exit $ac_status); } && 21874 24963 { ac_try='test -s conftest.$ac_objext' 21875 24964 - { (eval echo "$as_me:13771: \"$ac_try\"") >&5 21876 + { (eval echo "$as_me:14 668: \"$ac_try\"") >&524965 + { (eval echo "$as_me:14779: \"$ac_try\"") >&5 21877 24966 (eval $ac_try) 2>&5 21878 24967 ac_status=$? 21879 24968 - echo "$as_me:13774: \$? = $ac_status" >&5 21880 + echo "$as_me:14 671: \$? = $ac_status" >&524969 + echo "$as_me:14782: \$? = $ac_status" >&5 21881 24970 (exit $ac_status); }; }; then 21882 24971 ac_cv_c_const=yes 21883 24972 else 21884 @@ -13781,7 +14 678,7 @@24973 @@ -13781,7 +14789,7 @@ 21885 24974 fi 21886 24975 rm -f conftest.$ac_objext conftest.$ac_ext 21887 24976 fi 21888 24977 -echo "$as_me:13784: result: $ac_cv_c_const" >&5 21889 +echo "$as_me:14 681: result: $ac_cv_c_const" >&524978 +echo "$as_me:14792: result: $ac_cv_c_const" >&5 21890 24979 echo "${ECHO_T}$ac_cv_c_const" >&6 21891 24980 if test $ac_cv_c_const = no; then 21892 24981 21893 @@ -13791,7 +14 688,7 @@24982 @@ -13791,7 +14799,7 @@ 21894 24983 21895 24984 fi 21896 24985 21897 24986 -echo "$as_me:13794: checking for inline" >&5 21898 +echo "$as_me:14 691: checking for inline" >&524987 +echo "$as_me:14802: checking for inline" >&5 21899 24988 echo $ECHO_N "checking for inline... $ECHO_C" >&6 21900 24989 if test "${ac_cv_c_inline+set}" = set; then 21901 24990 echo $ECHO_N "(cached) $ECHO_C" >&6 21902 @@ -13799,7 +14 696,7 @@24991 @@ -13799,7 +14807,7 @@ 21903 24992 ac_cv_c_inline=no 21904 24993 for ac_kw in inline __inline__ __inline; do 21905 24994 cat >conftest.$ac_ext <<_ACEOF 21906 24995 -#line 13802 "configure" 21907 +#line 14 699"configure"24996 +#line 14810 "configure" 21908 24997 #include "confdefs.h" 21909 24998 #ifndef __cplusplus 21910 24999 static $ac_kw int static_foo () {return 0; } 21911 @@ -13808,16 +14 705,16 @@25000 @@ -13808,16 +14816,16 @@ 21912 25001 21913 25002 _ACEOF 21914 25003 rm -f conftest.$ac_objext 21915 25004 -if { (eval echo "$as_me:13811: \"$ac_compile\"") >&5 21916 +if { (eval echo "$as_me:14 708: \"$ac_compile\"") >&525005 +if { (eval echo "$as_me:14819: \"$ac_compile\"") >&5 21917 25006 (eval $ac_compile) 2>&5 21918 25007 ac_status=$? 21919 25008 - echo "$as_me:13814: \$? = $ac_status" >&5 21920 + echo "$as_me:14 711: \$? = $ac_status" >&525009 + echo "$as_me:14822: \$? = $ac_status" >&5 21921 25010 (exit $ac_status); } && 21922 25011 { ac_try='test -s conftest.$ac_objext' 21923 25012 - { (eval echo "$as_me:13817: \"$ac_try\"") >&5 21924 + { (eval echo "$as_me:14 714: \"$ac_try\"") >&525013 + { (eval echo "$as_me:14825: \"$ac_try\"") >&5 21925 25014 (eval $ac_try) 2>&5 21926 25015 ac_status=$? 21927 25016 - echo "$as_me:13820: \$? = $ac_status" >&5 21928 + echo "$as_me:14 717: \$? = $ac_status" >&525017 + echo "$as_me:14828: \$? = $ac_status" >&5 21929 25018 (exit $ac_status); }; }; then 21930 25019 ac_cv_c_inline=$ac_kw; break 21931 25020 else 21932 @@ -13828,7 +14 725,7 @@25021 @@ -13828,7 +14836,7 @@ 21933 25022 done 21934 25023 21935 25024 fi 21936 25025 -echo "$as_me:13831: result: $ac_cv_c_inline" >&5 21937 +echo "$as_me:14 728: result: $ac_cv_c_inline" >&525026 +echo "$as_me:14839: result: $ac_cv_c_inline" >&5 21938 25027 echo "${ECHO_T}$ac_cv_c_inline" >&6 21939 25028 case $ac_cv_c_inline in 21940 25029 inline | yes) ;; 21941 @@ -13851,7 +14748,7 @@ 25030 @@ -13849,9 +14857,12 @@ 25031 if test "$INTEL_COMPILER" = yes 25032 then 21942 25033 : 25034 + elif test "$CLANG_COMPILER" = yes 25035 + then 25036 + : 21943 25037 elif test "$GCC" = yes 21944 25038 then 21945 25039 - echo "$as_me:13854: checking if $CC supports options to tune inlining" >&5 21946 + echo "$as_me:14 751: checking if $CC supports options to tune inlining" >&525040 + echo "$as_me:14865: checking if $CC supports options to tune inlining" >&5 21947 25041 echo $ECHO_N "checking if $CC supports options to tune inlining... $ECHO_C" >&6 21948 25042 if test "${cf_cv_gcc_inline+set}" = set; then 21949 25043 echo $ECHO_N "(cached) $ECHO_C" >&6 21950 @@ -13860,7 +14 757,7 @@25044 @@ -13860,7 +14871,7 @@ 21951 25045 cf_save_CFLAGS=$CFLAGS 21952 25046 CFLAGS="$CFLAGS --param max-inline-insns-single=1200" 21953 25047 cat >conftest.$ac_ext <<_ACEOF 21954 25048 -#line 13863 "configure" 21955 +#line 14 760"configure"25049 +#line 14874 "configure" 21956 25050 #include "confdefs.h" 21957 25051 inline int foo(void) { return 1; } 21958 25052 int 21959 @@ -13872,16 +14 769,16 @@25053 @@ -13872,16 +14883,16 @@ 21960 25054 } 21961 25055 _ACEOF 21962 25056 rm -f conftest.$ac_objext 21963 25057 -if { (eval echo "$as_me:13875: \"$ac_compile\"") >&5 21964 +if { (eval echo "$as_me:14 772: \"$ac_compile\"") >&525058 +if { (eval echo "$as_me:14886: \"$ac_compile\"") >&5 21965 25059 (eval $ac_compile) 2>&5 21966 25060 ac_status=$? 21967 25061 - echo "$as_me:13878: \$? = $ac_status" >&5 21968 + echo "$as_me:14 775: \$? = $ac_status" >&525062 + echo "$as_me:14889: \$? = $ac_status" >&5 21969 25063 (exit $ac_status); } && 21970 25064 { ac_try='test -s conftest.$ac_objext' 21971 25065 - { (eval echo "$as_me:13881: \"$ac_try\"") >&5 21972 + { (eval echo "$as_me:14 778: \"$ac_try\"") >&525066 + { (eval echo "$as_me:14892: \"$ac_try\"") >&5 21973 25067 (eval $ac_try) 2>&5 21974 25068 ac_status=$? 21975 25069 - echo "$as_me:13884: \$? = $ac_status" >&5 21976 + echo "$as_me:14 781: \$? = $ac_status" >&525070 + echo "$as_me:14895: \$? = $ac_status" >&5 21977 25071 (exit $ac_status); }; }; then 21978 25072 cf_cv_gcc_inline=yes 21979 25073 else 21980 @@ -13893,7 +14 790,7 @@25074 @@ -13893,7 +14904,7 @@ 21981 25075 CFLAGS=$cf_save_CFLAGS 21982 25076 21983 25077 fi 21984 25078 -echo "$as_me:13896: result: $cf_cv_gcc_inline" >&5 21985 +echo "$as_me:14 793: result: $cf_cv_gcc_inline" >&525079 +echo "$as_me:14907: result: $cf_cv_gcc_inline" >&5 21986 25080 echo "${ECHO_T}$cf_cv_gcc_inline" >&6 21987 25081 if test "$cf_cv_gcc_inline" = yes ; then 21988 25082 21989 @@ -13979,7 +14 876,7 @@25083 @@ -13979,7 +14990,7 @@ 21990 25084 fi 21991 25085 fi 21992 25086 21993 25087 -echo "$as_me:13982: checking for signal global datatype" >&5 21994 +echo "$as_me:14 879: checking for signal global datatype" >&525088 +echo "$as_me:14993: checking for signal global datatype" >&5 21995 25089 echo $ECHO_N "checking for signal global datatype... $ECHO_C" >&6 21996 25090 if test "${cf_cv_sig_atomic_t+set}" = set; then 21997 25091 echo $ECHO_N "(cached) $ECHO_C" >&6 21998 @@ -13991,7 +1 4888,7 @@25092 @@ -13991,7 +15002,7 @@ 21999 25093 "int" 22000 25094 do 22001 25095 cat >conftest.$ac_ext <<_ACEOF 22002 25096 -#line 13994 "configure" 22003 +#line 1 4891"configure"25097 +#line 15005 "configure" 22004 25098 #include "confdefs.h" 22005 25099 22006 25100 #include <sys/types.h> 22007 @@ -14014,16 +1 4911,16 @@25101 @@ -14014,16 +15025,16 @@ 22008 25102 } 22009 25103 _ACEOF 22010 25104 rm -f conftest.$ac_objext 22011 25105 -if { (eval echo "$as_me:14017: \"$ac_compile\"") >&5 22012 +if { (eval echo "$as_me:1 4914: \"$ac_compile\"") >&525106 +if { (eval echo "$as_me:15028: \"$ac_compile\"") >&5 22013 25107 (eval $ac_compile) 2>&5 22014 25108 ac_status=$? 22015 25109 - echo "$as_me:14020: \$? = $ac_status" >&5 22016 + echo "$as_me:1 4917: \$? = $ac_status" >&525110 + echo "$as_me:15031: \$? = $ac_status" >&5 22017 25111 (exit $ac_status); } && 22018 25112 { ac_try='test -s conftest.$ac_objext' 22019 25113 - { (eval echo "$as_me:14023: \"$ac_try\"") >&5 22020 + { (eval echo "$as_me:1 4920: \"$ac_try\"") >&525114 + { (eval echo "$as_me:15034: \"$ac_try\"") >&5 22021 25115 (eval $ac_try) 2>&5 22022 25116 ac_status=$? 22023 25117 - echo "$as_me:14026: \$? = $ac_status" >&5 22024 + echo "$as_me:1 4923: \$? = $ac_status" >&525118 + echo "$as_me:15037: \$? = $ac_status" >&5 22025 25119 (exit $ac_status); }; }; then 22026 25120 cf_cv_sig_atomic_t=$cf_type 22027 25121 else 22028 @@ -14037,7 +1 4934,7 @@25122 @@ -14037,7 +15048,7 @@ 22029 25123 22030 25124 fi 22031 25125 22032 25126 -echo "$as_me:14040: result: $cf_cv_sig_atomic_t" >&5 22033 +echo "$as_me:1 4937: result: $cf_cv_sig_atomic_t" >&525127 +echo "$as_me:15051: result: $cf_cv_sig_atomic_t" >&5 22034 25128 echo "${ECHO_T}$cf_cv_sig_atomic_t" >&6 22035 25129 test "$cf_cv_sig_atomic_t" != no && cat >>confdefs.h <<EOF 22036 25130 #define SIG_ATOMIC_T $cf_cv_sig_atomic_t 22037 @@ -14045,7 +1 4942,7 @@25131 @@ -14045,7 +15056,7 @@ 22038 25132 22039 25133 if test $NCURSES_CHTYPE = auto ; then 22040 25134 22041 25135 -echo "$as_me:14048: checking for type of chtype" >&5 22042 +echo "$as_me:1 4945: checking for type of chtype" >&525136 +echo "$as_me:15059: checking for type of chtype" >&5 22043 25137 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6 22044 25138 if test "${cf_cv_typeof_chtype+set}" = set; then 22045 25139 echo $ECHO_N "(cached) $ECHO_C" >&6 22046 @@ -14055,7 +1 4952,7 @@25140 @@ -14055,7 +15066,7 @@ 22047 25141 cf_cv_typeof_chtype=long 22048 25142 else 22049 25143 cat >conftest.$ac_ext <<_ACEOF 22050 25144 -#line 14058 "configure" 22051 +#line 1 4955"configure"25145 +#line 15069 "configure" 22052 25146 #include "confdefs.h" 22053 25147 22054 25148 #define WANT_BITS 31 22055 @@ -14090,15 +1 4987,15 @@25149 @@ -14090,15 +15101,15 @@ 22056 25150 22057 25151 _ACEOF 22058 25152 rm -f conftest$ac_exeext 22059 25153 -if { (eval echo "$as_me:14093: \"$ac_link\"") >&5 22060 +if { (eval echo "$as_me:1 4990: \"$ac_link\"") >&525154 +if { (eval echo "$as_me:15104: \"$ac_link\"") >&5 22061 25155 (eval $ac_link) 2>&5 22062 25156 ac_status=$? 22063 25157 - echo "$as_me:14096: \$? = $ac_status" >&5 22064 + echo "$as_me:1 4993: \$? = $ac_status" >&525158 + echo "$as_me:15107: \$? = $ac_status" >&5 22065 25159 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 22066 25160 - { (eval echo "$as_me:14098: \"$ac_try\"") >&5 22067 + { (eval echo "$as_me:1 4995: \"$ac_try\"") >&525161 + { (eval echo "$as_me:15109: \"$ac_try\"") >&5 22068 25162 (eval $ac_try) 2>&5 22069 25163 ac_status=$? 22070 25164 - echo "$as_me:14101: \$? = $ac_status" >&5 22071 + echo "$as_me:1 4998: \$? = $ac_status" >&525165 + echo "$as_me:15112: \$? = $ac_status" >&5 22072 25166 (exit $ac_status); }; }; then 22073 25167 cf_cv_typeof_chtype=`cat cf_test.out` 22074 25168 else 22075 @@ -14113,7 +15 010,7 @@25169 @@ -14113,7 +15124,7 @@ 22076 25170 22077 25171 fi 22078 25172 22079 25173 -echo "$as_me:14116: result: $cf_cv_typeof_chtype" >&5 22080 +echo "$as_me:15 013: result: $cf_cv_typeof_chtype" >&525174 +echo "$as_me:15127: result: $cf_cv_typeof_chtype" >&5 22081 25175 echo "${ECHO_T}$cf_cv_typeof_chtype" >&6 22082 25176 22083 25177 cat >>confdefs.h <<EOF 22084 @@ -14125,14 +15 022,14 @@25178 @@ -14125,14 +15136,14 @@ 22085 25179 fi 22086 25180 test "$cf_cv_typeof_chtype" = unsigned && cf_cv_typeof_chtype="" 22087 25181 22088 25182 -echo "$as_me:14128: checking if unsigned literals are legal" >&5 22089 +echo "$as_me:15 025: checking if unsigned literals are legal" >&525183 +echo "$as_me:15139: checking if unsigned literals are legal" >&5 22090 25184 echo $ECHO_N "checking if unsigned literals are legal... $ECHO_C" >&6 22091 25185 if test "${cf_cv_unsigned_literals+set}" = set; then … … 22095 25189 cat >conftest.$ac_ext <<_ACEOF 22096 25190 -#line 14135 "configure" 22097 +#line 15 032"configure"25191 +#line 15146 "configure" 22098 25192 #include "confdefs.h" 22099 25193 22100 25194 int 22101 @@ -14144,16 +15 041,16 @@25195 @@ -14144,16 +15155,16 @@ 22102 25196 } 22103 25197 _ACEOF 22104 25198 rm -f conftest.$ac_objext 22105 25199 -if { (eval echo "$as_me:14147: \"$ac_compile\"") >&5 22106 +if { (eval echo "$as_me:15 044: \"$ac_compile\"") >&525200 +if { (eval echo "$as_me:15158: \"$ac_compile\"") >&5 22107 25201 (eval $ac_compile) 2>&5 22108 25202 ac_status=$? 22109 25203 - echo "$as_me:14150: \$? = $ac_status" >&5 22110 + echo "$as_me:15 047: \$? = $ac_status" >&525204 + echo "$as_me:15161: \$? = $ac_status" >&5 22111 25205 (exit $ac_status); } && 22112 25206 { ac_try='test -s conftest.$ac_objext' 22113 25207 - { (eval echo "$as_me:14153: \"$ac_try\"") >&5 22114 + { (eval echo "$as_me:15 050: \"$ac_try\"") >&525208 + { (eval echo "$as_me:15164: \"$ac_try\"") >&5 22115 25209 (eval $ac_try) 2>&5 22116 25210 ac_status=$? 22117 25211 - echo "$as_me:14156: \$? = $ac_status" >&5 22118 + echo "$as_me:15 053: \$? = $ac_status" >&525212 + echo "$as_me:15167: \$? = $ac_status" >&5 22119 25213 (exit $ac_status); }; }; then 22120 25214 cf_cv_unsigned_literals=yes 22121 25215 else 22122 @@ -14165,7 +15 062,7 @@25216 @@ -14165,7 +15176,7 @@ 22123 25217 22124 25218 fi 22125 25219 22126 25220 -echo "$as_me:14168: result: $cf_cv_unsigned_literals" >&5 22127 +echo "$as_me:15 065: result: $cf_cv_unsigned_literals" >&525221 +echo "$as_me:15179: result: $cf_cv_unsigned_literals" >&5 22128 25222 echo "${ECHO_T}$cf_cv_unsigned_literals" >&6 22129 25223 22130 25224 cf_cv_1UL="1" 22131 @@ -14181,14 +15 078,14 @@25225 @@ -14181,14 +15192,14 @@ 22132 25226 22133 25227 ### Checks for external-data 22134 25228 22135 25229 -echo "$as_me:14184: checking if external errno is declared" >&5 22136 +echo "$as_me:15 081: checking if external errno is declared" >&525230 +echo "$as_me:15195: checking if external errno is declared" >&5 22137 25231 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6 22138 25232 if test "${cf_cv_dcl_errno+set}" = set; then … … 22142 25236 cat >conftest.$ac_ext <<_ACEOF 22143 25237 -#line 14191 "configure" 22144 +#line 15 088"configure"25238 +#line 15202 "configure" 22145 25239 #include "confdefs.h" 22146 25240 22147 25241 #ifdef HAVE_STDLIB_H 22148 @@ -14206,16 +15 103,16 @@25242 @@ -14206,16 +15217,16 @@ 22149 25243 } 22150 25244 _ACEOF 22151 25245 rm -f conftest.$ac_objext 22152 25246 -if { (eval echo "$as_me:14209: \"$ac_compile\"") >&5 22153 +if { (eval echo "$as_me:15 106: \"$ac_compile\"") >&525247 +if { (eval echo "$as_me:15220: \"$ac_compile\"") >&5 22154 25248 (eval $ac_compile) 2>&5 22155 25249 ac_status=$? 22156 25250 - echo "$as_me:14212: \$? = $ac_status" >&5 22157 + echo "$as_me:15 109: \$? = $ac_status" >&525251 + echo "$as_me:15223: \$? = $ac_status" >&5 22158 25252 (exit $ac_status); } && 22159 25253 { ac_try='test -s conftest.$ac_objext' 22160 25254 - { (eval echo "$as_me:14215: \"$ac_try\"") >&5 22161 + { (eval echo "$as_me:15 112: \"$ac_try\"") >&525255 + { (eval echo "$as_me:15226: \"$ac_try\"") >&5 22162 25256 (eval $ac_try) 2>&5 22163 25257 ac_status=$? 22164 25258 - echo "$as_me:14218: \$? = $ac_status" >&5 22165 + echo "$as_me:15 115: \$? = $ac_status" >&525259 + echo "$as_me:15229: \$? = $ac_status" >&5 22166 25260 (exit $ac_status); }; }; then 22167 25261 cf_cv_dcl_errno=yes 22168 25262 else 22169 @@ -14226,7 +15 123,7 @@25263 @@ -14226,7 +15237,7 @@ 22170 25264 rm -f conftest.$ac_objext conftest.$ac_ext 22171 25265 22172 25266 fi 22173 25267 -echo "$as_me:14229: result: $cf_cv_dcl_errno" >&5 22174 +echo "$as_me:15 126: result: $cf_cv_dcl_errno" >&525268 +echo "$as_me:15240: result: $cf_cv_dcl_errno" >&5 22175 25269 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 22176 25270 22177 25271 if test "$cf_cv_dcl_errno" = no ; then 22178 @@ -14241,14 +15 138,14 @@25272 @@ -14241,14 +15252,14 @@ 22179 25273 22180 25274 # It's possible (for near-UNIX clones) that the data doesn't exist 22181 25275 22182 25276 -echo "$as_me:14244: checking if external errno exists" >&5 22183 +echo "$as_me:15 141: checking if external errno exists" >&525277 +echo "$as_me:15255: checking if external errno exists" >&5 22184 25278 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6 22185 25279 if test "${cf_cv_have_errno+set}" = set; then … … 22189 25283 cat >conftest.$ac_ext <<_ACEOF 22190 25284 -#line 14251 "configure" 22191 +#line 15 148"configure"25285 +#line 15262 "configure" 22192 25286 #include "confdefs.h" 22193 25287 22194 25288 #undef errno 22195 @@ -14263,16 +15 160,16 @@25289 @@ -14263,16 +15274,16 @@ 22196 25290 } 22197 25291 _ACEOF 22198 25292 rm -f conftest.$ac_objext conftest$ac_exeext 22199 25293 -if { (eval echo "$as_me:14266: \"$ac_link\"") >&5 22200 +if { (eval echo "$as_me:15 163: \"$ac_link\"") >&525294 +if { (eval echo "$as_me:15277: \"$ac_link\"") >&5 22201 25295 (eval $ac_link) 2>&5 22202 25296 ac_status=$? 22203 25297 - echo "$as_me:14269: \$? = $ac_status" >&5 22204 + echo "$as_me:15 166: \$? = $ac_status" >&525298 + echo "$as_me:15280: \$? = $ac_status" >&5 22205 25299 (exit $ac_status); } && 22206 25300 { ac_try='test -s conftest$ac_exeext' 22207 25301 - { (eval echo "$as_me:14272: \"$ac_try\"") >&5 22208 + { (eval echo "$as_me:15 169: \"$ac_try\"") >&525302 + { (eval echo "$as_me:15283: \"$ac_try\"") >&5 22209 25303 (eval $ac_try) 2>&5 22210 25304 ac_status=$? 22211 25305 - echo "$as_me:14275: \$? = $ac_status" >&5 22212 + echo "$as_me:15 172: \$? = $ac_status" >&525306 + echo "$as_me:15286: \$? = $ac_status" >&5 22213 25307 (exit $ac_status); }; }; then 22214 25308 cf_cv_have_errno=yes 22215 25309 else 22216 @@ -14283,7 +15 180,7 @@25310 @@ -14283,7 +15294,7 @@ 22217 25311 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22218 25312 22219 25313 fi 22220 25314 -echo "$as_me:14286: result: $cf_cv_have_errno" >&5 22221 +echo "$as_me:15 183: result: $cf_cv_have_errno" >&525315 +echo "$as_me:15297: result: $cf_cv_have_errno" >&5 22222 25316 echo "${ECHO_T}$cf_cv_have_errno" >&6 22223 25317 22224 25318 if test "$cf_cv_have_errno" = yes ; then 22225 @@ -14296,7 +15 193,7 @@25319 @@ -14296,7 +15307,7 @@ 22226 25320 22227 25321 fi 22228 25322 22229 25323 -echo "$as_me:14299: checking if data-only library module links" >&5 22230 +echo "$as_me:15 196: checking if data-only library module links" >&525324 +echo "$as_me:15310: checking if data-only library module links" >&5 22231 25325 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6 22232 25326 if test "${cf_cv_link_dataonly+set}" = set; then 22233 25327 echo $ECHO_N "(cached) $ECHO_C" >&6 22234 @@ -14304,20 +15 201,20 @@25328 @@ -14304,20 +15315,20 @@ 22235 25329 22236 25330 rm -f conftest.a 22237 25331 cat >conftest.$ac_ext <<EOF 22238 25332 -#line 14307 "configure" 22239 +#line 15 204"configure"25333 +#line 15318 "configure" 22240 25334 int testdata[3] = { 123, 456, 789 }; 22241 25335 EOF 22242 25336 - if { (eval echo "$as_me:14310: \"$ac_compile\"") >&5 22243 + if { (eval echo "$as_me:15 207: \"$ac_compile\"") >&525337 + if { (eval echo "$as_me:15321: \"$ac_compile\"") >&5 22244 25338 (eval $ac_compile) 2>&5 22245 25339 ac_status=$? 22246 25340 - echo "$as_me:14313: \$? = $ac_status" >&5 22247 + echo "$as_me:15 210: \$? = $ac_status" >&525341 + echo "$as_me:15324: \$? = $ac_status" >&5 22248 25342 (exit $ac_status); } ; then 22249 25343 mv conftest.o data.o && \ … … 22253 25347 cat >conftest.$ac_ext <<EOF 22254 25348 -#line 14320 "configure" 22255 +#line 15 217"configure"25349 +#line 15331 "configure" 22256 25350 int testfunc() 22257 25351 { 22258 25352 #if defined(NeXT) 22259 @@ -14330,10 +15 227,10 @@25353 @@ -14330,10 +15341,10 @@ 22260 25354 #endif 22261 25355 } 22262 25356 EOF 22263 25357 - if { (eval echo "$as_me:14333: \"$ac_compile\"") >&5 22264 + if { (eval echo "$as_me:15 230: \"$ac_compile\"") >&525358 + if { (eval echo "$as_me:15344: \"$ac_compile\"") >&5 22265 25359 (eval $ac_compile) 2>&5 22266 25360 ac_status=$? 22267 25361 - echo "$as_me:14336: \$? = $ac_status" >&5 22268 + echo "$as_me:15 233: \$? = $ac_status" >&525362 + echo "$as_me:15347: \$? = $ac_status" >&5 22269 25363 (exit $ac_status); }; then 22270 25364 mv conftest.o func.o && \ 22271 25365 ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null 22272 @@ -14346,7 +15 243,7 @@25366 @@ -14346,7 +15357,7 @@ 22273 25367 cf_cv_link_dataonly=unknown 22274 25368 else 22275 25369 cat >conftest.$ac_ext <<_ACEOF 22276 25370 -#line 14349 "configure" 22277 +#line 15 246"configure"25371 +#line 15360 "configure" 22278 25372 #include "confdefs.h" 22279 25373 22280 25374 int main() 22281 @@ -14357,15 +15 254,15 @@25375 @@ -14357,15 +15368,15 @@ 22282 25376 22283 25377 _ACEOF 22284 25378 rm -f conftest$ac_exeext 22285 25379 -if { (eval echo "$as_me:14360: \"$ac_link\"") >&5 22286 +if { (eval echo "$as_me:15 257: \"$ac_link\"") >&525380 +if { (eval echo "$as_me:15371: \"$ac_link\"") >&5 22287 25381 (eval $ac_link) 2>&5 22288 25382 ac_status=$? 22289 25383 - echo "$as_me:14363: \$? = $ac_status" >&5 22290 + echo "$as_me:15 260: \$? = $ac_status" >&525384 + echo "$as_me:15374: \$? = $ac_status" >&5 22291 25385 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 22292 25386 - { (eval echo "$as_me:14365: \"$ac_try\"") >&5 22293 + { (eval echo "$as_me:15 262: \"$ac_try\"") >&525387 + { (eval echo "$as_me:15376: \"$ac_try\"") >&5 22294 25388 (eval $ac_try) 2>&5 22295 25389 ac_status=$? 22296 25390 - echo "$as_me:14368: \$? = $ac_status" >&5 22297 + echo "$as_me:15 265: \$? = $ac_status" >&525391 + echo "$as_me:15379: \$? = $ac_status" >&5 22298 25392 (exit $ac_status); }; }; then 22299 25393 cf_cv_link_dataonly=yes 22300 25394 else 22301 @@ -14380,7 +15 277,7 @@25395 @@ -14380,7 +15391,7 @@ 22302 25396 22303 25397 fi 22304 25398 22305 25399 -echo "$as_me:14383: result: $cf_cv_link_dataonly" >&5 22306 +echo "$as_me:15 280: result: $cf_cv_link_dataonly" >&525400 +echo "$as_me:15394: result: $cf_cv_link_dataonly" >&5 22307 25401 echo "${ECHO_T}$cf_cv_link_dataonly" >&6 22308 25402 22309 25403 if test "$cf_cv_link_dataonly" = no ; then 22310 @@ -14415,13 +15312,13 @@ 25404 @@ -14400,10 +15411,12 @@ 25405 getttynam \ 25406 issetugid \ 25407 poll \ 25408 +putenv \ 25409 remove \ 25410 select \ 25411 setbuf \ 25412 setbuffer \ 25413 +setenv \ 25414 setvbuf \ 25415 sigaction \ 25416 sigvec \ 25417 @@ -14415,13 +15428,13 @@ 22311 25418 22312 25419 do 22313 25420 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 22314 25421 -echo "$as_me:14418: checking for $ac_func" >&5 22315 +echo "$as_me:15 315: checking for $ac_func" >&525422 +echo "$as_me:15431: checking for $ac_func" >&5 22316 25423 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 22317 25424 if eval "test \"\${$as_ac_var+set}\" = set"; then … … 22320 25427 cat >conftest.$ac_ext <<_ACEOF 22321 25428 -#line 14424 "configure" 22322 +#line 15 321"configure"25429 +#line 15437 "configure" 22323 25430 #include "confdefs.h" 22324 25431 /* System header to define __stub macros and hopefully few prototypes, 22325 25432 which can conflict with char $ac_func (); below. */ 22326 @@ -14452,16 +15349,16 @@ 25433 @@ -14444,7 +15457,7 @@ 25434 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 25435 choke me 25436 #else 25437 -f = $ac_func; 25438 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 25439 #endif 25440 25441 ; 25442 @@ -14452,16 +15465,16 @@ 22327 25443 } 22328 25444 _ACEOF 22329 25445 rm -f conftest.$ac_objext conftest$ac_exeext 22330 25446 -if { (eval echo "$as_me:14455: \"$ac_link\"") >&5 22331 +if { (eval echo "$as_me:15 352: \"$ac_link\"") >&525447 +if { (eval echo "$as_me:15468: \"$ac_link\"") >&5 22332 25448 (eval $ac_link) 2>&5 22333 25449 ac_status=$? 22334 25450 - echo "$as_me:14458: \$? = $ac_status" >&5 22335 + echo "$as_me:15 355: \$? = $ac_status" >&525451 + echo "$as_me:15471: \$? = $ac_status" >&5 22336 25452 (exit $ac_status); } && 22337 25453 { ac_try='test -s conftest$ac_exeext' 22338 25454 - { (eval echo "$as_me:14461: \"$ac_try\"") >&5 22339 + { (eval echo "$as_me:15 358: \"$ac_try\"") >&525455 + { (eval echo "$as_me:15474: \"$ac_try\"") >&5 22340 25456 (eval $ac_try) 2>&5 22341 25457 ac_status=$? 22342 25458 - echo "$as_me:14464: \$? = $ac_status" >&5 22343 + echo "$as_me:15 361: \$? = $ac_status" >&525459 + echo "$as_me:15477: \$? = $ac_status" >&5 22344 25460 (exit $ac_status); }; }; then 22345 25461 eval "$as_ac_var=yes" 22346 25462 else 22347 @@ -14471,7 +15 368,7 @@25463 @@ -14471,7 +15484,7 @@ 22348 25464 fi 22349 25465 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22350 25466 fi 22351 25467 -echo "$as_me:14474: result: `eval echo '${'$as_ac_var'}'`" >&5 22352 +echo "$as_me:15 371: result: `eval echo '${'$as_ac_var'}'`" >&525468 +echo "$as_me:15487: result: `eval echo '${'$as_ac_var'}'`" >&5 22353 25469 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 22354 25470 if test `eval echo '${'$as_ac_var'}'` = yes; then 22355 25471 cat >>confdefs.h <<EOF 22356 @@ -14483,14 +15 380,14@@25472 @@ -14483,14 +15496,70 @@ 22357 25473 22358 25474 if test "$with_getcap" = "yes" ; then 22359 25475 22360 25476 -echo "$as_me:14486: checking for terminal-capability database functions" >&5 22361 +echo "$as_me:15 383: checking for terminal-capability database functions" >&525477 +echo "$as_me:15499: checking for terminal-capability database functions" >&5 22362 25478 echo $ECHO_N "checking for terminal-capability database functions... $ECHO_C" >&6 22363 25479 if test "${cf_cv_cgetent+set}" = set; then … … 22367 25483 cat >conftest.$ac_ext <<_ACEOF 22368 25484 -#line 14493 "configure" 22369 +#line 15390 "configure" 22370 #include "confdefs.h" 22371 22372 #include <stdlib.h> 22373 @@ -14501,7 +15398,7 @@ 22374 char temp[128]; 22375 char *buf = temp; 22376 char *db_array = temp; 22377 - cgetent(&buf, /* int *, */ &db_array, "vt100"); 22378 + cgetent(&buf, &db_array, "vt100"); 22379 cgetcap(buf, "tc", '='); 22380 cgetmatch(buf, "tc"); 22381 22382 @@ -14510,16 +15407,16 @@ 22383 } 22384 _ACEOF 22385 rm -f conftest.$ac_objext conftest$ac_exeext 22386 -if { (eval echo "$as_me:14513: \"$ac_link\"") >&5 22387 +if { (eval echo "$as_me:15410: \"$ac_link\"") >&5 22388 (eval $ac_link) 2>&5 22389 ac_status=$? 22390 - echo "$as_me:14516: \$? = $ac_status" >&5 22391 + echo "$as_me:15413: \$? = $ac_status" >&5 22392 (exit $ac_status); } && 22393 { ac_try='test -s conftest$ac_exeext' 22394 - { (eval echo "$as_me:14519: \"$ac_try\"") >&5 22395 + { (eval echo "$as_me:15416: \"$ac_try\"") >&5 22396 (eval $ac_try) 2>&5 22397 ac_status=$? 22398 - echo "$as_me:14522: \$? = $ac_status" >&5 22399 + echo "$as_me:15419: \$? = $ac_status" >&5 22400 (exit $ac_status); }; }; then 22401 cf_cv_cgetent=yes 22402 else 22403 @@ -14530,23 +15427,85 @@ 22404 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22405 22406 fi 22407 - 22408 -echo "$as_me:14534: result: $cf_cv_cgetent" >&5 22409 +echo "$as_me:15430: result: $cf_cv_cgetent" >&5 22410 echo "${ECHO_T}$cf_cv_cgetent" >&6 22411 -test "$cf_cv_cgetent" = yes && cat >>confdefs.h <<\EOF 22412 + 22413 +if test "$cf_cv_cgetent" = yes 22414 +then 22415 + cat >>confdefs.h <<\EOF 22416 #define HAVE_BSD_CGETENT 1 22417 EOF 22418 22419 +echo "$as_me:15439: checking if cgetent uses const parameter" >&5 22420 +echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6 22421 +if test "${cf_cv_cgetent_const+set}" = set; then 22422 + echo $ECHO_N "(cached) $ECHO_C" >&6 22423 +else 22424 + 22425 +cat >conftest.$ac_ext <<_ACEOF 22426 +#line 15446 "configure" 25485 +#line 15506 "configure" 22427 25486 +#include "confdefs.h" 22428 25487 + … … 22434 25493 + char temp[128]; 22435 25494 + char *buf = temp; 22436 +#ifndef _NETBSD_SOURCE /* given, since April 2004 in stdlib.h */ 22437 + const char *db_array = temp; 25495 + char *db_array = temp; 22438 25496 + cgetent(&buf, &db_array, "vt100"); 22439 +#endif22440 25497 + cgetcap(buf, "tc", '='); 22441 25498 + cgetmatch(buf, "tc"); … … 22446 25503 +_ACEOF 22447 25504 +rm -f conftest.$ac_objext conftest$ac_exeext 22448 +if { (eval echo "$as_me:15 468: \"$ac_link\"") >&525505 +if { (eval echo "$as_me:15526: \"$ac_link\"") >&5 22449 25506 + (eval $ac_link) 2>&5 22450 25507 + ac_status=$? 22451 + echo "$as_me:15 471: \$? = $ac_status" >&525508 + echo "$as_me:15529: \$? = $ac_status" >&5 22452 25509 + (exit $ac_status); } && 22453 25510 + { ac_try='test -s conftest$ac_exeext' 22454 + { (eval echo "$as_me:15 474: \"$ac_try\"") >&525511 + { (eval echo "$as_me:15532: \"$ac_try\"") >&5 22455 25512 + (eval $ac_try) 2>&5 22456 25513 + ac_status=$? 22457 + echo "$as_me:15 477: \$? = $ac_status" >&525514 + echo "$as_me:15535: \$? = $ac_status" >&5 22458 25515 + (exit $ac_status); }; }; then 22459 + cf_cv_cgetent _const=yes25516 + cf_cv_cgetent=yes 22460 25517 +else 22461 25518 + echo "$as_me: failed program was:" >&5 22462 25519 +cat conftest.$ac_ext >&5 22463 +cf_cv_cgetent _const=no25520 +cf_cv_cgetent=no 22464 25521 +fi 22465 25522 +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22466 25523 + 22467 25524 +fi 22468 +echo "$as_me:15488: result: $cf_cv_cgetent_const" >&5 25525 +echo "$as_me:15546: result: $cf_cv_cgetent" >&5 25526 +echo "${ECHO_T}$cf_cv_cgetent" >&6 25527 + 25528 +if test "$cf_cv_cgetent" = yes 25529 +then 25530 + cat >>confdefs.h <<\EOF 25531 +#define HAVE_BSD_CGETENT 1 25532 +EOF 25533 + 25534 +echo "$as_me:15555: checking if cgetent uses const parameter" >&5 25535 +echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6 25536 +if test "${cf_cv_cgetent_const+set}" = set; then 25537 + echo $ECHO_N "(cached) $ECHO_C" >&6 25538 +else 25539 + 25540 +cat >conftest.$ac_ext <<_ACEOF 25541 +#line 15562 "configure" 25542 #include "confdefs.h" 25543 25544 #include <stdlib.h> 25545 @@ -14500,8 +15569,10 @@ 25546 25547 char temp[128]; 25548 char *buf = temp; 25549 - char *db_array = temp; 25550 - cgetent(&buf, /* int *, */ &db_array, "vt100"); 25551 +#ifndef _NETBSD_SOURCE /* given, since April 2004 in stdlib.h */ 25552 + const char *db_array = temp; 25553 + cgetent(&buf, &db_array, "vt100"); 25554 +#endif 25555 cgetcap(buf, "tc", '='); 25556 cgetmatch(buf, "tc"); 25557 25558 @@ -14510,43 +15581,47 @@ 25559 } 25560 _ACEOF 25561 rm -f conftest.$ac_objext conftest$ac_exeext 25562 -if { (eval echo "$as_me:14513: \"$ac_link\"") >&5 25563 +if { (eval echo "$as_me:15584: \"$ac_link\"") >&5 25564 (eval $ac_link) 2>&5 25565 ac_status=$? 25566 - echo "$as_me:14516: \$? = $ac_status" >&5 25567 + echo "$as_me:15587: \$? = $ac_status" >&5 25568 (exit $ac_status); } && 25569 { ac_try='test -s conftest$ac_exeext' 25570 - { (eval echo "$as_me:14519: \"$ac_try\"") >&5 25571 + { (eval echo "$as_me:15590: \"$ac_try\"") >&5 25572 (eval $ac_try) 2>&5 25573 ac_status=$? 25574 - echo "$as_me:14522: \$? = $ac_status" >&5 25575 + echo "$as_me:15593: \$? = $ac_status" >&5 25576 (exit $ac_status); }; }; then 25577 - cf_cv_cgetent=yes 25578 + cf_cv_cgetent_const=yes 25579 else 25580 echo "$as_me: failed program was:" >&5 25581 cat conftest.$ac_ext >&5 25582 -cf_cv_cgetent=no 25583 +cf_cv_cgetent_const=no 25584 fi 25585 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 25586 25587 fi 25588 - 25589 -echo "$as_me:14534: result: $cf_cv_cgetent" >&5 25590 -echo "${ECHO_T}$cf_cv_cgetent" >&6 25591 -test "$cf_cv_cgetent" = yes && cat >>confdefs.h <<\EOF 25592 -#define HAVE_BSD_CGETENT 1 25593 +echo "$as_me:15604: result: $cf_cv_cgetent_const" >&5 22469 25594 +echo "${ECHO_T}$cf_cv_cgetent_const" >&6 22470 25595 + if test "$cf_cv_cgetent_const" = yes … … 22472 25597 + cat >>confdefs.h <<EOF 22473 25598 +#define CGETENT_CONST const 22474 +EOF22475 + 25599 EOF 25600 22476 25601 + fi 22477 25602 +fi … … 22480 25605 22481 25606 -echo "$as_me:14542: checking for isascii" >&5 22482 +echo "$as_me:15 501: checking for isascii" >&525607 +echo "$as_me:15617: checking for isascii" >&5 22483 25608 echo $ECHO_N "checking for isascii... $ECHO_C" >&6 22484 25609 if test "${cf_cv_have_isascii+set}" = set; then … … 22488 25613 cat >conftest.$ac_ext <<_ACEOF 22489 25614 -#line 14549 "configure" 22490 +#line 15 508"configure"25615 +#line 15624 "configure" 22491 25616 #include "confdefs.h" 22492 25617 #include <ctype.h> 22493 25618 int 22494 @@ -14558,16 +15 517,16 @@25619 @@ -14558,16 +15633,16 @@ 22495 25620 } 22496 25621 _ACEOF 22497 25622 rm -f conftest.$ac_objext conftest$ac_exeext 22498 25623 -if { (eval echo "$as_me:14561: \"$ac_link\"") >&5 22499 +if { (eval echo "$as_me:15 520: \"$ac_link\"") >&525624 +if { (eval echo "$as_me:15636: \"$ac_link\"") >&5 22500 25625 (eval $ac_link) 2>&5 22501 25626 ac_status=$? 22502 25627 - echo "$as_me:14564: \$? = $ac_status" >&5 22503 + echo "$as_me:15 523: \$? = $ac_status" >&525628 + echo "$as_me:15639: \$? = $ac_status" >&5 22504 25629 (exit $ac_status); } && 22505 25630 { ac_try='test -s conftest$ac_exeext' 22506 25631 - { (eval echo "$as_me:14567: \"$ac_try\"") >&5 22507 + { (eval echo "$as_me:15 526: \"$ac_try\"") >&525632 + { (eval echo "$as_me:15642: \"$ac_try\"") >&5 22508 25633 (eval $ac_try) 2>&5 22509 25634 ac_status=$? 22510 25635 - echo "$as_me:14570: \$? = $ac_status" >&5 22511 + echo "$as_me:15 529: \$? = $ac_status" >&525636 + echo "$as_me:15645: \$? = $ac_status" >&5 22512 25637 (exit $ac_status); }; }; then 22513 25638 cf_cv_have_isascii=yes 22514 25639 else 22515 @@ -14578,17 +15 537,17 @@25640 @@ -14578,17 +15653,17 @@ 22516 25641 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22517 25642 22518 25643 fi 22519 25644 -echo "$as_me:14581: result: $cf_cv_have_isascii" >&5 22520 +echo "$as_me:15 540: result: $cf_cv_have_isascii" >&525645 +echo "$as_me:15656: result: $cf_cv_have_isascii" >&5 22521 25646 echo "${ECHO_T}$cf_cv_have_isascii" >&6 22522 25647 test "$cf_cv_have_isascii" = yes && cat >>confdefs.h <<\EOF … … 22526 25651 if test "$ac_cv_func_sigaction" = yes; then 22527 25652 -echo "$as_me:14588: checking whether sigaction needs _POSIX_SOURCE" >&5 22528 +echo "$as_me:15 547: checking whether sigaction needs _POSIX_SOURCE" >&525653 +echo "$as_me:15663: checking whether sigaction needs _POSIX_SOURCE" >&5 22529 25654 echo $ECHO_N "checking whether sigaction needs _POSIX_SOURCE... $ECHO_C" >&6 22530 25655 cat >conftest.$ac_ext <<_ACEOF 22531 25656 -#line 14591 "configure" 22532 +#line 15 550"configure"25657 +#line 15666 "configure" 22533 25658 #include "confdefs.h" 22534 25659 22535 25660 #include <sys/types.h> 22536 @@ -14602,16 +15 561,16 @@25661 @@ -14602,16 +15677,16 @@ 22537 25662 } 22538 25663 _ACEOF 22539 25664 rm -f conftest.$ac_objext 22540 25665 -if { (eval echo "$as_me:14605: \"$ac_compile\"") >&5 22541 +if { (eval echo "$as_me:15 564: \"$ac_compile\"") >&525666 +if { (eval echo "$as_me:15680: \"$ac_compile\"") >&5 22542 25667 (eval $ac_compile) 2>&5 22543 25668 ac_status=$? 22544 25669 - echo "$as_me:14608: \$? = $ac_status" >&5 22545 + echo "$as_me:15 567: \$? = $ac_status" >&525670 + echo "$as_me:15683: \$? = $ac_status" >&5 22546 25671 (exit $ac_status); } && 22547 25672 { ac_try='test -s conftest.$ac_objext' 22548 25673 - { (eval echo "$as_me:14611: \"$ac_try\"") >&5 22549 + { (eval echo "$as_me:15 570: \"$ac_try\"") >&525674 + { (eval echo "$as_me:15686: \"$ac_try\"") >&5 22550 25675 (eval $ac_try) 2>&5 22551 25676 ac_status=$? 22552 25677 - echo "$as_me:14614: \$? = $ac_status" >&5 22553 + echo "$as_me:15 573: \$? = $ac_status" >&525678 + echo "$as_me:15689: \$? = $ac_status" >&5 22554 25679 (exit $ac_status); }; }; then 22555 25680 sigact_bad=no 22556 25681 else 22557 @@ -14619,7 +15 578,7 @@25682 @@ -14619,7 +15694,7 @@ 22558 25683 cat conftest.$ac_ext >&5 22559 25684 22560 25685 cat >conftest.$ac_ext <<_ACEOF 22561 25686 -#line 14622 "configure" 22562 +#line 15 581"configure"25687 +#line 15697 "configure" 22563 25688 #include "confdefs.h" 22564 25689 22565 25690 #define _POSIX_SOURCE 22566 @@ -14634,20 +15 593,20 @@25691 @@ -14634,20 +15709,20 @@ 22567 25692 } 22568 25693 _ACEOF 22569 25694 rm -f conftest.$ac_objext 22570 25695 -if { (eval echo "$as_me:14637: \"$ac_compile\"") >&5 22571 +if { (eval echo "$as_me:15 596: \"$ac_compile\"") >&525696 +if { (eval echo "$as_me:15712: \"$ac_compile\"") >&5 22572 25697 (eval $ac_compile) 2>&5 22573 25698 ac_status=$? 22574 25699 - echo "$as_me:14640: \$? = $ac_status" >&5 22575 + echo "$as_me:15 599: \$? = $ac_status" >&525700 + echo "$as_me:15715: \$? = $ac_status" >&5 22576 25701 (exit $ac_status); } && 22577 25702 { ac_try='test -s conftest.$ac_objext' 22578 25703 - { (eval echo "$as_me:14643: \"$ac_try\"") >&5 22579 + { (eval echo "$as_me:15 602: \"$ac_try\"") >&525704 + { (eval echo "$as_me:15718: \"$ac_try\"") >&5 22580 25705 (eval $ac_try) 2>&5 22581 25706 ac_status=$? 22582 25707 - echo "$as_me:14646: \$? = $ac_status" >&5 22583 + echo "$as_me:15 605: \$? = $ac_status" >&525708 + echo "$as_me:15721: \$? = $ac_status" >&5 22584 25709 (exit $ac_status); }; }; then 22585 25710 sigact_bad=yes … … 22590 25715 22591 25716 else 22592 @@ -14658,11 +15 617,11 @@25717 @@ -14658,11 +15733,11 @@ 22593 25718 rm -f conftest.$ac_objext conftest.$ac_ext 22594 25719 fi 22595 25720 rm -f conftest.$ac_objext conftest.$ac_ext 22596 25721 -echo "$as_me:14661: result: $sigact_bad" >&5 22597 +echo "$as_me:15 620: result: $sigact_bad" >&525722 +echo "$as_me:15736: result: $sigact_bad" >&5 22598 25723 echo "${ECHO_T}$sigact_bad" >&6 22599 25724 fi 22600 25725 22601 25726 -echo "$as_me:14665: checking if nanosleep really works" >&5 22602 +echo "$as_me:15 624: checking if nanosleep really works" >&525727 +echo "$as_me:15740: checking if nanosleep really works" >&5 22603 25728 echo $ECHO_N "checking if nanosleep really works... $ECHO_C" >&6 22604 25729 if test "${cf_cv_func_nanosleep+set}" = set; then 22605 25730 echo $ECHO_N "(cached) $ECHO_C" >&6 22606 @@ -14672,7 +15 631,7 @@25731 @@ -14672,7 +15747,7 @@ 22607 25732 cf_cv_func_nanosleep=unknown 22608 25733 else 22609 25734 cat >conftest.$ac_ext <<_ACEOF 22610 25735 -#line 14675 "configure" 22611 +#line 15 634"configure"25736 +#line 15750 "configure" 22612 25737 #include "confdefs.h" 22613 25738 22614 25739 #include <stdio.h> 22615 @@ -14697,15 +15 656,15 @@25740 @@ -14697,15 +15772,15 @@ 22616 25741 22617 25742 _ACEOF 22618 25743 rm -f conftest$ac_exeext 22619 25744 -if { (eval echo "$as_me:14700: \"$ac_link\"") >&5 22620 +if { (eval echo "$as_me:15 659: \"$ac_link\"") >&525745 +if { (eval echo "$as_me:15775: \"$ac_link\"") >&5 22621 25746 (eval $ac_link) 2>&5 22622 25747 ac_status=$? 22623 25748 - echo "$as_me:14703: \$? = $ac_status" >&5 22624 + echo "$as_me:15 662: \$? = $ac_status" >&525749 + echo "$as_me:15778: \$? = $ac_status" >&5 22625 25750 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 22626 25751 - { (eval echo "$as_me:14705: \"$ac_try\"") >&5 22627 + { (eval echo "$as_me:15 664: \"$ac_try\"") >&525752 + { (eval echo "$as_me:15780: \"$ac_try\"") >&5 22628 25753 (eval $ac_try) 2>&5 22629 25754 ac_status=$? 22630 25755 - echo "$as_me:14708: \$? = $ac_status" >&5 22631 + echo "$as_me:15 667: \$? = $ac_status" >&525756 + echo "$as_me:15783: \$? = $ac_status" >&5 22632 25757 (exit $ac_status); }; }; then 22633 25758 cf_cv_func_nanosleep=yes 22634 25759 else 22635 @@ -14717,7 +15 676,7 @@25760 @@ -14717,7 +15792,7 @@ 22636 25761 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 22637 25762 fi 22638 25763 fi 22639 25764 -echo "$as_me:14720: result: $cf_cv_func_nanosleep" >&5 22640 +echo "$as_me:15 679: result: $cf_cv_func_nanosleep" >&525765 +echo "$as_me:15795: result: $cf_cv_func_nanosleep" >&5 22641 25766 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6 22642 25767 22643 25768 test "$cf_cv_func_nanosleep" = "yes" && cat >>confdefs.h <<\EOF 22644 @@ -14731,23 +15 690,23 @@25769 @@ -14731,23 +15806,23 @@ 22645 25770 22646 25771 do 22647 25772 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 22648 25773 -echo "$as_me:14734: checking for $ac_header" >&5 22649 +echo "$as_me:15 693: checking for $ac_header" >&525774 +echo "$as_me:15809: checking for $ac_header" >&5 22650 25775 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 22651 25776 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 22654 25779 cat >conftest.$ac_ext <<_ACEOF 22655 25780 -#line 14740 "configure" 22656 +#line 15 699"configure"25781 +#line 15815 "configure" 22657 25782 #include "confdefs.h" 22658 25783 #include <$ac_header> 22659 25784 _ACEOF 22660 25785 -if { (eval echo "$as_me:14744: \"$ac_cpp conftest.$ac_ext\"") >&5 22661 +if { (eval echo "$as_me:15 703: \"$ac_cpp conftest.$ac_ext\"") >&525786 +if { (eval echo "$as_me:15819: \"$ac_cpp conftest.$ac_ext\"") >&5 22662 25787 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 22663 25788 ac_status=$? … … 22666 25791 cat conftest.err >&5 22667 25792 - echo "$as_me:14750: \$? = $ac_status" >&5 22668 + echo "$as_me:15 709: \$? = $ac_status" >&525793 + echo "$as_me:15825: \$? = $ac_status" >&5 22669 25794 (exit $ac_status); } >/dev/null; then 22670 25795 if test -s conftest.err; then 22671 25796 ac_cpp_err=$ac_c_preproc_warn_flag 22672 @@ -14766,7 +15 725,7 @@25797 @@ -14766,7 +15841,7 @@ 22673 25798 fi 22674 25799 rm -f conftest.err conftest.$ac_ext 22675 25800 fi 22676 25801 -echo "$as_me:14769: result: `eval echo '${'$as_ac_Header'}'`" >&5 22677 +echo "$as_me:15 728: result: `eval echo '${'$as_ac_Header'}'`" >&525802 +echo "$as_me:15844: result: `eval echo '${'$as_ac_Header'}'`" >&5 22678 25803 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 22679 25804 if test `eval echo '${'$as_ac_Header'}'` = yes; then 22680 25805 cat >>confdefs.h <<EOF 22681 @@ -14781,23 +15 740,23 @@25806 @@ -14781,23 +15856,23 @@ 22682 25807 for ac_header in sys/termio.h 22683 25808 do 22684 25809 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 22685 25810 -echo "$as_me:14784: checking for $ac_header" >&5 22686 +echo "$as_me:15 743: checking for $ac_header" >&525811 +echo "$as_me:15859: checking for $ac_header" >&5 22687 25812 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 22688 25813 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 22691 25816 cat >conftest.$ac_ext <<_ACEOF 22692 25817 -#line 14790 "configure" 22693 +#line 15 749"configure"25818 +#line 15865 "configure" 22694 25819 #include "confdefs.h" 22695 25820 #include <$ac_header> 22696 25821 _ACEOF 22697 25822 -if { (eval echo "$as_me:14794: \"$ac_cpp conftest.$ac_ext\"") >&5 22698 +if { (eval echo "$as_me:15 753: \"$ac_cpp conftest.$ac_ext\"") >&525823 +if { (eval echo "$as_me:15869: \"$ac_cpp conftest.$ac_ext\"") >&5 22699 25824 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 22700 25825 ac_status=$? … … 22703 25828 cat conftest.err >&5 22704 25829 - echo "$as_me:14800: \$? = $ac_status" >&5 22705 + echo "$as_me:15 759: \$? = $ac_status" >&525830 + echo "$as_me:15875: \$? = $ac_status" >&5 22706 25831 (exit $ac_status); } >/dev/null; then 22707 25832 if test -s conftest.err; then 22708 25833 ac_cpp_err=$ac_c_preproc_warn_flag 22709 @@ -14816,7 +15 775,7 @@25834 @@ -14816,7 +15891,7 @@ 22710 25835 fi 22711 25836 rm -f conftest.err conftest.$ac_ext 22712 25837 fi 22713 25838 -echo "$as_me:14819: result: `eval echo '${'$as_ac_Header'}'`" >&5 22714 +echo "$as_me:15 778: result: `eval echo '${'$as_ac_Header'}'`" >&525839 +echo "$as_me:15894: result: `eval echo '${'$as_ac_Header'}'`" >&5 22715 25840 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 22716 25841 if test `eval echo '${'$as_ac_Header'}'` = yes; then 22717 25842 cat >>confdefs.h <<EOF 22718 @@ -14834,10 +15 793,10 @@25843 @@ -14834,10 +15909,10 @@ 22719 25844 *) termios_bad=maybe ;; 22720 25845 esac 22721 25846 if test "$termios_bad" = maybe ; then 22722 25847 - echo "$as_me:14837: checking whether termios.h needs _POSIX_SOURCE" >&5 22723 + echo "$as_me:15 796: checking whether termios.h needs _POSIX_SOURCE" >&525848 + echo "$as_me:15912: checking whether termios.h needs _POSIX_SOURCE" >&5 22724 25849 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6 22725 25850 cat >conftest.$ac_ext <<_ACEOF 22726 25851 -#line 14840 "configure" 22727 +#line 15 799"configure"25852 +#line 15915 "configure" 22728 25853 #include "confdefs.h" 22729 25854 #include <termios.h> 22730 25855 int 22731 @@ -14849,16 +15 808,16 @@25856 @@ -14849,16 +15924,16 @@ 22732 25857 } 22733 25858 _ACEOF 22734 25859 rm -f conftest.$ac_objext 22735 25860 -if { (eval echo "$as_me:14852: \"$ac_compile\"") >&5 22736 +if { (eval echo "$as_me:15 811: \"$ac_compile\"") >&525861 +if { (eval echo "$as_me:15927: \"$ac_compile\"") >&5 22737 25862 (eval $ac_compile) 2>&5 22738 25863 ac_status=$? 22739 25864 - echo "$as_me:14855: \$? = $ac_status" >&5 22740 + echo "$as_me:15 814: \$? = $ac_status" >&525865 + echo "$as_me:15930: \$? = $ac_status" >&5 22741 25866 (exit $ac_status); } && 22742 25867 { ac_try='test -s conftest.$ac_objext' 22743 25868 - { (eval echo "$as_me:14858: \"$ac_try\"") >&5 22744 + { (eval echo "$as_me:15 817: \"$ac_try\"") >&525869 + { (eval echo "$as_me:15933: \"$ac_try\"") >&5 22745 25870 (eval $ac_try) 2>&5 22746 25871 ac_status=$? 22747 25872 - echo "$as_me:14861: \$? = $ac_status" >&5 22748 + echo "$as_me:15 820: \$? = $ac_status" >&525873 + echo "$as_me:15936: \$? = $ac_status" >&5 22749 25874 (exit $ac_status); }; }; then 22750 25875 termios_bad=no 22751 25876 else 22752 @@ -14866,7 +15 825,7 @@25877 @@ -14866,7 +15941,7 @@ 22753 25878 cat conftest.$ac_ext >&5 22754 25879 22755 25880 cat >conftest.$ac_ext <<_ACEOF 22756 25881 -#line 14869 "configure" 22757 +#line 15 828"configure"25882 +#line 15944 "configure" 22758 25883 #include "confdefs.h" 22759 25884 22760 25885 #define _POSIX_SOURCE 22761 @@ -14880,23 +15 839,23 @@25886 @@ -14880,23 +15955,23 @@ 22762 25887 } 22763 25888 _ACEOF 22764 25889 rm -f conftest.$ac_objext 22765 25890 -if { (eval echo "$as_me:14883: \"$ac_compile\"") >&5 22766 +if { (eval echo "$as_me:15 842: \"$ac_compile\"") >&525891 +if { (eval echo "$as_me:15958: \"$ac_compile\"") >&5 22767 25892 (eval $ac_compile) 2>&5 22768 25893 ac_status=$? 22769 25894 - echo "$as_me:14886: \$? = $ac_status" >&5 22770 + echo "$as_me:15 845: \$? = $ac_status" >&525895 + echo "$as_me:15961: \$? = $ac_status" >&5 22771 25896 (exit $ac_status); } && 22772 25897 { ac_try='test -s conftest.$ac_objext' 22773 25898 - { (eval echo "$as_me:14889: \"$ac_try\"") >&5 22774 + { (eval echo "$as_me:15 848: \"$ac_try\"") >&525899 + { (eval echo "$as_me:15964: \"$ac_try\"") >&5 22775 25900 (eval $ac_try) 2>&5 22776 25901 ac_status=$? 22777 25902 - echo "$as_me:14892: \$? = $ac_status" >&5 22778 + echo "$as_me:15 851: \$? = $ac_status" >&525903 + echo "$as_me:15967: \$? = $ac_status" >&5 22779 25904 (exit $ac_status); }; }; then 22780 25905 termios_bad=unknown … … 22788 25913 22789 25914 fi 22790 @@ -14904,19 +15 863,19 @@25915 @@ -14904,19 +15979,19 @@ 22791 25916 22792 25917 fi 22793 25918 rm -f conftest.$ac_objext conftest.$ac_ext 22794 25919 - echo "$as_me:14907: result: $termios_bad" >&5 22795 + echo "$as_me:15 866: result: $termios_bad" >&525920 + echo "$as_me:15982: result: $termios_bad" >&5 22796 25921 echo "${ECHO_T}$termios_bad" >&6 22797 25922 fi … … 22799 25924 22800 25925 -echo "$as_me:14912: checking for tcgetattr" >&5 22801 +echo "$as_me:15 871: checking for tcgetattr" >&525926 +echo "$as_me:15987: checking for tcgetattr" >&5 22802 25927 echo $ECHO_N "checking for tcgetattr... $ECHO_C" >&6 22803 25928 if test "${cf_cv_have_tcgetattr+set}" = set; then … … 22807 25932 cat >conftest.$ac_ext <<_ACEOF 22808 25933 -#line 14919 "configure" 22809 +#line 15 878"configure"25934 +#line 15994 "configure" 22810 25935 #include "confdefs.h" 22811 25936 22812 25937 #include <sys/types.h> 22813 @@ -14944,16 +1 5903,16 @@25938 @@ -14944,16 +16019,16 @@ 22814 25939 } 22815 25940 _ACEOF 22816 25941 rm -f conftest.$ac_objext conftest$ac_exeext 22817 25942 -if { (eval echo "$as_me:14947: \"$ac_link\"") >&5 22818 +if { (eval echo "$as_me:1 5906: \"$ac_link\"") >&525943 +if { (eval echo "$as_me:16022: \"$ac_link\"") >&5 22819 25944 (eval $ac_link) 2>&5 22820 25945 ac_status=$? 22821 25946 - echo "$as_me:14950: \$? = $ac_status" >&5 22822 + echo "$as_me:1 5909: \$? = $ac_status" >&525947 + echo "$as_me:16025: \$? = $ac_status" >&5 22823 25948 (exit $ac_status); } && 22824 25949 { ac_try='test -s conftest$ac_exeext' 22825 25950 - { (eval echo "$as_me:14953: \"$ac_try\"") >&5 22826 + { (eval echo "$as_me:1 5912: \"$ac_try\"") >&525951 + { (eval echo "$as_me:16028: \"$ac_try\"") >&5 22827 25952 (eval $ac_try) 2>&5 22828 25953 ac_status=$? 22829 25954 - echo "$as_me:14956: \$? = $ac_status" >&5 22830 + echo "$as_me:1 5915: \$? = $ac_status" >&525955 + echo "$as_me:16031: \$? = $ac_status" >&5 22831 25956 (exit $ac_status); }; }; then 22832 25957 cf_cv_have_tcgetattr=yes 22833 25958 else 22834 @@ -14963,20 +1 5922,20 @@25959 @@ -14963,20 +16038,20 @@ 22835 25960 fi 22836 25961 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22837 25962 fi 22838 25963 -echo "$as_me:14966: result: $cf_cv_have_tcgetattr" >&5 22839 +echo "$as_me:1 5925: result: $cf_cv_have_tcgetattr" >&525964 +echo "$as_me:16041: result: $cf_cv_have_tcgetattr" >&5 22840 25965 echo "${ECHO_T}$cf_cv_have_tcgetattr" >&6 22841 25966 test "$cf_cv_have_tcgetattr" = yes && cat >>confdefs.h <<\EOF … … 22844 25969 22845 25970 -echo "$as_me:14972: checking for vsscanf function or workaround" >&5 22846 +echo "$as_me:1 5931: checking for vsscanf function or workaround" >&525971 +echo "$as_me:16047: checking for vsscanf function or workaround" >&5 22847 25972 echo $ECHO_N "checking for vsscanf function or workaround... $ECHO_C" >&6 22848 25973 if test "${cf_cv_func_vsscanf+set}" = set; then … … 22852 25977 cat >conftest.$ac_ext <<_ACEOF 22853 25978 -#line 14979 "configure" 22854 +#line 1 5938"configure"25979 +#line 16054 "configure" 22855 25980 #include "confdefs.h" 22856 25981 22857 25982 #include <stdarg.h> 22858 @@ -14992,16 +1 5951,16 @@25983 @@ -14992,16 +16067,16 @@ 22859 25984 } 22860 25985 _ACEOF 22861 25986 rm -f conftest.$ac_objext conftest$ac_exeext 22862 25987 -if { (eval echo "$as_me:14995: \"$ac_link\"") >&5 22863 +if { (eval echo "$as_me:1 5954: \"$ac_link\"") >&525988 +if { (eval echo "$as_me:16070: \"$ac_link\"") >&5 22864 25989 (eval $ac_link) 2>&5 22865 25990 ac_status=$? 22866 25991 - echo "$as_me:14998: \$? = $ac_status" >&5 22867 + echo "$as_me:1 5957: \$? = $ac_status" >&525992 + echo "$as_me:16073: \$? = $ac_status" >&5 22868 25993 (exit $ac_status); } && 22869 25994 { ac_try='test -s conftest$ac_exeext' 22870 25995 - { (eval echo "$as_me:15001: \"$ac_try\"") >&5 22871 + { (eval echo "$as_me:1 5960: \"$ac_try\"") >&525996 + { (eval echo "$as_me:16076: \"$ac_try\"") >&5 22872 25997 (eval $ac_try) 2>&5 22873 25998 ac_status=$? 22874 25999 - echo "$as_me:15004: \$? = $ac_status" >&5 22875 + echo "$as_me:1 5963: \$? = $ac_status" >&526000 + echo "$as_me:16079: \$? = $ac_status" >&5 22876 26001 (exit $ac_status); }; }; then 22877 26002 cf_cv_func_vsscanf=vsscanf 22878 26003 else 22879 @@ -15009,7 +1 5968,7 @@26004 @@ -15009,7 +16084,7 @@ 22880 26005 cat conftest.$ac_ext >&5 22881 26006 22882 26007 cat >conftest.$ac_ext <<_ACEOF 22883 26008 -#line 15012 "configure" 22884 +#line 1 5971"configure"26009 +#line 16087 "configure" 22885 26010 #include "confdefs.h" 22886 26011 22887 26012 #include <stdarg.h> 22888 @@ -15031,16 +1 5990,16 @@26013 @@ -15031,16 +16106,16 @@ 22889 26014 } 22890 26015 _ACEOF 22891 26016 rm -f conftest.$ac_objext conftest$ac_exeext 22892 26017 -if { (eval echo "$as_me:15034: \"$ac_link\"") >&5 22893 +if { (eval echo "$as_me:1 5993: \"$ac_link\"") >&526018 +if { (eval echo "$as_me:16109: \"$ac_link\"") >&5 22894 26019 (eval $ac_link) 2>&5 22895 26020 ac_status=$? 22896 26021 - echo "$as_me:15037: \$? = $ac_status" >&5 22897 + echo "$as_me:1 5996: \$? = $ac_status" >&526022 + echo "$as_me:16112: \$? = $ac_status" >&5 22898 26023 (exit $ac_status); } && 22899 26024 { ac_try='test -s conftest$ac_exeext' 22900 26025 - { (eval echo "$as_me:15040: \"$ac_try\"") >&5 22901 + { (eval echo "$as_me:1 5999: \"$ac_try\"") >&526026 + { (eval echo "$as_me:16115: \"$ac_try\"") >&5 22902 26027 (eval $ac_try) 2>&5 22903 26028 ac_status=$? 22904 26029 - echo "$as_me:15043: \$? = $ac_status" >&5 22905 + echo "$as_me:16 002: \$? = $ac_status" >&526030 + echo "$as_me:16118: \$? = $ac_status" >&5 22906 26031 (exit $ac_status); }; }; then 22907 26032 cf_cv_func_vsscanf=vfscanf 22908 26033 else 22909 @@ -15048,7 +16 007,7 @@26034 @@ -15048,7 +16123,7 @@ 22910 26035 cat conftest.$ac_ext >&5 22911 26036 22912 26037 cat >conftest.$ac_ext <<_ACEOF 22913 26038 -#line 15051 "configure" 22914 +#line 16 010"configure"26039 +#line 16126 "configure" 22915 26040 #include "confdefs.h" 22916 26041 22917 26042 #include <stdarg.h> 22918 @@ -15070,16 +16 029,16 @@26043 @@ -15070,16 +16145,16 @@ 22919 26044 } 22920 26045 _ACEOF 22921 26046 rm -f conftest.$ac_objext conftest$ac_exeext 22922 26047 -if { (eval echo "$as_me:15073: \"$ac_link\"") >&5 22923 +if { (eval echo "$as_me:16 032: \"$ac_link\"") >&526048 +if { (eval echo "$as_me:16148: \"$ac_link\"") >&5 22924 26049 (eval $ac_link) 2>&5 22925 26050 ac_status=$? 22926 26051 - echo "$as_me:15076: \$? = $ac_status" >&5 22927 + echo "$as_me:16 035: \$? = $ac_status" >&526052 + echo "$as_me:16151: \$? = $ac_status" >&5 22928 26053 (exit $ac_status); } && 22929 26054 { ac_try='test -s conftest$ac_exeext' 22930 26055 - { (eval echo "$as_me:15079: \"$ac_try\"") >&5 22931 + { (eval echo "$as_me:16 038: \"$ac_try\"") >&526056 + { (eval echo "$as_me:16154: \"$ac_try\"") >&5 22932 26057 (eval $ac_try) 2>&5 22933 26058 ac_status=$? 22934 26059 - echo "$as_me:15082: \$? = $ac_status" >&5 22935 + echo "$as_me:16 041: \$? = $ac_status" >&526060 + echo "$as_me:16157: \$? = $ac_status" >&5 22936 26061 (exit $ac_status); }; }; then 22937 26062 cf_cv_func_vsscanf=_doscan 22938 26063 else 22939 @@ -15094,7 +16 053,7 @@26064 @@ -15094,7 +16169,7 @@ 22940 26065 fi 22941 26066 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22942 26067 fi 22943 26068 -echo "$as_me:15097: result: $cf_cv_func_vsscanf" >&5 22944 +echo "$as_me:16 056: result: $cf_cv_func_vsscanf" >&526069 +echo "$as_me:16172: result: $cf_cv_func_vsscanf" >&5 22945 26070 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6 22946 26071 22947 26072 case $cf_cv_func_vsscanf in #(vi 22948 @@ -15112,7 +16 071,7 @@26073 @@ -15112,7 +16187,7 @@ 22949 26074 ;; 22950 26075 esac 22951 26076 22952 26077 -echo "$as_me:15115: checking for working mkstemp" >&5 22953 +echo "$as_me:16 074: checking for working mkstemp" >&526078 +echo "$as_me:16190: checking for working mkstemp" >&5 22954 26079 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6 22955 26080 if test "${cf_cv_func_mkstemp+set}" = set; then 22956 26081 echo $ECHO_N "(cached) $ECHO_C" >&6 22957 @@ -15120, 13 +16079,13@@26082 @@ -15120,68 +16195,10 @@ 22958 26083 22959 26084 rm -rf conftest* 22960 26085 if test "$cross_compiling" = yes; then 22961 26086 - echo "$as_me:15123: checking for mkstemp" >&5 22962 + echo "$as_me:16082: checking for mkstemp" >&5 22963 echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 22964 if test "${ac_cv_func_mkstemp+set}" = set; then 22965 echo $ECHO_N "(cached) $ECHO_C" >&6 22966 else 22967 cat >conftest.$ac_ext <<_ACEOF 26087 -echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 26088 -if test "${ac_cv_func_mkstemp+set}" = set; then 26089 - echo $ECHO_N "(cached) $ECHO_C" >&6 26090 -else 26091 - cat >conftest.$ac_ext <<_ACEOF 22968 26092 -#line 15129 "configure" 22969 +#line 16088 "configure" 22970 #include "confdefs.h" 22971 /* System header to define __stub macros and hopefully few prototypes, 22972 which can conflict with char mkstemp (); below. */ 22973 @@ -15157,16 +16116,16 @@ 22974 } 22975 _ACEOF 22976 rm -f conftest.$ac_objext conftest$ac_exeext 26093 -#include "confdefs.h" 26094 -/* System header to define __stub macros and hopefully few prototypes, 26095 - which can conflict with char mkstemp (); below. */ 26096 -#include <assert.h> 26097 -/* Override any gcc2 internal prototype to avoid an error. */ 26098 -#ifdef __cplusplus 26099 -extern "C" 26100 -#endif 26101 -/* We use char because int might match the return type of a gcc2 26102 - builtin and then its argument prototype would still apply. */ 26103 -char mkstemp (); 26104 -char (*f) (); 26105 - 26106 -int 26107 -main () 26108 -{ 26109 -/* The GNU C library defines this for functions which it implements 26110 - to always fail with ENOSYS. Some functions are actually named 26111 - something starting with __ and the normal name is an alias. */ 26112 -#if defined (__stub_mkstemp) || defined (__stub___mkstemp) 26113 -choke me 26114 -#else 26115 -f = mkstemp; 26116 -#endif 26117 - 26118 - ; 26119 - return 0; 26120 -} 26121 -_ACEOF 26122 -rm -f conftest.$ac_objext conftest$ac_exeext 22977 26123 -if { (eval echo "$as_me:15160: \"$ac_link\"") >&5 22978 +if { (eval echo "$as_me:16119: \"$ac_link\"") >&5 22979 (eval $ac_link) 2>&5 22980 ac_status=$? 26124 - (eval $ac_link) 2>&5 26125 - ac_status=$? 22981 26126 - echo "$as_me:15163: \$? = $ac_status" >&5 22982 + echo "$as_me:16122: \$? = $ac_status" >&5 22983 (exit $ac_status); } && 22984 { ac_try='test -s conftest$ac_exeext' 26127 - (exit $ac_status); } && 26128 - { ac_try='test -s conftest$ac_exeext' 22985 26129 - { (eval echo "$as_me:15166: \"$ac_try\"") >&5 22986 + { (eval echo "$as_me:16125: \"$ac_try\"") >&5 22987 (eval $ac_try) 2>&5 22988 ac_status=$? 26130 - (eval $ac_try) 2>&5 26131 - ac_status=$? 22989 26132 - echo "$as_me:15169: \$? = $ac_status" >&5 22990 + echo "$as_me:16128: \$? = $ac_status" >&5 22991 (exit $ac_status); }; }; then 22992 ac_cv_func_mkstemp=yes 22993 else 22994 @@ -15176,12 +16135,12 @@ 22995 fi 22996 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 22997 fi 26133 - (exit $ac_status); }; }; then 26134 - ac_cv_func_mkstemp=yes 26135 -else 26136 - echo "$as_me: failed program was:" >&5 26137 -cat conftest.$ac_ext >&5 26138 -ac_cv_func_mkstemp=no 26139 -fi 26140 -rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 26141 -fi 22998 26142 -echo "$as_me:15179: result: $ac_cv_func_mkstemp" >&5 22999 +echo "$as_me:16138: result: $ac_cv_func_mkstemp" >&5 23000 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 23001 26143 -echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 26144 - 26145 + cf_cv_func_mkstemp=maybe 23002 26146 else 23003 26147 cat >conftest.$ac_ext <<_ACEOF 23004 26148 -#line 15184 "configure" 23005 +#line 16 143"configure"26149 +#line 16201 "configure" 23006 26150 #include "confdefs.h" 23007 26151 23008 26152 #include <sys/types.h> 23009 @@ -15219,15 +16 178,15 @@26153 @@ -15219,15 +16236,15 @@ 23010 26154 23011 26155 _ACEOF 23012 26156 rm -f conftest$ac_exeext 23013 26157 -if { (eval echo "$as_me:15222: \"$ac_link\"") >&5 23014 +if { (eval echo "$as_me:16 181: \"$ac_link\"") >&526158 +if { (eval echo "$as_me:16239: \"$ac_link\"") >&5 23015 26159 (eval $ac_link) 2>&5 23016 26160 ac_status=$? 23017 26161 - echo "$as_me:15225: \$? = $ac_status" >&5 23018 + echo "$as_me:16 184: \$? = $ac_status" >&526162 + echo "$as_me:16242: \$? = $ac_status" >&5 23019 26163 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23020 26164 - { (eval echo "$as_me:15227: \"$ac_try\"") >&5 23021 + { (eval echo "$as_me:16 186: \"$ac_try\"") >&526165 + { (eval echo "$as_me:16244: \"$ac_try\"") >&5 23022 26166 (eval $ac_try) 2>&5 23023 26167 ac_status=$? 23024 26168 - echo "$as_me:15230: \$? = $ac_status" >&5 23025 + echo "$as_me:16 189: \$? = $ac_status" >&526169 + echo "$as_me:16247: \$? = $ac_status" >&5 23026 26170 (exit $ac_status); }; }; then 23027 26171 cf_cv_func_mkstemp=yes 23028 26172 23029 @@ -15242, 7 +16201,7@@26173 @@ -15242,8 +16259,69 @@ 23030 26174 fi 23031 26175 23032 26176 fi 23033 26177 -echo "$as_me:15245: result: $cf_cv_func_mkstemp" >&5 23034 +echo "$as_me:162 04: result: $cf_cv_func_mkstemp" >&526178 +echo "$as_me:16262: result: $cf_cv_func_mkstemp" >&5 23035 26179 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6 26180 +if test "x$cf_cv_func_mkstemp" = xmaybe ; then 26181 + echo "$as_me:16265: checking for mkstemp" >&5 26182 +echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6 26183 +if test "${ac_cv_func_mkstemp+set}" = set; then 26184 + echo $ECHO_N "(cached) $ECHO_C" >&6 26185 +else 26186 + cat >conftest.$ac_ext <<_ACEOF 26187 +#line 16271 "configure" 26188 +#include "confdefs.h" 26189 +/* System header to define __stub macros and hopefully few prototypes, 26190 + which can conflict with char mkstemp (); below. */ 26191 +#include <assert.h> 26192 +/* Override any gcc2 internal prototype to avoid an error. */ 26193 +#ifdef __cplusplus 26194 +extern "C" 26195 +#endif 26196 +/* We use char because int might match the return type of a gcc2 26197 + builtin and then its argument prototype would still apply. */ 26198 +char mkstemp (); 26199 +char (*f) (); 26200 + 26201 +int 26202 +main () 26203 +{ 26204 +/* The GNU C library defines this for functions which it implements 26205 + to always fail with ENOSYS. Some functions are actually named 26206 + something starting with __ and the normal name is an alias. */ 26207 +#if defined (__stub_mkstemp) || defined (__stub___mkstemp) 26208 +choke me 26209 +#else 26210 +f = mkstemp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 26211 +#endif 26212 + 26213 + ; 26214 + return 0; 26215 +} 26216 +_ACEOF 26217 +rm -f conftest.$ac_objext conftest$ac_exeext 26218 +if { (eval echo "$as_me:16302: \"$ac_link\"") >&5 26219 + (eval $ac_link) 2>&5 26220 + ac_status=$? 26221 + echo "$as_me:16305: \$? = $ac_status" >&5 26222 + (exit $ac_status); } && 26223 + { ac_try='test -s conftest$ac_exeext' 26224 + { (eval echo "$as_me:16308: \"$ac_try\"") >&5 26225 + (eval $ac_try) 2>&5 26226 + ac_status=$? 26227 + echo "$as_me:16311: \$? = $ac_status" >&5 26228 + (exit $ac_status); }; }; then 26229 + ac_cv_func_mkstemp=yes 26230 +else 26231 + echo "$as_me: failed program was:" >&5 26232 +cat conftest.$ac_ext >&5 26233 +ac_cv_func_mkstemp=no 26234 +fi 26235 +rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 26236 +fi 26237 +echo "$as_me:16321: result: $ac_cv_func_mkstemp" >&5 26238 +echo "${ECHO_T}$ac_cv_func_mkstemp" >&6 26239 + 26240 +fi 23036 26241 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then 23037 26242 cat >>confdefs.h <<\EOF 23038 @@ -15260,21 +16219,21 @@ 26243 #define HAVE_MKSTEMP 1 26244 @@ -15260,21 +16338,21 @@ 23039 26245 fi 23040 26246 23041 26247 if test "$cross_compiling" = yes ; then 23042 26248 - { echo "$as_me:15263: WARNING: cross compiling: assume setvbuf params not reversed" >&5 23043 + { echo "$as_me:16 222: WARNING: cross compiling: assume setvbuf params not reversed" >&526249 + { echo "$as_me:16341: WARNING: cross compiling: assume setvbuf params not reversed" >&5 23044 26250 echo "$as_me: WARNING: cross compiling: assume setvbuf params not reversed" >&2;} 23045 26251 else 23046 26252 - echo "$as_me:15266: checking whether setvbuf arguments are reversed" >&5 23047 + echo "$as_me:16 225: checking whether setvbuf arguments are reversed" >&526253 + echo "$as_me:16344: checking whether setvbuf arguments are reversed" >&5 23048 26254 echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6 23049 26255 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then … … 23052 26258 if test "$cross_compiling" = yes; then 23053 26259 - { { echo "$as_me:15272: error: cannot run test program while cross compiling" >&5 23054 + { { echo "$as_me:16 231: error: cannot run test program while cross compiling" >&526260 + { { echo "$as_me:16350: error: cannot run test program while cross compiling" >&5 23055 26261 echo "$as_me: error: cannot run test program while cross compiling" >&2;} 23056 26262 { (exit 1); exit 1; }; } … … 23058 26264 cat >conftest.$ac_ext <<_ACEOF 23059 26265 -#line 15277 "configure" 23060 +#line 16 236"configure"26266 +#line 16355 "configure" 23061 26267 #include "confdefs.h" 23062 26268 #include <stdio.h> 23063 26269 /* If setvbuf has the reversed format, exit 0. */ 23064 @@ -15291,15 +16 250,15 @@26270 @@ -15291,15 +16369,15 @@ 23065 26271 } 23066 26272 _ACEOF 23067 26273 rm -f conftest$ac_exeext 23068 26274 -if { (eval echo "$as_me:15294: \"$ac_link\"") >&5 23069 +if { (eval echo "$as_me:16 253: \"$ac_link\"") >&526275 +if { (eval echo "$as_me:16372: \"$ac_link\"") >&5 23070 26276 (eval $ac_link) 2>&5 23071 26277 ac_status=$? 23072 26278 - echo "$as_me:15297: \$? = $ac_status" >&5 23073 + echo "$as_me:16 256: \$? = $ac_status" >&526279 + echo "$as_me:16375: \$? = $ac_status" >&5 23074 26280 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23075 26281 - { (eval echo "$as_me:15299: \"$ac_try\"") >&5 23076 + { (eval echo "$as_me:16 258: \"$ac_try\"") >&526282 + { (eval echo "$as_me:16377: \"$ac_try\"") >&5 23077 26283 (eval $ac_try) 2>&5 23078 26284 ac_status=$? 23079 26285 - echo "$as_me:15302: \$? = $ac_status" >&5 23080 + echo "$as_me:16 261: \$? = $ac_status" >&526286 + echo "$as_me:16380: \$? = $ac_status" >&5 23081 26287 (exit $ac_status); }; }; then 23082 26288 ac_cv_func_setvbuf_reversed=yes 23083 26289 else 23084 @@ -15312,7 +16 271,7 @@26290 @@ -15312,7 +16390,7 @@ 23085 26291 fi 23086 26292 rm -f core core.* *.core 23087 26293 fi 23088 26294 -echo "$as_me:15315: result: $ac_cv_func_setvbuf_reversed" >&5 23089 +echo "$as_me:16 274: result: $ac_cv_func_setvbuf_reversed" >&526295 +echo "$as_me:16393: result: $ac_cv_func_setvbuf_reversed" >&5 23090 26296 echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6 23091 26297 if test $ac_cv_func_setvbuf_reversed = yes; then 23092 26298 23093 @@ -15323,13 +16 282,13 @@26299 @@ -15323,13 +16401,13 @@ 23094 26300 fi 23095 26301 23096 26302 fi 23097 26303 -echo "$as_me:15326: checking return type of signal handlers" >&5 23098 +echo "$as_me:16 285: checking return type of signal handlers" >&526304 +echo "$as_me:16404: checking return type of signal handlers" >&5 23099 26305 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6 23100 26306 if test "${ac_cv_type_signal+set}" = set; then … … 23103 26309 cat >conftest.$ac_ext <<_ACEOF 23104 26310 -#line 15332 "configure" 23105 +#line 16 291"configure"26311 +#line 16410 "configure" 23106 26312 #include "confdefs.h" 23107 26313 #include <sys/types.h> 23108 26314 #include <signal.h> 23109 @@ -15351,16 +16 310,16 @@26315 @@ -15351,16 +16429,16 @@ 23110 26316 } 23111 26317 _ACEOF 23112 26318 rm -f conftest.$ac_objext 23113 26319 -if { (eval echo "$as_me:15354: \"$ac_compile\"") >&5 23114 +if { (eval echo "$as_me:16 313: \"$ac_compile\"") >&526320 +if { (eval echo "$as_me:16432: \"$ac_compile\"") >&5 23115 26321 (eval $ac_compile) 2>&5 23116 26322 ac_status=$? 23117 26323 - echo "$as_me:15357: \$? = $ac_status" >&5 23118 + echo "$as_me:16 316: \$? = $ac_status" >&526324 + echo "$as_me:16435: \$? = $ac_status" >&5 23119 26325 (exit $ac_status); } && 23120 26326 { ac_try='test -s conftest.$ac_objext' 23121 26327 - { (eval echo "$as_me:15360: \"$ac_try\"") >&5 23122 + { (eval echo "$as_me:16 319: \"$ac_try\"") >&526328 + { (eval echo "$as_me:16438: \"$ac_try\"") >&5 23123 26329 (eval $ac_try) 2>&5 23124 26330 ac_status=$? 23125 26331 - echo "$as_me:15363: \$? = $ac_status" >&5 23126 + echo "$as_me:16 322: \$? = $ac_status" >&526332 + echo "$as_me:16441: \$? = $ac_status" >&5 23127 26333 (exit $ac_status); }; }; then 23128 26334 ac_cv_type_signal=void 23129 26335 else 23130 @@ -15370,21 +16 329,73 @@26336 @@ -15370,21 +16448,73 @@ 23131 26337 fi 23132 26338 rm -f conftest.$ac_objext conftest.$ac_ext 23133 26339 fi 23134 26340 -echo "$as_me:15373: result: $ac_cv_type_signal" >&5 23135 +echo "$as_me:16 332: result: $ac_cv_type_signal" >&526341 +echo "$as_me:16451: result: $ac_cv_type_signal" >&5 23136 26342 echo "${ECHO_T}$ac_cv_type_signal" >&6 23137 26343 … … 23141 26347 23142 26348 -echo "$as_me:15380: checking for type sigaction_t" >&5 23143 +echo "$as_me:16 339: checking for intptr_t" >&526349 +echo "$as_me:16458: checking for intptr_t" >&5 23144 26350 +echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6 23145 26351 +if test "${ac_cv_type_intptr_t+set}" = set; then … … 23147 26353 +else 23148 26354 + cat >conftest.$ac_ext <<_ACEOF 23149 +#line 16 345"configure"26355 +#line 16464 "configure" 23150 26356 +#include "confdefs.h" 23151 26357 +$ac_includes_default … … 23162 26368 +_ACEOF 23163 26369 +rm -f conftest.$ac_objext 23164 +if { (eval echo "$as_me:16 360: \"$ac_compile\"") >&526370 +if { (eval echo "$as_me:16479: \"$ac_compile\"") >&5 23165 26371 + (eval $ac_compile) 2>&5 23166 26372 + ac_status=$? 23167 + echo "$as_me:16 363: \$? = $ac_status" >&526373 + echo "$as_me:16482: \$? = $ac_status" >&5 23168 26374 + (exit $ac_status); } && 23169 26375 + { ac_try='test -s conftest.$ac_objext' 23170 + { (eval echo "$as_me:16 366: \"$ac_try\"") >&526376 + { (eval echo "$as_me:16485: \"$ac_try\"") >&5 23171 26377 + (eval $ac_try) 2>&5 23172 26378 + ac_status=$? 23173 + echo "$as_me:16 369: \$? = $ac_status" >&526379 + echo "$as_me:16488: \$? = $ac_status" >&5 23174 26380 + (exit $ac_status); }; }; then 23175 26381 + ac_cv_type_intptr_t=yes … … 23181 26387 +rm -f conftest.$ac_objext conftest.$ac_ext 23182 26388 +fi 23183 +echo "$as_me:16 379: result: $ac_cv_type_intptr_t" >&526389 +echo "$as_me:16498: result: $ac_cv_type_intptr_t" >&5 23184 26390 +echo "${ECHO_T}$ac_cv_type_intptr_t" >&6 23185 26391 +if test $ac_cv_type_intptr_t = yes; then … … 23193 26399 +fi 23194 26400 + 23195 +echo "$as_me:16 391: checking for type sigaction_t" >&526401 +echo "$as_me:16510: checking for type sigaction_t" >&5 23196 26402 echo $ECHO_N "checking for type sigaction_t... $ECHO_C" >&6 23197 26403 if test "${cf_cv_type_sigaction+set}" = set; then … … 23201 26407 cat >conftest.$ac_ext <<_ACEOF 23202 26408 -#line 15387 "configure" 23203 +#line 16 398"configure"26409 +#line 16517 "configure" 23204 26410 #include "confdefs.h" 23205 26411 23206 26412 #include <signal.h> 23207 @@ -15397,16 +16 408,16 @@26413 @@ -15397,16 +16527,16 @@ 23208 26414 } 23209 26415 _ACEOF 23210 26416 rm -f conftest.$ac_objext 23211 26417 -if { (eval echo "$as_me:15400: \"$ac_compile\"") >&5 23212 +if { (eval echo "$as_me:16 411: \"$ac_compile\"") >&526418 +if { (eval echo "$as_me:16530: \"$ac_compile\"") >&5 23213 26419 (eval $ac_compile) 2>&5 23214 26420 ac_status=$? 23215 26421 - echo "$as_me:15403: \$? = $ac_status" >&5 23216 + echo "$as_me:16 414: \$? = $ac_status" >&526422 + echo "$as_me:16533: \$? = $ac_status" >&5 23217 26423 (exit $ac_status); } && 23218 26424 { ac_try='test -s conftest.$ac_objext' 23219 26425 - { (eval echo "$as_me:15406: \"$ac_try\"") >&5 23220 + { (eval echo "$as_me:16 417: \"$ac_try\"") >&526426 + { (eval echo "$as_me:16536: \"$ac_try\"") >&5 23221 26427 (eval $ac_try) 2>&5 23222 26428 ac_status=$? 23223 26429 - echo "$as_me:15409: \$? = $ac_status" >&5 23224 + echo "$as_me:16 420: \$? = $ac_status" >&526430 + echo "$as_me:16539: \$? = $ac_status" >&5 23225 26431 (exit $ac_status); }; }; then 23226 26432 cf_cv_type_sigaction=yes 23227 26433 else 23228 @@ -15417,13 +16 428,13 @@26434 @@ -15417,13 +16547,13 @@ 23229 26435 rm -f conftest.$ac_objext conftest.$ac_ext 23230 26436 fi 23231 26437 23232 26438 -echo "$as_me:15420: result: $cf_cv_type_sigaction" >&5 23233 +echo "$as_me:16 431: result: $cf_cv_type_sigaction" >&526439 +echo "$as_me:16550: result: $cf_cv_type_sigaction" >&5 23234 26440 echo "${ECHO_T}$cf_cv_type_sigaction" >&6 23235 26441 test "$cf_cv_type_sigaction" = yes && cat >>confdefs.h <<\EOF … … 23238 26444 23239 26445 -echo "$as_me:15426: checking declaration of size-change" >&5 23240 +echo "$as_me:16 437: checking declaration of size-change" >&526446 +echo "$as_me:16556: checking declaration of size-change" >&5 23241 26447 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6 23242 26448 if test "${cf_cv_sizechange+set}" = set; then 23243 26449 echo $ECHO_N "(cached) $ECHO_C" >&6 23244 @@ -15438,7 +16 449,7 @@26450 @@ -15438,7 +16568,7 @@ 23245 26451 CPPFLAGS="$cf_save_CPPFLAGS" 23246 26452 test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" 23247 26453 cat >conftest.$ac_ext <<_ACEOF 23248 26454 -#line 15441 "configure" 23249 +#line 16 452"configure"26455 +#line 16571 "configure" 23250 26456 #include "confdefs.h" 23251 26457 #include <sys/types.h> 23252 26458 #ifdef HAVE_TERMIOS_H 23253 @@ -15482,16 +16 493,16 @@26459 @@ -15482,16 +16612,16 @@ 23254 26460 } 23255 26461 _ACEOF 23256 26462 rm -f conftest.$ac_objext 23257 26463 -if { (eval echo "$as_me:15485: \"$ac_compile\"") >&5 23258 +if { (eval echo "$as_me:16 496: \"$ac_compile\"") >&526464 +if { (eval echo "$as_me:16615: \"$ac_compile\"") >&5 23259 26465 (eval $ac_compile) 2>&5 23260 26466 ac_status=$? 23261 26467 - echo "$as_me:15488: \$? = $ac_status" >&5 23262 + echo "$as_me:16 499: \$? = $ac_status" >&526468 + echo "$as_me:16618: \$? = $ac_status" >&5 23263 26469 (exit $ac_status); } && 23264 26470 { ac_try='test -s conftest.$ac_objext' 23265 26471 - { (eval echo "$as_me:15491: \"$ac_try\"") >&5 23266 + { (eval echo "$as_me:16 502: \"$ac_try\"") >&526472 + { (eval echo "$as_me:16621: \"$ac_try\"") >&5 23267 26473 (eval $ac_try) 2>&5 23268 26474 ac_status=$? 23269 26475 - echo "$as_me:15494: \$? = $ac_status" >&5 23270 + echo "$as_me:16 505: \$? = $ac_status" >&526476 + echo "$as_me:16624: \$? = $ac_status" >&5 23271 26477 (exit $ac_status); }; }; then 23272 26478 cf_cv_sizechange=yes 23273 26479 else 23274 @@ -15510,7 +16 521,7 @@26480 @@ -15510,7 +16640,7 @@ 23275 26481 done 23276 26482 23277 26483 fi 23278 26484 -echo "$as_me:15513: result: $cf_cv_sizechange" >&5 23279 +echo "$as_me:16 524: result: $cf_cv_sizechange" >&526485 +echo "$as_me:16643: result: $cf_cv_sizechange" >&5 23280 26486 echo "${ECHO_T}$cf_cv_sizechange" >&6 23281 26487 if test "$cf_cv_sizechange" != no ; then 23282 26488 cat >>confdefs.h <<\EOF 23283 @@ -15527,13 +16 538,13 @@26489 @@ -15527,13 +16657,13 @@ 23284 26490 esac 23285 26491 fi 23286 26492 23287 26493 -echo "$as_me:15530: checking for memmove" >&5 23288 +echo "$as_me:16 541: checking for memmove" >&526494 +echo "$as_me:16660: checking for memmove" >&5 23289 26495 echo $ECHO_N "checking for memmove... $ECHO_C" >&6 23290 26496 if test "${ac_cv_func_memmove+set}" = set; then … … 23293 26499 cat >conftest.$ac_ext <<_ACEOF 23294 26500 -#line 15536 "configure" 23295 +#line 16 547"configure"26501 +#line 16666 "configure" 23296 26502 #include "confdefs.h" 23297 26503 /* System header to define __stub macros and hopefully few prototypes, 23298 26504 which can conflict with char memmove (); below. */ 23299 @@ -15564,16 +16575,16 @@ 26505 @@ -15556,7 +16686,7 @@ 26506 #if defined (__stub_memmove) || defined (__stub___memmove) 26507 choke me 26508 #else 26509 -f = memmove; 26510 +f = memmove; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 26511 #endif 26512 26513 ; 26514 @@ -15564,16 +16694,16 @@ 23300 26515 } 23301 26516 _ACEOF 23302 26517 rm -f conftest.$ac_objext conftest$ac_exeext 23303 26518 -if { (eval echo "$as_me:15567: \"$ac_link\"") >&5 23304 +if { (eval echo "$as_me:16 578: \"$ac_link\"") >&526519 +if { (eval echo "$as_me:16697: \"$ac_link\"") >&5 23305 26520 (eval $ac_link) 2>&5 23306 26521 ac_status=$? 23307 26522 - echo "$as_me:15570: \$? = $ac_status" >&5 23308 + echo "$as_me:16 581: \$? = $ac_status" >&526523 + echo "$as_me:16700: \$? = $ac_status" >&5 23309 26524 (exit $ac_status); } && 23310 26525 { ac_try='test -s conftest$ac_exeext' 23311 26526 - { (eval echo "$as_me:15573: \"$ac_try\"") >&5 23312 + { (eval echo "$as_me:16 584: \"$ac_try\"") >&526527 + { (eval echo "$as_me:16703: \"$ac_try\"") >&5 23313 26528 (eval $ac_try) 2>&5 23314 26529 ac_status=$? 23315 26530 - echo "$as_me:15576: \$? = $ac_status" >&5 23316 + echo "$as_me:16 587: \$? = $ac_status" >&526531 + echo "$as_me:16706: \$? = $ac_status" >&5 23317 26532 (exit $ac_status); }; }; then 23318 26533 ac_cv_func_memmove=yes 23319 26534 else 23320 @@ -15583,19 +16 594,19 @@26535 @@ -15583,19 +16713,19 @@ 23321 26536 fi 23322 26537 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23323 26538 fi 23324 26539 -echo "$as_me:15586: result: $ac_cv_func_memmove" >&5 23325 +echo "$as_me:16 597: result: $ac_cv_func_memmove" >&526540 +echo "$as_me:16716: result: $ac_cv_func_memmove" >&5 23326 26541 echo "${ECHO_T}$ac_cv_func_memmove" >&6 23327 26542 if test $ac_cv_func_memmove = yes; then … … 23330 26545 23331 26546 -echo "$as_me:15592: checking for bcopy" >&5 23332 +echo "$as_me:16 603: checking for bcopy" >&526547 +echo "$as_me:16722: checking for bcopy" >&5 23333 26548 echo $ECHO_N "checking for bcopy... $ECHO_C" >&6 23334 26549 if test "${ac_cv_func_bcopy+set}" = set; then … … 23337 26552 cat >conftest.$ac_ext <<_ACEOF 23338 26553 -#line 15598 "configure" 23339 +#line 16 609"configure"26554 +#line 16728 "configure" 23340 26555 #include "confdefs.h" 23341 26556 /* System header to define __stub macros and hopefully few prototypes, 23342 26557 which can conflict with char bcopy (); below. */ 23343 @@ -15626,16 +16637,16 @@ 26558 @@ -15618,7 +16748,7 @@ 26559 #if defined (__stub_bcopy) || defined (__stub___bcopy) 26560 choke me 26561 #else 26562 -f = bcopy; 26563 +f = bcopy; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 26564 #endif 26565 26566 ; 26567 @@ -15626,16 +16756,16 @@ 23344 26568 } 23345 26569 _ACEOF 23346 26570 rm -f conftest.$ac_objext conftest$ac_exeext 23347 26571 -if { (eval echo "$as_me:15629: \"$ac_link\"") >&5 23348 +if { (eval echo "$as_me:16 640: \"$ac_link\"") >&526572 +if { (eval echo "$as_me:16759: \"$ac_link\"") >&5 23349 26573 (eval $ac_link) 2>&5 23350 26574 ac_status=$? 23351 26575 - echo "$as_me:15632: \$? = $ac_status" >&5 23352 + echo "$as_me:16 643: \$? = $ac_status" >&526576 + echo "$as_me:16762: \$? = $ac_status" >&5 23353 26577 (exit $ac_status); } && 23354 26578 { ac_try='test -s conftest$ac_exeext' 23355 26579 - { (eval echo "$as_me:15635: \"$ac_try\"") >&5 23356 + { (eval echo "$as_me:16 646: \"$ac_try\"") >&526580 + { (eval echo "$as_me:16765: \"$ac_try\"") >&5 23357 26581 (eval $ac_try) 2>&5 23358 26582 ac_status=$? 23359 26583 - echo "$as_me:15638: \$? = $ac_status" >&5 23360 + echo "$as_me:16 649: \$? = $ac_status" >&526584 + echo "$as_me:16768: \$? = $ac_status" >&5 23361 26585 (exit $ac_status); }; }; then 23362 26586 ac_cv_func_bcopy=yes 23363 26587 else 23364 @@ -15645,11 +16 656,11 @@26588 @@ -15645,11 +16775,11 @@ 23365 26589 fi 23366 26590 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23367 26591 fi 23368 26592 -echo "$as_me:15648: result: $ac_cv_func_bcopy" >&5 23369 +echo "$as_me:16 659: result: $ac_cv_func_bcopy" >&526593 +echo "$as_me:16778: result: $ac_cv_func_bcopy" >&5 23370 26594 echo "${ECHO_T}$ac_cv_func_bcopy" >&6 23371 26595 if test $ac_cv_func_bcopy = yes; then 23372 26596 23373 26597 - echo "$as_me:15652: checking if bcopy does overlapping moves" >&5 23374 + echo "$as_me:16 663: checking if bcopy does overlapping moves" >&526598 + echo "$as_me:16782: checking if bcopy does overlapping moves" >&5 23375 26599 echo $ECHO_N "checking if bcopy does overlapping moves... $ECHO_C" >&6 23376 26600 if test "${cf_cv_good_bcopy+set}" = set; then 23377 26601 echo $ECHO_N "(cached) $ECHO_C" >&6 23378 @@ -15659,7 +16 670,7 @@26602 @@ -15659,7 +16789,7 @@ 23379 26603 cf_cv_good_bcopy=unknown 23380 26604 else 23381 26605 cat >conftest.$ac_ext <<_ACEOF 23382 26606 -#line 15662 "configure" 23383 +#line 16 673"configure"26607 +#line 16792 "configure" 23384 26608 #include "confdefs.h" 23385 26609 23386 26610 int main() { 23387 @@ -15673,15 +16 684,15 @@26611 @@ -15673,15 +16803,15 @@ 23388 26612 23389 26613 _ACEOF 23390 26614 rm -f conftest$ac_exeext 23391 26615 -if { (eval echo "$as_me:15676: \"$ac_link\"") >&5 23392 +if { (eval echo "$as_me:16 687: \"$ac_link\"") >&526616 +if { (eval echo "$as_me:16806: \"$ac_link\"") >&5 23393 26617 (eval $ac_link) 2>&5 23394 26618 ac_status=$? 23395 26619 - echo "$as_me:15679: \$? = $ac_status" >&5 23396 + echo "$as_me:16 690: \$? = $ac_status" >&526620 + echo "$as_me:16809: \$? = $ac_status" >&5 23397 26621 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23398 26622 - { (eval echo "$as_me:15681: \"$ac_try\"") >&5 23399 + { (eval echo "$as_me:16 692: \"$ac_try\"") >&526623 + { (eval echo "$as_me:16811: \"$ac_try\"") >&5 23400 26624 (eval $ac_try) 2>&5 23401 26625 ac_status=$? 23402 26626 - echo "$as_me:15684: \$? = $ac_status" >&5 23403 + echo "$as_me:16 695: \$? = $ac_status" >&526627 + echo "$as_me:16814: \$? = $ac_status" >&5 23404 26628 (exit $ac_status); }; }; then 23405 26629 cf_cv_good_bcopy=yes 23406 26630 else 23407 @@ -15694,7 +16 705,7 @@26631 @@ -15694,7 +16824,7 @@ 23408 26632 fi 23409 26633 23410 26634 fi 23411 26635 -echo "$as_me:15697: result: $cf_cv_good_bcopy" >&5 23412 +echo "$as_me:16 708: result: $cf_cv_good_bcopy" >&526636 +echo "$as_me:16827: result: $cf_cv_good_bcopy" >&5 23413 26637 echo "${ECHO_T}$cf_cv_good_bcopy" >&6 23414 26638 23415 26639 else 23416 @@ -15715,7 +16 726,7 @@26640 @@ -15715,7 +16845,7 @@ 23417 26641 23418 26642 fi 23419 26643 23420 26644 -echo "$as_me:15718: checking if poll really works" >&5 23421 +echo "$as_me:16 729: checking if poll really works" >&526645 +echo "$as_me:16848: checking if poll really works" >&5 23422 26646 echo $ECHO_N "checking if poll really works... $ECHO_C" >&6 23423 26647 if test "${cf_cv_working_poll+set}" = set; then 23424 26648 echo $ECHO_N "(cached) $ECHO_C" >&6 23425 @@ -15725, 7 +16736,7@@26649 @@ -15725,10 +16855,13 @@ 23426 26650 cf_cv_working_poll=unknown 23427 26651 else 23428 26652 cat >conftest.$ac_ext <<_ACEOF 23429 26653 -#line 15728 "configure" 23430 +#line 16 739"configure"26654 +#line 16858 "configure" 23431 26655 #include "confdefs.h" 23432 26656 26657 +#include <stdlib.h> 23433 26658 #include <stdio.h> 23434 @@ -15746,15 +16757,15 @@ 26659 +#include <unistd.h> 26660 +#include <fcntl.h> 26661 #ifdef HAVE_POLL_H 26662 #include <poll.h> 26663 #else 26664 @@ -15738,23 +16871,46 @@ 26665 struct pollfd myfds; 26666 int ret; 26667 26668 - myfds.fd = 0; 26669 + /* check for Darwin bug with respect to "devices" */ 26670 + myfds.fd = open("/dev/null", 1); /* O_WRONLY */ 26671 + if (myfds.fd < 0) 26672 + myfds.fd = 0; 26673 myfds.events = POLLIN; 26674 + myfds.revents = 0; 26675 26676 ret = poll(&myfds, 1, 100); 26677 - ${cf_cv_main_return:-return}(ret != 0); 26678 + 26679 + if (ret < 0 || (myfds.revents & POLLNVAL)) { 26680 + ret = -1; 26681 + } else { 26682 + int fd = 0; 26683 + if (!isatty(fd)) { 26684 + fd = open("/dev/tty", 2); /* O_RDWR */ 26685 + } 26686 + 26687 + if (fd >= 0) { 26688 + /* also check with standard input */ 26689 + myfds.fd = fd; 26690 + myfds.events = POLLIN; 26691 + myfds.revents = 0; 26692 + ret = poll(&myfds, 1, 100); 26693 + } else { 26694 + ret = -1; 26695 + } 26696 + } 26697 + ${cf_cv_main_return:-return}(ret < 0); 23435 26698 } 23436 26699 _ACEOF 23437 26700 rm -f conftest$ac_exeext 23438 26701 -if { (eval echo "$as_me:15749: \"$ac_link\"") >&5 23439 +if { (eval echo "$as_me:16 760: \"$ac_link\"") >&526702 +if { (eval echo "$as_me:16905: \"$ac_link\"") >&5 23440 26703 (eval $ac_link) 2>&5 23441 26704 ac_status=$? 23442 26705 - echo "$as_me:15752: \$? = $ac_status" >&5 23443 + echo "$as_me:16 763: \$? = $ac_status" >&526706 + echo "$as_me:16908: \$? = $ac_status" >&5 23444 26707 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23445 26708 - { (eval echo "$as_me:15754: \"$ac_try\"") >&5 23446 + { (eval echo "$as_me:16 765: \"$ac_try\"") >&526709 + { (eval echo "$as_me:16910: \"$ac_try\"") >&5 23447 26710 (eval $ac_try) 2>&5 23448 26711 ac_status=$? 23449 26712 - echo "$as_me:15757: \$? = $ac_status" >&5 23450 + echo "$as_me:16 768: \$? = $ac_status" >&526713 + echo "$as_me:16913: \$? = $ac_status" >&5 23451 26714 (exit $ac_status); }; }; then 23452 26715 cf_cv_working_poll=yes 23453 26716 else 23454 @@ -15766,20 +16 777,20 @@26717 @@ -15766,20 +16922,20 @@ 23455 26718 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 23456 26719 fi 23457 26720 fi 23458 26721 -echo "$as_me:15769: result: $cf_cv_working_poll" >&5 23459 +echo "$as_me:16 780: result: $cf_cv_working_poll" >&526722 +echo "$as_me:16925: result: $cf_cv_working_poll" >&5 23460 26723 echo "${ECHO_T}$cf_cv_working_poll" >&6 23461 26724 test "$cf_cv_working_poll" = "yes" && cat >>confdefs.h <<\EOF … … 23464 26727 23465 26728 -echo "$as_me:15775: checking for va_copy" >&5 23466 +echo "$as_me:16 786: checking for va_copy" >&526729 +echo "$as_me:16931: checking for va_copy" >&5 23467 26730 echo $ECHO_N "checking for va_copy... $ECHO_C" >&6 23468 26731 if test "${cf_cv_have_va_copy+set}" = set; then … … 23472 26735 cat >conftest.$ac_ext <<_ACEOF 23473 26736 -#line 15782 "configure" 23474 +#line 16 793"configure"26737 +#line 16938 "configure" 23475 26738 #include "confdefs.h" 23476 26739 23477 26740 #include <stdarg.h> 23478 @@ -15796,16 +16 807,16 @@26741 @@ -15796,16 +16952,16 @@ 23479 26742 } 23480 26743 _ACEOF 23481 26744 rm -f conftest.$ac_objext conftest$ac_exeext 23482 26745 -if { (eval echo "$as_me:15799: \"$ac_link\"") >&5 23483 +if { (eval echo "$as_me:16 810: \"$ac_link\"") >&526746 +if { (eval echo "$as_me:16955: \"$ac_link\"") >&5 23484 26747 (eval $ac_link) 2>&5 23485 26748 ac_status=$? 23486 26749 - echo "$as_me:15802: \$? = $ac_status" >&5 23487 + echo "$as_me:16 813: \$? = $ac_status" >&526750 + echo "$as_me:16958: \$? = $ac_status" >&5 23488 26751 (exit $ac_status); } && 23489 26752 { ac_try='test -s conftest$ac_exeext' 23490 26753 - { (eval echo "$as_me:15805: \"$ac_try\"") >&5 23491 + { (eval echo "$as_me:16 816: \"$ac_try\"") >&526754 + { (eval echo "$as_me:16961: \"$ac_try\"") >&5 23492 26755 (eval $ac_try) 2>&5 23493 26756 ac_status=$? 23494 26757 - echo "$as_me:15808: \$? = $ac_status" >&5 23495 + echo "$as_me:16 819: \$? = $ac_status" >&526758 + echo "$as_me:16964: \$? = $ac_status" >&5 23496 26759 (exit $ac_status); }; }; then 23497 26760 cf_cv_have_va_copy=yes 23498 26761 else 23499 @@ -15815,21 +16 826,21 @@26762 @@ -15815,21 +16971,21 @@ 23500 26763 fi 23501 26764 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23502 26765 fi 23503 26766 -echo "$as_me:15818: result: $cf_cv_have_va_copy" >&5 23504 +echo "$as_me:16 829: result: $cf_cv_have_va_copy" >&526767 +echo "$as_me:16974: result: $cf_cv_have_va_copy" >&5 23505 26768 echo "${ECHO_T}$cf_cv_have_va_copy" >&6 23506 26769 … … 23510 26773 23511 26774 -echo "$as_me:15825: checking for __va_copy" >&5 23512 +echo "$as_me:16 836: checking for __va_copy" >&526775 +echo "$as_me:16981: checking for __va_copy" >&5 23513 26776 echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6 23514 26777 if test "${cf_cv_have___va_copy+set}" = set; then … … 23518 26781 cat >conftest.$ac_ext <<_ACEOF 23519 26782 -#line 15832 "configure" 23520 +#line 16 843"configure"26783 +#line 16988 "configure" 23521 26784 #include "confdefs.h" 23522 26785 23523 26786 #include <stdarg.h> 23524 @@ -15846,16 +1 6857,16 @@26787 @@ -15846,16 +17002,16 @@ 23525 26788 } 23526 26789 _ACEOF 23527 26790 rm -f conftest.$ac_objext conftest$ac_exeext 23528 26791 -if { (eval echo "$as_me:15849: \"$ac_link\"") >&5 23529 +if { (eval echo "$as_me:1 6860: \"$ac_link\"") >&526792 +if { (eval echo "$as_me:17005: \"$ac_link\"") >&5 23530 26793 (eval $ac_link) 2>&5 23531 26794 ac_status=$? 23532 26795 - echo "$as_me:15852: \$? = $ac_status" >&5 23533 + echo "$as_me:1 6863: \$? = $ac_status" >&526796 + echo "$as_me:17008: \$? = $ac_status" >&5 23534 26797 (exit $ac_status); } && 23535 26798 { ac_try='test -s conftest$ac_exeext' 23536 26799 - { (eval echo "$as_me:15855: \"$ac_try\"") >&5 23537 + { (eval echo "$as_me:1 6866: \"$ac_try\"") >&526800 + { (eval echo "$as_me:17011: \"$ac_try\"") >&5 23538 26801 (eval $ac_try) 2>&5 23539 26802 ac_status=$? 23540 26803 - echo "$as_me:15858: \$? = $ac_status" >&5 23541 + echo "$as_me:1 6869: \$? = $ac_status" >&526804 + echo "$as_me:17014: \$? = $ac_status" >&5 23542 26805 (exit $ac_status); }; }; then 23543 26806 cf_cv_have___va_copy=yes 23544 26807 else 23545 @@ -15865,20 +1 6876,20 @@26808 @@ -15865,20 +17021,20 @@ 23546 26809 fi 23547 26810 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23548 26811 fi 23549 26812 -echo "$as_me:15868: result: $cf_cv_have___va_copy" >&5 23550 +echo "$as_me:1 6879: result: $cf_cv_have___va_copy" >&526813 +echo "$as_me:17024: result: $cf_cv_have___va_copy" >&5 23551 26814 echo "${ECHO_T}$cf_cv_have___va_copy" >&6 23552 26815 … … 23556 26819 23557 26820 -echo "$as_me:15875: checking for pid_t" >&5 23558 +echo "$as_me:1 6886: checking for pid_t" >&526821 +echo "$as_me:17031: checking for pid_t" >&5 23559 26822 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 23560 26823 if test "${ac_cv_type_pid_t+set}" = set; then … … 23563 26826 cat >conftest.$ac_ext <<_ACEOF 23564 26827 -#line 15881 "configure" 23565 +#line 1 6892"configure"26828 +#line 17037 "configure" 23566 26829 #include "confdefs.h" 23567 26830 $ac_includes_default 23568 26831 int 23569 @@ -15893,16 +1 6904,16 @@26832 @@ -15893,16 +17049,16 @@ 23570 26833 } 23571 26834 _ACEOF 23572 26835 rm -f conftest.$ac_objext 23573 26836 -if { (eval echo "$as_me:15896: \"$ac_compile\"") >&5 23574 +if { (eval echo "$as_me:1 6907: \"$ac_compile\"") >&526837 +if { (eval echo "$as_me:17052: \"$ac_compile\"") >&5 23575 26838 (eval $ac_compile) 2>&5 23576 26839 ac_status=$? 23577 26840 - echo "$as_me:15899: \$? = $ac_status" >&5 23578 + echo "$as_me:1 6910: \$? = $ac_status" >&526841 + echo "$as_me:17055: \$? = $ac_status" >&5 23579 26842 (exit $ac_status); } && 23580 26843 { ac_try='test -s conftest.$ac_objext' 23581 26844 - { (eval echo "$as_me:15902: \"$ac_try\"") >&5 23582 + { (eval echo "$as_me:1 6913: \"$ac_try\"") >&526845 + { (eval echo "$as_me:17058: \"$ac_try\"") >&5 23583 26846 (eval $ac_try) 2>&5 23584 26847 ac_status=$? 23585 26848 - echo "$as_me:15905: \$? = $ac_status" >&5 23586 + echo "$as_me:1 6916: \$? = $ac_status" >&526849 + echo "$as_me:17061: \$? = $ac_status" >&5 23587 26850 (exit $ac_status); }; }; then 23588 26851 ac_cv_type_pid_t=yes 23589 26852 else 23590 @@ -15912,7 +1 6923,7 @@26853 @@ -15912,7 +17068,7 @@ 23591 26854 fi 23592 26855 rm -f conftest.$ac_objext conftest.$ac_ext 23593 26856 fi 23594 26857 -echo "$as_me:15915: result: $ac_cv_type_pid_t" >&5 23595 +echo "$as_me:1 6926: result: $ac_cv_type_pid_t" >&526858 +echo "$as_me:17071: result: $ac_cv_type_pid_t" >&5 23596 26859 echo "${ECHO_T}$ac_cv_type_pid_t" >&6 23597 26860 if test $ac_cv_type_pid_t = yes; then 23598 26861 : 23599 @@ -15927,23 +1 6938,23 @@26862 @@ -15927,23 +17083,23 @@ 23600 26863 for ac_header in unistd.h vfork.h 23601 26864 do 23602 26865 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 23603 26866 -echo "$as_me:15930: checking for $ac_header" >&5 23604 +echo "$as_me:1 6941: checking for $ac_header" >&526867 +echo "$as_me:17086: checking for $ac_header" >&5 23605 26868 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 23606 26869 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 23609 26872 cat >conftest.$ac_ext <<_ACEOF 23610 26873 -#line 15936 "configure" 23611 +#line 1 6947"configure"26874 +#line 17092 "configure" 23612 26875 #include "confdefs.h" 23613 26876 #include <$ac_header> 23614 26877 _ACEOF 23615 26878 -if { (eval echo "$as_me:15940: \"$ac_cpp conftest.$ac_ext\"") >&5 23616 +if { (eval echo "$as_me:1 6951: \"$ac_cpp conftest.$ac_ext\"") >&526879 +if { (eval echo "$as_me:17096: \"$ac_cpp conftest.$ac_ext\"") >&5 23617 26880 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 23618 26881 ac_status=$? … … 23621 26884 cat conftest.err >&5 23622 26885 - echo "$as_me:15946: \$? = $ac_status" >&5 23623 + echo "$as_me:1 6957: \$? = $ac_status" >&526886 + echo "$as_me:17102: \$? = $ac_status" >&5 23624 26887 (exit $ac_status); } >/dev/null; then 23625 26888 if test -s conftest.err; then 23626 26889 ac_cpp_err=$ac_c_preproc_warn_flag 23627 @@ -15962,7 +1 6973,7 @@26890 @@ -15962,7 +17118,7 @@ 23628 26891 fi 23629 26892 rm -f conftest.err conftest.$ac_ext 23630 26893 fi 23631 26894 -echo "$as_me:15965: result: `eval echo '${'$as_ac_Header'}'`" >&5 23632 +echo "$as_me:1 6976: result: `eval echo '${'$as_ac_Header'}'`" >&526895 +echo "$as_me:17121: result: `eval echo '${'$as_ac_Header'}'`" >&5 23633 26896 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 23634 26897 if test `eval echo '${'$as_ac_Header'}'` = yes; then 23635 26898 cat >>confdefs.h <<EOF 23636 @@ -15975,13 +1 6986,13 @@26899 @@ -15975,13 +17131,13 @@ 23637 26900 for ac_func in fork vfork 23638 26901 do 23639 26902 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` 23640 26903 -echo "$as_me:15978: checking for $ac_func" >&5 23641 +echo "$as_me:1 6989: checking for $ac_func" >&526904 +echo "$as_me:17134: checking for $ac_func" >&5 23642 26905 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 23643 26906 if eval "test \"\${$as_ac_var+set}\" = set"; then … … 23646 26909 cat >conftest.$ac_ext <<_ACEOF 23647 26910 -#line 15984 "configure" 23648 +#line 1 6995"configure"26911 +#line 17140 "configure" 23649 26912 #include "confdefs.h" 23650 26913 /* System header to define __stub macros and hopefully few prototypes, 23651 26914 which can conflict with char $ac_func (); below. */ 23652 @@ -16012,16 +17023,16 @@ 26915 @@ -16004,7 +17160,7 @@ 26916 #if defined (__stub_$ac_func) || defined (__stub___$ac_func) 26917 choke me 26918 #else 26919 -f = $ac_func; 26920 +f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1; 26921 #endif 26922 26923 ; 26924 @@ -16012,16 +17168,16 @@ 23653 26925 } 23654 26926 _ACEOF 23655 26927 rm -f conftest.$ac_objext conftest$ac_exeext 23656 26928 -if { (eval echo "$as_me:16015: \"$ac_link\"") >&5 23657 +if { (eval echo "$as_me:17 026: \"$ac_link\"") >&526929 +if { (eval echo "$as_me:17171: \"$ac_link\"") >&5 23658 26930 (eval $ac_link) 2>&5 23659 26931 ac_status=$? 23660 26932 - echo "$as_me:16018: \$? = $ac_status" >&5 23661 + echo "$as_me:17 029: \$? = $ac_status" >&526933 + echo "$as_me:17174: \$? = $ac_status" >&5 23662 26934 (exit $ac_status); } && 23663 26935 { ac_try='test -s conftest$ac_exeext' 23664 26936 - { (eval echo "$as_me:16021: \"$ac_try\"") >&5 23665 + { (eval echo "$as_me:17 032: \"$ac_try\"") >&526937 + { (eval echo "$as_me:17177: \"$ac_try\"") >&5 23666 26938 (eval $ac_try) 2>&5 23667 26939 ac_status=$? 23668 26940 - echo "$as_me:16024: \$? = $ac_status" >&5 23669 + echo "$as_me:17 035: \$? = $ac_status" >&526941 + echo "$as_me:17180: \$? = $ac_status" >&5 23670 26942 (exit $ac_status); }; }; then 23671 26943 eval "$as_ac_var=yes" 23672 26944 else 23673 @@ -16031,7 +17 042,7 @@26945 @@ -16031,7 +17187,7 @@ 23674 26946 fi 23675 26947 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23676 26948 fi 23677 26949 -echo "$as_me:16034: result: `eval echo '${'$as_ac_var'}'`" >&5 23678 +echo "$as_me:17 045: result: `eval echo '${'$as_ac_var'}'`" >&526950 +echo "$as_me:17190: result: `eval echo '${'$as_ac_var'}'`" >&5 23679 26951 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 23680 26952 if test `eval echo '${'$as_ac_var'}'` = yes; then 23681 26953 cat >>confdefs.h <<EOF 23682 @@ -16043,7 +17 054,7 @@26954 @@ -16043,7 +17199,7 @@ 23683 26955 23684 26956 ac_cv_func_fork_works=$ac_cv_func_fork 23685 26957 if test "x$ac_cv_func_fork" = xyes; then 23686 26958 - echo "$as_me:16046: checking for working fork" >&5 23687 + echo "$as_me:17 057: checking for working fork" >&526959 + echo "$as_me:17202: checking for working fork" >&5 23688 26960 echo $ECHO_N "checking for working fork... $ECHO_C" >&6 23689 26961 if test "${ac_cv_func_fork_works+set}" = set; then 23690 26962 echo $ECHO_N "(cached) $ECHO_C" >&6 23691 @@ -16066,15 +17 077,15 @@26963 @@ -16066,15 +17222,15 @@ 23692 26964 } 23693 26965 _ACEOF 23694 26966 rm -f conftest$ac_exeext 23695 26967 -if { (eval echo "$as_me:16069: \"$ac_link\"") >&5 23696 +if { (eval echo "$as_me:17 080: \"$ac_link\"") >&526968 +if { (eval echo "$as_me:17225: \"$ac_link\"") >&5 23697 26969 (eval $ac_link) 2>&5 23698 26970 ac_status=$? 23699 26971 - echo "$as_me:16072: \$? = $ac_status" >&5 23700 + echo "$as_me:17 083: \$? = $ac_status" >&526972 + echo "$as_me:17228: \$? = $ac_status" >&5 23701 26973 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23702 26974 - { (eval echo "$as_me:16074: \"$ac_try\"") >&5 23703 + { (eval echo "$as_me:17 085: \"$ac_try\"") >&526975 + { (eval echo "$as_me:17230: \"$ac_try\"") >&5 23704 26976 (eval $ac_try) 2>&5 23705 26977 ac_status=$? 23706 26978 - echo "$as_me:16077: \$? = $ac_status" >&5 23707 + echo "$as_me:17 088: \$? = $ac_status" >&526979 + echo "$as_me:17233: \$? = $ac_status" >&5 23708 26980 (exit $ac_status); }; }; then 23709 26981 ac_cv_func_fork_works=yes 23710 26982 else 23711 @@ -16086,7 +17 097,7 @@26983 @@ -16086,7 +17242,7 @@ 23712 26984 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 23713 26985 fi 23714 26986 fi 23715 26987 -echo "$as_me:16089: result: $ac_cv_func_fork_works" >&5 23716 +echo "$as_me:17 100: result: $ac_cv_func_fork_works" >&526988 +echo "$as_me:17245: result: $ac_cv_func_fork_works" >&5 23717 26989 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 23718 26990 23719 26991 fi 23720 @@ -16100,12 +17 111,12 @@26992 @@ -16100,12 +17256,12 @@ 23721 26993 ac_cv_func_fork_works=yes 23722 26994 ;; 23723 26995 esac 23724 26996 - { echo "$as_me:16103: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 23725 + { echo "$as_me:17 114: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&526997 + { echo "$as_me:17259: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 23726 26998 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;} 23727 26999 fi … … 23729 27001 if test "x$ac_cv_func_vfork" = xyes; then 23730 27002 - echo "$as_me:16108: checking for working vfork" >&5 23731 + echo "$as_me:17 119: checking for working vfork" >&527003 + echo "$as_me:17264: checking for working vfork" >&5 23732 27004 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 23733 27005 if test "${ac_cv_func_vfork_works+set}" = set; then 23734 27006 echo $ECHO_N "(cached) $ECHO_C" >&6 23735 @@ -16114,7 +17 125,7 @@27007 @@ -16114,7 +17270,7 @@ 23736 27008 ac_cv_func_vfork_works=cross 23737 27009 else 23738 27010 cat >conftest.$ac_ext <<_ACEOF 23739 27011 -#line 16117 "configure" 23740 +#line 17 128"configure"27012 +#line 17273 "configure" 23741 27013 #include "confdefs.h" 23742 27014 /* Thanks to Paul Eggert for this test. */ 23743 27015 #include <stdio.h> 23744 @@ -16211,15 +17 222,15 @@27016 @@ -16211,15 +17367,15 @@ 23745 27017 } 23746 27018 _ACEOF 23747 27019 rm -f conftest$ac_exeext 23748 27020 -if { (eval echo "$as_me:16214: \"$ac_link\"") >&5 23749 +if { (eval echo "$as_me:17 225: \"$ac_link\"") >&527021 +if { (eval echo "$as_me:17370: \"$ac_link\"") >&5 23750 27022 (eval $ac_link) 2>&5 23751 27023 ac_status=$? 23752 27024 - echo "$as_me:16217: \$? = $ac_status" >&5 23753 + echo "$as_me:17 228: \$? = $ac_status" >&527025 + echo "$as_me:17373: \$? = $ac_status" >&5 23754 27026 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 23755 27027 - { (eval echo "$as_me:16219: \"$ac_try\"") >&5 23756 + { (eval echo "$as_me:17 230: \"$ac_try\"") >&527028 + { (eval echo "$as_me:17375: \"$ac_try\"") >&5 23757 27029 (eval $ac_try) 2>&5 23758 27030 ac_status=$? 23759 27031 - echo "$as_me:16222: \$? = $ac_status" >&5 23760 + echo "$as_me:17 233: \$? = $ac_status" >&527032 + echo "$as_me:17378: \$? = $ac_status" >&5 23761 27033 (exit $ac_status); }; }; then 23762 27034 ac_cv_func_vfork_works=yes 23763 27035 else 23764 @@ -16231,13 +17 242,13 @@27036 @@ -16231,13 +17387,13 @@ 23765 27037 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 23766 27038 fi 23767 27039 fi 23768 27040 -echo "$as_me:16234: result: $ac_cv_func_vfork_works" >&5 23769 +echo "$as_me:17 245: result: $ac_cv_func_vfork_works" >&527041 +echo "$as_me:17390: result: $ac_cv_func_vfork_works" >&5 23770 27042 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 23771 27043 … … 23774 27046 ac_cv_func_vfork_works=ac_cv_func_vfork 23775 27047 - { echo "$as_me:16240: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 23776 + { echo "$as_me:17 251: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&527048 + { echo "$as_me:17396: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 23777 27049 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;} 23778 27050 fi 23779 27051 23780 @@ -16264,7 +17 275,7 @@27052 @@ -16264,7 +17420,7 @@ 23781 27053 23782 27054 # special check for test/ditto.c 23783 27055 23784 27056 -echo "$as_me:16267: checking for openpty in -lutil" >&5 23785 +echo "$as_me:17 278: checking for openpty in -lutil" >&527057 +echo "$as_me:17423: checking for openpty in -lutil" >&5 23786 27058 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6 23787 27059 if test "${ac_cv_lib_util_openpty+set}" = set; then 23788 27060 echo $ECHO_N "(cached) $ECHO_C" >&6 23789 @@ -16272,7 +17 283,7 @@27061 @@ -16272,7 +17428,7 @@ 23790 27062 ac_check_lib_save_LIBS=$LIBS 23791 27063 LIBS="-lutil $LIBS" 23792 27064 cat >conftest.$ac_ext <<_ACEOF 23793 27065 -#line 16275 "configure" 23794 +#line 17 286"configure"27066 +#line 17431 "configure" 23795 27067 #include "confdefs.h" 23796 27068 23797 27069 /* Override any gcc2 internal prototype to avoid an error. */ 23798 @@ -16291,16 +17 302,16 @@27070 @@ -16291,16 +17447,16 @@ 23799 27071 } 23800 27072 _ACEOF 23801 27073 rm -f conftest.$ac_objext conftest$ac_exeext 23802 27074 -if { (eval echo "$as_me:16294: \"$ac_link\"") >&5 23803 +if { (eval echo "$as_me:17 305: \"$ac_link\"") >&527075 +if { (eval echo "$as_me:17450: \"$ac_link\"") >&5 23804 27076 (eval $ac_link) 2>&5 23805 27077 ac_status=$? 23806 27078 - echo "$as_me:16297: \$? = $ac_status" >&5 23807 + echo "$as_me:17 308: \$? = $ac_status" >&527079 + echo "$as_me:17453: \$? = $ac_status" >&5 23808 27080 (exit $ac_status); } && 23809 27081 { ac_try='test -s conftest$ac_exeext' 23810 27082 - { (eval echo "$as_me:16300: \"$ac_try\"") >&5 23811 + { (eval echo "$as_me:17 311: \"$ac_try\"") >&527083 + { (eval echo "$as_me:17456: \"$ac_try\"") >&5 23812 27084 (eval $ac_try) 2>&5 23813 27085 ac_status=$? 23814 27086 - echo "$as_me:16303: \$? = $ac_status" >&5 23815 + echo "$as_me:17 314: \$? = $ac_status" >&527087 + echo "$as_me:17459: \$? = $ac_status" >&5 23816 27088 (exit $ac_status); }; }; then 23817 27089 ac_cv_lib_util_openpty=yes 23818 27090 else 23819 @@ -16311,7 +17 322,7 @@27091 @@ -16311,7 +17467,7 @@ 23820 27092 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 23821 27093 LIBS=$ac_check_lib_save_LIBS 23822 27094 fi 23823 27095 -echo "$as_me:16314: result: $ac_cv_lib_util_openpty" >&5 23824 +echo "$as_me:17 325: result: $ac_cv_lib_util_openpty" >&527096 +echo "$as_me:17470: result: $ac_cv_lib_util_openpty" >&5 23825 27097 echo "${ECHO_T}$ac_cv_lib_util_openpty" >&6 23826 27098 if test $ac_cv_lib_util_openpty = yes; then 23827 27099 cf_cv_lib_util=yes 23828 @@ -16319,7 +17 330,7 @@27100 @@ -16319,7 +17475,7 @@ 23829 27101 cf_cv_lib_util=no 23830 27102 fi 23831 27103 23832 27104 -echo "$as_me:16322: checking for openpty header" >&5 23833 +echo "$as_me:17 333: checking for openpty header" >&527105 +echo "$as_me:17478: checking for openpty header" >&5 23834 27106 echo $ECHO_N "checking for openpty header... $ECHO_C" >&6 23835 27107 if test "${cf_cv_func_openpty+set}" = set; then 23836 27108 echo $ECHO_N "(cached) $ECHO_C" >&6 23837 @@ -16330,7 +17 341,7 @@27109 @@ -16330,7 +17486,7 @@ 23838 27110 for cf_header in pty.h libutil.h util.h 23839 27111 do 23840 27112 cat >conftest.$ac_ext <<_ACEOF 23841 27113 -#line 16333 "configure" 23842 +#line 17 344"configure"27114 +#line 17489 "configure" 23843 27115 #include "confdefs.h" 23844 27116 23845 27117 #include <$cf_header> 23846 @@ -16347,16 +17 358,16 @@27118 @@ -16347,16 +17503,16 @@ 23847 27119 } 23848 27120 _ACEOF 23849 27121 rm -f conftest.$ac_objext conftest$ac_exeext 23850 27122 -if { (eval echo "$as_me:16350: \"$ac_link\"") >&5 23851 +if { (eval echo "$as_me:17 361: \"$ac_link\"") >&527123 +if { (eval echo "$as_me:17506: \"$ac_link\"") >&5 23852 27124 (eval $ac_link) 2>&5 23853 27125 ac_status=$? 23854 27126 - echo "$as_me:16353: \$? = $ac_status" >&5 23855 + echo "$as_me:17 364: \$? = $ac_status" >&527127 + echo "$as_me:17509: \$? = $ac_status" >&5 23856 27128 (exit $ac_status); } && 23857 27129 { ac_try='test -s conftest$ac_exeext' 23858 27130 - { (eval echo "$as_me:16356: \"$ac_try\"") >&5 23859 + { (eval echo "$as_me:17 367: \"$ac_try\"") >&527131 + { (eval echo "$as_me:17512: \"$ac_try\"") >&5 23860 27132 (eval $ac_try) 2>&5 23861 27133 ac_status=$? 23862 27134 - echo "$as_me:16359: \$? = $ac_status" >&5 23863 + echo "$as_me:17 370: \$? = $ac_status" >&527135 + echo "$as_me:17515: \$? = $ac_status" >&5 23864 27136 (exit $ac_status); }; }; then 23865 27137 23866 27138 cf_cv_func_openpty=$cf_header 23867 @@ -16374,7 +17 385,7 @@27139 @@ -16374,7 +17530,7 @@ 23868 27140 LIBS="$cf_save_LIBS" 23869 27141 23870 27142 fi 23871 27143 -echo "$as_me:16377: result: $cf_cv_func_openpty" >&5 23872 +echo "$as_me:17 388: result: $cf_cv_func_openpty" >&527144 +echo "$as_me:17533: result: $cf_cv_func_openpty" >&5 23873 27145 echo "${ECHO_T}$cf_cv_func_openpty" >&6 23874 27146 23875 27147 if test "$cf_cv_func_openpty" != no ; then 23876 @@ -16426,7 +17 437,7 @@27148 @@ -16426,7 +17582,7 @@ 23877 27149 cf_save_CPPFLAGS=$CPPFLAGS 23878 27150 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 23879 27151 cat >conftest.$ac_ext <<_ACEOF 23880 27152 -#line 16429 "configure" 23881 +#line 17 440"configure"27153 +#line 17585 "configure" 23882 27154 #include "confdefs.h" 23883 27155 #include <stdio.h> 23884 27156 int 23885 @@ -16438,16 +17 449,16 @@27157 @@ -16438,16 +17594,16 @@ 23886 27158 } 23887 27159 _ACEOF 23888 27160 rm -f conftest.$ac_objext 23889 27161 -if { (eval echo "$as_me:16441: \"$ac_compile\"") >&5 23890 +if { (eval echo "$as_me:17 452: \"$ac_compile\"") >&527162 +if { (eval echo "$as_me:17597: \"$ac_compile\"") >&5 23891 27163 (eval $ac_compile) 2>&5 23892 27164 ac_status=$? 23893 27165 - echo "$as_me:16444: \$? = $ac_status" >&5 23894 + echo "$as_me:17 455: \$? = $ac_status" >&527166 + echo "$as_me:17600: \$? = $ac_status" >&5 23895 27167 (exit $ac_status); } && 23896 27168 { ac_try='test -s conftest.$ac_objext' 23897 27169 - { (eval echo "$as_me:16447: \"$ac_try\"") >&5 23898 + { (eval echo "$as_me:17 458: \"$ac_try\"") >&527170 + { (eval echo "$as_me:17603: \"$ac_try\"") >&5 23899 27171 (eval $ac_try) 2>&5 23900 27172 ac_status=$? 23901 27173 - echo "$as_me:16450: \$? = $ac_status" >&5 23902 + echo "$as_me:17 461: \$? = $ac_status" >&527174 + echo "$as_me:17606: \$? = $ac_status" >&5 23903 27175 (exit $ac_status); }; }; then 23904 27176 : 23905 27177 else 23906 @@ -16464,7 +17 475,7 @@27178 @@ -16464,7 +17620,7 @@ 23907 27179 if test "$cf_have_incdir" = no ; then 23908 27180 test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 23909 27181 23910 27182 -echo "${as_me:-configure}:16467: testing adding $cf_add_incdir to include-path ..." 1>&5 23911 +echo "${as_me:-configure}:17 478: testing adding $cf_add_incdir to include-path ..." 1>&527183 +echo "${as_me:-configure}:17623: testing adding $cf_add_incdir to include-path ..." 1>&5 23912 27184 23913 27185 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" 23914 27186 23915 @@ -16498,7 +17 509,7 @@27187 @@ -16498,7 +17654,7 @@ 23916 27188 if test "$cf_have_libdir" = no ; then 23917 27189 test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 23918 27190 23919 27191 -echo "${as_me:-configure}:16501: testing adding $cf_add_libdir to library-path ..." 1>&5 23920 +echo "${as_me:-configure}:17 512: testing adding $cf_add_libdir to library-path ..." 1>&527192 +echo "${as_me:-configure}:17657: testing adding $cf_add_libdir to library-path ..." 1>&5 23921 27193 23922 27194 LDFLAGS="-L$cf_add_libdir $LDFLAGS" 23923 27195 fi 23924 @@ -16509,23 +17 520,23 @@27196 @@ -16509,23 +17665,23 @@ 23925 27197 fi 23926 27198 esac 23927 27199 23928 27200 -echo "$as_me:16512: checking for db.h" >&5 23929 +echo "$as_me:17 523: checking for db.h" >&527201 +echo "$as_me:17668: checking for db.h" >&5 23930 27202 echo $ECHO_N "checking for db.h... $ECHO_C" >&6 23931 27203 if test "${ac_cv_header_db_h+set}" = set; then … … 23934 27206 cat >conftest.$ac_ext <<_ACEOF 23935 27207 -#line 16518 "configure" 23936 +#line 17 529"configure"27208 +#line 17674 "configure" 23937 27209 #include "confdefs.h" 23938 27210 #include <db.h> 23939 27211 _ACEOF 23940 27212 -if { (eval echo "$as_me:16522: \"$ac_cpp conftest.$ac_ext\"") >&5 23941 +if { (eval echo "$as_me:17 533: \"$ac_cpp conftest.$ac_ext\"") >&527213 +if { (eval echo "$as_me:17678: \"$ac_cpp conftest.$ac_ext\"") >&5 23942 27214 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 23943 27215 ac_status=$? … … 23946 27218 cat conftest.err >&5 23947 27219 - echo "$as_me:16528: \$? = $ac_status" >&5 23948 + echo "$as_me:17 539: \$? = $ac_status" >&527220 + echo "$as_me:17684: \$? = $ac_status" >&5 23949 27221 (exit $ac_status); } >/dev/null; then 23950 27222 if test -s conftest.err; then 23951 27223 ac_cpp_err=$ac_c_preproc_warn_flag 23952 @@ -16544,11 +17 555,11 @@27224 @@ -16544,11 +17700,11 @@ 23953 27225 fi 23954 27226 rm -f conftest.err conftest.$ac_ext 23955 27227 fi 23956 27228 -echo "$as_me:16547: result: $ac_cv_header_db_h" >&5 23957 +echo "$as_me:17 558: result: $ac_cv_header_db_h" >&527229 +echo "$as_me:17703: result: $ac_cv_header_db_h" >&5 23958 27230 echo "${ECHO_T}$ac_cv_header_db_h" >&6 23959 27231 if test $ac_cv_header_db_h = yes; then 23960 27232 23961 27233 -echo "$as_me:16551: checking for version of db" >&5 23962 +echo "$as_me:17 562: checking for version of db" >&527234 +echo "$as_me:17707: checking for version of db" >&5 23963 27235 echo $ECHO_N "checking for version of db... $ECHO_C" >&6 23964 27236 if test "${cf_cv_hashed_db_version+set}" = set; then 23965 27237 echo $ECHO_N "(cached) $ECHO_C" >&6 23966 @@ -16559,10 +17 570,10 @@27238 @@ -16559,10 +17715,10 @@ 23967 27239 for cf_db_version in 1 2 3 4 5 23968 27240 do 23969 27241 23970 27242 -echo "${as_me:-configure}:16562: testing checking for db version $cf_db_version ..." 1>&5 23971 +echo "${as_me:-configure}:17 573: testing checking for db version $cf_db_version ..." 1>&527243 +echo "${as_me:-configure}:17718: testing checking for db version $cf_db_version ..." 1>&5 23972 27244 23973 27245 cat >conftest.$ac_ext <<_ACEOF 23974 27246 -#line 16565 "configure" 23975 +#line 17 576"configure"27247 +#line 17721 "configure" 23976 27248 #include "confdefs.h" 23977 27249 23978 27250 $ac_includes_default 23979 @@ -16592,16 +17 603,16 @@27251 @@ -16592,16 +17748,16 @@ 23980 27252 } 23981 27253 _ACEOF 23982 27254 rm -f conftest.$ac_objext 23983 27255 -if { (eval echo "$as_me:16595: \"$ac_compile\"") >&5 23984 +if { (eval echo "$as_me:17 606: \"$ac_compile\"") >&527256 +if { (eval echo "$as_me:17751: \"$ac_compile\"") >&5 23985 27257 (eval $ac_compile) 2>&5 23986 27258 ac_status=$? 23987 27259 - echo "$as_me:16598: \$? = $ac_status" >&5 23988 + echo "$as_me:17 609: \$? = $ac_status" >&527260 + echo "$as_me:17754: \$? = $ac_status" >&5 23989 27261 (exit $ac_status); } && 23990 27262 { ac_try='test -s conftest.$ac_objext' 23991 27263 - { (eval echo "$as_me:16601: \"$ac_try\"") >&5 23992 + { (eval echo "$as_me:17 612: \"$ac_try\"") >&527264 + { (eval echo "$as_me:17757: \"$ac_try\"") >&5 23993 27265 (eval $ac_try) 2>&5 23994 27266 ac_status=$? 23995 27267 - echo "$as_me:16604: \$? = $ac_status" >&5 23996 + echo "$as_me:17 615: \$? = $ac_status" >&527268 + echo "$as_me:17760: \$? = $ac_status" >&5 23997 27269 (exit $ac_status); }; }; then 23998 27270 23999 27271 cf_cv_hashed_db_version=$cf_db_version 24000 @@ -16615,16 +17 626,16 @@27272 @@ -16615,16 +17771,16 @@ 24001 27273 done 24002 27274 24003 27275 fi 24004 27276 -echo "$as_me:16618: result: $cf_cv_hashed_db_version" >&5 24005 +echo "$as_me:17 629: result: $cf_cv_hashed_db_version" >&527277 +echo "$as_me:17774: result: $cf_cv_hashed_db_version" >&5 24006 27278 echo "${ECHO_T}$cf_cv_hashed_db_version" >&6 24007 27279 24008 27280 if test "$cf_cv_hashed_db_version" = unknown ; then 24009 27281 - { { echo "$as_me:16622: error: Cannot determine version of db" >&5 24010 + { { echo "$as_me:17 633: error: Cannot determine version of db" >&527282 + { { echo "$as_me:17778: error: Cannot determine version of db" >&5 24011 27283 echo "$as_me: error: Cannot determine version of db" >&2;} 24012 27284 { (exit 1); exit 1; }; } … … 24014 27286 24015 27287 -echo "$as_me:16627: checking for db libraries" >&5 24016 +echo "$as_me:17 638: checking for db libraries" >&527288 +echo "$as_me:17783: checking for db libraries" >&5 24017 27289 echo $ECHO_N "checking for db libraries... $ECHO_C" >&6 24018 27290 if test "${cf_cv_hashed_db_libs+set}" = set; then 24019 27291 echo $ECHO_N "(cached) $ECHO_C" >&6 24020 @@ -16638,10 +17 649,10 @@27292 @@ -16638,10 +17794,10 @@ 24021 27293 LIBS="-l$cf_db_libs $LIBS" 24022 27294 fi 24023 27295 24024 27296 -echo "${as_me:-configure}:16641: testing checking for library "$cf_db_libs" ..." 1>&5 24025 +echo "${as_me:-configure}:17 652: testing checking for library "$cf_db_libs" ..." 1>&527297 +echo "${as_me:-configure}:17797: testing checking for library "$cf_db_libs" ..." 1>&5 24026 27298 24027 27299 cat >conftest.$ac_ext <<_ACEOF 24028 27300 -#line 16644 "configure" 24029 +#line 17 655"configure"27301 +#line 17800 "configure" 24030 27302 #include "confdefs.h" 24031 27303 24032 27304 $ac_includes_default 24033 @@ -16696,16 +17 707,16 @@27305 @@ -16696,16 +17852,16 @@ 24034 27306 } 24035 27307 _ACEOF 24036 27308 rm -f conftest.$ac_objext conftest$ac_exeext 24037 27309 -if { (eval echo "$as_me:16699: \"$ac_link\"") >&5 24038 +if { (eval echo "$as_me:17 710: \"$ac_link\"") >&527310 +if { (eval echo "$as_me:17855: \"$ac_link\"") >&5 24039 27311 (eval $ac_link) 2>&5 24040 27312 ac_status=$? 24041 27313 - echo "$as_me:16702: \$? = $ac_status" >&5 24042 + echo "$as_me:17 713: \$? = $ac_status" >&527314 + echo "$as_me:17858: \$? = $ac_status" >&5 24043 27315 (exit $ac_status); } && 24044 27316 { ac_try='test -s conftest$ac_exeext' 24045 27317 - { (eval echo "$as_me:16705: \"$ac_try\"") >&5 24046 + { (eval echo "$as_me:17 716: \"$ac_try\"") >&527318 + { (eval echo "$as_me:17861: \"$ac_try\"") >&5 24047 27319 (eval $ac_try) 2>&5 24048 27320 ac_status=$? 24049 27321 - echo "$as_me:16708: \$? = $ac_status" >&5 24050 + echo "$as_me:17 719: \$? = $ac_status" >&527322 + echo "$as_me:17864: \$? = $ac_status" >&5 24051 27323 (exit $ac_status); }; }; then 24052 27324 24053 27325 if test -n "$cf_db_libs" ; then 24054 @@ -16725,11 +17 736,11 @@27326 @@ -16725,11 +17881,11 @@ 24055 27327 done 24056 27328 24057 27329 fi 24058 27330 -echo "$as_me:16728: result: $cf_cv_hashed_db_libs" >&5 24059 +echo "$as_me:17 739: result: $cf_cv_hashed_db_libs" >&527331 +echo "$as_me:17884: result: $cf_cv_hashed_db_libs" >&5 24060 27332 echo "${ECHO_T}$cf_cv_hashed_db_libs" >&6 24061 27333 24062 27334 if test "$cf_cv_hashed_db_libs" = unknown ; then 24063 27335 - { { echo "$as_me:16732: error: Cannot determine library for db" >&5 24064 + { { echo "$as_me:17 743: error: Cannot determine library for db" >&527336 + { { echo "$as_me:17888: error: Cannot determine library for db" >&5 24065 27337 echo "$as_me: error: Cannot determine library for db" >&2;} 24066 27338 { (exit 1); exit 1; }; } 24067 27339 elif test "$cf_cv_hashed_db_libs" != default ; then 24068 @@ -16739,7 +17 750,7 @@27340 @@ -16739,7 +17895,7 @@ 24069 27341 24070 27342 else 24071 27343 24072 27344 - { { echo "$as_me:16742: error: Cannot find db.h" >&5 24073 + { { echo "$as_me:17 753: error: Cannot find db.h" >&527345 + { { echo "$as_me:17898: error: Cannot find db.h" >&5 24074 27346 echo "$as_me: error: Cannot find db.h" >&2;} 24075 27347 { (exit 1); exit 1; }; } 24076 27348 24077 @@ -16754,7 +17 765,7 @@27349 @@ -16754,7 +17910,7 @@ 24078 27350 24079 27351 # Just in case, check if the C compiler has a bool type. 24080 27352 24081 27353 -echo "$as_me:16757: checking if we should include stdbool.h" >&5 24082 +echo "$as_me:17 768: checking if we should include stdbool.h" >&527354 +echo "$as_me:17913: checking if we should include stdbool.h" >&5 24083 27355 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6 24084 27356 24085 27357 if test "${cf_cv_header_stdbool_h+set}" = set; then 24086 @@ -16762,7 +17 773,7 @@27358 @@ -16762,7 +17918,7 @@ 24087 27359 else 24088 27360 24089 27361 cat >conftest.$ac_ext <<_ACEOF 24090 27362 -#line 16765 "configure" 24091 +#line 17 776"configure"27363 +#line 17921 "configure" 24092 27364 #include "confdefs.h" 24093 27365 24094 27366 int 24095 @@ -16774,23 +17 785,23 @@27367 @@ -16774,23 +17930,23 @@ 24096 27368 } 24097 27369 _ACEOF 24098 27370 rm -f conftest.$ac_objext 24099 27371 -if { (eval echo "$as_me:16777: \"$ac_compile\"") >&5 24100 +if { (eval echo "$as_me:17 788: \"$ac_compile\"") >&527372 +if { (eval echo "$as_me:17933: \"$ac_compile\"") >&5 24101 27373 (eval $ac_compile) 2>&5 24102 27374 ac_status=$? 24103 27375 - echo "$as_me:16780: \$? = $ac_status" >&5 24104 + echo "$as_me:17 791: \$? = $ac_status" >&527376 + echo "$as_me:17936: \$? = $ac_status" >&5 24105 27377 (exit $ac_status); } && 24106 27378 { ac_try='test -s conftest.$ac_objext' 24107 27379 - { (eval echo "$as_me:16783: \"$ac_try\"") >&5 24108 + { (eval echo "$as_me:17 794: \"$ac_try\"") >&527380 + { (eval echo "$as_me:17939: \"$ac_try\"") >&5 24109 27381 (eval $ac_try) 2>&5 24110 27382 ac_status=$? 24111 27383 - echo "$as_me:16786: \$? = $ac_status" >&5 24112 + echo "$as_me:17 797: \$? = $ac_status" >&527384 + echo "$as_me:17942: \$? = $ac_status" >&5 24113 27385 (exit $ac_status); }; }; then 24114 27386 cf_cv_header_stdbool_h=0 … … 24118 27390 cat >conftest.$ac_ext <<_ACEOF 24119 27391 -#line 16793 "configure" 24120 +#line 17 804"configure"27392 +#line 17949 "configure" 24121 27393 #include "confdefs.h" 24122 27394 24123 27395 #ifndef __BEOS__ 24124 @@ -16806,16 +17 817,16 @@27396 @@ -16806,16 +17962,16 @@ 24125 27397 } 24126 27398 _ACEOF 24127 27399 rm -f conftest.$ac_objext 24128 27400 -if { (eval echo "$as_me:16809: \"$ac_compile\"") >&5 24129 +if { (eval echo "$as_me:17 820: \"$ac_compile\"") >&527401 +if { (eval echo "$as_me:17965: \"$ac_compile\"") >&5 24130 27402 (eval $ac_compile) 2>&5 24131 27403 ac_status=$? 24132 27404 - echo "$as_me:16812: \$? = $ac_status" >&5 24133 + echo "$as_me:17 823: \$? = $ac_status" >&527405 + echo "$as_me:17968: \$? = $ac_status" >&5 24134 27406 (exit $ac_status); } && 24135 27407 { ac_try='test -s conftest.$ac_objext' 24136 27408 - { (eval echo "$as_me:16815: \"$ac_try\"") >&5 24137 + { (eval echo "$as_me:17 826: \"$ac_try\"") >&527409 + { (eval echo "$as_me:17971: \"$ac_try\"") >&5 24138 27410 (eval $ac_try) 2>&5 24139 27411 ac_status=$? 24140 27412 - echo "$as_me:16818: \$? = $ac_status" >&5 24141 + echo "$as_me:17 829: \$? = $ac_status" >&527413 + echo "$as_me:17974: \$? = $ac_status" >&5 24142 27414 (exit $ac_status); }; }; then 24143 27415 cf_cv_header_stdbool_h=1 24144 27416 else 24145 @@ -16829,13 +17 840,13 @@27417 @@ -16829,13 +17985,13 @@ 24146 27418 fi 24147 27419 24148 27420 if test "$cf_cv_header_stdbool_h" = 1 24149 27421 -then echo "$as_me:16832: result: yes" >&5 24150 +then echo "$as_me:17 843: result: yes" >&527422 +then echo "$as_me:17988: result: yes" >&5 24151 27423 echo "${ECHO_T}yes" >&6 24152 27424 -else echo "$as_me:16834: result: no" >&5 24153 +else echo "$as_me:17 845: result: no" >&527425 +else echo "$as_me:17990: result: no" >&5 24154 27426 echo "${ECHO_T}no" >&6 24155 27427 fi 24156 27428 24157 27429 -echo "$as_me:16838: checking for builtin bool type" >&5 24158 +echo "$as_me:17 849: checking for builtin bool type" >&527430 +echo "$as_me:17994: checking for builtin bool type" >&5 24159 27431 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6 24160 27432 24161 27433 if test "${cf_cv_cc_bool_type+set}" = set; then 24162 @@ -16843,7 +17 854,7 @@27434 @@ -16843,7 +17999,7 @@ 24163 27435 else 24164 27436 24165 27437 cat >conftest.$ac_ext <<_ACEOF 24166 27438 -#line 16846 "configure" 24167 +#line 1 7857"configure"27439 +#line 18002 "configure" 24168 27440 #include "confdefs.h" 24169 27441 24170 27442 #include <stdio.h> 24171 @@ -16858,16 +1 7869,16 @@27443 @@ -16858,16 +18014,16 @@ 24172 27444 } 24173 27445 _ACEOF 24174 27446 rm -f conftest.$ac_objext 24175 27447 -if { (eval echo "$as_me:16861: \"$ac_compile\"") >&5 24176 +if { (eval echo "$as_me:1 7872: \"$ac_compile\"") >&527448 +if { (eval echo "$as_me:18017: \"$ac_compile\"") >&5 24177 27449 (eval $ac_compile) 2>&5 24178 27450 ac_status=$? 24179 27451 - echo "$as_me:16864: \$? = $ac_status" >&5 24180 + echo "$as_me:1 7875: \$? = $ac_status" >&527452 + echo "$as_me:18020: \$? = $ac_status" >&5 24181 27453 (exit $ac_status); } && 24182 27454 { ac_try='test -s conftest.$ac_objext' 24183 27455 - { (eval echo "$as_me:16867: \"$ac_try\"") >&5 24184 + { (eval echo "$as_me:1 7878: \"$ac_try\"") >&527456 + { (eval echo "$as_me:18023: \"$ac_try\"") >&5 24185 27457 (eval $ac_try) 2>&5 24186 27458 ac_status=$? 24187 27459 - echo "$as_me:16870: \$? = $ac_status" >&5 24188 + echo "$as_me:1 7881: \$? = $ac_status" >&527460 + echo "$as_me:18026: \$? = $ac_status" >&5 24189 27461 (exit $ac_status); }; }; then 24190 27462 cf_cv_cc_bool_type=1 24191 27463 else 24192 @@ -16880,9 +1 7891,9 @@27464 @@ -16880,9 +18036,9 @@ 24193 27465 fi 24194 27466 24195 27467 if test "$cf_cv_cc_bool_type" = 1 24196 27468 -then echo "$as_me:16883: result: yes" >&5 24197 +then echo "$as_me:1 7894: result: yes" >&527469 +then echo "$as_me:18039: result: yes" >&5 24198 27470 echo "${ECHO_T}yes" >&6 24199 27471 -else echo "$as_me:16885: result: no" >&5 24200 +else echo "$as_me:1 7896: result: no" >&527472 +else echo "$as_me:18041: result: no" >&5 24201 27473 echo "${ECHO_T}no" >&6 24202 27474 fi 24203 27475 24204 @@ -16904,7 +1 7915,7 @@27476 @@ -16904,7 +18060,7 @@ 24205 27477 cf_stdcpp_libname=stdc++ 24206 27478 ;; 24207 27479 esac 24208 27480 -echo "$as_me:16907: checking for library $cf_stdcpp_libname" >&5 24209 +echo "$as_me:1 7918: checking for library $cf_stdcpp_libname" >&527481 +echo "$as_me:18063: checking for library $cf_stdcpp_libname" >&5 24210 27482 echo $ECHO_N "checking for library $cf_stdcpp_libname... $ECHO_C" >&6 24211 27483 if test "${cf_cv_libstdcpp+set}" = set; then 24212 27484 echo $ECHO_N "(cached) $ECHO_C" >&6 24213 @@ -16913,7 +1 7924,7 @@27485 @@ -16913,7 +18069,7 @@ 24214 27486 cf_save="$LIBS" 24215 27487 LIBS="-l$cf_stdcpp_libname $LIBS" 24216 27488 cat >conftest.$ac_ext <<_ACEOF 24217 27489 -#line 16916 "configure" 24218 +#line 1 7927"configure"27490 +#line 18072 "configure" 24219 27491 #include "confdefs.h" 24220 27492 24221 27493 #include <strstream.h> 24222 @@ -16929,16 +1 7940,16 @@27494 @@ -16929,16 +18085,16 @@ 24223 27495 } 24224 27496 _ACEOF 24225 27497 rm -f conftest.$ac_objext conftest$ac_exeext 24226 27498 -if { (eval echo "$as_me:16932: \"$ac_link\"") >&5 24227 +if { (eval echo "$as_me:1 7943: \"$ac_link\"") >&527499 +if { (eval echo "$as_me:18088: \"$ac_link\"") >&5 24228 27500 (eval $ac_link) 2>&5 24229 27501 ac_status=$? 24230 27502 - echo "$as_me:16935: \$? = $ac_status" >&5 24231 + echo "$as_me:1 7946: \$? = $ac_status" >&527503 + echo "$as_me:18091: \$? = $ac_status" >&5 24232 27504 (exit $ac_status); } && 24233 27505 { ac_try='test -s conftest$ac_exeext' 24234 27506 - { (eval echo "$as_me:16938: \"$ac_try\"") >&5 24235 + { (eval echo "$as_me:1 7949: \"$ac_try\"") >&527507 + { (eval echo "$as_me:18094: \"$ac_try\"") >&5 24236 27508 (eval $ac_try) 2>&5 24237 27509 ac_status=$? 24238 27510 - echo "$as_me:16941: \$? = $ac_status" >&5 24239 + echo "$as_me:1 7952: \$? = $ac_status" >&527511 + echo "$as_me:18097: \$? = $ac_status" >&5 24240 27512 (exit $ac_status); }; }; then 24241 27513 cf_cv_libstdcpp=yes 24242 27514 else 24243 @@ -16950,12 +1 7961,12 @@27515 @@ -16950,12 +18106,12 @@ 24244 27516 LIBS="$cf_save" 24245 27517 24246 27518 fi 24247 27519 -echo "$as_me:16953: result: $cf_cv_libstdcpp" >&5 24248 +echo "$as_me:1 7964: result: $cf_cv_libstdcpp" >&527520 +echo "$as_me:18109: result: $cf_cv_libstdcpp" >&5 24249 27521 echo "${ECHO_T}$cf_cv_libstdcpp" >&6 24250 27522 test "$cf_cv_libstdcpp" = yes && CXXLIBS="-l$cf_stdcpp_libname $CXXLIBS" … … 24252 27524 24253 27525 - echo "$as_me:16958: checking whether $CXX understands -c and -o together" >&5 24254 + echo "$as_me:1 7969: checking whether $CXX understands -c and -o together" >&527526 + echo "$as_me:18114: checking whether $CXX understands -c and -o together" >&5 24255 27527 echo $ECHO_N "checking whether $CXX understands -c and -o together... $ECHO_C" >&6 24256 27528 if test "${cf_cv_prog_CXX_c_o+set}" = set; then 24257 27529 echo $ECHO_N "(cached) $ECHO_C" >&6 24258 @@ -16971,15 +1 7982,15 @@27530 @@ -16971,15 +18127,15 @@ 24259 27531 # We do the test twice because some compilers refuse to overwrite an 24260 27532 # existing .o file with -o, though they will create one. 24261 27533 ac_try='$CXX -c conftest.$ac_ext -o conftest2.$ac_objext >&5' 24262 27534 -if { (eval echo "$as_me:16974: \"$ac_try\"") >&5 24263 +if { (eval echo "$as_me:1 7985: \"$ac_try\"") >&527535 +if { (eval echo "$as_me:18130: \"$ac_try\"") >&5 24264 27536 (eval $ac_try) 2>&5 24265 27537 ac_status=$? 24266 27538 - echo "$as_me:16977: \$? = $ac_status" >&5 24267 + echo "$as_me:1 7988: \$? = $ac_status" >&527539 + echo "$as_me:18133: \$? = $ac_status" >&5 24268 27540 (exit $ac_status); } && 24269 27541 - test -f conftest2.$ac_objext && { (eval echo "$as_me:16979: \"$ac_try\"") >&5 24270 + test -f conftest2.$ac_objext && { (eval echo "$as_me:1 7990: \"$ac_try\"") >&527542 + test -f conftest2.$ac_objext && { (eval echo "$as_me:18135: \"$ac_try\"") >&5 24271 27543 (eval $ac_try) 2>&5 24272 27544 ac_status=$? 24273 27545 - echo "$as_me:16982: \$? = $ac_status" >&5 24274 + echo "$as_me:1 7993: \$? = $ac_status" >&527546 + echo "$as_me:18138: \$? = $ac_status" >&5 24275 27547 (exit $ac_status); }; 24276 27548 then 24277 27549 eval cf_cv_prog_CXX_c_o=yes 24278 @@ -16990,10 +18 001,10 @@27550 @@ -16990,10 +18146,10 @@ 24279 27551 24280 27552 fi 24281 27553 if test $cf_cv_prog_CXX_c_o = yes; then 24282 27554 - echo "$as_me:16993: result: yes" >&5 24283 + echo "$as_me:18 004: result: yes" >&527555 + echo "$as_me:18149: result: yes" >&5 24284 27556 echo "${ECHO_T}yes" >&6 24285 27557 else 24286 27558 - echo "$as_me:16996: result: no" >&5 24287 + echo "$as_me:18 007: result: no" >&527559 + echo "$as_me:18152: result: no" >&5 24288 27560 echo "${ECHO_T}no" >&6 24289 27561 fi 24290 27562 24291 @@ -17013,12 +18 024,12 @@27563 @@ -17013,12 +18169,12 @@ 24292 27564 ;; 24293 27565 esac 24294 27566 if test "$GXX" = yes; then 24295 27567 - echo "$as_me:17016: checking for lib$cf_gpp_libname" >&5 24296 + echo "$as_me:18 027: checking for lib$cf_gpp_libname" >&527568 + echo "$as_me:18172: checking for lib$cf_gpp_libname" >&5 24297 27569 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6 24298 27570 cf_save="$LIBS" … … 24300 27572 cat >conftest.$ac_ext <<_ACEOF 24301 27573 -#line 17021 "configure" 24302 +#line 18 032"configure"27574 +#line 18177 "configure" 24303 27575 #include "confdefs.h" 24304 27576 24305 27577 #include <$cf_gpp_libname/builtin.h> 24306 @@ -17032,16 +18 043,16 @@27578 @@ -17032,16 +18188,16 @@ 24307 27579 } 24308 27580 _ACEOF 24309 27581 rm -f conftest.$ac_objext conftest$ac_exeext 24310 27582 -if { (eval echo "$as_me:17035: \"$ac_link\"") >&5 24311 +if { (eval echo "$as_me:18 046: \"$ac_link\"") >&527583 +if { (eval echo "$as_me:18191: \"$ac_link\"") >&5 24312 27584 (eval $ac_link) 2>&5 24313 27585 ac_status=$? 24314 27586 - echo "$as_me:17038: \$? = $ac_status" >&5 24315 + echo "$as_me:18 049: \$? = $ac_status" >&527587 + echo "$as_me:18194: \$? = $ac_status" >&5 24316 27588 (exit $ac_status); } && 24317 27589 { ac_try='test -s conftest$ac_exeext' 24318 27590 - { (eval echo "$as_me:17041: \"$ac_try\"") >&5 24319 + { (eval echo "$as_me:18 052: \"$ac_try\"") >&527591 + { (eval echo "$as_me:18197: \"$ac_try\"") >&5 24320 27592 (eval $ac_try) 2>&5 24321 27593 ac_status=$? 24322 27594 - echo "$as_me:17044: \$? = $ac_status" >&5 24323 + echo "$as_me:18 055: \$? = $ac_status" >&527595 + echo "$as_me:18200: \$? = $ac_status" >&5 24324 27596 (exit $ac_status); }; }; then 24325 27597 cf_cxx_library=yes 24326 27598 CXXLIBS="-l$cf_gpp_libname $CXXLIBS" 24327 @@ -17060,7 +18 071,7 @@27599 @@ -17060,7 +18216,7 @@ 24328 27600 echo "$as_me: failed program was:" >&5 24329 27601 cat conftest.$ac_ext >&5 24330 27602 cat >conftest.$ac_ext <<_ACEOF 24331 27603 -#line 17063 "configure" 24332 +#line 18 074"configure"27604 +#line 18219 "configure" 24333 27605 #include "confdefs.h" 24334 27606 24335 27607 #include <builtin.h> 24336 @@ -17074,16 +18 085,16 @@27608 @@ -17074,16 +18230,16 @@ 24337 27609 } 24338 27610 _ACEOF 24339 27611 rm -f conftest.$ac_objext conftest$ac_exeext 24340 27612 -if { (eval echo "$as_me:17077: \"$ac_link\"") >&5 24341 +if { (eval echo "$as_me:18 088: \"$ac_link\"") >&527613 +if { (eval echo "$as_me:18233: \"$ac_link\"") >&5 24342 27614 (eval $ac_link) 2>&5 24343 27615 ac_status=$? 24344 27616 - echo "$as_me:17080: \$? = $ac_status" >&5 24345 + echo "$as_me:18 091: \$? = $ac_status" >&527617 + echo "$as_me:18236: \$? = $ac_status" >&5 24346 27618 (exit $ac_status); } && 24347 27619 { ac_try='test -s conftest$ac_exeext' 24348 27620 - { (eval echo "$as_me:17083: \"$ac_try\"") >&5 24349 + { (eval echo "$as_me:18 094: \"$ac_try\"") >&527621 + { (eval echo "$as_me:18239: \"$ac_try\"") >&5 24350 27622 (eval $ac_try) 2>&5 24351 27623 ac_status=$? 24352 27624 - echo "$as_me:17086: \$? = $ac_status" >&5 24353 + echo "$as_me:18 097: \$? = $ac_status" >&527625 + echo "$as_me:18242: \$? = $ac_status" >&5 24354 27626 (exit $ac_status); }; }; then 24355 27627 cf_cxx_library=yes 24356 27628 CXXLIBS="-l$cf_gpp_libname $CXXLIBS" 24357 @@ -17100,7 +18 111,7 @@27629 @@ -17100,7 +18256,7 @@ 24358 27630 fi 24359 27631 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext 24360 27632 LIBS="$cf_save" 24361 27633 - echo "$as_me:17103: result: $cf_cxx_library" >&5 24362 + echo "$as_me:18 114: result: $cf_cxx_library" >&527634 + echo "$as_me:18259: result: $cf_cxx_library" >&5 24363 27635 echo "${ECHO_T}$cf_cxx_library" >&6 24364 27636 fi 24365 27637 24366 @@ -17116,7 +18 127,7 @@27638 @@ -17116,7 +18272,7 @@ 24367 27639 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 24368 27640 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 24369 27641 ac_main_return=return 24370 27642 -echo "$as_me:17119: checking how to run the C++ preprocessor" >&5 24371 +echo "$as_me:18 130: checking how to run the C++ preprocessor" >&527643 +echo "$as_me:18275: checking how to run the C++ preprocessor" >&5 24372 27644 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6 24373 27645 if test -z "$CXXCPP"; then 24374 27646 if test "${ac_cv_prog_CXXCPP+set}" = set; then 24375 @@ -17133,18 +18 144,18 @@27647 @@ -17133,18 +18289,18 @@ 24376 27648 # On the NeXT, cc -E runs the code through the compiler's parser, 24377 27649 # not just through cpp. "Syntax error" is here to catch this case. 24378 27650 cat >conftest.$ac_ext <<_ACEOF 24379 27651 -#line 17136 "configure" 24380 +#line 18 147"configure"27652 +#line 18292 "configure" 24381 27653 #include "confdefs.h" 24382 27654 #include <assert.h> … … 24384 27656 _ACEOF 24385 27657 -if { (eval echo "$as_me:17141: \"$ac_cpp conftest.$ac_ext\"") >&5 24386 +if { (eval echo "$as_me:18 152: \"$ac_cpp conftest.$ac_ext\"") >&527658 +if { (eval echo "$as_me:18297: \"$ac_cpp conftest.$ac_ext\"") >&5 24387 27659 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24388 27660 ac_status=$? … … 24391 27663 cat conftest.err >&5 24392 27664 - echo "$as_me:17147: \$? = $ac_status" >&5 24393 + echo "$as_me:18 158: \$? = $ac_status" >&527665 + echo "$as_me:18303: \$? = $ac_status" >&5 24394 27666 (exit $ac_status); } >/dev/null; then 24395 27667 if test -s conftest.err; then 24396 27668 ac_cpp_err=$ac_cxx_preproc_warn_flag 24397 @@ -17167,17 +18 178,17 @@27669 @@ -17167,17 +18323,17 @@ 24398 27670 # OK, works on sane cases. Now check whether non-existent headers 24399 27671 # can be detected and how. 24400 27672 cat >conftest.$ac_ext <<_ACEOF 24401 27673 -#line 17170 "configure" 24402 +#line 18 181"configure"27674 +#line 18326 "configure" 24403 27675 #include "confdefs.h" 24404 27676 #include <ac_nonexistent.h> 24405 27677 _ACEOF 24406 27678 -if { (eval echo "$as_me:17174: \"$ac_cpp conftest.$ac_ext\"") >&5 24407 +if { (eval echo "$as_me:18 185: \"$ac_cpp conftest.$ac_ext\"") >&527679 +if { (eval echo "$as_me:18330: \"$ac_cpp conftest.$ac_ext\"") >&5 24408 27680 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24409 27681 ac_status=$? … … 24412 27684 cat conftest.err >&5 24413 27685 - echo "$as_me:17180: \$? = $ac_status" >&5 24414 + echo "$as_me:18 191: \$? = $ac_status" >&527686 + echo "$as_me:18336: \$? = $ac_status" >&5 24415 27687 (exit $ac_status); } >/dev/null; then 24416 27688 if test -s conftest.err; then 24417 27689 ac_cpp_err=$ac_cxx_preproc_warn_flag 24418 @@ -17214,7 +18 225,7 @@27690 @@ -17214,7 +18370,7 @@ 24419 27691 else 24420 27692 ac_cv_prog_CXXCPP=$CXXCPP 24421 27693 fi 24422 27694 -echo "$as_me:17217: result: $CXXCPP" >&5 24423 +echo "$as_me:18 228: result: $CXXCPP" >&527695 +echo "$as_me:18373: result: $CXXCPP" >&5 24424 27696 echo "${ECHO_T}$CXXCPP" >&6 24425 27697 ac_preproc_ok=false 24426 27698 for ac_cxx_preproc_warn_flag in '' yes 24427 @@ -17224,18 +18 235,18 @@27699 @@ -17224,18 +18380,18 @@ 24428 27700 # On the NeXT, cc -E runs the code through the compiler's parser, 24429 27701 # not just through cpp. "Syntax error" is here to catch this case. 24430 27702 cat >conftest.$ac_ext <<_ACEOF 24431 27703 -#line 17227 "configure" 24432 +#line 18 238"configure"27704 +#line 18383 "configure" 24433 27705 #include "confdefs.h" 24434 27706 #include <assert.h> … … 24436 27708 _ACEOF 24437 27709 -if { (eval echo "$as_me:17232: \"$ac_cpp conftest.$ac_ext\"") >&5 24438 +if { (eval echo "$as_me:18 243: \"$ac_cpp conftest.$ac_ext\"") >&527710 +if { (eval echo "$as_me:18388: \"$ac_cpp conftest.$ac_ext\"") >&5 24439 27711 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24440 27712 ac_status=$? … … 24443 27715 cat conftest.err >&5 24444 27716 - echo "$as_me:17238: \$? = $ac_status" >&5 24445 + echo "$as_me:18 249: \$? = $ac_status" >&527717 + echo "$as_me:18394: \$? = $ac_status" >&5 24446 27718 (exit $ac_status); } >/dev/null; then 24447 27719 if test -s conftest.err; then 24448 27720 ac_cpp_err=$ac_cxx_preproc_warn_flag 24449 @@ -17258,17 +18 269,17 @@27721 @@ -17258,17 +18414,17 @@ 24450 27722 # OK, works on sane cases. Now check whether non-existent headers 24451 27723 # can be detected and how. 24452 27724 cat >conftest.$ac_ext <<_ACEOF 24453 27725 -#line 17261 "configure" 24454 +#line 18 272"configure"27726 +#line 18417 "configure" 24455 27727 #include "confdefs.h" 24456 27728 #include <ac_nonexistent.h> 24457 27729 _ACEOF 24458 27730 -if { (eval echo "$as_me:17265: \"$ac_cpp conftest.$ac_ext\"") >&5 24459 +if { (eval echo "$as_me:18 276: \"$ac_cpp conftest.$ac_ext\"") >&527731 +if { (eval echo "$as_me:18421: \"$ac_cpp conftest.$ac_ext\"") >&5 24460 27732 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24461 27733 ac_status=$? … … 24464 27736 cat conftest.err >&5 24465 27737 - echo "$as_me:17271: \$? = $ac_status" >&5 24466 + echo "$as_me:18 282: \$? = $ac_status" >&527738 + echo "$as_me:18427: \$? = $ac_status" >&5 24467 27739 (exit $ac_status); } >/dev/null; then 24468 27740 if test -s conftest.err; then 24469 27741 ac_cpp_err=$ac_cxx_preproc_warn_flag 24470 @@ -17296,7 +18 307,7 @@27742 @@ -17296,7 +18452,7 @@ 24471 27743 if $ac_preproc_ok; then 24472 27744 : 24473 27745 else 24474 27746 - { { echo "$as_me:17299: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 24475 + { { echo "$as_me:18 310: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&527747 + { { echo "$as_me:18455: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5 24476 27748 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;} 24477 27749 { (exit 1); exit 1; }; } 24478 27750 fi 24479 @@ -17308,26 +18 319,74 @@27751 @@ -17308,26 +18464,74 @@ 24480 27752 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 24481 27753 ac_main_return=return … … 24485 27757 +do 24486 27758 +as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 24487 +echo "$as_me:18 325: checking for $ac_header" >&527759 +echo "$as_me:18470: checking for $ac_header" >&5 24488 27760 +echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 24489 27761 +if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 24491 27763 +else 24492 27764 + cat >conftest.$ac_ext <<_ACEOF 24493 +#line 18 331"configure"27765 +#line 18476 "configure" 24494 27766 +#include "confdefs.h" 24495 27767 +#include <$ac_header> 24496 27768 +_ACEOF 24497 +if { (eval echo "$as_me:18 335: \"$ac_cpp conftest.$ac_ext\"") >&527769 +if { (eval echo "$as_me:18480: \"$ac_cpp conftest.$ac_ext\"") >&5 24498 27770 + (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24499 27771 + ac_status=$? … … 24501 27773 + rm -f conftest.er1 24502 27774 + cat conftest.err >&5 24503 + echo "$as_me:18 341: \$? = $ac_status" >&527775 + echo "$as_me:18486: \$? = $ac_status" >&5 24504 27776 + (exit $ac_status); } >/dev/null; then 24505 27777 + if test -s conftest.err; then … … 24520 27792 +rm -f conftest.err conftest.$ac_ext 24521 27793 +fi 24522 +echo "$as_me:18 360: result: `eval echo '${'$as_ac_Header'}'`" >&527794 +echo "$as_me:18505: result: `eval echo '${'$as_ac_Header'}'`" >&5 24523 27795 +echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 24524 27796 +if test `eval echo '${'$as_ac_Header'}'` = yes; then … … 24534 27806 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` 24535 27807 -echo "$as_me:17314: checking for $ac_header" >&5 24536 +echo "$as_me:18 373: checking for $ac_header" >&527808 +echo "$as_me:18518: checking for $ac_header" >&5 24537 27809 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 24538 27810 if eval "test \"\${$as_ac_Header+set}\" = set"; then … … 24541 27813 cat >conftest.$ac_ext <<_ACEOF 24542 27814 -#line 17320 "configure" 24543 +#line 18 379"configure"27815 +#line 18524 "configure" 24544 27816 #include "confdefs.h" 24545 27817 #include <$ac_header> 24546 27818 _ACEOF 24547 27819 -if { (eval echo "$as_me:17324: \"$ac_cpp conftest.$ac_ext\"") >&5 24548 +if { (eval echo "$as_me:18 383: \"$ac_cpp conftest.$ac_ext\"") >&527820 +if { (eval echo "$as_me:18528: \"$ac_cpp conftest.$ac_ext\"") >&5 24549 27821 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 24550 27822 ac_status=$? … … 24553 27825 cat conftest.err >&5 24554 27826 - echo "$as_me:17330: \$? = $ac_status" >&5 24555 + echo "$as_me:18 389: \$? = $ac_status" >&527827 + echo "$as_me:18534: \$? = $ac_status" >&5 24556 27828 (exit $ac_status); } >/dev/null; then 24557 27829 if test -s conftest.err; then 24558 27830 ac_cpp_err=$ac_cxx_preproc_warn_flag 24559 @@ -17346,7 +18 405,7 @@27831 @@ -17346,7 +18550,7 @@ 24560 27832 fi 24561 27833 rm -f conftest.err conftest.$ac_ext 24562 27834 fi 24563 27835 -echo "$as_me:17349: result: `eval echo '${'$as_ac_Header'}'`" >&5 24564 +echo "$as_me:18 408: result: `eval echo '${'$as_ac_Header'}'`" >&527836 +echo "$as_me:18553: result: `eval echo '${'$as_ac_Header'}'`" >&5 24565 27837 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 24566 27838 if test `eval echo '${'$as_ac_Header'}'` = yes; then 24567 27839 cat >>confdefs.h <<EOF 24568 @@ -17356,11 +18 415,11 @@27840 @@ -17356,11 +18560,11 @@ 24569 27841 fi 24570 27842 done … … 24573 27845 - echo "$as_me:17360: checking if iostream uses std-namespace" >&5 24574 27846 +if test x"$ac_cv_header_iostream" = xyes ; then 24575 + echo "$as_me:18 419: checking if iostream uses std-namespace" >&527847 + echo "$as_me:18564: checking if iostream uses std-namespace" >&5 24576 27848 echo $ECHO_N "checking if iostream uses std-namespace... $ECHO_C" >&6 24577 27849 - cat >conftest.$ac_ext <<_ACEOF 24578 27850 -#line 17363 "configure" 24579 27851 + cat >conftest.$ac_ext <<_ACEOF 24580 +#line 18 422"configure"27852 +#line 18567 "configure" 24581 27853 #include "confdefs.h" 24582 27854 24583 27855 #include <iostream> 24584 @@ -17377,16 +18 436,16 @@27856 @@ -17377,16 +18581,16 @@ 24585 27857 } 24586 27858 _ACEOF 24587 27859 rm -f conftest.$ac_objext 24588 27860 -if { (eval echo "$as_me:17380: \"$ac_compile\"") >&5 24589 +if { (eval echo "$as_me:18 439: \"$ac_compile\"") >&527861 +if { (eval echo "$as_me:18584: \"$ac_compile\"") >&5 24590 27862 (eval $ac_compile) 2>&5 24591 27863 ac_status=$? 24592 27864 - echo "$as_me:17383: \$? = $ac_status" >&5 24593 + echo "$as_me:18 442: \$? = $ac_status" >&527865 + echo "$as_me:18587: \$? = $ac_status" >&5 24594 27866 (exit $ac_status); } && 24595 27867 { ac_try='test -s conftest.$ac_objext' 24596 27868 - { (eval echo "$as_me:17386: \"$ac_try\"") >&5 24597 + { (eval echo "$as_me:18 445: \"$ac_try\"") >&527869 + { (eval echo "$as_me:18590: \"$ac_try\"") >&5 24598 27870 (eval $ac_try) 2>&5 24599 27871 ac_status=$? 24600 27872 - echo "$as_me:17389: \$? = $ac_status" >&5 24601 + echo "$as_me:18 448: \$? = $ac_status" >&527873 + echo "$as_me:18593: \$? = $ac_status" >&5 24602 27874 (exit $ac_status); }; }; then 24603 27875 cf_iostream_namespace=yes 24604 27876 else 24605 @@ -17395,17 +18 454,17 @@27877 @@ -17395,17 +18599,17 @@ 24606 27878 cf_iostream_namespace=no 24607 27879 fi 24608 27880 rm -f conftest.$ac_objext conftest.$ac_ext 24609 27881 - echo "$as_me:17398: result: $cf_iostream_namespace" >&5 24610 + echo "$as_me:18 457: result: $cf_iostream_namespace" >&527882 + echo "$as_me:18602: result: $cf_iostream_namespace" >&5 24611 27883 echo "${ECHO_T}$cf_iostream_namespace" >&6 24612 27884 - if test "$cf_iostream_namespace" = yes ; then … … 24623 27895 24624 27896 -echo "$as_me:17408: checking if we should include stdbool.h" >&5 24625 +echo "$as_me:18 467: checking if we should include stdbool.h" >&527897 +echo "$as_me:18612: checking if we should include stdbool.h" >&5 24626 27898 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6 24627 27899 24628 27900 if test "${cf_cv_header_stdbool_h+set}" = set; then 24629 @@ -17413,7 +18 472,7 @@27901 @@ -17413,7 +18617,7 @@ 24630 27902 else 24631 27903 24632 27904 cat >conftest.$ac_ext <<_ACEOF 24633 27905 -#line 17416 "configure" 24634 +#line 18 475"configure"27906 +#line 18620 "configure" 24635 27907 #include "confdefs.h" 24636 27908 24637 27909 int 24638 @@ -17425,23 +18 484,23 @@27910 @@ -17425,23 +18629,23 @@ 24639 27911 } 24640 27912 _ACEOF 24641 27913 rm -f conftest.$ac_objext 24642 27914 -if { (eval echo "$as_me:17428: \"$ac_compile\"") >&5 24643 +if { (eval echo "$as_me:18 487: \"$ac_compile\"") >&527915 +if { (eval echo "$as_me:18632: \"$ac_compile\"") >&5 24644 27916 (eval $ac_compile) 2>&5 24645 27917 ac_status=$? 24646 27918 - echo "$as_me:17431: \$? = $ac_status" >&5 24647 + echo "$as_me:18 490: \$? = $ac_status" >&527919 + echo "$as_me:18635: \$? = $ac_status" >&5 24648 27920 (exit $ac_status); } && 24649 27921 { ac_try='test -s conftest.$ac_objext' 24650 27922 - { (eval echo "$as_me:17434: \"$ac_try\"") >&5 24651 + { (eval echo "$as_me:18 493: \"$ac_try\"") >&527923 + { (eval echo "$as_me:18638: \"$ac_try\"") >&5 24652 27924 (eval $ac_try) 2>&5 24653 27925 ac_status=$? 24654 27926 - echo "$as_me:17437: \$? = $ac_status" >&5 24655 + echo "$as_me:18 496: \$? = $ac_status" >&527927 + echo "$as_me:18641: \$? = $ac_status" >&5 24656 27928 (exit $ac_status); }; }; then 24657 27929 cf_cv_header_stdbool_h=0 … … 24661 27933 cat >conftest.$ac_ext <<_ACEOF 24662 27934 -#line 17444 "configure" 24663 +#line 18 503"configure"27935 +#line 18648 "configure" 24664 27936 #include "confdefs.h" 24665 27937 24666 27938 #ifndef __BEOS__ 24667 @@ -17457,16 +18 516,16 @@27939 @@ -17457,16 +18661,16 @@ 24668 27940 } 24669 27941 _ACEOF 24670 27942 rm -f conftest.$ac_objext 24671 27943 -if { (eval echo "$as_me:17460: \"$ac_compile\"") >&5 24672 +if { (eval echo "$as_me:18 519: \"$ac_compile\"") >&527944 +if { (eval echo "$as_me:18664: \"$ac_compile\"") >&5 24673 27945 (eval $ac_compile) 2>&5 24674 27946 ac_status=$? 24675 27947 - echo "$as_me:17463: \$? = $ac_status" >&5 24676 + echo "$as_me:18 522: \$? = $ac_status" >&527948 + echo "$as_me:18667: \$? = $ac_status" >&5 24677 27949 (exit $ac_status); } && 24678 27950 { ac_try='test -s conftest.$ac_objext' 24679 27951 - { (eval echo "$as_me:17466: \"$ac_try\"") >&5 24680 + { (eval echo "$as_me:18 525: \"$ac_try\"") >&527952 + { (eval echo "$as_me:18670: \"$ac_try\"") >&5 24681 27953 (eval $ac_try) 2>&5 24682 27954 ac_status=$? 24683 27955 - echo "$as_me:17469: \$? = $ac_status" >&5 24684 + echo "$as_me:18 528: \$? = $ac_status" >&527956 + echo "$as_me:18673: \$? = $ac_status" >&5 24685 27957 (exit $ac_status); }; }; then 24686 27958 cf_cv_header_stdbool_h=1 24687 27959 else 24688 @@ -17480,13 +18 539,13 @@27960 @@ -17480,13 +18684,13 @@ 24689 27961 fi 24690 27962 24691 27963 if test "$cf_cv_header_stdbool_h" = 1 24692 27964 -then echo "$as_me:17483: result: yes" >&5 24693 +then echo "$as_me:18 542: result: yes" >&527965 +then echo "$as_me:18687: result: yes" >&5 24694 27966 echo "${ECHO_T}yes" >&6 24695 27967 -else echo "$as_me:17485: result: no" >&5 24696 +else echo "$as_me:18 544: result: no" >&527968 +else echo "$as_me:18689: result: no" >&5 24697 27969 echo "${ECHO_T}no" >&6 24698 27970 fi 24699 27971 24700 27972 -echo "$as_me:17489: checking for builtin bool type" >&5 24701 +echo "$as_me:18 548: checking for builtin bool type" >&527973 +echo "$as_me:18693: checking for builtin bool type" >&5 24702 27974 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6 24703 27975 24704 27976 if test "${cf_cv_builtin_bool+set}" = set; then 24705 @@ -17494,7 +18 553,7 @@27977 @@ -17494,7 +18698,7 @@ 24706 27978 else 24707 27979 24708 27980 cat >conftest.$ac_ext <<_ACEOF 24709 27981 -#line 17497 "configure" 24710 +#line 18 556"configure"27982 +#line 18701 "configure" 24711 27983 #include "confdefs.h" 24712 27984 24713 27985 #include <stdio.h> 24714 @@ -17509,16 +18 568,16 @@27986 @@ -17509,16 +18713,16 @@ 24715 27987 } 24716 27988 _ACEOF 24717 27989 rm -f conftest.$ac_objext 24718 27990 -if { (eval echo "$as_me:17512: \"$ac_compile\"") >&5 24719 +if { (eval echo "$as_me:18 571: \"$ac_compile\"") >&527991 +if { (eval echo "$as_me:18716: \"$ac_compile\"") >&5 24720 27992 (eval $ac_compile) 2>&5 24721 27993 ac_status=$? 24722 27994 - echo "$as_me:17515: \$? = $ac_status" >&5 24723 + echo "$as_me:18 574: \$? = $ac_status" >&527995 + echo "$as_me:18719: \$? = $ac_status" >&5 24724 27996 (exit $ac_status); } && 24725 27997 { ac_try='test -s conftest.$ac_objext' 24726 27998 - { (eval echo "$as_me:17518: \"$ac_try\"") >&5 24727 + { (eval echo "$as_me:18 577: \"$ac_try\"") >&527999 + { (eval echo "$as_me:18722: \"$ac_try\"") >&5 24728 28000 (eval $ac_try) 2>&5 24729 28001 ac_status=$? 24730 28002 - echo "$as_me:17521: \$? = $ac_status" >&5 24731 + echo "$as_me:18 580: \$? = $ac_status" >&528003 + echo "$as_me:18725: \$? = $ac_status" >&5 24732 28004 (exit $ac_status); }; }; then 24733 28005 cf_cv_builtin_bool=1 24734 28006 else 24735 @@ -17531,13 +18 590,13 @@28007 @@ -17531,13 +18735,13 @@ 24736 28008 fi 24737 28009 24738 28010 if test "$cf_cv_builtin_bool" = 1 24739 28011 -then echo "$as_me:17534: result: yes" >&5 24740 +then echo "$as_me:18 593: result: yes" >&528012 +then echo "$as_me:18738: result: yes" >&5 24741 28013 echo "${ECHO_T}yes" >&6 24742 28014 -else echo "$as_me:17536: result: no" >&5 24743 +else echo "$as_me:18 595: result: no" >&528015 +else echo "$as_me:18740: result: no" >&5 24744 28016 echo "${ECHO_T}no" >&6 24745 28017 fi 24746 28018 24747 28019 -echo "$as_me:17540: checking for size of bool" >&5 24748 +echo "$as_me:18 599: checking for size of bool" >&528020 +echo "$as_me:18744: checking for size of bool" >&5 24749 28021 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6 24750 28022 if test "${cf_cv_type_of_bool+set}" = set; then 24751 28023 echo $ECHO_N "(cached) $ECHO_C" >&6 24752 @@ -17548,7 +18 607,7 @@28024 @@ -17548,7 +18752,7 @@ 24753 28025 cf_cv_type_of_bool=unknown 24754 28026 else 24755 28027 cat >conftest.$ac_ext <<_ACEOF 24756 28028 -#line 17551 "configure" 24757 +#line 18 610"configure"28029 +#line 18755 "configure" 24758 28030 #include "confdefs.h" 24759 28031 24760 28032 #include <stdlib.h> 24761 @@ -17590,15 +18 649,15 @@28033 @@ -17590,15 +18794,15 @@ 24762 28034 24763 28035 _ACEOF 24764 28036 rm -f conftest$ac_exeext 24765 28037 -if { (eval echo "$as_me:17593: \"$ac_link\"") >&5 24766 +if { (eval echo "$as_me:18 652: \"$ac_link\"") >&528038 +if { (eval echo "$as_me:18797: \"$ac_link\"") >&5 24767 28039 (eval $ac_link) 2>&5 24768 28040 ac_status=$? 24769 28041 - echo "$as_me:17596: \$? = $ac_status" >&5 24770 + echo "$as_me:18 655: \$? = $ac_status" >&528042 + echo "$as_me:18800: \$? = $ac_status" >&5 24771 28043 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 24772 28044 - { (eval echo "$as_me:17598: \"$ac_try\"") >&5 24773 + { (eval echo "$as_me:18 657: \"$ac_try\"") >&528045 + { (eval echo "$as_me:18802: \"$ac_try\"") >&5 24774 28046 (eval $ac_try) 2>&5 24775 28047 ac_status=$? 24776 28048 - echo "$as_me:17601: \$? = $ac_status" >&5 24777 + echo "$as_me:18 660: \$? = $ac_status" >&528049 + echo "$as_me:18805: \$? = $ac_status" >&5 24778 28050 (exit $ac_status); }; }; then 24779 28051 cf_cv_type_of_bool=`cat cf_test.out` 24780 28052 if test -z "$cf_cv_type_of_bool"; then 24781 @@ -17616,30 +18 675,36 @@28053 @@ -17616,30 +18820,36 @@ 24782 28054 fi 24783 28055 24784 28056 rm -f cf_test.out 24785 28057 -echo "$as_me:17619: result: $cf_cv_type_of_bool" >&5 24786 +echo "$as_me:18 678: result: $cf_cv_type_of_bool" >&528058 +echo "$as_me:18823: result: $cf_cv_type_of_bool" >&5 24787 28059 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 24788 28060 if test "$cf_cv_type_of_bool" = unknown ; then … … 24791 28063 esac 24792 28064 - { echo "$as_me:17625: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 24793 + { echo "$as_me:18 684: WARNING: Assuming $NCURSES_BOOL for type of bool" >&528065 + { echo "$as_me:18829: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 24794 28066 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;} 24795 28067 cf_cv_type_of_bool=$NCURSES_BOOL … … 24797 28069 24798 28070 -echo "$as_me:17630: checking for special defines needed for etip.h" >&5 24799 +echo "$as_me:18 689: checking for special defines needed for etip.h" >&528071 +echo "$as_me:18834: checking for special defines needed for etip.h" >&5 24800 28072 echo $ECHO_N "checking for special defines needed for etip.h... $ECHO_C" >&6 24801 28073 cf_save_CXXFLAGS="$CXXFLAGS" … … 24817 28089 cat >conftest.$ac_ext <<_ACEOF 24818 28090 -#line 17642 "configure" 24819 +#line 18 707"configure"28091 +#line 18852 "configure" 24820 28092 #include "confdefs.h" 24821 28093 24822 28094 #include <etip.h.in> 24823 @@ -17653,16 +18 718,16 @@28095 @@ -17653,16 +18863,16 @@ 24824 28096 } 24825 28097 _ACEOF 24826 28098 rm -f conftest.$ac_objext 24827 28099 -if { (eval echo "$as_me:17656: \"$ac_compile\"") >&5 24828 +if { (eval echo "$as_me:18 721: \"$ac_compile\"") >&528100 +if { (eval echo "$as_me:18866: \"$ac_compile\"") >&5 24829 28101 (eval $ac_compile) 2>&5 24830 28102 ac_status=$? 24831 28103 - echo "$as_me:17659: \$? = $ac_status" >&5 24832 + echo "$as_me:18 724: \$? = $ac_status" >&528104 + echo "$as_me:18869: \$? = $ac_status" >&5 24833 28105 (exit $ac_status); } && 24834 28106 { ac_try='test -s conftest.$ac_objext' 24835 28107 - { (eval echo "$as_me:17662: \"$ac_try\"") >&5 24836 + { (eval echo "$as_me:18 727: \"$ac_try\"") >&528108 + { (eval echo "$as_me:18872: \"$ac_try\"") >&5 24837 28109 (eval $ac_try) 2>&5 24838 28110 ac_status=$? 24839 28111 - echo "$as_me:17665: \$? = $ac_status" >&5 24840 + echo "$as_me:18 730: \$? = $ac_status" >&528112 + echo "$as_me:18875: \$? = $ac_status" >&5 24841 28113 (exit $ac_status); }; }; then 24842 28114 24843 28115 test -n "$cf_math" && cat >>confdefs.h <<EOF 24844 @@ -17683,12 +18748,12 @@ 28116 @@ -17674,7 +18884,7 @@ 28117 EOF 28118 28119 cf_result="$cf_math $cf_excp" 28120 - break 28121 + break 2 28122 28123 else 28124 echo "$as_me: failed program was:" >&5 28125 @@ -17683,12 +18893,12 @@ 24845 28126 rm -f conftest.$ac_objext conftest.$ac_ext 24846 28127 done 24847 28128 done 24848 28129 -echo "$as_me:17686: result: $cf_result" >&5 24849 +echo "$as_me:18 751: result: $cf_result" >&528130 +echo "$as_me:18896: result: $cf_result" >&5 24850 28131 echo "${ECHO_T}$cf_result" >&6 24851 28132 CXXFLAGS="$cf_save_CXXFLAGS" … … 24853 28134 if test -n "$CXX"; then 24854 28135 -echo "$as_me:17691: checking if $CXX accepts parameter initialization" >&5 24855 +echo "$as_me:18 756: checking if $CXX accepts parameter initialization" >&528136 +echo "$as_me:18901: checking if $CXX accepts parameter initialization" >&5 24856 28137 echo $ECHO_N "checking if $CXX accepts parameter initialization... $ECHO_C" >&6 24857 28138 if test "${cf_cv_cpp_param_init+set}" = set; then 24858 28139 echo $ECHO_N "(cached) $ECHO_C" >&6 24859 @@ -17705,7 +18 770,7 @@28140 @@ -17705,7 +18915,7 @@ 24860 28141 cf_cv_cpp_param_init=unknown 24861 28142 else 24862 28143 cat >conftest.$ac_ext <<_ACEOF 24863 28144 -#line 17708 "configure" 24864 +#line 18 773"configure"28145 +#line 18918 "configure" 24865 28146 #include "confdefs.h" 24866 28147 24867 28148 class TEST { 24868 @@ -17720,19 +18 785,19 @@28149 @@ -17720,19 +18930,19 @@ 24869 28150 { 24870 28151 value = x; … … 24876 28157 rm -f conftest$ac_exeext 24877 28158 -if { (eval echo "$as_me:17727: \"$ac_link\"") >&5 24878 +if { (eval echo "$as_me:18 792: \"$ac_link\"") >&528159 +if { (eval echo "$as_me:18937: \"$ac_link\"") >&5 24879 28160 (eval $ac_link) 2>&5 24880 28161 ac_status=$? 24881 28162 - echo "$as_me:17730: \$? = $ac_status" >&5 24882 + echo "$as_me:18 795: \$? = $ac_status" >&528163 + echo "$as_me:18940: \$? = $ac_status" >&5 24883 28164 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 24884 28165 - { (eval echo "$as_me:17732: \"$ac_try\"") >&5 24885 + { (eval echo "$as_me:18 797: \"$ac_try\"") >&528166 + { (eval echo "$as_me:18942: \"$ac_try\"") >&5 24886 28167 (eval $ac_try) 2>&5 24887 28168 ac_status=$? 24888 28169 - echo "$as_me:17735: \$? = $ac_status" >&5 24889 + echo "$as_me:18 800: \$? = $ac_status" >&528170 + echo "$as_me:18945: \$? = $ac_status" >&5 24890 28171 (exit $ac_status); }; }; then 24891 28172 cf_cv_cpp_param_init=yes 24892 28173 else 24893 @@ -17751,7 +18 816,7 @@28174 @@ -17751,7 +18961,7 @@ 24894 28175 ac_main_return=return 24895 28176 24896 28177 fi 24897 28178 -echo "$as_me:17754: result: $cf_cv_cpp_param_init" >&5 24898 +echo "$as_me:18 819: result: $cf_cv_cpp_param_init" >&528179 +echo "$as_me:18964: result: $cf_cv_cpp_param_init" >&5 24899 28180 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6 24900 28181 fi 24901 28182 test "$cf_cv_cpp_param_init" = yes && cat >>confdefs.h <<\EOF 24902 @@ -17760,7 +18 825,7 @@28183 @@ -17760,7 +18970,7 @@ 24903 28184 24904 28185 if test -n "$CXX"; then 24905 28186 24906 28187 -echo "$as_me:17763: checking if $CXX accepts static_cast" >&5 24907 +echo "$as_me:18 828: checking if $CXX accepts static_cast" >&528188 +echo "$as_me:18973: checking if $CXX accepts static_cast" >&5 24908 28189 echo $ECHO_N "checking if $CXX accepts static_cast... $ECHO_C" >&6 24909 28190 if test "${cf_cv_cpp_static_cast+set}" = set; then 24910 28191 echo $ECHO_N "(cached) $ECHO_C" >&6 24911 @@ -17774,7 +18 839,7 @@28192 @@ -17774,7 +18984,7 @@ 24912 28193 ac_main_return=return 24913 28194 24914 28195 cat >conftest.$ac_ext <<_ACEOF 24915 28196 -#line 17777 "configure" 24916 +#line 18 842"configure"28197 +#line 18987 "configure" 24917 28198 #include "confdefs.h" 24918 28199 24919 28200 class NCursesPanel 24920 @@ -17818,16 +1 8883,16 @@28201 @@ -17818,16 +19028,16 @@ 24921 28202 } 24922 28203 _ACEOF 24923 28204 rm -f conftest.$ac_objext 24924 28205 -if { (eval echo "$as_me:17821: \"$ac_compile\"") >&5 24925 +if { (eval echo "$as_me:1 8886: \"$ac_compile\"") >&528206 +if { (eval echo "$as_me:19031: \"$ac_compile\"") >&5 24926 28207 (eval $ac_compile) 2>&5 24927 28208 ac_status=$? 24928 28209 - echo "$as_me:17824: \$? = $ac_status" >&5 24929 + echo "$as_me:1 8889: \$? = $ac_status" >&528210 + echo "$as_me:19034: \$? = $ac_status" >&5 24930 28211 (exit $ac_status); } && 24931 28212 { ac_try='test -s conftest.$ac_objext' 24932 28213 - { (eval echo "$as_me:17827: \"$ac_try\"") >&5 24933 + { (eval echo "$as_me:1 8892: \"$ac_try\"") >&528214 + { (eval echo "$as_me:19037: \"$ac_try\"") >&5 24934 28215 (eval $ac_try) 2>&5 24935 28216 ac_status=$? 24936 28217 - echo "$as_me:17830: \$? = $ac_status" >&5 24937 + echo "$as_me:1 8895: \$? = $ac_status" >&528218 + echo "$as_me:19040: \$? = $ac_status" >&5 24938 28219 (exit $ac_status); }; }; then 24939 28220 cf_cv_cpp_static_cast=yes 24940 28221 else 24941 @@ -17845,7 +1 8910,7 @@28222 @@ -17845,7 +19055,7 @@ 24942 28223 ac_main_return=return 24943 28224 24944 28225 fi 24945 28226 -echo "$as_me:17848: result: $cf_cv_cpp_static_cast" >&5 24946 +echo "$as_me:1 8913: result: $cf_cv_cpp_static_cast" >&528227 +echo "$as_me:19058: result: $cf_cv_cpp_static_cast" >&5 24947 28228 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6 24948 28229 24949 28230 fi 24950 @@ -17893,7 +1 8958,7 @@28231 @@ -17893,7 +19103,7 @@ 24951 28232 else 24952 28233 if test "$cf_cv_header_stdbool_h" = 1 ; then 24953 28234 24954 28235 -echo "$as_me:17896: checking for size of bool" >&5 24955 +echo "$as_me:1 8961: checking for size of bool" >&528236 +echo "$as_me:19106: checking for size of bool" >&5 24956 28237 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6 24957 28238 if test "${cf_cv_type_of_bool+set}" = set; then 24958 28239 echo $ECHO_N "(cached) $ECHO_C" >&6 24959 @@ -17904,7 +1 8969,7 @@28240 @@ -17904,7 +19114,7 @@ 24960 28241 cf_cv_type_of_bool=unknown 24961 28242 else 24962 28243 cat >conftest.$ac_ext <<_ACEOF 24963 28244 -#line 17907 "configure" 24964 +#line 1 8972"configure"28245 +#line 19117 "configure" 24965 28246 #include "confdefs.h" 24966 28247 24967 28248 #include <stdlib.h> 24968 @@ -17946,15 +19 011,15 @@28249 @@ -17946,15 +19156,15 @@ 24969 28250 24970 28251 _ACEOF 24971 28252 rm -f conftest$ac_exeext 24972 28253 -if { (eval echo "$as_me:17949: \"$ac_link\"") >&5 24973 +if { (eval echo "$as_me:19 014: \"$ac_link\"") >&528254 +if { (eval echo "$as_me:19159: \"$ac_link\"") >&5 24974 28255 (eval $ac_link) 2>&5 24975 28256 ac_status=$? 24976 28257 - echo "$as_me:17952: \$? = $ac_status" >&5 24977 + echo "$as_me:19 017: \$? = $ac_status" >&528258 + echo "$as_me:19162: \$? = $ac_status" >&5 24978 28259 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 24979 28260 - { (eval echo "$as_me:17954: \"$ac_try\"") >&5 24980 + { (eval echo "$as_me:19 019: \"$ac_try\"") >&528261 + { (eval echo "$as_me:19164: \"$ac_try\"") >&5 24981 28262 (eval $ac_try) 2>&5 24982 28263 ac_status=$? 24983 28264 - echo "$as_me:17957: \$? = $ac_status" >&5 24984 + echo "$as_me:19 022: \$? = $ac_status" >&528265 + echo "$as_me:19167: \$? = $ac_status" >&5 24985 28266 (exit $ac_status); }; }; then 24986 28267 cf_cv_type_of_bool=`cat cf_test.out` 24987 28268 if test -z "$cf_cv_type_of_bool"; then 24988 @@ -17972,25 +19 037,25 @@28269 @@ -17972,25 +19182,25 @@ 24989 28270 fi 24990 28271 24991 28272 rm -f cf_test.out 24992 28273 -echo "$as_me:17975: result: $cf_cv_type_of_bool" >&5 24993 +echo "$as_me:19 040: result: $cf_cv_type_of_bool" >&528274 +echo "$as_me:19185: result: $cf_cv_type_of_bool" >&5 24994 28275 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 24995 28276 if test "$cf_cv_type_of_bool" = unknown ; then … … 24998 28279 esac 24999 28280 - { echo "$as_me:17981: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 25000 + { echo "$as_me:19 046: WARNING: Assuming $NCURSES_BOOL for type of bool" >&528281 + { echo "$as_me:19191: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5 25001 28282 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;} 25002 28283 cf_cv_type_of_bool=$NCURSES_BOOL … … 25005 28286 else 25006 28287 - echo "$as_me:17987: checking for fallback type of bool" >&5 25007 + echo "$as_me:19 052: checking for fallback type of bool" >&528288 + echo "$as_me:19197: checking for fallback type of bool" >&5 25008 28289 echo $ECHO_N "checking for fallback type of bool... $ECHO_C" >&6 25009 28290 case "$host_cpu" in #(vi … … 25012 28293 esac 25013 28294 - echo "$as_me:17993: result: $cf_cv_type_of_bool" >&5 25014 + echo "$as_me:19 058: result: $cf_cv_type_of_bool" >&528295 + echo "$as_me:19203: result: $cf_cv_type_of_bool" >&5 25015 28296 echo "${ECHO_T}$cf_cv_type_of_bool" >&6 25016 28297 fi 25017 28298 fi 25018 @@ -18019,7 +19 084,7 @@28299 @@ -18019,7 +19229,7 @@ 25019 28300 25020 28301 if test "$cf_with_ada" != "no" ; then 25021 28302 if test "$with_libtool" != "no"; then 25022 28303 - { echo "$as_me:18022: WARNING: libtool does not support Ada - disabling feature" >&5 25023 + { echo "$as_me:19 087: WARNING: libtool does not support Ada - disabling feature" >&528304 + { echo "$as_me:19232: WARNING: libtool does not support Ada - disabling feature" >&5 25024 28305 echo "$as_me: WARNING: libtool does not support Ada - disabling feature" >&2;} 25025 28306 cf_with_ada=no 25026 28307 fi 25027 @@ -18030,7 +19 095,7 @@28308 @@ -18030,7 +19240,7 @@ 25028 28309 cf_ada_make=gnatmake 25029 28310 # Extract the first word of "$cf_ada_make", so it can be a program name with args. 25030 28311 set dummy $cf_ada_make; ac_word=$2 25031 28312 -echo "$as_me:18033: checking for $ac_word" >&5 25032 +echo "$as_me:19 098: checking for $ac_word" >&528313 +echo "$as_me:19243: checking for $ac_word" >&5 25033 28314 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 25034 28315 if test "${ac_cv_prog_gnat_exists+set}" = set; then 25035 28316 echo $ECHO_N "(cached) $ECHO_C" >&6 25036 @@ -18045,7 +19 110,7 @@28317 @@ -18045,7 +19255,7 @@ 25037 28318 test -z "$ac_dir" && ac_dir=. 25038 28319 $as_executable_p "$ac_dir/$ac_word" || continue 25039 28320 ac_cv_prog_gnat_exists="yes" 25040 28321 -echo "$as_me:18048: found $ac_dir/$ac_word" >&5 25041 +echo "$as_me:19 113: found $ac_dir/$ac_word" >&528322 +echo "$as_me:19258: found $ac_dir/$ac_word" >&5 25042 28323 break 25043 28324 done 25044 28325 25045 @@ -18054,31 +19 119,32 @@28326 @@ -18054,31 +19264,32 @@ 25046 28327 fi 25047 28328 gnat_exists=$ac_cv_prog_gnat_exists 25048 28329 if test -n "$gnat_exists"; then 25049 28330 - echo "$as_me:18057: result: $gnat_exists" >&5 25050 + echo "$as_me:19 122: result: $gnat_exists" >&528331 + echo "$as_me:19267: result: $gnat_exists" >&5 25051 28332 echo "${ECHO_T}$gnat_exists" >&6 25052 28333 else 25053 28334 - echo "$as_me:18060: result: no" >&5 25054 + echo "$as_me:19 125: result: no" >&528335 + echo "$as_me:19270: result: no" >&5 25055 28336 echo "${ECHO_T}no" >&6 25056 28337 fi … … 25062 28343 25063 28344 -echo "$as_me:18068: checking for gnat version" >&5 25064 +echo "$as_me:19 134: checking for gnat version" >&528345 +echo "$as_me:19279: checking for gnat version" >&5 25065 28346 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6 25066 28347 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \ … … 25068 28349 sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'` 25069 28350 -echo "$as_me:18073: result: $cf_gnat_version" >&5 25070 +echo "$as_me:19 139: result: $cf_gnat_version" >&528351 +echo "$as_me:19284: result: $cf_gnat_version" >&5 25071 28352 echo "${ECHO_T}$cf_gnat_version" >&6 25072 28353 … … 25078 28359 *) 25079 28360 - { echo "$as_me:18081: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 25080 + { echo "$as_me:19 147: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&528361 + { echo "$as_me:19292: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5 25081 28362 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;} 25082 28363 cf_cv_prog_gnat_correct=no 25083 28364 ;; 25084 @@ -18086,7 +19 152,7 @@28365 @@ -18086,7 +19297,7 @@ 25085 28366 25086 28367 # Extract the first word of "m4", so it can be a program name with args. 25087 28368 set dummy m4; ac_word=$2 25088 28369 -echo "$as_me:18089: checking for $ac_word" >&5 25089 +echo "$as_me:19 155: checking for $ac_word" >&528370 +echo "$as_me:19300: checking for $ac_word" >&5 25090 28371 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 25091 28372 if test "${ac_cv_prog_M4_exists+set}" = set; then 25092 28373 echo $ECHO_N "(cached) $ECHO_C" >&6 25093 @@ -18101,7 +19 167,7 @@28374 @@ -18101,7 +19312,7 @@ 25094 28375 test -z "$ac_dir" && ac_dir=. 25095 28376 $as_executable_p "$ac_dir/$ac_word" || continue 25096 28377 ac_cv_prog_M4_exists="yes" 25097 28378 -echo "$as_me:18104: found $ac_dir/$ac_word" >&5 25098 +echo "$as_me:19 170: found $ac_dir/$ac_word" >&528379 +echo "$as_me:19315: found $ac_dir/$ac_word" >&5 25099 28380 break 25100 28381 done 25101 28382 25102 @@ -18110,10 +19 176,10 @@28383 @@ -18110,10 +19321,10 @@ 25103 28384 fi 25104 28385 M4_exists=$ac_cv_prog_M4_exists 25105 28386 if test -n "$M4_exists"; then 25106 28387 - echo "$as_me:18113: result: $M4_exists" >&5 25107 + echo "$as_me:19 179: result: $M4_exists" >&528388 + echo "$as_me:19324: result: $M4_exists" >&5 25108 28389 echo "${ECHO_T}$M4_exists" >&6 25109 28390 else 25110 28391 - echo "$as_me:18116: result: no" >&5 25111 + echo "$as_me:19 182: result: no" >&528392 + echo "$as_me:19327: result: no" >&5 25112 28393 echo "${ECHO_T}no" >&6 25113 28394 fi 25114 28395 25115 @@ -18122,7 +19 188,7 @@28396 @@ -18122,7 +19333,7 @@ 25116 28397 echo Ada95 binding required program m4 not found. Ada95 binding disabled. 25117 28398 fi 25118 28399 if test "$cf_cv_prog_gnat_correct" = yes; then 25119 28400 - echo "$as_me:18125: checking if GNAT works" >&5 25120 + echo "$as_me:19 191: checking if GNAT works" >&528401 + echo "$as_me:19336: checking if GNAT works" >&5 25121 28402 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6 25122 28403 25123 28404 rm -rf conftest* *~conftest* 25124 @@ -18150,7 +19 216,7 @@28405 @@ -18150,7 +19361,7 @@ 25125 28406 fi 25126 28407 rm -rf conftest* *~conftest* 25127 28408 25128 28409 - echo "$as_me:18153: result: $cf_cv_prog_gnat_correct" >&5 25129 + echo "$as_me:19 219: result: $cf_cv_prog_gnat_correct" >&528410 + echo "$as_me:19364: result: $cf_cv_prog_gnat_correct" >&5 25130 28411 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6 25131 28412 fi 25132 28413 fi 25133 @@ -18175,7 +19241,7 @@ 25134 ;; 25135 esac 28414 @@ -18159,23 +19370,27 @@ 28415 28416 ADAFLAGS="$ADAFLAGS -gnatpn" 28417 28418 - # make ADAFLAGS consistent with CFLAGS 28419 - case "$CFLAGS" in 28420 - *-g*) 28421 + echo "$as_me:19373: checking optimization options for ADAFLAGS" >&5 28422 +echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6 28423 + case "$CFLAGS" in 28424 + *-g*) 28425 28426 ADAFLAGS="$ADAFLAGS -g" 28427 28428 - ;; 28429 - esac 28430 - case "$CFLAGS" in 28431 - *-O*) 28432 + ;; 28433 + esac 28434 + case "$CFLAGS" in 28435 + *-O*) 28436 + cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[ ].*//'` 28437 28438 - ADAFLAGS="$ADAFLAGS -O3" 28439 + ADAFLAGS="$ADAFLAGS $cf_O_flag" 28440 28441 - ;; 28442 - esac 28443 + ;; 28444 + esac 28445 + echo "$as_me:19390: result: $ADAFLAGS" >&5 28446 +echo "${ECHO_T}$ADAFLAGS" >&6 25136 28447 25137 28448 -echo "$as_me:18178: checking if GNAT supports generics" >&5 25138 +echo "$as_me:19 244: checking if GNAT supports generics" >&528449 +echo "$as_me:19393: checking if GNAT supports generics" >&5 25139 28450 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6 25140 28451 case $cf_gnat_version in #(vi 25141 28452 3.[1-9]*|[4-9].*) #(vi 25142 @@ -18185,7 +19 251,7 @@28453 @@ -18185,7 +19400,7 @@ 25143 28454 cf_gnat_generics=no 25144 28455 ;; 25145 28456 esac 25146 28457 -echo "$as_me:18188: result: $cf_gnat_generics" >&5 25147 +echo "$as_me:19 254: result: $cf_gnat_generics" >&528458 +echo "$as_me:19403: result: $cf_gnat_generics" >&5 25148 28459 echo "${ECHO_T}$cf_gnat_generics" >&6 25149 28460 25150 28461 if test "$cf_gnat_generics" = yes 25151 @@ -18197,7 +19 263,7 @@28462 @@ -18197,7 +19412,7 @@ 25152 28463 cf_generic_objects= 25153 28464 fi 25154 28465 25155 28466 -echo "$as_me:18200: checking if GNAT supports SIGINT" >&5 25156 +echo "$as_me:19 266: checking if GNAT supports SIGINT" >&528467 +echo "$as_me:19415: checking if GNAT supports SIGINT" >&5 25157 28468 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6 25158 28469 if test "${cf_cv_gnat_sigint+set}" = set; then 25159 28470 echo $ECHO_N "(cached) $ECHO_C" >&6 25160 @@ -18245,7 +19 311,7 @@28471 @@ -18245,7 +19460,7 @@ 25161 28472 rm -rf conftest* *~conftest* 25162 28473 25163 28474 fi 25164 28475 -echo "$as_me:18248: result: $cf_cv_gnat_sigint" >&5 25165 +echo "$as_me:19 314: result: $cf_cv_gnat_sigint" >&528476 +echo "$as_me:19463: result: $cf_cv_gnat_sigint" >&5 25166 28477 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6 25167 28478 25168 28479 if test $cf_cv_gnat_sigint = yes ; then 25169 @@ -18254,7 +19 320,7 @@28480 @@ -18254,7 +19469,7 @@ 25170 28481 USE_GNAT_SIGINT="#" 25171 28482 fi 25172 28483 25173 28484 -echo "$as_me:18257: checking if GNAT pragma Unreferenced works" >&5 25174 +echo "$as_me:19 323: checking if GNAT pragma Unreferenced works" >&528485 +echo "$as_me:19472: checking if GNAT pragma Unreferenced works" >&5 25175 28486 echo $ECHO_N "checking if GNAT pragma Unreferenced works... $ECHO_C" >&6 25176 28487 if test "${cf_cv_pragma_unreferenced+set}" = set; then 25177 28488 echo $ECHO_N "(cached) $ECHO_C" >&6 25178 @@ -18285,7 +19 351,7 @@28489 @@ -18285,7 +19500,7 @@ 25179 28490 rm -rf conftest* *~conftest* 25180 28491 25181 28492 fi 25182 28493 -echo "$as_me:18288: result: $cf_cv_pragma_unreferenced" >&5 25183 +echo "$as_me:19 354: result: $cf_cv_pragma_unreferenced" >&528494 +echo "$as_me:19503: result: $cf_cv_pragma_unreferenced" >&5 25184 28495 echo "${ECHO_T}$cf_cv_pragma_unreferenced" >&6 25185 28496 25186 28497 # if the pragma is supported, use it (needed in the Trace code). 25187 @@ -18298,7 +19 364,7 @@28498 @@ -18298,7 +19513,7 @@ 25188 28499 cf_gnat_libraries=no 25189 28500 cf_gnat_projects=no 25190 28501 25191 28502 -echo "$as_me:18301: checking if GNAT supports project files" >&5 25192 +echo "$as_me:19 367: checking if GNAT supports project files" >&528503 +echo "$as_me:19516: checking if GNAT supports project files" >&5 25193 28504 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6 25194 28505 case $cf_gnat_version in #(vi 25195 28506 3.[0-9]*) #(vi 25196 @@ -18366,14 +19 432,14 @@28507 @@ -18366,14 +19581,14 @@ 25197 28508 esac 25198 28509 ;; 25199 28510 esac 25200 28511 -echo "$as_me:18369: result: $cf_gnat_projects" >&5 25201 +echo "$as_me:19 435: result: $cf_gnat_projects" >&528512 +echo "$as_me:19584: result: $cf_gnat_projects" >&5 25202 28513 echo "${ECHO_T}$cf_gnat_projects" >&6 25203 28514 … … 25205 28516 then 25206 28517 - echo "$as_me:18374: checking if GNAT supports libraries" >&5 25207 + echo "$as_me:19 440: checking if GNAT supports libraries" >&528518 + echo "$as_me:19589: checking if GNAT supports libraries" >&5 25208 28519 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6 25209 28520 - echo "$as_me:18376: result: $cf_gnat_libraries" >&5 25210 + echo "$as_me:19 442: result: $cf_gnat_libraries" >&528521 + echo "$as_me:19591: result: $cf_gnat_libraries" >&5 25211 28522 echo "${ECHO_T}$cf_gnat_libraries" >&6 25212 28523 fi 25213 28524 25214 @@ -18393,7 +19 459,7 @@28525 @@ -18393,7 +19608,7 @@ 25215 28526 USE_GNAT_LIBRARIES="#" 25216 28527 fi 25217 28528 25218 28529 -echo "$as_me:18396: checking for ada-compiler" >&5 25219 +echo "$as_me:19 462: checking for ada-compiler" >&528530 +echo "$as_me:19611: checking for ada-compiler" >&5 25220 28531 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6 25221 28532 25222 28533 # Check whether --with-ada-compiler or --without-ada-compiler was given. 25223 @@ -18404,12 +19 470,12 @@28534 @@ -18404,12 +19619,12 @@ 25224 28535 cf_ada_compiler=gnatmake 25225 28536 fi; 25226 28537 25227 28538 -echo "$as_me:18407: result: $cf_ada_compiler" >&5 25228 +echo "$as_me:19 473: result: $cf_ada_compiler" >&528539 +echo "$as_me:19622: result: $cf_ada_compiler" >&5 25229 28540 echo "${ECHO_T}$cf_ada_compiler" >&6 25230 28541 … … 25232 28543 25233 28544 -echo "$as_me:18412: checking for ada-include" >&5 25234 +echo "$as_me:19 478: checking for ada-include" >&528545 +echo "$as_me:19627: checking for ada-include" >&5 25235 28546 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6 25236 28547 25237 28548 # Check whether --with-ada-include or --without-ada-include was given. 25238 @@ -18445,7 +19511,7 @@ 28549 @@ -18433,7 +19648,7 @@ 28550 ;; 28551 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 28552 ;; 28553 -.\${*prefix}*) #(vi 28554 +.\${*prefix}*|.\${*dir}*) #(vi 28555 eval withval="$withval" 28556 case ".$withval" in #(vi 28557 .NONE/*) 28558 @@ -18445,7 +19660,7 @@ 25239 28559 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 25240 28560 ;; 25241 28561 *) 25242 28562 - { { echo "$as_me:18448: error: expected a pathname, not \"$withval\"" >&5 25243 + { { echo "$as_me:19 514: error: expected a pathname, not \"$withval\"" >&528563 + { { echo "$as_me:19663: error: expected a pathname, not \"$withval\"" >&5 25244 28564 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 25245 28565 { (exit 1); exit 1; }; } 25246 28566 ;; 25247 @@ -18454,10 +19 520,10 @@28567 @@ -18454,10 +19669,10 @@ 25248 28568 fi 25249 28569 ADA_INCLUDE="$withval" 25250 28570 25251 28571 -echo "$as_me:18457: result: $ADA_INCLUDE" >&5 25252 +echo "$as_me:19 523: result: $ADA_INCLUDE" >&528572 +echo "$as_me:19672: result: $ADA_INCLUDE" >&5 25253 28573 echo "${ECHO_T}$ADA_INCLUDE" >&6 25254 28574 25255 28575 -echo "$as_me:18460: checking for ada-objects" >&5 25256 +echo "$as_me:19 526: checking for ada-objects" >&528576 +echo "$as_me:19675: checking for ada-objects" >&5 25257 28577 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6 25258 28578 25259 28579 # Check whether --with-ada-objects or --without-ada-objects was given. 25260 @@ -18493,7 +19559,7 @@ 28580 @@ -18481,7 +19696,7 @@ 28581 ;; 28582 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX 28583 ;; 28584 -.\${*prefix}*) #(vi 28585 +.\${*prefix}*|.\${*dir}*) #(vi 28586 eval withval="$withval" 28587 case ".$withval" in #(vi 28588 .NONE/*) 28589 @@ -18493,7 +19708,7 @@ 25261 28590 withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` 25262 28591 ;; 25263 28592 *) 25264 28593 - { { echo "$as_me:18496: error: expected a pathname, not \"$withval\"" >&5 25265 + { { echo "$as_me:19 562: error: expected a pathname, not \"$withval\"" >&528594 + { { echo "$as_me:19711: error: expected a pathname, not \"$withval\"" >&5 25266 28595 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} 25267 28596 { (exit 1); exit 1; }; } 25268 28597 ;; 25269 @@ -18502,10 +19 568,10 @@28598 @@ -18502,10 +19717,10 @@ 25270 28599 fi 25271 28600 ADA_OBJECTS="$withval" 25272 28601 25273 28602 -echo "$as_me:18505: result: $ADA_OBJECTS" >&5 25274 +echo "$as_me:19 571: result: $ADA_OBJECTS" >&528603 +echo "$as_me:19720: result: $ADA_OBJECTS" >&5 25275 28604 echo "${ECHO_T}$ADA_OBJECTS" >&6 25276 28605 25277 28606 -echo "$as_me:18508: checking if an Ada95 shared-library should be built" >&5 25278 +echo "$as_me:19 574: checking if an Ada95 shared-library should be built" >&528607 +echo "$as_me:19723: checking if an Ada95 shared-library should be built" >&5 25279 28608 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6 25280 28609 25281 28610 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given. 25282 @@ -18515,7 +19 581,7 @@28611 @@ -18515,7 +19730,7 @@ 25283 28612 else 25284 28613 with_ada_sharedlib=no 25285 28614 fi; 25286 28615 -echo "$as_me:18518: result: $with_ada_sharedlib" >&5 25287 +echo "$as_me:19 584: result: $with_ada_sharedlib" >&528616 +echo "$as_me:19733: result: $with_ada_sharedlib" >&5 25288 28617 echo "${ECHO_T}$with_ada_sharedlib" >&6 25289 28618 25290 28619 ADA_SHAREDLIB='lib$(LIB_NAME).so.1' 25291 @@ -18546,7 +19 612,7 @@28620 @@ -18546,7 +19761,7 @@ 25292 28621 ### chooses to split module lists into libraries. 25293 28622 ### 25294 28623 ### (see CF_LIB_RULES). 25295 28624 -echo "$as_me:18549: checking for library subsets" >&5 25296 +echo "$as_me:19 615: checking for library subsets" >&528625 +echo "$as_me:19764: checking for library subsets" >&5 25297 28626 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6 25298 28627 LIB_SUBSETS= 25299 28628 25300 @@ -18587,7 +19 653,7 @@28629 @@ -18587,7 +19802,7 @@ 25301 28630 test "$with_widec" = yes && LIB_SUBSETS="${LIB_SUBSETS}+widechar" 25302 28631 test "$with_ext_funcs" = yes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs" 25303 28632 25304 28633 -echo "$as_me:18590: result: $LIB_SUBSETS" >&5 25305 +echo "$as_me:19 656: result: $LIB_SUBSETS" >&528634 +echo "$as_me:19805: result: $LIB_SUBSETS" >&5 25306 28635 echo "${ECHO_T}$LIB_SUBSETS" >&6 25307 28636 25308 28637 ### Construct the list of include-directories to be generated 25309 @@ -18625,7 +19 691,7 @@28638 @@ -18625,7 +19840,7 @@ 25310 28639 fi 25311 28640 25312 28641 ### Build up pieces for makefile rules 25313 28642 -echo "$as_me:18628: checking default library suffix" >&5 25314 +echo "$as_me:19 694: checking default library suffix" >&528643 +echo "$as_me:19843: checking default library suffix" >&5 25315 28644 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6 25316 28645 25317 28646 case $DFT_LWR_MODEL in 25318 @@ -18636,10 +19 702,10 @@28647 @@ -18636,10 +19851,10 @@ 25319 28648 shared) DFT_ARG_SUFFIX='' ;; 25320 28649 esac 25321 28650 test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}" 25322 28651 -echo "$as_me:18639: result: $DFT_ARG_SUFFIX" >&5 25323 +echo "$as_me:19 705: result: $DFT_ARG_SUFFIX" >&528652 +echo "$as_me:19854: result: $DFT_ARG_SUFFIX" >&5 25324 28653 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6 25325 28654 25326 28655 -echo "$as_me:18642: checking default library-dependency suffix" >&5 25327 +echo "$as_me:19 708: checking default library-dependency suffix" >&528656 +echo "$as_me:19857: checking default library-dependency suffix" >&5 25328 28657 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6 25329 28658 25330 28659 case $DFT_LWR_MODEL in #(vi 25331 @@ -18661, 7 +19727,7@@28660 @@ -18661,11 +19876,11 @@ 25332 28661 ;; 25333 28662 shared) #(vi … … 25338 28667 DFT_DEP_SUFFIX=$DFT_LIB_SUFFIX 25339 28668 ;; 25340 @@ -18692,10 +19758,10 @@ 28669 - cygwin*) #(vi 28670 + cygwin*|mingw*) #(vi 28671 DFT_LIB_SUFFIX='.dll' 28672 DFT_DEP_SUFFIX='.dll.a' 28673 ;; 28674 @@ -18692,10 +19907,10 @@ 25341 28675 esac 25342 28676 test -n "$LIB_SUFFIX" && DFT_LIB_SUFFIX="${LIB_SUFFIX}${DFT_LIB_SUFFIX}" 25343 28677 test -n "$LIB_SUFFIX" && DFT_DEP_SUFFIX="${LIB_SUFFIX}${DFT_DEP_SUFFIX}" 25344 28678 -echo "$as_me:18695: result: $DFT_DEP_SUFFIX" >&5 25345 +echo "$as_me:19 761: result: $DFT_DEP_SUFFIX" >&528679 +echo "$as_me:19910: result: $DFT_DEP_SUFFIX" >&5 25346 28680 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6 25347 28681 25348 28682 -echo "$as_me:18698: checking default object directory" >&5 25349 +echo "$as_me:19 764: checking default object directory" >&528683 +echo "$as_me:19913: checking default object directory" >&5 25350 28684 echo $ECHO_N "checking default object directory... $ECHO_C" >&6 25351 28685 25352 28686 case $DFT_LWR_MODEL in 25353 @@ -18711,12 +19 777,12 @@28687 @@ -18711,12 +19926,12 @@ 25354 28688 DFT_OBJ_SUBDIR='obj_s' ;; 25355 28689 esac 25356 28690 esac 25357 28691 -echo "$as_me:18714: result: $DFT_OBJ_SUBDIR" >&5 25358 +echo "$as_me:19 780: result: $DFT_OBJ_SUBDIR" >&528692 +echo "$as_me:19929: result: $DFT_OBJ_SUBDIR" >&5 25359 28693 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6 25360 28694 … … 25362 28696 if test "$cf_with_cxx" = yes ; then 25363 28697 -echo "$as_me:18719: checking c++ library-dependency suffix" >&5 25364 +echo "$as_me:19 785: checking c++ library-dependency suffix" >&528698 +echo "$as_me:19934: checking c++ library-dependency suffix" >&5 25365 28699 echo $ECHO_N "checking c++ library-dependency suffix... $ECHO_C" >&6 25366 28700 if test "$with_libtool" != "no"; then 25367 28701 CXX_LIB_SUFFIX=$DFT_DEP_SUFFIX 25368 @@ -18741, 7 +19807,7@@28702 @@ -18741,11 +19956,11 @@ 25369 28703 ;; 25370 28704 shared) #(vi … … 25375 28709 CXX_DEP_SUFFIX=$CXX_LIB_SUFFIX 25376 28710 ;; 25377 @@ -18773,7 +19839,7 @@ 28711 - cygwin*) #(vi 28712 + cygwin*|mingw*) #(vi 28713 CXX_LIB_SUFFIX='.dll' 28714 CXX_DEP_SUFFIX='.dll.a' 28715 ;; 28716 @@ -18773,7 +19988,7 @@ 25378 28717 test -n "$LIB_SUFFIX" && CXX_LIB_SUFFIX="${LIB_SUFFIX}${CXX_LIB_SUFFIX}" 25379 28718 test -n "$LIB_SUFFIX" && CXX_DEP_SUFFIX="${LIB_SUFFIX}${CXX_DEP_SUFFIX}" 25380 28719 fi 25381 28720 -echo "$as_me:18776: result: $CXX_LIB_SUFFIX" >&5 25382 +echo "$as_me:19 842: result: $CXX_LIB_SUFFIX" >&528721 +echo "$as_me:19991: result: $CXX_LIB_SUFFIX" >&5 25383 28722 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6 25384 28723 25385 28724 fi 25386 @@ -18812,9 + 19878,11 @@28725 @@ -18812,9 +20027,11 @@ 25387 28726 TICS_DEP_SUFFIX="${TICS_NAME}${DFT_DEP_SUFFIX}" 25388 28727 TICS_LIB_SUFFIX="${TICS_NAME}${LIB_SUFFIX}" … … 25398 28737 25399 28738 if test "$with_termlib" != no ; then 25400 @@ -18837,14 + 19905,22 @@28739 @@ -18837,14 +20054,22 @@ 25401 28740 if test "$DFT_LWR_MODEL" = "libtool"; then 25402 28741 TEST_ARGS="${TEST_DEPS}" … … 25424 28763 fi 25425 28764 else 25426 @@ -18858,7 + 19934,8 @@28765 @@ -18858,7 +20083,8 @@ 25427 28766 TICS_LIST="$SHLIB_LIST" 25428 28767 fi … … 25434 28773 25435 28774 if test "$DFT_LWR_MODEL" = shared ; then 25436 @@ -18882,7 + 19959,7 @@28775 @@ -18882,7 +20108,7 @@ 25437 28776 fi 25438 28777 … … 25443 28782 case $DFT_LWR_MODEL in 25444 28783 normal|debug|profile) 25445 @@ -18900,7 + 19977,7 @@28784 @@ -18900,7 +20126,7 @@ 25446 28785 esac 25447 28786 else … … 25452 28791 LDFLAGS_SHARED=-bdynamic 25453 28792 ;; 25454 @@ -18927,19 +20 004,19 @@28793 @@ -18927,19 +20153,19 @@ 25455 28794 25456 28795 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED" 25457 28796 then 25458 28797 - echo "$as_me:18930: checking if linker supports switching between static/dynamic" >&5 25459 + echo "$as_me:20 007: checking if linker supports switching between static/dynamic" >&528798 + echo "$as_me:20156: checking if linker supports switching between static/dynamic" >&5 25460 28799 echo $ECHO_N "checking if linker supports switching between static/dynamic... $ECHO_C" >&6 25461 28800 … … 25463 28802 cat >conftest.$ac_ext <<EOF 25464 28803 -#line 18935 "configure" 25465 +#line 20 012"configure"28804 +#line 20161 "configure" 25466 28805 #include <stdio.h> 25467 28806 int cf_ldflags_static(FILE *fp) { return fflush(fp); } 25468 28807 EOF 25469 28808 - if { (eval echo "$as_me:18939: \"$ac_compile\"") >&5 25470 + if { (eval echo "$as_me:20 016: \"$ac_compile\"") >&528809 + if { (eval echo "$as_me:20165: \"$ac_compile\"") >&5 25471 28810 (eval $ac_compile) 2>&5 25472 28811 ac_status=$? 25473 28812 - echo "$as_me:18942: \$? = $ac_status" >&5
