Changeset 06b2d12
- Timestamp:
- Aug 27, 2012, 1:48:21 AM (12 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
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 1079 1396 - # 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 1109 1110 1425 -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 1171 1172 1499 -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