Changeset e35b80d
- Timestamp:
- Aug 17, 2009, 1:52:03 PM (15 years ago)
- Branches:
- debian
- Children:
- 9d12aa5
- Parents:
- 6672e8d (diff), 7fbbb27 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 6 added
- 1 deleted
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r484b14d r6b4469f 3 3 *.par 4 4 *~ 5 .#* 5 6 META.yml 6 7 Makefile 8 Makefile.old 7 9 TAGS 10 \#*# 8 11 aclocal.m4 9 12 autom4te.cache -
ChangeLog
r879e90dc r68f1afe 1 1.1.1 2 * Fix bogus errors 'subscribing to login messages'. -nelhage 3 * Correctly send Zephyr login notices at startup. -nelhage 4 * Fix compilation with Zephyr support. -alexmv 5 * Fix an issue with incoming Zephyrs being delayed. -asedeno 6 * Fix display of zpunt lines. -asedeno 7 * Handle invalid regular expressions better (fix a segfault). -nelhage 8 * Correctly handle zpunts with recipient %me%. -nelhage 9 * Always send outgoing Zephyrs in utf-8. -nelhage 10 * Fix documentation for 'zsig' and 'zisgproc'. -nelhage 11 * Fix personal replies on webzephyr. -geofft 12 * Fix two memory leaks formatting messages. -nelhage, andersk 13 * Fix Makefile on platforms with Solaris tar. -nelhage 14 1 15 1.1 2 16 * Support building with -fstack-protector. -hartmans -
Makefile.in
rf200413 r8e9acd2 133 133 ${INSTALL} -d ${DESTDIR}${datadir}/lib 134 134 ${INSTALL} -d ${DESTDIR}${datadir}/modules 135 tar -C perl/lib --exclude .svn -cf - . | tar -C ${DESTDIR}${datadir}/lib -xf -135 (cd perl/lib && tar --exclude .svn -cf - . ) | (cd ${DESTDIR}${datadir}/lib && tar -xf - ) 136 136 for i in $(PERL_MODULES); do \ 137 137 ${INSTALL_DATA} perl/modules/$$i/$$i.par ${DESTDIR}${datadir}/modules/$$i.par; \ -
aclocal.m4
rbddcaf1 r560b071 1 # generated automatically by aclocal 1.10. 1-*- Autoconf -*-1 # generated automatically by aclocal 1.10.2 -*- Autoconf -*- 2 2 3 3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, -
autogen.sh
- Property mode changed from 100644 to 100755
-
autom4te.cache/output.0
rbddcaf1 r560b071 1 1 @%:@! /bin/sh 2 2 @%:@ Guess values for system-dependent variables and create Makefiles. 3 @%:@ Generated by GNU Autoconf 2.6 1.3 @%:@ Generated by GNU Autoconf 2.63. 4 4 @%:@ 5 5 @%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 6 @%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.6 @%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 7 7 @%:@ This configure script is free software; the Free Software Foundation 8 8 @%:@ gives unlimited permission to copy, distribute and modify it. … … 16 16 emulate sh 17 17 NULLCMD=: 18 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which18 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 19 19 # is contrary to our usage. Disable this feature. 20 20 alias -g '${1+"$@"}'='"$@"' … … 38 38 as_cr_alnum=$as_cr_Letters$as_cr_digits 39 39 40 as_nl=' 41 ' 42 export as_nl 43 # Printing a long string crashes Solaris 7 /usr/bin/printf. 44 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 45 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 46 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 47 if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 48 as_echo='printf %s\n' 49 as_echo_n='printf %s' 50 else 51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 53 as_echo_n='/usr/ucb/echo -n' 54 else 55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 56 as_echo_n_body='eval 57 arg=$1; 58 case $arg in 59 *"$as_nl"*) 60 expr "X$arg" : "X\\(.*\\)$as_nl"; 61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 62 esac; 63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 64 ' 65 export as_echo_n_body 66 as_echo_n='sh -c $as_echo_n_body as_echo' 67 fi 68 export as_echo_body 69 as_echo='sh -c $as_echo_body as_echo' 70 fi 71 40 72 # The user is always right. 41 73 if test "${PATH_SEPARATOR+set}" != set; then 42 echo "#! /bin/sh" >conf$$.sh 43 echo "exit 0" >>conf$$.sh 44 chmod +x conf$$.sh 45 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 46 PATH_SEPARATOR=';' 47 else 48 PATH_SEPARATOR=: 49 fi 50 rm -f conf$$.sh 74 PATH_SEPARATOR=: 75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 77 PATH_SEPARATOR=';' 78 } 51 79 fi 52 80 … … 64 92 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 65 93 # splitting by setting IFS to empty value.) 66 as_nl='67 '68 94 IFS=" "" $as_nl" 69 95 … … 88 114 fi 89 115 if test ! -f "$as_myself"; then 90 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2116 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 91 117 { (exit 1); exit 1; } 92 118 fi … … 101 127 102 128 # NLS nuisances. 103 for as_var in \ 104 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 105 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 106 LC_TELEPHONE LC_TIME 107 do 108 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 109 eval $as_var=C; export $as_var 110 else 111 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 112 fi 113 done 129 LC_ALL=C 130 export LC_ALL 131 LANGUAGE=C 132 export LANGUAGE 114 133 115 134 # Required to use basename. … … 133 152 X"$0" : 'X\(//\)$' \| \ 134 153 X"$0" : 'X\(/\)' \| . 2>/dev/null || 135 echo X/"$0" |154 $as_echo X/"$0" | 136 155 sed '/^.*\/\([^/][^/]*\)\/*$/{ 137 156 s//\1/ … … 159 178 fi 160 179 161 if test $as_have_required = yes && 180 if test $as_have_required = yes && (eval ": 162 181 (as_func_return () { 163 182 (exit \$1) … … 241 260 emulate sh 242 261 NULLCMD=: 243 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which262 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 244 263 # is contrary to our usage. Disable this feature. 245 264 alias -g '${1+"$@"}'='"$@"' … … 262 281 emulate sh 263 282 NULLCMD=: 264 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which283 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 265 284 # is contrary to our usage. Disable this feature. 266 285 alias -g '${1+"$@"}'='"$@"' … … 342 361 if test "x$CONFIG_SHELL" != x; then 343 362 for as_var in BASH_ENV ENV 344 345 346 347 363 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 364 done 365 export CONFIG_SHELL 366 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 348 367 fi 349 368 … … 414 433 test \$exitcode = 0") || { 415 434 echo No shell found that supports shell functions. 416 echo Please tell autoconf@gnu.org about your system, 417 echo including any error possibly output before this 418 echo message 435 echo Please tell bug-autoconf@gnu.org about your system, 436 echo including any error possibly output before this message. 437 echo This can help us improve future autoconf versions. 438 echo Configuration will now proceed without shell functions. 419 439 } 420 440 … … 452 472 ' >$as_me.lineno && 453 473 chmod +x "$as_me.lineno" || 454 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2474 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 455 475 { (exit 1); exit 1; }; } 456 476 … … 480 500 ECHO_N='-n';; 481 501 esac 482 483 502 if expr a : '\(a\)' >/dev/null 2>&1 && 484 503 test "X`expr 00001 : '.*\(...\)'`" = X001; then … … 493 512 else 494 513 rm -f conf$$.dir 495 mkdir conf$$.dir 496 fi 497 echo >conf$$.file 498 if ln -s conf$$.file conf$$ 2>/dev/null; then 499 as_ln_s='ln -s' 500 # ... but there are two gotchas: 501 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 502 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 503 # In both cases, we have to default to `cp -p'. 504 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 514 mkdir conf$$.dir 2>/dev/null 515 fi 516 if (echo >conf$$.file) 2>/dev/null; then 517 if ln -s conf$$.file conf$$ 2>/dev/null; then 518 as_ln_s='ln -s' 519 # ... but there are two gotchas: 520 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 521 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 522 # In both cases, we have to default to `cp -p'. 523 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 524 as_ln_s='cp -p' 525 elif ln conf$$.file conf$$ 2>/dev/null; then 526 as_ln_s=ln 527 else 505 528 as_ln_s='cp -p' 506 elif ln conf$$.file conf$$ 2>/dev/null; then 507 as_ln_s=ln 529 fi 508 530 else 509 531 as_ln_s='cp -p' … … 530 552 eval sh -c '\'' 531 553 if test -d "$1"; then 532 554 test -d "$1/."; 533 555 else 534 556 case $1 in 535 557 -*)set "./$1";; 536 558 esac; 537 559 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in … … 614 636 #endif" 615 637 616 ac_subst_vars='SHELL 638 enable_option_checking=no 639 ac_subst_vars='LTLIBOBJS 640 LIB@&t@OBJS 641 subdirs 642 INSTALL_DATA 643 INSTALL_SCRIPT 644 INSTALL_PROGRAM 645 ATHSTATIC 646 XSUBPPFLAGS 647 XSUBPPDIR 648 GLIB_LIBS 649 GLIB_CFLAGS 650 PKG_CONFIG 651 EGREP 652 GREP 653 CPP 654 OBJEXT 655 EXEEXT 656 ac_ct_CC 657 CPPFLAGS 658 LDFLAGS 659 CFLAGS 660 CC 661 target_alias 662 host_alias 663 build_alias 664 LIBS 665 ECHO_T 666 ECHO_N 667 ECHO_C 668 DEFS 669 mandir 670 localedir 671 libdir 672 psdir 673 pdfdir 674 dvidir 675 htmldir 676 infodir 677 docdir 678 oldincludedir 679 includedir 680 localstatedir 681 sharedstatedir 682 sysconfdir 683 datadir 684 datarootdir 685 libexecdir 686 sbindir 687 bindir 688 program_transform_name 689 prefix 690 exec_prefix 691 PACKAGE_BUGREPORT 692 PACKAGE_STRING 693 PACKAGE_VERSION 694 PACKAGE_TARNAME 695 PACKAGE_NAME 617 696 PATH_SEPARATOR 618 PACKAGE_NAME 619 PACKAGE_TARNAME 620 PACKAGE_VERSION 621 PACKAGE_STRING 622 PACKAGE_BUGREPORT 623 exec_prefix 624 prefix 625 program_transform_name 626 bindir 627 sbindir 628 libexecdir 629 datarootdir 630 datadir 631 sysconfdir 632 sharedstatedir 633 localstatedir 634 includedir 635 oldincludedir 636 docdir 637 infodir 638 htmldir 639 dvidir 640 pdfdir 641 psdir 642 libdir 643 localedir 644 mandir 645 DEFS 646 ECHO_C 647 ECHO_N 648 ECHO_T 649 LIBS 650 build_alias 651 host_alias 652 target_alias 653 CC 654 CFLAGS 655 LDFLAGS 656 CPPFLAGS 657 ac_ct_CC 658 EXEEXT 659 OBJEXT 660 CPP 661 GREP 662 EGREP 663 PKG_CONFIG 664 GLIB_CFLAGS 665 GLIB_LIBS 666 XSUBPPDIR 667 XSUBPPFLAGS 668 ATHSTATIC 669 INSTALL_PROGRAM 670 INSTALL_SCRIPT 671 INSTALL_DATA 672 subdirs 673 LIB@&t@OBJS 674 LTLIBOBJS' 697 SHELL' 675 698 ac_subst_files='' 699 ac_user_opts=' 700 enable_option_checking 701 enable_athstatic 702 ' 676 703 ac_precious_vars='build_alias 677 704 host_alias … … 691 718 ac_init_help= 692 719 ac_init_version=false 720 ac_unrecognized_opts= 721 ac_unrecognized_sep= 693 722 # The variables have the same names as the options, with 694 723 # dashes changed to underlines. … … 789 818 790 819 -disable-* | --disable-*) 791 ac_ feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`820 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 792 821 # Reject names that are not valid shell variable names. 793 expr "x$ac_ feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&794 { echo "$as_me: error: invalid feature name: $ac_feature" >&2822 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 823 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 795 824 { (exit 1); exit 1; }; } 796 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 797 eval enable_$ac_feature=no ;; 825 ac_useropt_orig=$ac_useropt 826 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 827 case $ac_user_opts in 828 *" 829 "enable_$ac_useropt" 830 "*) ;; 831 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" 832 ac_unrecognized_sep=', ';; 833 esac 834 eval enable_$ac_useropt=no ;; 798 835 799 836 -docdir | --docdir | --docdi | --doc | --do) … … 808 845 809 846 -enable-* | --enable-*) 810 ac_ feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`847 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 811 848 # Reject names that are not valid shell variable names. 812 expr "x$ac_ feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&813 { echo "$as_me: error: invalid feature name: $ac_feature" >&2849 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 850 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 814 851 { (exit 1); exit 1; }; } 815 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 816 eval enable_$ac_feature=\$ac_optarg ;; 852 ac_useropt_orig=$ac_useropt 853 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 854 case $ac_user_opts in 855 *" 856 "enable_$ac_useropt" 857 "*) ;; 858 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" 859 ac_unrecognized_sep=', ';; 860 esac 861 eval enable_$ac_useropt=\$ac_optarg ;; 817 862 818 863 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ … … 1005 1050 1006 1051 -with-* | --with-*) 1007 ac_ package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`1052 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1008 1053 # Reject names that are not valid shell variable names. 1009 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1010 { echo "$as_me: error: invalid package name: $ac_package" >&21054 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1055 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1011 1056 { (exit 1); exit 1; }; } 1012 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1013 eval with_$ac_package=\$ac_optarg ;; 1057 ac_useropt_orig=$ac_useropt 1058 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1059 case $ac_user_opts in 1060 *" 1061 "with_$ac_useropt" 1062 "*) ;; 1063 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" 1064 ac_unrecognized_sep=', ';; 1065 esac 1066 eval with_$ac_useropt=\$ac_optarg ;; 1014 1067 1015 1068 -without-* | --without-*) 1016 ac_ package=`expr "x$ac_option" : 'x-*without-\(.*\)'`1069 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1017 1070 # Reject names that are not valid shell variable names. 1018 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1019 { echo "$as_me: error: invalid package name: $ac_package" >&21071 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1072 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1020 1073 { (exit 1); exit 1; }; } 1021 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1022 eval with_$ac_package=no ;; 1074 ac_useropt_orig=$ac_useropt 1075 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1076 case $ac_user_opts in 1077 *" 1078 "with_$ac_useropt" 1079 "*) ;; 1080 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" 1081 ac_unrecognized_sep=', ';; 1082 esac 1083 eval with_$ac_useropt=no ;; 1023 1084 1024 1085 --x) … … 1040 1101 x_libraries=$ac_optarg ;; 1041 1102 1042 -*) { echo "$as_me: error: unrecognized option: $ac_option1103 -*) { $as_echo "$as_me: error: unrecognized option: $ac_option 1043 1104 Try \`$0 --help' for more information." >&2 1044 1105 { (exit 1); exit 1; }; } … … 1049 1110 # Reject names that are not valid shell variable names. 1050 1111 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 1051 { echo "$as_me: error: invalid variable name: $ac_envvar" >&21112 { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1052 1113 { (exit 1); exit 1; }; } 1053 1114 eval $ac_envvar=\$ac_optarg … … 1056 1117 *) 1057 1118 # FIXME: should be removed in autoconf 3.0. 1058 echo "$as_me: WARNING: you should use --build, --host, --target" >&21119 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1059 1120 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1060 echo "$as_me: WARNING: invalid host type: $ac_option" >&21121 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1061 1122 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1062 1123 ;; … … 1067 1128 if test -n "$ac_prev"; then 1068 1129 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1069 { echo "$as_me: error: missing argument to $ac_option" >&21130 { $as_echo "$as_me: error: missing argument to $ac_option" >&2 1070 1131 { (exit 1); exit 1; }; } 1071 1132 fi 1072 1133 1073 # Be sure to have absolute directory names. 1134 if test -n "$ac_unrecognized_opts"; then 1135 case $enable_option_checking in 1136 no) ;; 1137 fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 1138 { (exit 1); exit 1; }; } ;; 1139 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1140 esac 1141 fi 1142 1143 # Check all directory arguments for consistency. 1074 1144 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1075 1145 datadir sysconfdir sharedstatedir localstatedir includedir \ … … 1078 1148 do 1079 1149 eval ac_val=\$$ac_var 1150 # Remove trailing slashes. 1151 case $ac_val in 1152 */ ) 1153 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` 1154 eval $ac_var=\$ac_val;; 1155 esac 1156 # Be sure to have absolute directory names. 1080 1157 case $ac_val in 1081 1158 [\\/$]* | ?:[\\/]* ) continue;; 1082 1159 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1083 1160 esac 1084 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&21161 { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1085 1162 { (exit 1); exit 1; }; } 1086 1163 done … … 1097 1174 if test "x$build_alias" = x; then 1098 1175 cross_compiling=maybe 1099 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.1176 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1100 1177 If a cross compiler is detected then cross compile mode will be used." >&2 1101 1178 elif test "x$build_alias" != "x$host_alias"; then … … 1113 1190 ac_ls_di=`ls -di .` && 1114 1191 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1115 { echo "$as_me: error: Working directory cannot be determined" >&21192 { $as_echo "$as_me: error: working directory cannot be determined" >&2 1116 1193 { (exit 1); exit 1; }; } 1117 1194 test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1118 { echo "$as_me: error: pwd does not report name of working directory" >&21195 { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 1119 1196 { (exit 1); exit 1; }; } 1120 1197 … … 1124 1201 ac_srcdir_defaulted=yes 1125 1202 # Try the directory containing this script, then the parent directory. 1126 ac_confdir=`$as_dirname -- "$ 0" ||1127 $as_expr X"$ 0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \1128 X"$ 0" : 'X\(//\)[^/]' \| \1129 X"$ 0" : 'X\(//\)$' \| \1130 X"$ 0" : 'X\(/\)' \| . 2>/dev/null ||1131 echo X"$0" |1203 ac_confdir=`$as_dirname -- "$as_myself" || 1204 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1205 X"$as_myself" : 'X\(//\)[^/]' \| \ 1206 X"$as_myself" : 'X\(//\)$' \| \ 1207 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || 1208 $as_echo X"$as_myself" | 1132 1209 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1133 1210 s//\1/ … … 1156 1233 if test ! -r "$srcdir/$ac_unique_file"; then 1157 1234 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1158 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&21235 { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1159 1236 { (exit 1); exit 1; }; } 1160 1237 fi 1161 1238 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1162 1239 ac_abs_confdir=`( 1163 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&21240 cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 1164 1241 { (exit 1); exit 1; }; } 1165 1242 pwd)` … … 1210 1287 Installation directories: 1211 1288 --prefix=PREFIX install architecture-independent files in PREFIX 1212 1289 [$ac_default_prefix] 1213 1290 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1214 1291 [PREFIX] 1215 1292 1216 1293 By default, \`make install' will install all the files in … … 1222 1299 1223 1300 Fine tuning of the installation directories: 1224 --bindir=DIR user executables [EPREFIX/bin]1225 --sbindir=DIR system admin executables [EPREFIX/sbin]1226 --libexecdir=DIR program executables [EPREFIX/libexec]1227 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]1228 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]1229 --localstatedir=DIR modifiable single-machine data [PREFIX/var]1230 --libdir=DIR object code libraries [EPREFIX/lib]1231 --includedir=DIR C header files [PREFIX/include]1232 --oldincludedir=DIR C header files for non-gcc [/usr/include]1233 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]1234 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]1235 --infodir=DIR info documentation [DATAROOTDIR/info]1236 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]1237 --mandir=DIR man documentation [DATAROOTDIR/man]1238 --docdir=DIR documentation root @<:@DATAROOTDIR/doc/PACKAGE@:>@1239 --htmldir=DIR html documentation [DOCDIR]1240 --dvidir=DIR dvi documentation [DOCDIR]1241 --pdfdir=DIR pdf documentation [DOCDIR]1242 --psdir=DIR ps documentation [DOCDIR]1301 --bindir=DIR user executables [EPREFIX/bin] 1302 --sbindir=DIR system admin executables [EPREFIX/sbin] 1303 --libexecdir=DIR program executables [EPREFIX/libexec] 1304 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1305 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1306 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1307 --libdir=DIR object code libraries [EPREFIX/lib] 1308 --includedir=DIR C header files [PREFIX/include] 1309 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1310 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1311 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1312 --infodir=DIR info documentation [DATAROOTDIR/info] 1313 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1314 --mandir=DIR man documentation [DATAROOTDIR/man] 1315 --docdir=DIR documentation root @<:@DATAROOTDIR/doc/PACKAGE@:>@ 1316 --htmldir=DIR html documentation [DOCDIR] 1317 --dvidir=DIR dvi documentation [DOCDIR] 1318 --pdfdir=DIR pdf documentation [DOCDIR] 1319 --psdir=DIR ps documentation [DOCDIR] 1243 1320 _ACEOF 1244 1321 … … 1252 1329 1253 1330 Optional Features: 1331 --disable-option-checking ignore unrecognized --enable/--with options 1254 1332 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1255 1333 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] … … 1279 1357 # If there are subdirs, report their specific --help. 1280 1358 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1281 test -d "$ac_dir" || continue 1359 test -d "$ac_dir" || 1360 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || 1361 continue 1282 1362 ac_builddir=. 1283 1363 … … 1285 1365 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1286 1366 *) 1287 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`1367 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 1288 1368 # A ".." for each directory in $ac_dir_suffix. 1289 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`1369 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 1290 1370 case $ac_top_builddir_sub in 1291 1371 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; … … 1323 1403 $SHELL "$ac_srcdir/configure" --help=recursive 1324 1404 else 1325 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&21405 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1326 1406 fi || ac_status=$? 1327 1407 cd "$ac_pwd" || { ac_status=$?; break; } … … 1333 1413 cat <<\_ACEOF 1334 1414 configure 1335 generated by GNU Autoconf 2.6 11415 generated by GNU Autoconf 2.63 1336 1416 1337 1417 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 1338 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.1418 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 1339 1419 This configure script is free software; the Free Software Foundation 1340 1420 gives unlimited permission to copy, distribute and modify it. … … 1347 1427 1348 1428 It was created by $as_me, which was 1349 generated by GNU Autoconf 2.6 1. Invocation command line was1429 generated by GNU Autoconf 2.63. Invocation command line was 1350 1430 1351 1431 $ $0 $@ … … 1383 1463 IFS=$as_save_IFS 1384 1464 test -z "$as_dir" && as_dir=. 1385 echo "PATH: $as_dir"1465 $as_echo "PATH: $as_dir" 1386 1466 done 1387 1467 IFS=$as_save_IFS … … 1418 1498 continue ;; 1419 1499 *\'*) 1420 ac_arg=` echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;1500 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1421 1501 esac 1422 1502 case $ac_pass in … … 1470 1550 *${as_nl}*) 1471 1551 case $ac_var in #( 1472 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&51473 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;1552 *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 1553 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 1474 1554 esac 1475 1555 case $ac_var in #( 1476 1556 _ | IFS | as_nl) ;; #( 1557 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 1477 1558 *) $as_unset $ac_var ;; 1478 1559 esac ;; … … 1504 1585 eval ac_val=\$$ac_var 1505 1586 case $ac_val in 1506 *\'\''*) ac_val=` echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;1587 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1507 1588 esac 1508 echo "$ac_var='\''$ac_val'\''"1589 $as_echo "$ac_var='\''$ac_val'\''" 1509 1590 done | sort 1510 1591 echo … … 1521 1602 eval ac_val=\$$ac_var 1522 1603 case $ac_val in 1523 *\'\''*) ac_val=` echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;1604 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1524 1605 esac 1525 echo "$ac_var='\''$ac_val'\''"1606 $as_echo "$ac_var='\''$ac_val'\''" 1526 1607 done | sort 1527 1608 echo … … 1539 1620 fi 1540 1621 test "$ac_signal" != 0 && 1541 echo "$as_me: caught signal $ac_signal"1542 echo "$as_me: exit $exit_status"1622 $as_echo "$as_me: caught signal $ac_signal" 1623 $as_echo "$as_me: exit $exit_status" 1543 1624 } >&5 1544 1625 rm -f core *.core core.conftest.* && … … 1582 1663 1583 1664 # Let the site file select an alternate cache file if it wants to. 1584 # Prefer explicitly selected file to automatically selected ones. 1665 # Prefer an explicitly selected file to automatically selected ones. 1666 ac_site_file1=NONE 1667 ac_site_file2=NONE 1585 1668 if test -n "$CONFIG_SITE"; then 1586 set x "$CONFIG_SITE"1669 ac_site_file1=$CONFIG_SITE 1587 1670 elif test "x$prefix" != xNONE; then 1588 set x "$prefix/share/config.site" "$prefix/etc/config.site"1589 else1590 set x "$ac_default_prefix/share/config.site" \ 1591 "$ac_default_prefix/etc/config.site" 1592 fi 1593 shift 1594 for ac_site_file 1671 ac_site_file1=$prefix/share/config.site 1672 ac_site_file2=$prefix/etc/config.site 1673 else 1674 ac_site_file1=$ac_default_prefix/share/config.site 1675 ac_site_file2=$ac_default_prefix/etc/config.site 1676 fi 1677 for ac_site_file in "$ac_site_file1" "$ac_site_file2" 1595 1678 do 1679 test "x$ac_site_file" = xNONE && continue 1596 1680 if test -r "$ac_site_file"; then 1597 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&51598 echo "$as_me: loading site script $ac_site_file" >&6;}1681 { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 1682 $as_echo "$as_me: loading site script $ac_site_file" >&6;} 1599 1683 sed 's/^/| /' "$ac_site_file" >&5 1600 1684 . "$ac_site_file" … … 1606 1690 # files actually), so we avoid doing that. 1607 1691 if test -f "$cache_file"; then 1608 { echo "$as_me:$LINENO: loading cache $cache_file" >&51609 echo "$as_me: loading cache $cache_file" >&6;}1692 { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 1693 $as_echo "$as_me: loading cache $cache_file" >&6;} 1610 1694 case $cache_file in 1611 1695 [\\/]* | ?:[\\/]* ) . "$cache_file";; … … 1614 1698 fi 1615 1699 else 1616 { echo "$as_me:$LINENO: creating cache $cache_file" >&51617 echo "$as_me: creating cache $cache_file" >&6;}1700 { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 1701 $as_echo "$as_me: creating cache $cache_file" >&6;} 1618 1702 >$cache_file 1619 1703 fi … … 1629 1713 case $ac_old_set,$ac_new_set in 1630 1714 set,) 1631 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&51632 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}1715 { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 1716 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 1633 1717 ac_cache_corrupted=: ;; 1634 1718 ,set) 1635 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&51636 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}1719 { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 1720 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 1637 1721 ac_cache_corrupted=: ;; 1638 1722 ,);; 1639 1723 *) 1640 1724 if test "x$ac_old_val" != "x$ac_new_val"; then 1641 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1642 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1643 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 1644 echo "$as_me: former value: $ac_old_val" >&2;} 1645 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 1646 echo "$as_me: current value: $ac_new_val" >&2;} 1647 ac_cache_corrupted=: 1725 # differences in whitespace do not lead to failure. 1726 ac_old_val_w=`echo x $ac_old_val` 1727 ac_new_val_w=`echo x $ac_new_val` 1728 if test "$ac_old_val_w" != "$ac_new_val_w"; then 1729 { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1730 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1731 ac_cache_corrupted=: 1732 else 1733 { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 1734 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} 1735 eval $ac_var=\$ac_old_val 1736 fi 1737 { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 1738 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} 1739 { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 1740 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} 1648 1741 fi;; 1649 1742 esac … … 1651 1744 if test "$ac_new_set" = set; then 1652 1745 case $ac_new_val in 1653 *\'*) ac_arg=$ac_var=` echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;1746 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1654 1747 *) ac_arg=$ac_var=$ac_new_val ;; 1655 1748 esac … … 1661 1754 done 1662 1755 if $ac_cache_corrupted; then 1663 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1664 echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1665 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1666 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1756 { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 1757 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 1758 { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1759 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1760 { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1761 $as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1667 1762 { (exit 1); exit 1; }; } 1668 1763 fi … … 1703 1798 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 1704 1799 set dummy ${ac_tool_prefix}gcc; ac_word=$2 1705 { echo "$as_me:$LINENO: checking for $ac_word" >&51706 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }1800 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 1801 $as_echo_n "checking for $ac_word... " >&6; } 1707 1802 if test "${ac_cv_prog_CC+set}" = set; then 1708 echo $ECHO_N "(cached) $ECHO_C" >&61803 $as_echo_n "(cached) " >&6 1709 1804 else 1710 1805 if test -n "$CC"; then … … 1719 1814 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1720 1815 ac_cv_prog_CC="${ac_tool_prefix}gcc" 1721 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&51816 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1722 1817 break 2 1723 1818 fi … … 1730 1825 CC=$ac_cv_prog_CC 1731 1826 if test -n "$CC"; then 1732 { echo "$as_me:$LINENO: result: $CC" >&51733 echo "${ECHO_T}$CC" >&6; }1734 else 1735 { echo "$as_me:$LINENO: result: no" >&51736 echo "${ECHO_T}no" >&6; }1827 { $as_echo "$as_me:$LINENO: result: $CC" >&5 1828 $as_echo "$CC" >&6; } 1829 else 1830 { $as_echo "$as_me:$LINENO: result: no" >&5 1831 $as_echo "no" >&6; } 1737 1832 fi 1738 1833 … … 1743 1838 # Extract the first word of "gcc", so it can be a program name with args. 1744 1839 set dummy gcc; ac_word=$2 1745 { echo "$as_me:$LINENO: checking for $ac_word" >&51746 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }1840 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 1841 $as_echo_n "checking for $ac_word... " >&6; } 1747 1842 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1748 echo $ECHO_N "(cached) $ECHO_C" >&61843 $as_echo_n "(cached) " >&6 1749 1844 else 1750 1845 if test -n "$ac_ct_CC"; then … … 1759 1854 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1760 1855 ac_cv_prog_ac_ct_CC="gcc" 1761 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&51856 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1762 1857 break 2 1763 1858 fi … … 1770 1865 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1771 1866 if test -n "$ac_ct_CC"; then 1772 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&51773 echo "${ECHO_T}$ac_ct_CC" >&6; }1774 else 1775 { echo "$as_me:$LINENO: result: no" >&51776 echo "${ECHO_T}no" >&6; }1867 { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 1868 $as_echo "$ac_ct_CC" >&6; } 1869 else 1870 { $as_echo "$as_me:$LINENO: result: no" >&5 1871 $as_echo "no" >&6; } 1777 1872 fi 1778 1873 … … 1782 1877 case $cross_compiling:$ac_tool_warned in 1783 1878 yes:) 1784 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 1785 whose name does not start with the host triplet. If you think this 1786 configuration is useful to you, please write to autoconf@gnu.org." >&5 1787 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 1788 whose name does not start with the host triplet. If you think this 1789 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 1879 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 1880 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 1790 1881 ac_tool_warned=yes ;; 1791 1882 esac … … 1800 1891 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 1801 1892 set dummy ${ac_tool_prefix}cc; ac_word=$2 1802 { echo "$as_me:$LINENO: checking for $ac_word" >&51803 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }1893 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 1894 $as_echo_n "checking for $ac_word... " >&6; } 1804 1895 if test "${ac_cv_prog_CC+set}" = set; then 1805 echo $ECHO_N "(cached) $ECHO_C" >&61896 $as_echo_n "(cached) " >&6 1806 1897 else 1807 1898 if test -n "$CC"; then … … 1816 1907 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1817 1908 ac_cv_prog_CC="${ac_tool_prefix}cc" 1818 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&51909 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1819 1910 break 2 1820 1911 fi … … 1827 1918 CC=$ac_cv_prog_CC 1828 1919 if test -n "$CC"; then 1829 { echo "$as_me:$LINENO: result: $CC" >&51830 echo "${ECHO_T}$CC" >&6; }1831 else 1832 { echo "$as_me:$LINENO: result: no" >&51833 echo "${ECHO_T}no" >&6; }1920 { $as_echo "$as_me:$LINENO: result: $CC" >&5 1921 $as_echo "$CC" >&6; } 1922 else 1923 { $as_echo "$as_me:$LINENO: result: no" >&5 1924 $as_echo "no" >&6; } 1834 1925 fi 1835 1926 … … 1840 1931 # Extract the first word of "cc", so it can be a program name with args. 1841 1932 set dummy cc; ac_word=$2 1842 { echo "$as_me:$LINENO: checking for $ac_word" >&51843 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }1933 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 1934 $as_echo_n "checking for $ac_word... " >&6; } 1844 1935 if test "${ac_cv_prog_CC+set}" = set; then 1845 echo $ECHO_N "(cached) $ECHO_C" >&61936 $as_echo_n "(cached) " >&6 1846 1937 else 1847 1938 if test -n "$CC"; then … … 1861 1952 fi 1862 1953 ac_cv_prog_CC="cc" 1863 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&51954 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1864 1955 break 2 1865 1956 fi … … 1884 1975 CC=$ac_cv_prog_CC 1885 1976 if test -n "$CC"; then 1886 { echo "$as_me:$LINENO: result: $CC" >&51887 echo "${ECHO_T}$CC" >&6; }1888 else 1889 { echo "$as_me:$LINENO: result: no" >&51890 echo "${ECHO_T}no" >&6; }1977 { $as_echo "$as_me:$LINENO: result: $CC" >&5 1978 $as_echo "$CC" >&6; } 1979 else 1980 { $as_echo "$as_me:$LINENO: result: no" >&5 1981 $as_echo "no" >&6; } 1891 1982 fi 1892 1983 … … 1899 1990 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 1900 1991 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 1901 { echo "$as_me:$LINENO: checking for $ac_word" >&51902 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }1992 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 1993 $as_echo_n "checking for $ac_word... " >&6; } 1903 1994 if test "${ac_cv_prog_CC+set}" = set; then 1904 echo $ECHO_N "(cached) $ECHO_C" >&61995 $as_echo_n "(cached) " >&6 1905 1996 else 1906 1997 if test -n "$CC"; then … … 1915 2006 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1916 2007 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 1917 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52008 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1918 2009 break 2 1919 2010 fi … … 1926 2017 CC=$ac_cv_prog_CC 1927 2018 if test -n "$CC"; then 1928 { echo "$as_me:$LINENO: result: $CC" >&51929 echo "${ECHO_T}$CC" >&6; }1930 else 1931 { echo "$as_me:$LINENO: result: no" >&51932 echo "${ECHO_T}no" >&6; }2019 { $as_echo "$as_me:$LINENO: result: $CC" >&5 2020 $as_echo "$CC" >&6; } 2021 else 2022 { $as_echo "$as_me:$LINENO: result: no" >&5 2023 $as_echo "no" >&6; } 1933 2024 fi 1934 2025 … … 1943 2034 # Extract the first word of "$ac_prog", so it can be a program name with args. 1944 2035 set dummy $ac_prog; ac_word=$2 1945 { echo "$as_me:$LINENO: checking for $ac_word" >&51946 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2036 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2037 $as_echo_n "checking for $ac_word... " >&6; } 1947 2038 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 1948 echo $ECHO_N "(cached) $ECHO_C" >&62039 $as_echo_n "(cached) " >&6 1949 2040 else 1950 2041 if test -n "$ac_ct_CC"; then … … 1959 2050 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1960 2051 ac_cv_prog_ac_ct_CC="$ac_prog" 1961 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52052 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1962 2053 break 2 1963 2054 fi … … 1970 2061 ac_ct_CC=$ac_cv_prog_ac_ct_CC 1971 2062 if test -n "$ac_ct_CC"; then 1972 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&51973 echo "${ECHO_T}$ac_ct_CC" >&6; }1974 else 1975 { echo "$as_me:$LINENO: result: no" >&51976 echo "${ECHO_T}no" >&6; }2063 { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 2064 $as_echo "$ac_ct_CC" >&6; } 2065 else 2066 { $as_echo "$as_me:$LINENO: result: no" >&5 2067 $as_echo "no" >&6; } 1977 2068 fi 1978 2069 … … 1986 2077 case $cross_compiling:$ac_tool_warned in 1987 2078 yes:) 1988 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 1989 whose name does not start with the host triplet. If you think this 1990 configuration is useful to you, please write to autoconf@gnu.org." >&5 1991 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 1992 whose name does not start with the host triplet. If you think this 1993 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2079 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 2080 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 1994 2081 ac_tool_warned=yes ;; 1995 2082 esac … … 2001 2088 2002 2089 2003 test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH 2090 test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2091 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2092 { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH 2004 2093 See \`config.log' for more details." >&5 2005 echo "$as_me: error: no acceptable C compiler found in \$PATH2094 $as_echo "$as_me: error: no acceptable C compiler found in \$PATH 2006 2095 See \`config.log' for more details." >&2;} 2007 { (exit 1); exit 1; }; } 2096 { (exit 1); exit 1; }; }; } 2008 2097 2009 2098 # Provide some information about the compiler. 2010 echo "$as_me:$LINENO: checking for C compiler version" >&5 2011 ac_compiler=`set X $ac_compile; echo $2` 2099 $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 2100 set X $ac_compile 2101 ac_compiler=$2 2012 2102 { (ac_try="$ac_compiler --version >&5" 2013 2103 case "(($ac_try" in … … 2015 2105 *) ac_try_echo=$ac_try;; 2016 2106 esac 2017 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2107 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2108 $as_echo "$ac_try_echo") >&5 2018 2109 (eval "$ac_compiler --version >&5") 2>&5 2019 2110 ac_status=$? 2020 echo "$as_me:$LINENO: \$? = $ac_status" >&52111 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2021 2112 (exit $ac_status); } 2022 2113 { (ac_try="$ac_compiler -v >&5" … … 2025 2116 *) ac_try_echo=$ac_try;; 2026 2117 esac 2027 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2118 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2119 $as_echo "$ac_try_echo") >&5 2028 2120 (eval "$ac_compiler -v >&5") 2>&5 2029 2121 ac_status=$? 2030 echo "$as_me:$LINENO: \$? = $ac_status" >&52122 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2031 2123 (exit $ac_status); } 2032 2124 { (ac_try="$ac_compiler -V >&5" … … 2035 2127 *) ac_try_echo=$ac_try;; 2036 2128 esac 2037 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2129 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2130 $as_echo "$ac_try_echo") >&5 2038 2131 (eval "$ac_compiler -V >&5") 2>&5 2039 2132 ac_status=$? 2040 echo "$as_me:$LINENO: \$? = $ac_status" >&52133 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2041 2134 (exit $ac_status); } 2042 2135 … … 2057 2150 _ACEOF 2058 2151 ac_clean_files_save=$ac_clean_files 2059 ac_clean_files="$ac_clean_files a.out a. exe b.out"2152 ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" 2060 2153 # Try to create an executable without -o first, disregard a.out. 2061 2154 # It will help us diagnose broken compilers, and finding out an intuition 2062 2155 # of exeext. 2063 { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 2064 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } 2065 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2066 # 2067 # List of possible output files, starting from the most likely. 2068 # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) 2069 # only as a last resort. b.out is created by i960 compilers. 2070 ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' 2071 # 2072 # The IRIX 6 linker writes into existing files which may not be 2073 # executable, retaining their permissions. Remove them first so a 2074 # subsequent execution test works. 2156 { $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 2157 $as_echo_n "checking for C compiler default output file name... " >&6; } 2158 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2159 2160 # The possible output files: 2161 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" 2162 2075 2163 ac_rmfiles= 2076 2164 for ac_file in $ac_files 2077 2165 do 2078 2166 case $ac_file in 2079 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj ) ;;2167 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2080 2168 * ) ac_rmfiles="$ac_rmfiles $ac_file";; 2081 2169 esac … … 2088 2176 *) ac_try_echo=$ac_try;; 2089 2177 esac 2090 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2178 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2179 $as_echo "$ac_try_echo") >&5 2091 2180 (eval "$ac_link_default") 2>&5 2092 2181 ac_status=$? 2093 echo "$as_me:$LINENO: \$? = $ac_status" >&52182 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2094 2183 (exit $ac_status); }; then 2095 2184 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. … … 2102 2191 test -f "$ac_file" || continue 2103 2192 case $ac_file in 2104 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj )2193 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) 2105 2194 ;; 2106 2195 [ab].out ) … … 2129 2218 fi 2130 2219 2131 { echo "$as_me:$LINENO: result: $ac_file" >&52132 echo "${ECHO_T}$ac_file" >&6; }2220 { $as_echo "$as_me:$LINENO: result: $ac_file" >&5 2221 $as_echo "$ac_file" >&6; } 2133 2222 if test -z "$ac_file"; then 2134 echo "$as_me: failed program was:" >&52223 $as_echo "$as_me: failed program was:" >&5 2135 2224 sed 's/^/| /' conftest.$ac_ext >&5 2136 2225 2137 { { echo "$as_me:$LINENO: error: C compiler cannot create executables 2226 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2227 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2228 { { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables 2138 2229 See \`config.log' for more details." >&5 2139 echo "$as_me: error: C compiler cannot create executables2230 $as_echo "$as_me: error: C compiler cannot create executables 2140 2231 See \`config.log' for more details." >&2;} 2141 { (exit 77); exit 77; }; } 2232 { (exit 77); exit 77; }; }; } 2142 2233 fi 2143 2234 … … 2146 2237 # Check that the compiler produces executables we can run. If not, either 2147 2238 # the compiler is broken, or we cross compile. 2148 { echo "$as_me:$LINENO: checking whether the C compiler works" >&52149 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }2239 { $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 2240 $as_echo_n "checking whether the C compiler works... " >&6; } 2150 2241 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 2151 2242 # If not cross compiling, check that we can run a simple program. … … 2156 2247 *) ac_try_echo=$ac_try;; 2157 2248 esac 2158 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2249 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2250 $as_echo "$ac_try_echo") >&5 2159 2251 (eval "$ac_try") 2>&5 2160 2252 ac_status=$? 2161 echo "$as_me:$LINENO: \$? = $ac_status" >&52253 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2162 2254 (exit $ac_status); }; }; then 2163 2255 cross_compiling=no … … 2166 2258 cross_compiling=yes 2167 2259 else 2168 { { echo "$as_me:$LINENO: error: cannot run C compiled programs. 2260 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2261 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2262 { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. 2169 2263 If you meant to cross compile, use \`--host'. 2170 2264 See \`config.log' for more details." >&5 2171 echo "$as_me: error: cannot run C compiled programs.2265 $as_echo "$as_me: error: cannot run C compiled programs. 2172 2266 If you meant to cross compile, use \`--host'. 2173 2267 See \`config.log' for more details." >&2;} 2174 { (exit 1); exit 1; }; } 2268 { (exit 1); exit 1; }; }; } 2175 2269 fi 2176 2270 fi 2177 2271 fi 2178 { echo "$as_me:$LINENO: result: yes" >&52179 echo "${ECHO_T}yes" >&6; }2180 2181 rm -f a.outa.exe conftest$ac_cv_exeext b.out2272 { $as_echo "$as_me:$LINENO: result: yes" >&5 2273 $as_echo "yes" >&6; } 2274 2275 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out 2182 2276 ac_clean_files=$ac_clean_files_save 2183 2277 # Check that the compiler produces executables we can run. If not, either 2184 2278 # the compiler is broken, or we cross compile. 2185 { echo "$as_me:$LINENO: checking whether we are cross compiling" >&52186 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }2187 { echo "$as_me:$LINENO: result: $cross_compiling" >&52188 echo "${ECHO_T}$cross_compiling" >&6; }2189 2190 { echo "$as_me:$LINENO: checking for suffix of executables" >&52191 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }2279 { $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 2280 $as_echo_n "checking whether we are cross compiling... " >&6; } 2281 { $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 2282 $as_echo "$cross_compiling" >&6; } 2283 2284 { $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 2285 $as_echo_n "checking for suffix of executables... " >&6; } 2192 2286 if { (ac_try="$ac_link" 2193 2287 case "(($ac_try" in … … 2195 2289 *) ac_try_echo=$ac_try;; 2196 2290 esac 2197 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2291 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2292 $as_echo "$ac_try_echo") >&5 2198 2293 (eval "$ac_link") 2>&5 2199 2294 ac_status=$? 2200 echo "$as_me:$LINENO: \$? = $ac_status" >&52295 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2201 2296 (exit $ac_status); }; then 2202 2297 # If both `conftest.exe' and `conftest' are `present' (well, observable) … … 2207 2302 test -f "$ac_file" || continue 2208 2303 case $ac_file in 2209 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj ) ;;2304 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2210 2305 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2211 2306 break;; … … 2214 2309 done 2215 2310 else 2216 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link 2311 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2312 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2313 { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link 2217 2314 See \`config.log' for more details." >&5 2218 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link2315 $as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link 2219 2316 See \`config.log' for more details." >&2;} 2220 { (exit 1); exit 1; }; } 2317 { (exit 1); exit 1; }; }; } 2221 2318 fi 2222 2319 2223 2320 rm -f conftest$ac_cv_exeext 2224 { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&52225 echo "${ECHO_T}$ac_cv_exeext" >&6; }2321 { $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 2322 $as_echo "$ac_cv_exeext" >&6; } 2226 2323 2227 2324 rm -f conftest.$ac_ext 2228 2325 EXEEXT=$ac_cv_exeext 2229 2326 ac_exeext=$EXEEXT 2230 { echo "$as_me:$LINENO: checking for suffix of object files" >&52231 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }2327 { $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 2328 $as_echo_n "checking for suffix of object files... " >&6; } 2232 2329 if test "${ac_cv_objext+set}" = set; then 2233 echo $ECHO_N "(cached) $ECHO_C" >&62330 $as_echo_n "(cached) " >&6 2234 2331 else 2235 2332 cat >conftest.$ac_ext <<_ACEOF … … 2254 2351 *) ac_try_echo=$ac_try;; 2255 2352 esac 2256 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2353 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2354 $as_echo "$ac_try_echo") >&5 2257 2355 (eval "$ac_compile") 2>&5 2258 2356 ac_status=$? 2259 echo "$as_me:$LINENO: \$? = $ac_status" >&52357 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2260 2358 (exit $ac_status); }; then 2261 2359 for ac_file in conftest.o conftest.obj conftest.*; do 2262 2360 test -f "$ac_file" || continue; 2263 2361 case $ac_file in 2264 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;2362 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; 2265 2363 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 2266 2364 break;; … … 2268 2366 done 2269 2367 else 2270 echo "$as_me: failed program was:" >&52368 $as_echo "$as_me: failed program was:" >&5 2271 2369 sed 's/^/| /' conftest.$ac_ext >&5 2272 2370 2273 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile 2371 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2372 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2373 { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile 2274 2374 See \`config.log' for more details." >&5 2275 echo "$as_me: error: cannot compute suffix of object files: cannot compile2375 $as_echo "$as_me: error: cannot compute suffix of object files: cannot compile 2276 2376 See \`config.log' for more details." >&2;} 2277 { (exit 1); exit 1; }; } 2377 { (exit 1); exit 1; }; }; } 2278 2378 fi 2279 2379 2280 2380 rm -f conftest.$ac_cv_objext conftest.$ac_ext 2281 2381 fi 2282 { echo "$as_me:$LINENO: result: $ac_cv_objext" >&52283 echo "${ECHO_T}$ac_cv_objext" >&6; }2382 { $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 2383 $as_echo "$ac_cv_objext" >&6; } 2284 2384 OBJEXT=$ac_cv_objext 2285 2385 ac_objext=$OBJEXT 2286 { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&52287 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }2386 { $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 2387 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 2288 2388 if test "${ac_cv_c_compiler_gnu+set}" = set; then 2289 echo $ECHO_N "(cached) $ECHO_C" >&62389 $as_echo_n "(cached) " >&6 2290 2390 else 2291 2391 cat >conftest.$ac_ext <<_ACEOF … … 2313 2413 *) ac_try_echo=$ac_try;; 2314 2414 esac 2315 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2415 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2416 $as_echo "$ac_try_echo") >&5 2316 2417 (eval "$ac_compile") 2>conftest.er1 2317 2418 ac_status=$? … … 2319 2420 rm -f conftest.er1 2320 2421 cat conftest.err >&5 2321 echo "$as_me:$LINENO: \$? = $ac_status" >&52422 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2322 2423 (exit $ac_status); } && { 2323 2424 test -z "$ac_c_werror_flag" || … … 2326 2427 ac_compiler_gnu=yes 2327 2428 else 2328 echo "$as_me: failed program was:" >&52429 $as_echo "$as_me: failed program was:" >&5 2329 2430 sed 's/^/| /' conftest.$ac_ext >&5 2330 2431 … … 2336 2437 2337 2438 fi 2338 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 2339 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } 2340 GCC=`test $ac_compiler_gnu = yes && echo yes` 2439 { $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 2440 $as_echo "$ac_cv_c_compiler_gnu" >&6; } 2441 if test $ac_compiler_gnu = yes; then 2442 GCC=yes 2443 else 2444 GCC= 2445 fi 2341 2446 ac_test_CFLAGS=${CFLAGS+set} 2342 2447 ac_save_CFLAGS=$CFLAGS 2343 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&52344 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }2448 { $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 2449 $as_echo_n "checking whether $CC accepts -g... " >&6; } 2345 2450 if test "${ac_cv_prog_cc_g+set}" = set; then 2346 echo $ECHO_N "(cached) $ECHO_C" >&62451 $as_echo_n "(cached) " >&6 2347 2452 else 2348 2453 ac_save_c_werror_flag=$ac_c_werror_flag … … 2371 2476 *) ac_try_echo=$ac_try;; 2372 2477 esac 2373 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2478 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2479 $as_echo "$ac_try_echo") >&5 2374 2480 (eval "$ac_compile") 2>conftest.er1 2375 2481 ac_status=$? … … 2377 2483 rm -f conftest.er1 2378 2484 cat conftest.err >&5 2379 echo "$as_me:$LINENO: \$? = $ac_status" >&52485 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2380 2486 (exit $ac_status); } && { 2381 2487 test -z "$ac_c_werror_flag" || … … 2384 2490 ac_cv_prog_cc_g=yes 2385 2491 else 2386 echo "$as_me: failed program was:" >&52492 $as_echo "$as_me: failed program was:" >&5 2387 2493 sed 's/^/| /' conftest.$ac_ext >&5 2388 2494 … … 2409 2515 *) ac_try_echo=$ac_try;; 2410 2516 esac 2411 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2517 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2518 $as_echo "$ac_try_echo") >&5 2412 2519 (eval "$ac_compile") 2>conftest.er1 2413 2520 ac_status=$? … … 2415 2522 rm -f conftest.er1 2416 2523 cat conftest.err >&5 2417 echo "$as_me:$LINENO: \$? = $ac_status" >&52524 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2418 2525 (exit $ac_status); } && { 2419 2526 test -z "$ac_c_werror_flag" || … … 2422 2529 : 2423 2530 else 2424 echo "$as_me: failed program was:" >&52531 $as_echo "$as_me: failed program was:" >&5 2425 2532 sed 's/^/| /' conftest.$ac_ext >&5 2426 2533 … … 2448 2555 *) ac_try_echo=$ac_try;; 2449 2556 esac 2450 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2557 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2558 $as_echo "$ac_try_echo") >&5 2451 2559 (eval "$ac_compile") 2>conftest.er1 2452 2560 ac_status=$? … … 2454 2562 rm -f conftest.er1 2455 2563 cat conftest.err >&5 2456 echo "$as_me:$LINENO: \$? = $ac_status" >&52564 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2457 2565 (exit $ac_status); } && { 2458 2566 test -z "$ac_c_werror_flag" || … … 2461 2569 ac_cv_prog_cc_g=yes 2462 2570 else 2463 echo "$as_me: failed program was:" >&52571 $as_echo "$as_me: failed program was:" >&5 2464 2572 sed 's/^/| /' conftest.$ac_ext >&5 2465 2573 … … 2476 2584 ac_c_werror_flag=$ac_save_c_werror_flag 2477 2585 fi 2478 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&52479 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }2586 { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 2587 $as_echo "$ac_cv_prog_cc_g" >&6; } 2480 2588 if test "$ac_test_CFLAGS" = set; then 2481 2589 CFLAGS=$ac_save_CFLAGS … … 2493 2601 fi 2494 2602 fi 2495 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&52496 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }2603 { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 2604 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 2497 2605 if test "${ac_cv_prog_cc_c89+set}" = set; then 2498 echo $ECHO_N "(cached) $ECHO_C" >&62606 $as_echo_n "(cached) " >&6 2499 2607 else 2500 2608 ac_cv_prog_cc_c89=no … … 2567 2675 *) ac_try_echo=$ac_try;; 2568 2676 esac 2569 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2677 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2678 $as_echo "$ac_try_echo") >&5 2570 2679 (eval "$ac_compile") 2>conftest.er1 2571 2680 ac_status=$? … … 2573 2682 rm -f conftest.er1 2574 2683 cat conftest.err >&5 2575 echo "$as_me:$LINENO: \$? = $ac_status" >&52684 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2576 2685 (exit $ac_status); } && { 2577 2686 test -z "$ac_c_werror_flag" || … … 2580 2689 ac_cv_prog_cc_c89=$ac_arg 2581 2690 else 2582 echo "$as_me: failed program was:" >&52691 $as_echo "$as_me: failed program was:" >&5 2583 2692 sed 's/^/| /' conftest.$ac_ext >&5 2584 2693 … … 2596 2705 case "x$ac_cv_prog_cc_c89" in 2597 2706 x) 2598 { echo "$as_me:$LINENO: result: none needed" >&52599 echo "${ECHO_T}none needed" >&6; } ;;2707 { $as_echo "$as_me:$LINENO: result: none needed" >&5 2708 $as_echo "none needed" >&6; } ;; 2600 2709 xno) 2601 { echo "$as_me:$LINENO: result: unsupported" >&52602 echo "${ECHO_T}unsupported" >&6; } ;;2710 { $as_echo "$as_me:$LINENO: result: unsupported" >&5 2711 $as_echo "unsupported" >&6; } ;; 2603 2712 *) 2604 2713 CC="$CC $ac_cv_prog_cc_c89" 2605 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&52606 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;2714 { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 2715 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; 2607 2716 esac 2608 2717 … … 2619 2728 fi 2620 2729 2621 { echo "$as_me:$LINENO: checking for /usr/athena/include" >&52622 echo $ECHO_N "checking for /usr/athena/include... $ECHO_C" >&6; }2730 { $as_echo "$as_me:$LINENO: checking for /usr/athena/include" >&5 2731 $as_echo_n "checking for /usr/athena/include... " >&6; } 2623 2732 if test -d /usr/athena/include; then 2624 2733 CFLAGS=${CFLAGS}\ -I/usr/athena/include 2625 2734 CPPFLAGS=${CPPFLAGS}\ -I/usr/athena/include 2626 { echo "$as_me:$LINENO: result: yes" >&52627 echo "${ECHO_T}yes" >&6; }2628 else 2629 { echo "$as_me:$LINENO: result: no" >&52630 echo "${ECHO_T}no" >&6; }2631 fi 2632 { echo "$as_me:$LINENO: checking for /usr/athena/lib" >&52633 echo $ECHO_N "checking for /usr/athena/lib... $ECHO_C" >&6; }2735 { $as_echo "$as_me:$LINENO: result: yes" >&5 2736 $as_echo "yes" >&6; } 2737 else 2738 { $as_echo "$as_me:$LINENO: result: no" >&5 2739 $as_echo "no" >&6; } 2740 fi 2741 { $as_echo "$as_me:$LINENO: checking for /usr/athena/lib" >&5 2742 $as_echo_n "checking for /usr/athena/lib... " >&6; } 2634 2743 if test -d /usr/athena/lib; then 2635 2744 LDFLAGS=${LDFLAGS}\ -L/usr/athena/lib 2636 { echo "$as_me:$LINENO: result: yes" >&52637 echo "${ECHO_T}yes" >&6; }2638 else 2639 { echo "$as_me:$LINENO: result: no" >&52640 echo "${ECHO_T}no" >&6; }2641 fi 2642 2643 { echo "$as_me:$LINENO: checking for kerberosIV" >&52644 echo $ECHO_N "checking for kerberosIV... $ECHO_C" >&6; }2745 { $as_echo "$as_me:$LINENO: result: yes" >&5 2746 $as_echo "yes" >&6; } 2747 else 2748 { $as_echo "$as_me:$LINENO: result: no" >&5 2749 $as_echo "no" >&6; } 2750 fi 2751 2752 { $as_echo "$as_me:$LINENO: checking for kerberosIV" >&5 2753 $as_echo_n "checking for kerberosIV... " >&6; } 2645 2754 if test -d /usr/include/kerberosIV; then 2646 2755 CFLAGS=${CFLAGS}\ -I/usr/include/kerberosIV 2647 2756 CPPFLAGS=${CPPFLAGS}\ -I/usr/include/kerberosIV 2648 { echo "$as_me:$LINENO: result: yes" >&52649 echo "${ECHO_T}yes" >&6; }2757 { $as_echo "$as_me:$LINENO: result: yes" >&5 2758 $as_echo "yes" >&6; } 2650 2759 elif test -d /usr/local/include/kerberosIV; then 2651 2760 CFLAGS=${CFLAGS}\ -I/usr/local/include/kerberosIV 2652 2761 CPPFLAGS=${CPPFLAGS}\ -I/usr/local/include/kerberosIV 2653 { echo "$as_me:$LINENO: result: yes" >&52654 echo "${ECHO_T}yes" >&6; }2762 { $as_echo "$as_me:$LINENO: result: yes" >&5 2763 $as_echo "yes" >&6; } 2655 2764 elif test -d /usr/include/openssl; then 2656 2765 CFLAGS=${CFLAGS}\ -I/usr/include/openssl 2657 2766 CPPFLAGS=${CPPFLAGS}\ -I/usr/include/openssl 2658 { echo "$as_me:$LINENO: result: OpenSSL DES found instead" >&52659 echo "${ECHO_T}OpenSSL DES found instead" >&6; }2660 else 2661 { echo "$as_me:$LINENO: result: no" >&52662 echo "${ECHO_T}no" >&6; }2767 { $as_echo "$as_me:$LINENO: result: OpenSSL DES found instead" >&5 2768 $as_echo "OpenSSL DES found instead" >&6; } 2769 else 2770 { $as_echo "$as_me:$LINENO: result: no" >&5 2771 $as_echo "no" >&6; } 2663 2772 fi 2664 2773 PROTECT_CFLAGS=${PROTECT_CFLAGS-"-fstack-protector"} 2665 2774 SAVE_CFLAGS=$CFLAGS 2666 2775 CFLAGS="$CFLAGS $PROTECT_CFLAGS" 2667 { echo "$as_me:$LINENO: checking whether protection cflags work" >&52668 echo $ECHO_N "checking whether protection cflags work... $ECHO_C" >&6; }2776 { $as_echo "$as_me:$LINENO: checking whether protection cflags work" >&5 2777 $as_echo_n "checking whether protection cflags work... " >&6; } 2669 2778 2670 2779 cat >conftest.$ac_ext <<_ACEOF … … 2677 2786 *) ac_try_echo=$ac_try;; 2678 2787 esac 2679 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2788 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2789 $as_echo "$ac_try_echo") >&5 2680 2790 (eval "$ac_compile") 2>conftest.er1 2681 2791 ac_status=$? … … 2683 2793 rm -f conftest.er1 2684 2794 cat conftest.err >&5 2685 echo "$as_me:$LINENO: \$? = $ac_status" >&52795 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2686 2796 (exit $ac_status); } && { 2687 2797 test -z "$ac_c_werror_flag" || 2688 2798 test ! -s conftest.err 2689 2799 } && test -s conftest.$ac_objext; then 2690 { echo "$as_me:$LINENO: result: yes" >&52691 echo "${ECHO_T}yes" >&6; }2692 else 2693 echo "$as_me: failed program was:" >&52800 { $as_echo "$as_me:$LINENO: result: yes" >&5 2801 $as_echo "yes" >&6; } 2802 else 2803 $as_echo "$as_me: failed program was:" >&5 2694 2804 sed 's/^/| /' conftest.$ac_ext >&5 2695 2805 2696 { echo "$as_me:$LINENO: result: no" >&52697 echo "${ECHO_T}no" >&6; }2806 { $as_echo "$as_me:$LINENO: result: no" >&5 2807 $as_echo "no" >&6; } 2698 2808 CFLAGS=$SAVE_CFLAGS 2699 2809 fi … … 2703 2813 2704 2814 2705 { echo "$as_me:$LINENO: checking for __stack_chk_guard in -lssp" >&52706 echo $ECHO_N "checking for __stack_chk_guard in -lssp... $ECHO_C" >&6; }2815 { $as_echo "$as_me:$LINENO: checking for __stack_chk_guard in -lssp" >&5 2816 $as_echo_n "checking for __stack_chk_guard in -lssp... " >&6; } 2707 2817 if test "${ac_cv_lib_ssp___stack_chk_guard+set}" = set; then 2708 echo $ECHO_N "(cached) $ECHO_C" >&62818 $as_echo_n "(cached) " >&6 2709 2819 else 2710 2820 ac_check_lib_save_LIBS=$LIBS … … 2738 2848 *) ac_try_echo=$ac_try;; 2739 2849 esac 2740 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2850 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2851 $as_echo "$ac_try_echo") >&5 2741 2852 (eval "$ac_link") 2>conftest.er1 2742 2853 ac_status=$? … … 2744 2855 rm -f conftest.er1 2745 2856 cat conftest.err >&5 2746 echo "$as_me:$LINENO: \$? = $ac_status" >&52857 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2747 2858 (exit $ac_status); } && { 2748 2859 test -z "$ac_c_werror_flag" || 2749 2860 test ! -s conftest.err 2750 } && test -s conftest$ac_exeext && 2751 $as_test_x conftest$ac_exeext; then 2861 } && test -s conftest$ac_exeext && { 2862 test "$cross_compiling" = yes || 2863 $as_test_x conftest$ac_exeext 2864 }; then 2752 2865 ac_cv_lib_ssp___stack_chk_guard=yes 2753 2866 else 2754 echo "$as_me: failed program was:" >&52867 $as_echo "$as_me: failed program was:" >&5 2755 2868 sed 's/^/| /' conftest.$ac_ext >&5 2756 2869 … … 2758 2871 fi 2759 2872 2873 rm -rf conftest.dSYM 2760 2874 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2761 2875 conftest$ac_exeext conftest.$ac_ext 2762 2876 LIBS=$ac_check_lib_save_LIBS 2763 2877 fi 2764 { echo "$as_me:$LINENO: result: $ac_cv_lib_ssp___stack_chk_guard" >&52765 echo "${ECHO_T}$ac_cv_lib_ssp___stack_chk_guard" >&6; }2766 if test $ac_cv_lib_ssp___stack_chk_guard =yes; then2878 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ssp___stack_chk_guard" >&5 2879 $as_echo "$ac_cv_lib_ssp___stack_chk_guard" >&6; } 2880 if test "x$ac_cv_lib_ssp___stack_chk_guard" = x""yes; then 2767 2881 cat >>confdefs.h <<_ACEOF 2768 2882 @%:@define HAVE_LIBSSP 1 … … 2774 2888 2775 2889 2776 { echo "$as_me:$LINENO: checking for initscr in -lncursesw" >&52777 echo $ECHO_N "checking for initscr in -lncursesw... $ECHO_C" >&6; }2890 { $as_echo "$as_me:$LINENO: checking for initscr in -lncursesw" >&5 2891 $as_echo_n "checking for initscr in -lncursesw... " >&6; } 2778 2892 if test "${ac_cv_lib_ncursesw_initscr+set}" = set; then 2779 echo $ECHO_N "(cached) $ECHO_C" >&62893 $as_echo_n "(cached) " >&6 2780 2894 else 2781 2895 ac_check_lib_save_LIBS=$LIBS … … 2809 2923 *) ac_try_echo=$ac_try;; 2810 2924 esac 2811 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2925 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2926 $as_echo "$ac_try_echo") >&5 2812 2927 (eval "$ac_link") 2>conftest.er1 2813 2928 ac_status=$? … … 2815 2930 rm -f conftest.er1 2816 2931 cat conftest.err >&5 2817 echo "$as_me:$LINENO: \$? = $ac_status" >&52932 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2818 2933 (exit $ac_status); } && { 2819 2934 test -z "$ac_c_werror_flag" || 2820 2935 test ! -s conftest.err 2821 } && test -s conftest$ac_exeext && 2822 $as_test_x conftest$ac_exeext; then 2936 } && test -s conftest$ac_exeext && { 2937 test "$cross_compiling" = yes || 2938 $as_test_x conftest$ac_exeext 2939 }; then 2823 2940 ac_cv_lib_ncursesw_initscr=yes 2824 2941 else 2825 echo "$as_me: failed program was:" >&52942 $as_echo "$as_me: failed program was:" >&5 2826 2943 sed 's/^/| /' conftest.$ac_ext >&5 2827 2944 … … 2829 2946 fi 2830 2947 2948 rm -rf conftest.dSYM 2831 2949 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2832 2950 conftest$ac_exeext conftest.$ac_ext 2833 2951 LIBS=$ac_check_lib_save_LIBS 2834 2952 fi 2835 { echo "$as_me:$LINENO: result: $ac_cv_lib_ncursesw_initscr" >&52836 echo "${ECHO_T}$ac_cv_lib_ncursesw_initscr" >&6; }2837 if test $ac_cv_lib_ncursesw_initscr =yes; then2953 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_ncursesw_initscr" >&5 2954 $as_echo "$ac_cv_lib_ncursesw_initscr" >&6; } 2955 if test "x$ac_cv_lib_ncursesw_initscr" = x""yes; then 2838 2956 cat >>confdefs.h <<_ACEOF 2839 2957 @%:@define HAVE_LIBNCURSESW 1 … … 2843 2961 2844 2962 else 2845 { { echo "$as_me:$LINENO: error: No libncursesw found." >&52846 echo "$as_me: error: No libncursesw found." >&2;}2963 { { $as_echo "$as_me:$LINENO: error: No libncursesw found." >&5 2964 $as_echo "$as_me: error: No libncursesw found." >&2;} 2847 2965 { (exit 1); exit 1; }; } 2848 2966 fi 2849 2967 2850 2968 2851 { echo "$as_me:$LINENO: checking for com_err in -lcom_err" >&52852 echo $ECHO_N "checking for com_err in -lcom_err... $ECHO_C" >&6; }2969 { $as_echo "$as_me:$LINENO: checking for com_err in -lcom_err" >&5 2970 $as_echo_n "checking for com_err in -lcom_err... " >&6; } 2853 2971 if test "${ac_cv_lib_com_err_com_err+set}" = set; then 2854 echo $ECHO_N "(cached) $ECHO_C" >&62972 $as_echo_n "(cached) " >&6 2855 2973 else 2856 2974 ac_check_lib_save_LIBS=$LIBS … … 2884 3002 *) ac_try_echo=$ac_try;; 2885 3003 esac 2886 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3004 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3005 $as_echo "$ac_try_echo") >&5 2887 3006 (eval "$ac_link") 2>conftest.er1 2888 3007 ac_status=$? … … 2890 3009 rm -f conftest.er1 2891 3010 cat conftest.err >&5 2892 echo "$as_me:$LINENO: \$? = $ac_status" >&53011 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2893 3012 (exit $ac_status); } && { 2894 3013 test -z "$ac_c_werror_flag" || 2895 3014 test ! -s conftest.err 2896 } && test -s conftest$ac_exeext && 2897 $as_test_x conftest$ac_exeext; then 3015 } && test -s conftest$ac_exeext && { 3016 test "$cross_compiling" = yes || 3017 $as_test_x conftest$ac_exeext 3018 }; then 2898 3019 ac_cv_lib_com_err_com_err=yes 2899 3020 else 2900 echo "$as_me: failed program was:" >&53021 $as_echo "$as_me: failed program was:" >&5 2901 3022 sed 's/^/| /' conftest.$ac_ext >&5 2902 3023 … … 2904 3025 fi 2905 3026 3027 rm -rf conftest.dSYM 2906 3028 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2907 3029 conftest$ac_exeext conftest.$ac_ext 2908 3030 LIBS=$ac_check_lib_save_LIBS 2909 3031 fi 2910 { echo "$as_me:$LINENO: result: $ac_cv_lib_com_err_com_err" >&52911 echo "${ECHO_T}$ac_cv_lib_com_err_com_err" >&6; }2912 if test $ac_cv_lib_com_err_com_err =yes; then3032 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_com_err_com_err" >&5 3033 $as_echo "$ac_cv_lib_com_err_com_err" >&6; } 3034 if test "x$ac_cv_lib_com_err_com_err" = x""yes; then 2913 3035 cat >>confdefs.h <<_ACEOF 2914 3036 @%:@define HAVE_LIBCOM_ERR 1 … … 2920 3042 2921 3043 2922 { echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&52923 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6; }3044 { $as_echo "$as_me:$LINENO: checking for gethostbyname in -lnsl" >&5 3045 $as_echo_n "checking for gethostbyname in -lnsl... " >&6; } 2924 3046 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then 2925 echo $ECHO_N "(cached) $ECHO_C" >&63047 $as_echo_n "(cached) " >&6 2926 3048 else 2927 3049 ac_check_lib_save_LIBS=$LIBS … … 2955 3077 *) ac_try_echo=$ac_try;; 2956 3078 esac 2957 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3079 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3080 $as_echo "$ac_try_echo") >&5 2958 3081 (eval "$ac_link") 2>conftest.er1 2959 3082 ac_status=$? … … 2961 3084 rm -f conftest.er1 2962 3085 cat conftest.err >&5 2963 echo "$as_me:$LINENO: \$? = $ac_status" >&53086 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2964 3087 (exit $ac_status); } && { 2965 3088 test -z "$ac_c_werror_flag" || 2966 3089 test ! -s conftest.err 2967 } && test -s conftest$ac_exeext && 2968 $as_test_x conftest$ac_exeext; then 3090 } && test -s conftest$ac_exeext && { 3091 test "$cross_compiling" = yes || 3092 $as_test_x conftest$ac_exeext 3093 }; then 2969 3094 ac_cv_lib_nsl_gethostbyname=yes 2970 3095 else 2971 echo "$as_me: failed program was:" >&53096 $as_echo "$as_me: failed program was:" >&5 2972 3097 sed 's/^/| /' conftest.$ac_ext >&5 2973 3098 … … 2975 3100 fi 2976 3101 3102 rm -rf conftest.dSYM 2977 3103 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 2978 3104 conftest$ac_exeext conftest.$ac_ext 2979 3105 LIBS=$ac_check_lib_save_LIBS 2980 3106 fi 2981 { echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&52982 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6; }2983 if test $ac_cv_lib_nsl_gethostbyname =yes; then3107 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_nsl_gethostbyname" >&5 3108 $as_echo "$ac_cv_lib_nsl_gethostbyname" >&6; } 3109 if test "x$ac_cv_lib_nsl_gethostbyname" = x""yes; then 2984 3110 cat >>confdefs.h <<_ACEOF 2985 3111 @%:@define HAVE_LIBNSL 1 … … 2991 3117 2992 3118 2993 { echo "$as_me:$LINENO: checking for socket in -lsocket" >&52994 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6; }3119 { $as_echo "$as_me:$LINENO: checking for socket in -lsocket" >&5 3120 $as_echo_n "checking for socket in -lsocket... " >&6; } 2995 3121 if test "${ac_cv_lib_socket_socket+set}" = set; then 2996 echo $ECHO_N "(cached) $ECHO_C" >&63122 $as_echo_n "(cached) " >&6 2997 3123 else 2998 3124 ac_check_lib_save_LIBS=$LIBS … … 3026 3152 *) ac_try_echo=$ac_try;; 3027 3153 esac 3028 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3154 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3155 $as_echo "$ac_try_echo") >&5 3029 3156 (eval "$ac_link") 2>conftest.er1 3030 3157 ac_status=$? … … 3032 3159 rm -f conftest.er1 3033 3160 cat conftest.err >&5 3034 echo "$as_me:$LINENO: \$? = $ac_status" >&53161 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3035 3162 (exit $ac_status); } && { 3036 3163 test -z "$ac_c_werror_flag" || 3037 3164 test ! -s conftest.err 3038 } && test -s conftest$ac_exeext && 3039 $as_test_x conftest$ac_exeext; then 3165 } && test -s conftest$ac_exeext && { 3166 test "$cross_compiling" = yes || 3167 $as_test_x conftest$ac_exeext 3168 }; then 3040 3169 ac_cv_lib_socket_socket=yes 3041 3170 else 3042 echo "$as_me: failed program was:" >&53171 $as_echo "$as_me: failed program was:" >&5 3043 3172 sed 's/^/| /' conftest.$ac_ext >&5 3044 3173 … … 3046 3175 fi 3047 3176 3177 rm -rf conftest.dSYM 3048 3178 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3049 3179 conftest$ac_exeext conftest.$ac_ext 3050 3180 LIBS=$ac_check_lib_save_LIBS 3051 3181 fi 3052 { echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&53053 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6; }3054 if test $ac_cv_lib_socket_socket =yes; then3182 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_socket_socket" >&5 3183 $as_echo "$ac_cv_lib_socket_socket" >&6; } 3184 if test "x$ac_cv_lib_socket_socket" = x""yes; then 3055 3185 cat >>confdefs.h <<_ACEOF 3056 3186 @%:@define HAVE_LIBSOCKET 1 … … 3062 3192 3063 3193 3064 { echo "$as_me:$LINENO: checking for des_cbc_encrypt in -ldes425" >&53065 echo $ECHO_N "checking for des_cbc_encrypt in -ldes425... $ECHO_C" >&6; }3194 { $as_echo "$as_me:$LINENO: checking for des_cbc_encrypt in -ldes425" >&5 3195 $as_echo_n "checking for des_cbc_encrypt in -ldes425... " >&6; } 3066 3196 if test "${ac_cv_lib_des425_des_cbc_encrypt+set}" = set; then 3067 echo $ECHO_N "(cached) $ECHO_C" >&63197 $as_echo_n "(cached) " >&6 3068 3198 else 3069 3199 ac_check_lib_save_LIBS=$LIBS … … 3097 3227 *) ac_try_echo=$ac_try;; 3098 3228 esac 3099 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3229 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3230 $as_echo "$ac_try_echo") >&5 3100 3231 (eval "$ac_link") 2>conftest.er1 3101 3232 ac_status=$? … … 3103 3234 rm -f conftest.er1 3104 3235 cat conftest.err >&5 3105 echo "$as_me:$LINENO: \$? = $ac_status" >&53236 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3106 3237 (exit $ac_status); } && { 3107 3238 test -z "$ac_c_werror_flag" || 3108 3239 test ! -s conftest.err 3109 } && test -s conftest$ac_exeext && 3110 $as_test_x conftest$ac_exeext; then 3240 } && test -s conftest$ac_exeext && { 3241 test "$cross_compiling" = yes || 3242 $as_test_x conftest$ac_exeext 3243 }; then 3111 3244 ac_cv_lib_des425_des_cbc_encrypt=yes 3112 3245 else 3113 echo "$as_me: failed program was:" >&53246 $as_echo "$as_me: failed program was:" >&5 3114 3247 sed 's/^/| /' conftest.$ac_ext >&5 3115 3248 … … 3117 3250 fi 3118 3251 3252 rm -rf conftest.dSYM 3119 3253 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3120 3254 conftest$ac_exeext conftest.$ac_ext 3121 3255 LIBS=$ac_check_lib_save_LIBS 3122 3256 fi 3123 { echo "$as_me:$LINENO: result: $ac_cv_lib_des425_des_cbc_encrypt" >&53124 echo "${ECHO_T}$ac_cv_lib_des425_des_cbc_encrypt" >&6; }3125 if test $ac_cv_lib_des425_des_cbc_encrypt =yes; then3257 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_des425_des_cbc_encrypt" >&5 3258 $as_echo "$ac_cv_lib_des425_des_cbc_encrypt" >&6; } 3259 if test "x$ac_cv_lib_des425_des_cbc_encrypt" = x""yes; then 3126 3260 cat >>confdefs.h <<_ACEOF 3127 3261 @%:@define HAVE_LIBDES425 1 … … 3132 3266 else 3133 3267 3134 { echo "$as_me:$LINENO: checking for DES_cbc_encrypt in -lcrypto" >&53135 echo $ECHO_N "checking for DES_cbc_encrypt in -lcrypto... $ECHO_C" >&6; }3268 { $as_echo "$as_me:$LINENO: checking for DES_cbc_encrypt in -lcrypto" >&5 3269 $as_echo_n "checking for DES_cbc_encrypt in -lcrypto... " >&6; } 3136 3270 if test "${ac_cv_lib_crypto_DES_cbc_encrypt+set}" = set; then 3137 echo $ECHO_N "(cached) $ECHO_C" >&63271 $as_echo_n "(cached) " >&6 3138 3272 else 3139 3273 ac_check_lib_save_LIBS=$LIBS … … 3167 3301 *) ac_try_echo=$ac_try;; 3168 3302 esac 3169 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3303 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3304 $as_echo "$ac_try_echo") >&5 3170 3305 (eval "$ac_link") 2>conftest.er1 3171 3306 ac_status=$? … … 3173 3308 rm -f conftest.er1 3174 3309 cat conftest.err >&5 3175 echo "$as_me:$LINENO: \$? = $ac_status" >&53310 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3176 3311 (exit $ac_status); } && { 3177 3312 test -z "$ac_c_werror_flag" || 3178 3313 test ! -s conftest.err 3179 } && test -s conftest$ac_exeext && 3180 $as_test_x conftest$ac_exeext; then 3314 } && test -s conftest$ac_exeext && { 3315 test "$cross_compiling" = yes || 3316 $as_test_x conftest$ac_exeext 3317 }; then 3181 3318 ac_cv_lib_crypto_DES_cbc_encrypt=yes 3182 3319 else 3183 echo "$as_me: failed program was:" >&53320 $as_echo "$as_me: failed program was:" >&5 3184 3321 sed 's/^/| /' conftest.$ac_ext >&5 3185 3322 … … 3187 3324 fi 3188 3325 3326 rm -rf conftest.dSYM 3189 3327 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3190 3328 conftest$ac_exeext conftest.$ac_ext 3191 3329 LIBS=$ac_check_lib_save_LIBS 3192 3330 fi 3193 { echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_DES_cbc_encrypt" >&53194 echo "${ECHO_T}$ac_cv_lib_crypto_DES_cbc_encrypt" >&6; }3195 if test $ac_cv_lib_crypto_DES_cbc_encrypt =yes; then3331 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_crypto_DES_cbc_encrypt" >&5 3332 $as_echo "$ac_cv_lib_crypto_DES_cbc_encrypt" >&6; } 3333 if test "x$ac_cv_lib_crypto_DES_cbc_encrypt" = x""yes; then 3196 3334 cat >>confdefs.h <<_ACEOF 3197 3335 @%:@define HAVE_LIBCRYPTO 1 … … 3205 3343 3206 3344 3207 { echo "$as_me:$LINENO: checking for res_search in -lresolv" >&53208 echo $ECHO_N "checking for res_search in -lresolv... $ECHO_C" >&6; }3345 { $as_echo "$as_me:$LINENO: checking for res_search in -lresolv" >&5 3346 $as_echo_n "checking for res_search in -lresolv... " >&6; } 3209 3347 if test "${ac_cv_lib_resolv_res_search+set}" = set; then 3210 echo $ECHO_N "(cached) $ECHO_C" >&63348 $as_echo_n "(cached) " >&6 3211 3349 else 3212 3350 ac_check_lib_save_LIBS=$LIBS … … 3240 3378 *) ac_try_echo=$ac_try;; 3241 3379 esac 3242 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3380 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3381 $as_echo "$ac_try_echo") >&5 3243 3382 (eval "$ac_link") 2>conftest.er1 3244 3383 ac_status=$? … … 3246 3385 rm -f conftest.er1 3247 3386 cat conftest.err >&5 3248 echo "$as_me:$LINENO: \$? = $ac_status" >&53387 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3249 3388 (exit $ac_status); } && { 3250 3389 test -z "$ac_c_werror_flag" || 3251 3390 test ! -s conftest.err 3252 } && test -s conftest$ac_exeext && 3253 $as_test_x conftest$ac_exeext; then 3391 } && test -s conftest$ac_exeext && { 3392 test "$cross_compiling" = yes || 3393 $as_test_x conftest$ac_exeext 3394 }; then 3254 3395 ac_cv_lib_resolv_res_search=yes 3255 3396 else 3256 echo "$as_me: failed program was:" >&53397 $as_echo "$as_me: failed program was:" >&5 3257 3398 sed 's/^/| /' conftest.$ac_ext >&5 3258 3399 … … 3260 3401 fi 3261 3402 3403 rm -rf conftest.dSYM 3262 3404 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3263 3405 conftest$ac_exeext conftest.$ac_ext 3264 3406 LIBS=$ac_check_lib_save_LIBS 3265 3407 fi 3266 { echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_search" >&53267 echo "${ECHO_T}$ac_cv_lib_resolv_res_search" >&6; }3268 if test $ac_cv_lib_resolv_res_search =yes; then3408 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_resolv_res_search" >&5 3409 $as_echo "$ac_cv_lib_resolv_res_search" >&6; } 3410 if test "x$ac_cv_lib_resolv_res_search" = x""yes; then 3269 3411 cat >>confdefs.h <<_ACEOF 3270 3412 @%:@define HAVE_LIBRESOLV 1 … … 3276 3418 3277 3419 3278 { echo "$as_me:$LINENO: checking for ZGetSender in -lzephyr" >&53279 echo $ECHO_N "checking for ZGetSender in -lzephyr... $ECHO_C" >&6; }3420 { $as_echo "$as_me:$LINENO: checking for ZGetSender in -lzephyr" >&5 3421 $as_echo_n "checking for ZGetSender in -lzephyr... " >&6; } 3280 3422 if test "${ac_cv_lib_zephyr_ZGetSender+set}" = set; then 3281 echo $ECHO_N "(cached) $ECHO_C" >&63423 $as_echo_n "(cached) " >&6 3282 3424 else 3283 3425 ac_check_lib_save_LIBS=$LIBS … … 3311 3453 *) ac_try_echo=$ac_try;; 3312 3454 esac 3313 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3455 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3456 $as_echo "$ac_try_echo") >&5 3314 3457 (eval "$ac_link") 2>conftest.er1 3315 3458 ac_status=$? … … 3317 3460 rm -f conftest.er1 3318 3461 cat conftest.err >&5 3319 echo "$as_me:$LINENO: \$? = $ac_status" >&53462 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3320 3463 (exit $ac_status); } && { 3321 3464 test -z "$ac_c_werror_flag" || 3322 3465 test ! -s conftest.err 3323 } && test -s conftest$ac_exeext && 3324 $as_test_x conftest$ac_exeext; then 3466 } && test -s conftest$ac_exeext && { 3467 test "$cross_compiling" = yes || 3468 $as_test_x conftest$ac_exeext 3469 }; then 3325 3470 ac_cv_lib_zephyr_ZGetSender=yes 3326 3471 else 3327 echo "$as_me: failed program was:" >&53472 $as_echo "$as_me: failed program was:" >&5 3328 3473 sed 's/^/| /' conftest.$ac_ext >&5 3329 3474 … … 3331 3476 fi 3332 3477 3478 rm -rf conftest.dSYM 3333 3479 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3334 3480 conftest$ac_exeext conftest.$ac_ext 3335 3481 LIBS=$ac_check_lib_save_LIBS 3336 3482 fi 3337 { echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZGetSender" >&53338 echo "${ECHO_T}$ac_cv_lib_zephyr_ZGetSender" >&6; }3339 if test $ac_cv_lib_zephyr_ZGetSender =yes; then3483 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZGetSender" >&5 3484 $as_echo "$ac_cv_lib_zephyr_ZGetSender" >&6; } 3485 if test "x$ac_cv_lib_zephyr_ZGetSender" = x""yes; then 3340 3486 cat >>confdefs.h <<_ACEOF 3341 3487 @%:@define HAVE_LIBZEPHYR 1 … … 3346 3492 fi 3347 3493 3348 { echo "$as_me:$LINENO: checking for ZInitLocationInfo in -lzephyr" >&53349 echo $ECHO_N "checking for ZInitLocationInfo in -lzephyr... $ECHO_C" >&6; }3494 { $as_echo "$as_me:$LINENO: checking for ZInitLocationInfo in -lzephyr" >&5 3495 $as_echo_n "checking for ZInitLocationInfo in -lzephyr... " >&6; } 3350 3496 if test "${ac_cv_lib_zephyr_ZInitLocationInfo+set}" = set; then 3351 echo $ECHO_N "(cached) $ECHO_C" >&63497 $as_echo_n "(cached) " >&6 3352 3498 else 3353 3499 ac_check_lib_save_LIBS=$LIBS … … 3381 3527 *) ac_try_echo=$ac_try;; 3382 3528 esac 3383 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3529 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3530 $as_echo "$ac_try_echo") >&5 3384 3531 (eval "$ac_link") 2>conftest.er1 3385 3532 ac_status=$? … … 3387 3534 rm -f conftest.er1 3388 3535 cat conftest.err >&5 3389 echo "$as_me:$LINENO: \$? = $ac_status" >&53536 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3390 3537 (exit $ac_status); } && { 3391 3538 test -z "$ac_c_werror_flag" || 3392 3539 test ! -s conftest.err 3393 } && test -s conftest$ac_exeext && 3394 $as_test_x conftest$ac_exeext; then 3540 } && test -s conftest$ac_exeext && { 3541 test "$cross_compiling" = yes || 3542 $as_test_x conftest$ac_exeext 3543 }; then 3395 3544 ac_cv_lib_zephyr_ZInitLocationInfo=yes 3396 3545 else 3397 echo "$as_me: failed program was:" >&53546 $as_echo "$as_me: failed program was:" >&5 3398 3547 sed 's/^/| /' conftest.$ac_ext >&5 3399 3548 … … 3401 3550 fi 3402 3551 3552 rm -rf conftest.dSYM 3403 3553 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3404 3554 conftest$ac_exeext conftest.$ac_ext 3405 3555 LIBS=$ac_check_lib_save_LIBS 3406 3556 fi 3407 { echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZInitLocationInfo" >&53408 echo "${ECHO_T}$ac_cv_lib_zephyr_ZInitLocationInfo" >&6; }3409 if test $ac_cv_lib_zephyr_ZInitLocationInfo =yes; then3557 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_zephyr_ZInitLocationInfo" >&5 3558 $as_echo "$ac_cv_lib_zephyr_ZInitLocationInfo" >&6; } 3559 if test "x$ac_cv_lib_zephyr_ZInitLocationInfo" = x""yes; then 3410 3560 3411 3561 cat >>confdefs.h <<\_ACEOF 3412 @%:@define HAVE_LIBZEPHYR_ZINITLOCATIONINFO 3413 _ACEOF 3414 3415 fi 3416 3417 3418 #Check whether --enable-athstatic was given.3562 @%:@define HAVE_LIBZEPHYR_ZINITLOCATIONINFO /**/ 3563 _ACEOF 3564 3565 fi 3566 3567 3568 @%:@ Check whether --enable-athstatic was given. 3419 3569 if test "${enable_athstatic+set}" = set; then 3420 3570 enableval=$enable_athstatic; ATHSTATIC=./athstatic … … 3431 3581 for ac_func in use_default_colors resizeterm des_string_to_key des_key_sched des_ecb_encrypt 3432 3582 do 3433 as_ac_var=` echo "ac_cv_func_$ac_func" | $as_tr_sh`3434 { echo "$as_me:$LINENO: checking for $ac_func" >&53435 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }3583 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 3584 { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 3585 $as_echo_n "checking for $ac_func... " >&6; } 3436 3586 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then 3437 echo $ECHO_N "(cached) $ECHO_C" >&63587 $as_echo_n "(cached) " >&6 3438 3588 else 3439 3589 cat >conftest.$ac_ext <<_ACEOF … … 3488 3638 *) ac_try_echo=$ac_try;; 3489 3639 esac 3490 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3640 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3641 $as_echo "$ac_try_echo") >&5 3491 3642 (eval "$ac_link") 2>conftest.er1 3492 3643 ac_status=$? … … 3494 3645 rm -f conftest.er1 3495 3646 cat conftest.err >&5 3496 echo "$as_me:$LINENO: \$? = $ac_status" >&53647 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3497 3648 (exit $ac_status); } && { 3498 3649 test -z "$ac_c_werror_flag" || 3499 3650 test ! -s conftest.err 3500 } && test -s conftest$ac_exeext && 3501 $as_test_x conftest$ac_exeext; then 3651 } && test -s conftest$ac_exeext && { 3652 test "$cross_compiling" = yes || 3653 $as_test_x conftest$ac_exeext 3654 }; then 3502 3655 eval "$as_ac_var=yes" 3503 3656 else 3504 echo "$as_me: failed program was:" >&53657 $as_echo "$as_me: failed program was:" >&5 3505 3658 sed 's/^/| /' conftest.$ac_ext >&5 3506 3659 … … 3508 3661 fi 3509 3662 3663 rm -rf conftest.dSYM 3510 3664 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3511 3665 conftest$ac_exeext conftest.$ac_ext 3512 3666 fi 3513 ac_res=`eval echo '${'$as_ac_var'}'` 3514 { echo "$as_me:$LINENO: result: $ac_res" >&5 3515 echo "${ECHO_T}$ac_res" >&6; } 3516 if test `eval echo '${'$as_ac_var'}'` = yes; then 3667 ac_res=`eval 'as_val=${'$as_ac_var'} 3668 $as_echo "$as_val"'` 3669 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 3670 $as_echo "$ac_res" >&6; } 3671 as_val=`eval 'as_val=${'$as_ac_var'} 3672 $as_echo "$as_val"'` 3673 if test "x$as_val" = x""yes; then 3517 3674 cat >>confdefs.h <<_ACEOF 3518 @%:@define ` echo "HAVE_$ac_func" | $as_tr_cpp` 13675 @%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 3519 3676 _ACEOF 3520 3677 … … 3527 3684 for ac_func in DES_string_to_key DES_ecb_encrypt DES_key_sched 3528 3685 do 3529 as_ac_var=` echo "ac_cv_func_$ac_func" | $as_tr_sh`3530 { echo "$as_me:$LINENO: checking for $ac_func" >&53531 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }3686 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 3687 { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 3688 $as_echo_n "checking for $ac_func... " >&6; } 3532 3689 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then 3533 echo $ECHO_N "(cached) $ECHO_C" >&63690 $as_echo_n "(cached) " >&6 3534 3691 else 3535 3692 cat >conftest.$ac_ext <<_ACEOF … … 3584 3741 *) ac_try_echo=$ac_try;; 3585 3742 esac 3586 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3743 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3744 $as_echo "$ac_try_echo") >&5 3587 3745 (eval "$ac_link") 2>conftest.er1 3588 3746 ac_status=$? … … 3590 3748 rm -f conftest.er1 3591 3749 cat conftest.err >&5 3592 echo "$as_me:$LINENO: \$? = $ac_status" >&53750 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3593 3751 (exit $ac_status); } && { 3594 3752 test -z "$ac_c_werror_flag" || 3595 3753 test ! -s conftest.err 3596 } && test -s conftest$ac_exeext && 3597 $as_test_x conftest$ac_exeext; then 3754 } && test -s conftest$ac_exeext && { 3755 test "$cross_compiling" = yes || 3756 $as_test_x conftest$ac_exeext 3757 }; then 3598 3758 eval "$as_ac_var=yes" 3599 3759 else 3600 echo "$as_me: failed program was:" >&53760 $as_echo "$as_me: failed program was:" >&5 3601 3761 sed 's/^/| /' conftest.$ac_ext >&5 3602 3762 … … 3604 3764 fi 3605 3765 3766 rm -rf conftest.dSYM 3606 3767 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3607 3768 conftest$ac_exeext conftest.$ac_ext 3608 3769 fi 3609 ac_res=`eval echo '${'$as_ac_var'}'` 3610 { echo "$as_me:$LINENO: result: $ac_res" >&5 3611 echo "${ECHO_T}$ac_res" >&6; } 3612 if test `eval echo '${'$as_ac_var'}'` = yes; then 3770 ac_res=`eval 'as_val=${'$as_ac_var'} 3771 $as_echo "$as_val"'` 3772 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 3773 $as_echo "$ac_res" >&6; } 3774 as_val=`eval 'as_val=${'$as_ac_var'} 3775 $as_echo "$as_val"'` 3776 if test "x$as_val" = x""yes; then 3613 3777 cat >>confdefs.h <<_ACEOF 3614 @%:@define ` echo "HAVE_$ac_func" | $as_tr_cpp` 13778 @%:@define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 3615 3779 _ACEOF 3616 3780 … … 3619 3783 3620 3784 3621 { echo "$as_me:$LINENO: checking for des_ecb_encrypt prototype" >&53622 echo $ECHO_N "checking for des_ecb_encrypt prototype... $ECHO_C" >&6; }3785 { $as_echo "$as_me:$LINENO: checking for des_ecb_encrypt prototype" >&5 3786 $as_echo_n "checking for des_ecb_encrypt prototype... " >&6; } 3623 3787 cat >conftest.$ac_ext <<_ACEOF 3624 3788 /* confdefs.h. */ … … 3643 3807 *) ac_try_echo=$ac_try;; 3644 3808 esac 3645 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3809 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3810 $as_echo "$ac_try_echo") >&5 3646 3811 (eval "$ac_compile") 2>conftest.er1 3647 3812 ac_status=$? … … 3649 3814 rm -f conftest.er1 3650 3815 cat conftest.err >&5 3651 echo "$as_me:$LINENO: \$? = $ac_status" >&53816 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3652 3817 (exit $ac_status); } && { 3653 3818 test -z "$ac_c_werror_flag" || … … 3656 3821 ac_cv_des_ecb_encrypt_proto=no 3657 3822 else 3658 echo "$as_me: failed program was:" >&53823 $as_echo "$as_me: failed program was:" >&5 3659 3824 sed 's/^/| /' conftest.$ac_ext >&5 3660 3825 … … 3663 3828 3664 3829 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3665 { echo "$as_me:$LINENO: result: $ac_cv_des_ecb_encrypt_proto" >&53666 echo "${ECHO_T}$ac_cv_des_ecb_encrypt_proto" >&6; }3830 { $as_echo "$as_me:$LINENO: result: $ac_cv_des_ecb_encrypt_proto" >&5 3831 $as_echo "$ac_cv_des_ecb_encrypt_proto" >&6; } 3667 3832 if test "$ac_cv_des_ecb_encrypt_proto" = yes; then 3668 3833 3669 3834 cat >>confdefs.h <<\_ACEOF 3670 @%:@define HAVE_DES_ECB_ENCRYPT_PROTO 3835 @%:@define HAVE_DES_ECB_ENCRYPT_PROTO /**/ 3671 3836 _ACEOF 3672 3837 … … 3678 3843 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3679 3844 ac_compiler_gnu=$ac_cv_c_compiler_gnu 3680 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&53681 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }3845 { $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 3846 $as_echo_n "checking how to run the C preprocessor... " >&6; } 3682 3847 # On Suns, sometimes $CPP names a directory. 3683 3848 if test -n "$CPP" && test -d "$CPP"; then … … 3686 3851 if test -z "$CPP"; then 3687 3852 if test "${ac_cv_prog_CPP+set}" = set; then 3688 echo $ECHO_N "(cached) $ECHO_C" >&63853 $as_echo_n "(cached) " >&6 3689 3854 else 3690 3855 # Double quotes because CPP needs to be expanded … … 3718 3883 *) ac_try_echo=$ac_try;; 3719 3884 esac 3720 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3885 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3886 $as_echo "$ac_try_echo") >&5 3721 3887 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3722 3888 ac_status=$? … … 3724 3890 rm -f conftest.er1 3725 3891 cat conftest.err >&5 3726 echo "$as_me:$LINENO: \$? = $ac_status" >&53892 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3727 3893 (exit $ac_status); } >/dev/null && { 3728 3894 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3731 3897 : 3732 3898 else 3733 echo "$as_me: failed program was:" >&53899 $as_echo "$as_me: failed program was:" >&5 3734 3900 sed 's/^/| /' conftest.$ac_ext >&5 3735 3901 … … 3755 3921 *) ac_try_echo=$ac_try;; 3756 3922 esac 3757 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3923 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3924 $as_echo "$ac_try_echo") >&5 3758 3925 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3759 3926 ac_status=$? … … 3761 3928 rm -f conftest.er1 3762 3929 cat conftest.err >&5 3763 echo "$as_me:$LINENO: \$? = $ac_status" >&53930 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3764 3931 (exit $ac_status); } >/dev/null && { 3765 3932 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3769 3936 continue 3770 3937 else 3771 echo "$as_me: failed program was:" >&53938 $as_echo "$as_me: failed program was:" >&5 3772 3939 sed 's/^/| /' conftest.$ac_ext >&5 3773 3940 … … 3794 3961 ac_cv_prog_CPP=$CPP 3795 3962 fi 3796 { echo "$as_me:$LINENO: result: $CPP" >&53797 echo "${ECHO_T}$CPP" >&6; }3963 { $as_echo "$as_me:$LINENO: result: $CPP" >&5 3964 $as_echo "$CPP" >&6; } 3798 3965 ac_preproc_ok=false 3799 3966 for ac_c_preproc_warn_flag in '' yes … … 3823 3990 *) ac_try_echo=$ac_try;; 3824 3991 esac 3825 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3992 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3993 $as_echo "$ac_try_echo") >&5 3826 3994 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3827 3995 ac_status=$? … … 3829 3997 rm -f conftest.er1 3830 3998 cat conftest.err >&5 3831 echo "$as_me:$LINENO: \$? = $ac_status" >&53999 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3832 4000 (exit $ac_status); } >/dev/null && { 3833 4001 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3836 4004 : 3837 4005 else 3838 echo "$as_me: failed program was:" >&54006 $as_echo "$as_me: failed program was:" >&5 3839 4007 sed 's/^/| /' conftest.$ac_ext >&5 3840 4008 … … 3860 4028 *) ac_try_echo=$ac_try;; 3861 4029 esac 3862 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4030 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4031 $as_echo "$ac_try_echo") >&5 3863 4032 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3864 4033 ac_status=$? … … 3866 4035 rm -f conftest.er1 3867 4036 cat conftest.err >&5 3868 echo "$as_me:$LINENO: \$? = $ac_status" >&54037 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3869 4038 (exit $ac_status); } >/dev/null && { 3870 4039 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3874 4043 continue 3875 4044 else 3876 echo "$as_me: failed program was:" >&54045 $as_echo "$as_me: failed program was:" >&5 3877 4046 sed 's/^/| /' conftest.$ac_ext >&5 3878 4047 … … 3890 4059 : 3891 4060 else 3892 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check 4061 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 4062 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4063 { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check 3893 4064 See \`config.log' for more details." >&5 3894 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check4065 $as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check 3895 4066 See \`config.log' for more details." >&2;} 3896 { (exit 1); exit 1; }; } 4067 { (exit 1); exit 1; }; }; } 3897 4068 fi 3898 4069 … … 3904 4075 3905 4076 3906 { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&53907 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }4077 { $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 4078 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } 3908 4079 if test "${ac_cv_path_GREP+set}" = set; then 3909 echo $ECHO_N "(cached) $ECHO_C" >&6 3910 else 3911 # Extract the first word of "grep ggrep" to use in msg output 3912 if test -z "$GREP"; then 3913 set dummy grep ggrep; ac_prog_name=$2 3914 if test "${ac_cv_path_GREP+set}" = set; then 3915 echo $ECHO_N "(cached) $ECHO_C" >&6 3916 else 4080 $as_echo_n "(cached) " >&6 4081 else 4082 if test -z "$GREP"; then 3917 4083 ac_path_GREP_found=false 3918 # Loop through the user's path and test for each of PROGNAME-LIST3919 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR4084 # Loop through the user's path and test for each of PROGNAME-LIST 4085 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3920 4086 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 3921 4087 do … … 3923 4089 test -z "$as_dir" && as_dir=. 3924 4090 for ac_prog in grep ggrep; do 3925 for ac_exec_ext in '' $ac_executable_extensions; do3926 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"3927 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue3928 4091 for ac_exec_ext in '' $ac_executable_extensions; do 4092 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" 4093 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue 4094 # Check for GNU ac_path_GREP and select it if it is found. 3929 4095 # Check for GNU $ac_path_GREP 3930 4096 case `"$ac_path_GREP" --version 2>&1` in … … 3933 4099 *) 3934 4100 ac_count=0 3935 echo $ECHO_N "0123456789$ECHO_C">"conftest.in"4101 $as_echo_n 0123456789 >"conftest.in" 3936 4102 while : 3937 4103 do … … 3939 4105 mv "conftest.tmp" "conftest.in" 3940 4106 cp "conftest.in" "conftest.nl" 3941 echo 'GREP' >> "conftest.nl"4107 $as_echo 'GREP' >> "conftest.nl" 3942 4108 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break 3943 4109 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break … … 3954 4120 esac 3955 4121 3956 3957 $ac_path_GREP_found && break 34122 $ac_path_GREP_found && break 3 4123 done 3958 4124 done 3959 4125 done 3960 3961 done3962 4126 IFS=$as_save_IFS 3963 3964 3965 fi 3966 3967 GREP="$ac_cv_path_GREP" 3968 if test -z "$GREP"; then 3969 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 3970 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4127 if test -z "$ac_cv_path_GREP"; then 4128 { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4129 $as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 3971 4130 { (exit 1); exit 1; }; } 3972 fi 3973 4131 fi 3974 4132 else 3975 4133 ac_cv_path_GREP=$GREP 3976 4134 fi 3977 4135 3978 3979 fi 3980 { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 3981 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } 4136 fi 4137 { $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 4138 $as_echo "$ac_cv_path_GREP" >&6; } 3982 4139 GREP="$ac_cv_path_GREP" 3983 4140 3984 4141 3985 { echo "$as_me:$LINENO: checking for egrep" >&53986 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }4142 { $as_echo "$as_me:$LINENO: checking for egrep" >&5 4143 $as_echo_n "checking for egrep... " >&6; } 3987 4144 if test "${ac_cv_path_EGREP+set}" = set; then 3988 echo $ECHO_N "(cached) $ECHO_C" >&64145 $as_echo_n "(cached) " >&6 3989 4146 else 3990 4147 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 3991 4148 then ac_cv_path_EGREP="$GREP -E" 3992 4149 else 3993 # Extract the first word of "egrep" to use in msg output 3994 if test -z "$EGREP"; then 3995 set dummy egrep; ac_prog_name=$2 3996 if test "${ac_cv_path_EGREP+set}" = set; then 3997 echo $ECHO_N "(cached) $ECHO_C" >&6 3998 else 4150 if test -z "$EGREP"; then 3999 4151 ac_path_EGREP_found=false 4000 # Loop through the user's path and test for each of PROGNAME-LIST4001 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR4152 # Loop through the user's path and test for each of PROGNAME-LIST 4153 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 4002 4154 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 4003 4155 do … … 4005 4157 test -z "$as_dir" && as_dir=. 4006 4158 for ac_prog in egrep; do 4007 for ac_exec_ext in '' $ac_executable_extensions; do4008 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"4009 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue4010 4159 for ac_exec_ext in '' $ac_executable_extensions; do 4160 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" 4161 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue 4162 # Check for GNU ac_path_EGREP and select it if it is found. 4011 4163 # Check for GNU $ac_path_EGREP 4012 4164 case `"$ac_path_EGREP" --version 2>&1` in … … 4015 4167 *) 4016 4168 ac_count=0 4017 echo $ECHO_N "0123456789$ECHO_C">"conftest.in"4169 $as_echo_n 0123456789 >"conftest.in" 4018 4170 while : 4019 4171 do … … 4021 4173 mv "conftest.tmp" "conftest.in" 4022 4174 cp "conftest.in" "conftest.nl" 4023 echo 'EGREP' >> "conftest.nl"4175 $as_echo 'EGREP' >> "conftest.nl" 4024 4176 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break 4025 4177 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break … … 4036 4188 esac 4037 4189 4038 4039 $ac_path_EGREP_found && break 34190 $ac_path_EGREP_found && break 3 4191 done 4040 4192 done 4041 4193 done 4042 4043 done4044 4194 IFS=$as_save_IFS 4045 4046 4047 fi 4048 4049 EGREP="$ac_cv_path_EGREP" 4050 if test -z "$EGREP"; then 4051 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4052 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4195 if test -z "$ac_cv_path_EGREP"; then 4196 { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4197 $as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4053 4198 { (exit 1); exit 1; }; } 4054 fi 4055 4199 fi 4056 4200 else 4057 4201 ac_cv_path_EGREP=$EGREP 4058 4202 fi 4059 4203 4060 4061 4204 fi 4062 4205 fi 4063 { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&54064 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }4206 { $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 4207 $as_echo "$ac_cv_path_EGREP" >&6; } 4065 4208 EGREP="$ac_cv_path_EGREP" 4066 4209 4067 4210 4068 { echo "$as_me:$LINENO: checking for ANSI C header files" >&54069 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }4211 { $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 4212 $as_echo_n "checking for ANSI C header files... " >&6; } 4070 4213 if test "${ac_cv_header_stdc+set}" = set; then 4071 echo $ECHO_N "(cached) $ECHO_C" >&64214 $as_echo_n "(cached) " >&6 4072 4215 else 4073 4216 cat >conftest.$ac_ext <<_ACEOF … … 4096 4239 *) ac_try_echo=$ac_try;; 4097 4240 esac 4098 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4241 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4242 $as_echo "$ac_try_echo") >&5 4099 4243 (eval "$ac_compile") 2>conftest.er1 4100 4244 ac_status=$? … … 4102 4246 rm -f conftest.er1 4103 4247 cat conftest.err >&5 4104 echo "$as_me:$LINENO: \$? = $ac_status" >&54248 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4105 4249 (exit $ac_status); } && { 4106 4250 test -z "$ac_c_werror_flag" || … … 4109 4253 ac_cv_header_stdc=yes 4110 4254 else 4111 echo "$as_me: failed program was:" >&54255 $as_echo "$as_me: failed program was:" >&5 4112 4256 sed 's/^/| /' conftest.$ac_ext >&5 4113 4257 … … 4201 4345 *) ac_try_echo=$ac_try;; 4202 4346 esac 4203 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4347 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4348 $as_echo "$ac_try_echo") >&5 4204 4349 (eval "$ac_link") 2>&5 4205 4350 ac_status=$? 4206 echo "$as_me:$LINENO: \$? = $ac_status" >&54351 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4207 4352 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 4208 4353 { (case "(($ac_try" in … … 4210 4355 *) ac_try_echo=$ac_try;; 4211 4356 esac 4212 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4357 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4358 $as_echo "$ac_try_echo") >&5 4213 4359 (eval "$ac_try") 2>&5 4214 4360 ac_status=$? 4215 echo "$as_me:$LINENO: \$? = $ac_status" >&54361 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4216 4362 (exit $ac_status); }; }; then 4217 4363 : 4218 4364 else 4219 echo "$as_me: program exited with status $ac_status" >&54220 echo "$as_me: failed program was:" >&54365 $as_echo "$as_me: program exited with status $ac_status" >&5 4366 $as_echo "$as_me: failed program was:" >&5 4221 4367 sed 's/^/| /' conftest.$ac_ext >&5 4222 4368 … … 4224 4370 ac_cv_header_stdc=no 4225 4371 fi 4372 rm -rf conftest.dSYM 4226 4373 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 4227 4374 fi … … 4230 4377 fi 4231 4378 fi 4232 { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&54233 echo "${ECHO_T}$ac_cv_header_stdc" >&6; }4379 { $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 4380 $as_echo "$ac_cv_header_stdc" >&6; } 4234 4381 if test $ac_cv_header_stdc = yes; then 4235 4382 … … 4240 4387 fi 4241 4388 4242 { echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&54243 echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6; }4389 { $as_echo "$as_me:$LINENO: checking for sys/wait.h that is POSIX.1 compatible" >&5 4390 $as_echo_n "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } 4244 4391 if test "${ac_cv_header_sys_wait_h+set}" = set; then 4245 echo $ECHO_N "(cached) $ECHO_C" >&64392 $as_echo_n "(cached) " >&6 4246 4393 else 4247 4394 cat >conftest.$ac_ext <<_ACEOF … … 4276 4423 *) ac_try_echo=$ac_try;; 4277 4424 esac 4278 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4425 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4426 $as_echo "$ac_try_echo") >&5 4279 4427 (eval "$ac_compile") 2>conftest.er1 4280 4428 ac_status=$? … … 4282 4430 rm -f conftest.er1 4283 4431 cat conftest.err >&5 4284 echo "$as_me:$LINENO: \$? = $ac_status" >&54432 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4285 4433 (exit $ac_status); } && { 4286 4434 test -z "$ac_c_werror_flag" || … … 4289 4437 ac_cv_header_sys_wait_h=yes 4290 4438 else 4291 echo "$as_me: failed program was:" >&54439 $as_echo "$as_me: failed program was:" >&5 4292 4440 sed 's/^/| /' conftest.$ac_ext >&5 4293 4441 … … 4297 4445 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4298 4446 fi 4299 { echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&54300 echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6; }4447 { $as_echo "$as_me:$LINENO: result: $ac_cv_header_sys_wait_h" >&5 4448 $as_echo "$ac_cv_header_sys_wait_h" >&6; } 4301 4449 if test $ac_cv_header_sys_wait_h = yes; then 4302 4450 … … 4320 4468 inttypes.h stdint.h unistd.h 4321 4469 do 4322 as_ac_Header=` echo "ac_cv_header_$ac_header" | $as_tr_sh`4323 { echo "$as_me:$LINENO: checking for $ac_header" >&54324 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4470 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4471 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4472 $as_echo_n "checking for $ac_header... " >&6; } 4325 4473 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4326 echo $ECHO_N "(cached) $ECHO_C" >&64474 $as_echo_n "(cached) " >&6 4327 4475 else 4328 4476 cat >conftest.$ac_ext <<_ACEOF … … 4342 4490 *) ac_try_echo=$ac_try;; 4343 4491 esac 4344 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4492 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4493 $as_echo "$ac_try_echo") >&5 4345 4494 (eval "$ac_compile") 2>conftest.er1 4346 4495 ac_status=$? … … 4348 4497 rm -f conftest.er1 4349 4498 cat conftest.err >&5 4350 echo "$as_me:$LINENO: \$? = $ac_status" >&54499 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4351 4500 (exit $ac_status); } && { 4352 4501 test -z "$ac_c_werror_flag" || … … 4355 4504 eval "$as_ac_Header=yes" 4356 4505 else 4357 echo "$as_me: failed program was:" >&54506 $as_echo "$as_me: failed program was:" >&5 4358 4507 sed 's/^/| /' conftest.$ac_ext >&5 4359 4508 … … 4363 4512 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4364 4513 fi 4365 ac_res=`eval echo '${'$as_ac_Header'}'` 4366 { echo "$as_me:$LINENO: result: $ac_res" >&5 4367 echo "${ECHO_T}$ac_res" >&6; } 4368 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4514 ac_res=`eval 'as_val=${'$as_ac_Header'} 4515 $as_echo "$as_val"'` 4516 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4517 $as_echo "$ac_res" >&6; } 4518 as_val=`eval 'as_val=${'$as_ac_Header'} 4519 $as_echo "$as_val"'` 4520 if test "x$as_val" = x""yes; then 4369 4521 cat >>confdefs.h <<_ACEOF 4370 @%:@define ` echo "HAVE_$ac_header" | $as_tr_cpp` 14522 @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4371 4523 _ACEOF 4372 4524 … … 4383 4535 for ac_header in strings.h sys/ioctl.h sys/filio.h unistd.h com_err.h 4384 4536 do 4385 as_ac_Header=` echo "ac_cv_header_$ac_header" | $as_tr_sh`4537 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4386 4538 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4387 { echo "$as_me:$LINENO: checking for $ac_header" >&54388 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4539 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4540 $as_echo_n "checking for $ac_header... " >&6; } 4389 4541 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4390 echo $ECHO_N "(cached) $ECHO_C" >&6 4391 fi 4392 ac_res=`eval echo '${'$as_ac_Header'}'` 4393 { echo "$as_me:$LINENO: result: $ac_res" >&5 4394 echo "${ECHO_T}$ac_res" >&6; } 4542 $as_echo_n "(cached) " >&6 4543 fi 4544 ac_res=`eval 'as_val=${'$as_ac_Header'} 4545 $as_echo "$as_val"'` 4546 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4547 $as_echo "$ac_res" >&6; } 4395 4548 else 4396 4549 # Is the header compilable? 4397 { echo "$as_me:$LINENO: checking $ac_header usability" >&54398 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }4550 { $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 4551 $as_echo_n "checking $ac_header usability... " >&6; } 4399 4552 cat >conftest.$ac_ext <<_ACEOF 4400 4553 /* confdefs.h. */ … … 4412 4565 *) ac_try_echo=$ac_try;; 4413 4566 esac 4414 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4567 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4568 $as_echo "$ac_try_echo") >&5 4415 4569 (eval "$ac_compile") 2>conftest.er1 4416 4570 ac_status=$? … … 4418 4572 rm -f conftest.er1 4419 4573 cat conftest.err >&5 4420 echo "$as_me:$LINENO: \$? = $ac_status" >&54574 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4421 4575 (exit $ac_status); } && { 4422 4576 test -z "$ac_c_werror_flag" || … … 4425 4579 ac_header_compiler=yes 4426 4580 else 4427 echo "$as_me: failed program was:" >&54581 $as_echo "$as_me: failed program was:" >&5 4428 4582 sed 's/^/| /' conftest.$ac_ext >&5 4429 4583 … … 4432 4586 4433 4587 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4434 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&54435 echo "${ECHO_T}$ac_header_compiler" >&6; }4588 { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4589 $as_echo "$ac_header_compiler" >&6; } 4436 4590 4437 4591 # Is the header present? 4438 { echo "$as_me:$LINENO: checking $ac_header presence" >&54439 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }4592 { $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 4593 $as_echo_n "checking $ac_header presence... " >&6; } 4440 4594 cat >conftest.$ac_ext <<_ACEOF 4441 4595 /* confdefs.h. */ … … 4451 4605 *) ac_try_echo=$ac_try;; 4452 4606 esac 4453 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4607 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4608 $as_echo "$ac_try_echo") >&5 4454 4609 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4455 4610 ac_status=$? … … 4457 4612 rm -f conftest.er1 4458 4613 cat conftest.err >&5 4459 echo "$as_me:$LINENO: \$? = $ac_status" >&54614 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4460 4615 (exit $ac_status); } >/dev/null && { 4461 4616 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 4464 4619 ac_header_preproc=yes 4465 4620 else 4466 echo "$as_me: failed program was:" >&54621 $as_echo "$as_me: failed program was:" >&5 4467 4622 sed 's/^/| /' conftest.$ac_ext >&5 4468 4623 … … 4471 4626 4472 4627 rm -f conftest.err conftest.$ac_ext 4473 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&54474 echo "${ECHO_T}$ac_header_preproc" >&6; }4628 { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4629 $as_echo "$ac_header_preproc" >&6; } 4475 4630 4476 4631 # So? What about this header? 4477 4632 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in 4478 4633 yes:no: ) 4479 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&54480 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}4481 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&54482 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}4634 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 4635 $as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 4636 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 4637 $as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} 4483 4638 ac_header_preproc=yes 4484 4639 ;; 4485 4640 no:yes:* ) 4486 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&54487 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}4488 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&54489 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}4490 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&54491 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}4492 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&54493 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}4494 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&54495 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}4496 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&54497 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}4641 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 4642 $as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 4643 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 4644 $as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 4645 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 4646 $as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} 4647 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 4648 $as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} 4649 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 4650 $as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} 4651 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 4652 $as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} 4498 4653 4499 4654 ;; 4500 4655 esac 4501 { echo "$as_me:$LINENO: checking for $ac_header" >&54502 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4656 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4657 $as_echo_n "checking for $ac_header... " >&6; } 4503 4658 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4504 echo $ECHO_N "(cached) $ECHO_C" >&64659 $as_echo_n "(cached) " >&6 4505 4660 else 4506 4661 eval "$as_ac_Header=\$ac_header_preproc" 4507 4662 fi 4508 ac_res=`eval echo '${'$as_ac_Header'}'` 4509 { echo "$as_me:$LINENO: result: $ac_res" >&5 4510 echo "${ECHO_T}$ac_res" >&6; } 4511 4512 fi 4513 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4663 ac_res=`eval 'as_val=${'$as_ac_Header'} 4664 $as_echo "$as_val"'` 4665 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4666 $as_echo "$ac_res" >&6; } 4667 4668 fi 4669 as_val=`eval 'as_val=${'$as_ac_Header'} 4670 $as_echo "$as_val"'` 4671 if test "x$as_val" = x""yes; then 4514 4672 cat >>confdefs.h <<_ACEOF 4515 @%:@define ` echo "HAVE_$ac_header" | $as_tr_cpp` 14673 @%:@define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4516 4674 _ACEOF 4517 4675 … … 4525 4683 CFLAGS=${CFLAGS}\ ${FOO} 4526 4684 4527 { echo "$as_me:$LINENO: checking for the perl xsubpp precompiler" >&54528 echo $ECHO_N "checking for the perl xsubpp precompiler... $ECHO_C" >&6; }4685 { $as_echo "$as_me:$LINENO: checking for the perl xsubpp precompiler" >&5 4686 $as_echo_n "checking for the perl xsubpp precompiler... " >&6; } 4529 4687 XSUBPPDIR="`(perl -MExtUtils::MakeMaker -e 'print ExtUtils::MakeMaker->new({NAME => qw(owl)})->tool_xsubpp;') | grep \^XSUBPPDIR | sed -e 's/XSUBPPDIR = //g;'`" 4530 4688 if test -n "${XSUBPPDIR}"; then 4531 { echo "$as_me:$LINENO: result: ${XSUBPPDIR}" >&54532 echo "${ECHO_T}${XSUBPPDIR}" >&6; }4533 else 4534 { { echo "$as_me:$LINENO: error: not found" >&54535 echo "$as_me: error: not found" >&2;}4689 { $as_echo "$as_me:$LINENO: result: ${XSUBPPDIR}" >&5 4690 $as_echo "${XSUBPPDIR}" >&6; } 4691 else 4692 { { $as_echo "$as_me:$LINENO: error: not found" >&5 4693 $as_echo "$as_me: error: not found" >&2;} 4536 4694 { (exit 1); exit 1; }; } 4537 4695 fi … … 4553 4711 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. 4554 4712 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 4555 { echo "$as_me:$LINENO: checking for $ac_word" >&54556 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }4713 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 4714 $as_echo_n "checking for $ac_word... " >&6; } 4557 4715 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then 4558 echo $ECHO_N "(cached) $ECHO_C" >&64716 $as_echo_n "(cached) " >&6 4559 4717 else 4560 4718 case $PKG_CONFIG in … … 4571 4729 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 4572 4730 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" 4573 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&54731 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4574 4732 break 2 4575 4733 fi … … 4583 4741 PKG_CONFIG=$ac_cv_path_PKG_CONFIG 4584 4742 if test -n "$PKG_CONFIG"; then 4585 { echo "$as_me:$LINENO: result: $PKG_CONFIG" >&54586 echo "${ECHO_T}$PKG_CONFIG" >&6; }4587 else 4588 { echo "$as_me:$LINENO: result: no" >&54589 echo "${ECHO_T}no" >&6; }4743 { $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 4744 $as_echo "$PKG_CONFIG" >&6; } 4745 else 4746 { $as_echo "$as_me:$LINENO: result: no" >&5 4747 $as_echo "no" >&6; } 4590 4748 fi 4591 4749 … … 4596 4754 # Extract the first word of "pkg-config", so it can be a program name with args. 4597 4755 set dummy pkg-config; ac_word=$2 4598 { echo "$as_me:$LINENO: checking for $ac_word" >&54599 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }4756 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 4757 $as_echo_n "checking for $ac_word... " >&6; } 4600 4758 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then 4601 echo $ECHO_N "(cached) $ECHO_C" >&64759 $as_echo_n "(cached) " >&6 4602 4760 else 4603 4761 case $ac_pt_PKG_CONFIG in … … 4614 4772 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 4615 4773 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" 4616 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&54774 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 4617 4775 break 2 4618 4776 fi … … 4626 4784 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG 4627 4785 if test -n "$ac_pt_PKG_CONFIG"; then 4628 { echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&54629 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6; }4630 else 4631 { echo "$as_me:$LINENO: result: no" >&54632 echo "${ECHO_T}no" >&6; }4786 { $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5 4787 $as_echo "$ac_pt_PKG_CONFIG" >&6; } 4788 else 4789 { $as_echo "$as_me:$LINENO: result: no" >&5 4790 $as_echo "no" >&6; } 4633 4791 fi 4634 4792 … … 4638 4796 case $cross_compiling:$ac_tool_warned in 4639 4797 yes:) 4640 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 4641 whose name does not start with the host triplet. If you think this 4642 configuration is useful to you, please write to autoconf@gnu.org." >&5 4643 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 4644 whose name does not start with the host triplet. If you think this 4645 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 4798 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 4799 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 4646 4800 ac_tool_warned=yes ;; 4647 4801 esac … … 4655 4809 if test -n "$PKG_CONFIG"; then 4656 4810 _pkg_min_version=0.9.0 4657 { echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&54658 echo $ECHO_N "checking pkg-config is at least version $_pkg_min_version... $ECHO_C" >&6; }4811 { $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5 4812 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } 4659 4813 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then 4660 { echo "$as_me:$LINENO: result: yes" >&54661 echo "${ECHO_T}yes" >&6; }4814 { $as_echo "$as_me:$LINENO: result: yes" >&5 4815 $as_echo "yes" >&6; } 4662 4816 else 4663 { echo "$as_me:$LINENO: result: no" >&54664 echo "${ECHO_T}no" >&6; }4817 { $as_echo "$as_me:$LINENO: result: no" >&5 4818 $as_echo "no" >&6; } 4665 4819 PKG_CONFIG="" 4666 4820 fi … … 4669 4823 4670 4824 pkg_failed=no 4671 { echo "$as_me:$LINENO: checking for GLIB" >&54672 echo $ECHO_N "checking for GLIB... $ECHO_C" >&6; }4825 { $as_echo "$as_me:$LINENO: checking for GLIB" >&5 4826 $as_echo_n "checking for GLIB... " >&6; } 4673 4827 4674 4828 if test -n "$PKG_CONFIG"; then … … 4677 4831 else 4678 4832 if test -n "$PKG_CONFIG" && \ 4679 { ( echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&54833 { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&5 4680 4834 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 4681 4835 ac_status=$? 4682 echo "$as_me:$LINENO: \$? = $ac_status" >&54836 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4683 4837 (exit $ac_status); }; then 4684 4838 pkg_cv_GLIB_CFLAGS=`$PKG_CONFIG --cflags "glib-2.0" 2>/dev/null` … … 4695 4849 else 4696 4850 if test -n "$PKG_CONFIG" && \ 4697 { ( echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&54851 { ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"glib-2.0\"") >&5 4698 4852 ($PKG_CONFIG --exists --print-errors "glib-2.0") 2>&5 4699 4853 ac_status=$? 4700 echo "$as_me:$LINENO: \$? = $ac_status" >&54854 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4701 4855 (exit $ac_status); }; then 4702 4856 pkg_cv_GLIB_LIBS=`$PKG_CONFIG --libs "glib-2.0" 2>/dev/null` … … 4726 4880 echo "$GLIB_PKG_ERRORS" >&5 4727 4881 4728 { { echo "$as_me:$LINENO: error: Package requirements (glib-2.0) were not met:4882 { { $as_echo "$as_me:$LINENO: error: Package requirements (glib-2.0) were not met: 4729 4883 4730 4884 $GLIB_PKG_ERRORS … … 4737 4891 See the pkg-config man page for more details. 4738 4892 " >&5 4739 echo "$as_me: error: Package requirements (glib-2.0) were not met:4893 $as_echo "$as_me: error: Package requirements (glib-2.0) were not met: 4740 4894 4741 4895 $GLIB_PKG_ERRORS … … 4750 4904 { (exit 1); exit 1; }; } 4751 4905 elif test $pkg_failed = untried; then 4752 { { echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it 4906 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 4907 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 4908 { { $as_echo "$as_me:$LINENO: error: The pkg-config script could not be found or is too old. Make sure it 4753 4909 is in your PATH or set the PKG_CONFIG environment variable to the full 4754 4910 path to pkg-config. … … 4760 4916 To get pkg-config, see <http://pkg-config.freedesktop.org/>. 4761 4917 See \`config.log' for more details." >&5 4762 echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it4918 $as_echo "$as_me: error: The pkg-config script could not be found or is too old. Make sure it 4763 4919 is in your PATH or set the PKG_CONFIG environment variable to the full 4764 4920 path to pkg-config. … … 4770 4926 To get pkg-config, see <http://pkg-config.freedesktop.org/>. 4771 4927 See \`config.log' for more details." >&2;} 4772 { (exit 1); exit 1; }; } 4928 { (exit 1); exit 1; }; }; } 4773 4929 else 4774 4930 GLIB_CFLAGS=$pkg_cv_GLIB_CFLAGS 4775 4931 GLIB_LIBS=$pkg_cv_GLIB_LIBS 4776 { echo "$as_me:$LINENO: result: yes" >&54777 echo "${ECHO_T}yes" >&6; }4932 { $as_echo "$as_me:$LINENO: result: yes" >&5 4933 $as_echo "yes" >&6; } 4778 4934 : 4779 4935 fi … … 4807 4963 done 4808 4964 if test -z "$ac_aux_dir"; then 4809 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&54810 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}4965 { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 4966 $as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} 4811 4967 { (exit 1); exit 1; }; } 4812 4968 fi … … 4834 4990 # OS/2's system install, which has a completely different semantic 4835 4991 # ./install, which can be erroneously created by make from ./install.sh. 4836 { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 4837 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } 4992 # Reject install programs that cannot install multiple files. 4993 { $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 4994 $as_echo_n "checking for a BSD-compatible install... " >&6; } 4838 4995 if test -z "$INSTALL"; then 4839 4996 if test "${ac_cv_path_install+set}" = set; then 4840 echo $ECHO_N "(cached) $ECHO_C" >&64997 $as_echo_n "(cached) " >&6 4841 4998 else 4842 4999 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR … … 4867 5024 : 4868 5025 else 4869 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 4870 break 3 5026 rm -rf conftest.one conftest.two conftest.dir 5027 echo one > conftest.one 5028 echo two > conftest.two 5029 mkdir conftest.dir 5030 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && 5031 test -s conftest.one && test -s conftest.two && 5032 test -s conftest.dir/conftest.one && 5033 test -s conftest.dir/conftest.two 5034 then 5035 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 5036 break 3 5037 fi 4871 5038 fi 4872 5039 fi … … 4875 5042 ;; 4876 5043 esac 5044 4877 5045 done 4878 5046 IFS=$as_save_IFS 4879 5047 5048 rm -rf conftest.one conftest.two conftest.dir 4880 5049 4881 5050 fi … … 4890 5059 fi 4891 5060 fi 4892 { echo "$as_me:$LINENO: result: $INSTALL" >&54893 echo "${ECHO_T}$INSTALL" >&6; }5061 { $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 5062 $as_echo "$INSTALL" >&6; } 4894 5063 4895 5064 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. … … 4900 5069 4901 5070 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 5071 5072 4902 5073 4903 5074 … … 4934 5105 *${as_nl}*) 4935 5106 case $ac_var in #( 4936 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&54937 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;5107 *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 5108 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 4938 5109 esac 4939 5110 case $ac_var in #( 4940 5111 _ | IFS | as_nl) ;; #( 5112 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 4941 5113 *) $as_unset $ac_var ;; 4942 5114 esac ;; … … 4971 5143 if test -w "$cache_file"; then 4972 5144 test "x$cache_file" != "x/dev/null" && 4973 { echo "$as_me:$LINENO: updating cache $cache_file" >&54974 echo "$as_me: updating cache $cache_file" >&6;}5145 { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 5146 $as_echo "$as_me: updating cache $cache_file" >&6;} 4975 5147 cat confcache >$cache_file 4976 5148 else 4977 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&54978 echo "$as_me: not updating unwritable cache $cache_file" >&6;}5149 { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 5150 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 4979 5151 fi 4980 5152 fi … … 4992 5164 # 1. Remove the extension, and $U if already installed. 4993 5165 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 4994 ac_i=` echo "$ac_i" | sed "$ac_script"`5166 ac_i=`$as_echo "$ac_i" | sed "$ac_script"` 4995 5167 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 4996 5168 # will be set to the directory where LIBOBJS objects are built. … … 5005 5177 5006 5178 : ${CONFIG_STATUS=./config.status} 5179 ac_write_fail=0 5007 5180 ac_clean_files_save=$ac_clean_files 5008 5181 ac_clean_files="$ac_clean_files $CONFIG_STATUS" 5009 { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&55010 echo "$as_me: creating $CONFIG_STATUS" >&6;}5011 cat >$CONFIG_STATUS <<_ACEOF 5182 { $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 5183 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} 5184 cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5012 5185 #! $SHELL 5013 5186 # Generated by $as_me. … … 5022 5195 _ACEOF 5023 5196 5024 cat >>$CONFIG_STATUS <<\_ACEOF 5197 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5025 5198 ## --------------------- ## 5026 5199 ## M4sh Initialization. ## … … 5032 5205 emulate sh 5033 5206 NULLCMD=: 5034 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which5207 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 5035 5208 # is contrary to our usage. Disable this feature. 5036 5209 alias -g '${1+"$@"}'='"$@"' … … 5054 5227 as_cr_alnum=$as_cr_Letters$as_cr_digits 5055 5228 5229 as_nl=' 5230 ' 5231 export as_nl 5232 # Printing a long string crashes Solaris 7 /usr/bin/printf. 5233 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 5234 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 5235 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 5236 if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 5237 as_echo='printf %s\n' 5238 as_echo_n='printf %s' 5239 else 5240 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 5241 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 5242 as_echo_n='/usr/ucb/echo -n' 5243 else 5244 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 5245 as_echo_n_body='eval 5246 arg=$1; 5247 case $arg in 5248 *"$as_nl"*) 5249 expr "X$arg" : "X\\(.*\\)$as_nl"; 5250 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 5251 esac; 5252 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 5253 ' 5254 export as_echo_n_body 5255 as_echo_n='sh -c $as_echo_n_body as_echo' 5256 fi 5257 export as_echo_body 5258 as_echo='sh -c $as_echo_body as_echo' 5259 fi 5260 5056 5261 # The user is always right. 5057 5262 if test "${PATH_SEPARATOR+set}" != set; then 5058 echo "#! /bin/sh" >conf$$.sh 5059 echo "exit 0" >>conf$$.sh 5060 chmod +x conf$$.sh 5061 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 5062 PATH_SEPARATOR=';' 5063 else 5064 PATH_SEPARATOR=: 5065 fi 5066 rm -f conf$$.sh 5263 PATH_SEPARATOR=: 5264 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 5265 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 5266 PATH_SEPARATOR=';' 5267 } 5067 5268 fi 5068 5269 … … 5080 5281 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 5081 5282 # splitting by setting IFS to empty value.) 5082 as_nl='5083 '5084 5283 IFS=" "" $as_nl" 5085 5284 … … 5104 5303 fi 5105 5304 if test ! -f "$as_myself"; then 5106 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&25305 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 5107 5306 { (exit 1); exit 1; } 5108 5307 fi … … 5117 5316 5118 5317 # NLS nuisances. 5119 for as_var in \ 5120 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 5121 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 5122 LC_TELEPHONE LC_TIME 5123 do 5124 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 5125 eval $as_var=C; export $as_var 5126 else 5127 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 5128 fi 5129 done 5318 LC_ALL=C 5319 export LC_ALL 5320 LANGUAGE=C 5321 export LANGUAGE 5130 5322 5131 5323 # Required to use basename. … … 5149 5341 X"$0" : 'X\(//\)$' \| \ 5150 5342 X"$0" : 'X\(/\)' \| . 2>/dev/null || 5151 echo X/"$0" |5343 $as_echo X/"$0" | 5152 5344 sed '/^.*\/\([^/][^/]*\)\/*$/{ 5153 5345 s//\1/ … … 5200 5392 ' >$as_me.lineno && 5201 5393 chmod +x "$as_me.lineno" || 5202 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&25394 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 5203 5395 { (exit 1); exit 1; }; } 5204 5396 … … 5228 5420 ECHO_N='-n';; 5229 5421 esac 5230 5231 5422 if expr a : '\(a\)' >/dev/null 2>&1 && 5232 5423 test "X`expr 00001 : '.*\(...\)'`" = X001; then … … 5241 5432 else 5242 5433 rm -f conf$$.dir 5243 mkdir conf$$.dir 5244 fi 5245 echo >conf$$.file 5246 if ln -s conf$$.file conf$$ 2>/dev/null; then 5247 as_ln_s='ln -s' 5248 # ... but there are two gotchas: 5249 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 5250 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 5251 # In both cases, we have to default to `cp -p'. 5252 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 5434 mkdir conf$$.dir 2>/dev/null 5435 fi 5436 if (echo >conf$$.file) 2>/dev/null; then 5437 if ln -s conf$$.file conf$$ 2>/dev/null; then 5438 as_ln_s='ln -s' 5439 # ... but there are two gotchas: 5440 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 5441 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 5442 # In both cases, we have to default to `cp -p'. 5443 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 5444 as_ln_s='cp -p' 5445 elif ln conf$$.file conf$$ 2>/dev/null; then 5446 as_ln_s=ln 5447 else 5253 5448 as_ln_s='cp -p' 5254 elif ln conf$$.file conf$$ 2>/dev/null; then 5255 as_ln_s=ln 5449 fi 5256 5450 else 5257 5451 as_ln_s='cp -p' … … 5278 5472 eval sh -c '\'' 5279 5473 if test -d "$1"; then 5280 5474 test -d "$1/."; 5281 5475 else 5282 5476 case $1 in 5283 5477 -*)set "./$1";; 5284 5478 esac; 5285 5479 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in … … 5304 5498 ac_log=" 5305 5499 This file was extended by $as_me, which was 5306 generated by GNU Autoconf 2.6 1. Invocation command line was5500 generated by GNU Autoconf 2.63. Invocation command line was 5307 5501 5308 5502 CONFIG_FILES = $CONFIG_FILES … … 5317 5511 _ACEOF 5318 5512 5319 cat >>$CONFIG_STATUS <<_ACEOF 5513 case $ac_config_files in *" 5514 "*) set x $ac_config_files; shift; ac_config_files=$*;; 5515 esac 5516 5517 case $ac_config_headers in *" 5518 "*) set x $ac_config_headers; shift; ac_config_headers=$*;; 5519 esac 5520 5521 5522 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5320 5523 # Files that config.status was made for. 5321 5524 config_files="$ac_config_files" … … 5324 5527 _ACEOF 5325 5528 5326 cat >>$CONFIG_STATUS <<\_ACEOF 5529 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5327 5530 ac_cs_usage="\ 5328 5531 \`$as_me' instantiates files from templates according to the 5329 5532 current configuration. 5330 5533 5331 Usage: $0 [OPTION S][FILE]...5534 Usage: $0 [OPTION]... [FILE]... 5332 5535 5333 5536 -h, --help print this help, then exit 5334 5537 -V, --version print version number and configuration settings, then exit 5335 -q, --quiet do not print progress messages 5538 -q, --quiet, --silent 5539 do not print progress messages 5336 5540 -d, --debug don't remove temporary files 5337 5541 --recheck update $as_me by reconfiguring in the same conditions 5338 --file=FILE[:TEMPLATE]5339 5340 --header=FILE[:TEMPLATE]5341 5542 --file=FILE[:TEMPLATE] 5543 instantiate the configuration file FILE 5544 --header=FILE[:TEMPLATE] 5545 instantiate the configuration header FILE 5342 5546 5343 5547 Configuration files: … … 5350 5554 5351 5555 _ACEOF 5352 cat >>$CONFIG_STATUS <<_ACEOF 5556 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5353 5557 ac_cs_version="\\ 5354 5558 config.status 5355 configured by $0, generated by GNU Autoconf 2.6 1,5356 with options \\"` echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"5357 5358 Copyright (C) 200 6Free Software Foundation, Inc.5559 configured by $0, generated by GNU Autoconf 2.63, 5560 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" 5561 5562 Copyright (C) 2008 Free Software Foundation, Inc. 5359 5563 This config.status script is free software; the Free Software Foundation 5360 5564 gives unlimited permission to copy, distribute and modify it." … … 5363 5567 srcdir='$srcdir' 5364 5568 INSTALL='$INSTALL' 5365 _ACEOF 5366 5367 cat >>$CONFIG_STATUS <<\_ACEOF 5368 # If no file are specified by the user, then we need to provide default 5369 # value. By we need to know if files were specified by the user.5569 test -n "\$AWK" || AWK=awk 5570 _ACEOF 5571 5572 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5573 # The default lists apply if the user does not specify any file. 5370 5574 ac_need_defaults=: 5371 5575 while test $# != 0 … … 5389 5593 ac_cs_recheck=: ;; 5390 5594 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) 5391 echo "$ac_cs_version"; exit ;;5595 $as_echo "$ac_cs_version"; exit ;; 5392 5596 --debug | --debu | --deb | --de | --d | -d ) 5393 5597 debug=: ;; 5394 5598 --file | --fil | --fi | --f ) 5395 5599 $ac_shift 5396 CONFIG_FILES="$CONFIG_FILES $ac_optarg" 5600 case $ac_optarg in 5601 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 5602 esac 5603 CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" 5397 5604 ac_need_defaults=false;; 5398 5605 --header | --heade | --head | --hea ) 5399 5606 $ac_shift 5400 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" 5607 case $ac_optarg in 5608 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 5609 esac 5610 CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" 5401 5611 ac_need_defaults=false;; 5402 5612 --he | --h) 5403 5613 # Conflict between --help and --header 5404 { echo "$as_me: error: ambiguous option: $15614 { $as_echo "$as_me: error: ambiguous option: $1 5405 5615 Try \`$0 --help' for more information." >&2 5406 5616 { (exit 1); exit 1; }; };; 5407 5617 --help | --hel | -h ) 5408 echo "$ac_cs_usage"; exit ;;5618 $as_echo "$ac_cs_usage"; exit ;; 5409 5619 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 5410 5620 | -silent | --silent | --silen | --sile | --sil | --si | --s) … … 5412 5622 5413 5623 # This is an error. 5414 -*) { echo "$as_me: error: unrecognized option: $15624 -*) { $as_echo "$as_me: error: unrecognized option: $1 5415 5625 Try \`$0 --help' for more information." >&2 5416 5626 { (exit 1); exit 1; }; } ;; … … 5431 5641 5432 5642 _ACEOF 5433 cat >>$CONFIG_STATUS <<_ACEOF 5643 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5434 5644 if \$ac_cs_recheck; then 5435 echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 5436 CONFIG_SHELL=$SHELL 5645 set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 5646 shift 5647 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 5648 CONFIG_SHELL='$SHELL' 5437 5649 export CONFIG_SHELL 5438 exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion5439 fi 5440 5441 _ACEOF 5442 cat >>$CONFIG_STATUS <<\_ACEOF 5650 exec "\$@" 5651 fi 5652 5653 _ACEOF 5654 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5443 5655 exec 5>>config.log 5444 5656 { … … 5447 5659 @%:@@%:@ Running $as_me. @%:@@%:@ 5448 5660 _ASBOX 5449 echo "$ac_log"5661 $as_echo "$ac_log" 5450 5662 } >&5 5451 5663 5452 5664 _ACEOF 5453 cat >>$CONFIG_STATUS <<_ACEOF 5454 _ACEOF 5455 5456 cat >>$CONFIG_STATUS <<\_ACEOF 5665 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5666 _ACEOF 5667 5668 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5457 5669 5458 5670 # Handling of arguments. … … 5463 5675 "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; 5464 5676 5465 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&55466 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}5677 *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 5678 $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} 5467 5679 { (exit 1); exit 1; }; };; 5468 5680 esac … … 5504 5716 } || 5505 5717 { 5506 echo "$me: cannot create a temporary directory in ." >&25718 $as_echo "$as_me: cannot create a temporary directory in ." >&2 5507 5719 { (exit 1); exit 1; } 5508 5720 } 5509 5721 5510 # 5511 # Set up the sed scripts for CONFIG_FILES section. 5512 # 5513 5514 # No need to generate the scripts if there are no CONFIG_FILES. 5515 # This happens for instance when ./config.status config.h 5722 # Set up the scripts for CONFIG_FILES section. 5723 # No need to generate them if there are no CONFIG_FILES. 5724 # This happens for instance with `./config.status config.h'. 5516 5725 if test -n "$CONFIG_FILES"; then 5517 5726 5518 _ACEOF 5519 5520 5521 5727 5728 ac_cr=' 5729 ' 5730 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 5731 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 5732 ac_cs_awk_cr='\\r' 5733 else 5734 ac_cs_awk_cr=$ac_cr 5735 fi 5736 5737 echo 'BEGIN {' >"$tmp/subs1.awk" && 5738 _ACEOF 5739 5740 5741 { 5742 echo "cat >conf$$subs.awk <<_ACEOF" && 5743 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 5744 echo "_ACEOF" 5745 } >conf$$subs.sh || 5746 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5747 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5748 { (exit 1); exit 1; }; } 5749 ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` 5522 5750 ac_delim='%!_!# ' 5523 5751 for ac_last_try in false false false false false :; do 5524 cat >conf$$subs.sed <<_ACEOF 5525 SHELL!$SHELL$ac_delim 5526 PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim 5527 PACKAGE_NAME!$PACKAGE_NAME$ac_delim 5528 PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim 5529 PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim 5530 PACKAGE_STRING!$PACKAGE_STRING$ac_delim 5531 PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim 5532 exec_prefix!$exec_prefix$ac_delim 5533 prefix!$prefix$ac_delim 5534 program_transform_name!$program_transform_name$ac_delim 5535 bindir!$bindir$ac_delim 5536 sbindir!$sbindir$ac_delim 5537 libexecdir!$libexecdir$ac_delim 5538 datarootdir!$datarootdir$ac_delim 5539 datadir!$datadir$ac_delim 5540 sysconfdir!$sysconfdir$ac_delim 5541 sharedstatedir!$sharedstatedir$ac_delim 5542 localstatedir!$localstatedir$ac_delim 5543 includedir!$includedir$ac_delim 5544 oldincludedir!$oldincludedir$ac_delim 5545 docdir!$docdir$ac_delim 5546 infodir!$infodir$ac_delim 5547 htmldir!$htmldir$ac_delim 5548 dvidir!$dvidir$ac_delim 5549 pdfdir!$pdfdir$ac_delim 5550 psdir!$psdir$ac_delim 5551 libdir!$libdir$ac_delim 5552 localedir!$localedir$ac_delim 5553 mandir!$mandir$ac_delim 5554 DEFS!$DEFS$ac_delim 5555 ECHO_C!$ECHO_C$ac_delim 5556 ECHO_N!$ECHO_N$ac_delim 5557 ECHO_T!$ECHO_T$ac_delim 5558 LIBS!$LIBS$ac_delim 5559 build_alias!$build_alias$ac_delim 5560 host_alias!$host_alias$ac_delim 5561 target_alias!$target_alias$ac_delim 5562 CC!$CC$ac_delim 5563 CFLAGS!$CFLAGS$ac_delim 5564 LDFLAGS!$LDFLAGS$ac_delim 5565 CPPFLAGS!$CPPFLAGS$ac_delim 5566 ac_ct_CC!$ac_ct_CC$ac_delim 5567 EXEEXT!$EXEEXT$ac_delim 5568 OBJEXT!$OBJEXT$ac_delim 5569 CPP!$CPP$ac_delim 5570 GREP!$GREP$ac_delim 5571 EGREP!$EGREP$ac_delim 5572 PKG_CONFIG!$PKG_CONFIG$ac_delim 5573 GLIB_CFLAGS!$GLIB_CFLAGS$ac_delim 5574 GLIB_LIBS!$GLIB_LIBS$ac_delim 5575 XSUBPPDIR!$XSUBPPDIR$ac_delim 5576 XSUBPPFLAGS!$XSUBPPFLAGS$ac_delim 5577 ATHSTATIC!$ATHSTATIC$ac_delim 5578 INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim 5579 INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim 5580 INSTALL_DATA!$INSTALL_DATA$ac_delim 5581 subdirs!$subdirs$ac_delim 5582 LIB@&t@OBJS!$LIB@&t@OBJS$ac_delim 5583 LTLIBOBJS!$LTLIBOBJS$ac_delim 5584 _ACEOF 5585 5586 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 59; then 5752 . ./conf$$subs.sh || 5753 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5754 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5755 { (exit 1); exit 1; }; } 5756 5757 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 5758 if test $ac_delim_n = $ac_delim_num; then 5587 5759 break 5588 5760 elif $ac_last_try; then 5589 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&55590 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}5761 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5762 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5591 5763 { (exit 1); exit 1; }; } 5592 5764 else … … 5594 5766 fi 5595 5767 done 5596 5597 ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` 5598 if test -n "$ac_eof"; then 5599 ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` 5600 ac_eof=`expr $ac_eof + 1` 5601 fi 5602 5603 cat >>$CONFIG_STATUS <<_ACEOF 5604 cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof 5605 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end 5606 _ACEOF 5607 sed ' 5608 s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g 5609 s/^/s,@/; s/!/@,|#_!!_#|/ 5610 :n 5611 t n 5612 s/'"$ac_delim"'$/,g/; t 5613 s/$/\\/; p 5614 N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n 5615 ' >>$CONFIG_STATUS <conf$$subs.sed 5616 rm -f conf$$subs.sed 5617 cat >>$CONFIG_STATUS <<_ACEOF 5618 :end 5619 s/|#_!!_#|//g 5620 CEOF$ac_eof 5621 _ACEOF 5622 5768 rm -f conf$$subs.sh 5769 5770 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5771 cat >>"\$tmp/subs1.awk" <<\\_ACAWK && 5772 _ACEOF 5773 sed -n ' 5774 h 5775 s/^/S["/; s/!.*/"]=/ 5776 p 5777 g 5778 s/^[^!]*!// 5779 :repl 5780 t repl 5781 s/'"$ac_delim"'$// 5782 t delim 5783 :nl 5784 h 5785 s/\(.\{148\}\).*/\1/ 5786 t more1 5787 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ 5788 p 5789 n 5790 b repl 5791 :more1 5792 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 5793 p 5794 g 5795 s/.\{148\}// 5796 t nl 5797 :delim 5798 h 5799 s/\(.\{148\}\).*/\1/ 5800 t more2 5801 s/["\\]/\\&/g; s/^/"/; s/$/"/ 5802 p 5803 b 5804 :more2 5805 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 5806 p 5807 g 5808 s/.\{148\}// 5809 t delim 5810 ' <conf$$subs.awk | sed ' 5811 /^[^""]/{ 5812 N 5813 s/\n// 5814 } 5815 ' >>$CONFIG_STATUS || ac_write_fail=1 5816 rm -f conf$$subs.awk 5817 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5818 _ACAWK 5819 cat >>"\$tmp/subs1.awk" <<_ACAWK && 5820 for (key in S) S_is_set[key] = 1 5821 FS = "" 5822 5823 } 5824 { 5825 line = $ 0 5826 nfields = split(line, field, "@") 5827 substed = 0 5828 len = length(field[1]) 5829 for (i = 2; i < nfields; i++) { 5830 key = field[i] 5831 keylen = length(key) 5832 if (S_is_set[key]) { 5833 value = S[key] 5834 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) 5835 len += length(value) + length(field[++i]) 5836 substed = 1 5837 } else 5838 len += 1 + keylen 5839 } 5840 5841 print line 5842 } 5843 5844 _ACAWK 5845 _ACEOF 5846 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5847 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then 5848 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 5849 else 5850 cat 5851 fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ 5852 || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 5853 $as_echo "$as_me: error: could not setup config files machinery" >&2;} 5854 { (exit 1); exit 1; }; } 5855 _ACEOF 5623 5856 5624 5857 # VPATH may cause trouble with some makes, so we remove $(srcdir), … … 5637 5870 fi 5638 5871 5639 cat >>$CONFIG_STATUS <<\_ACEOF 5872 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5640 5873 fi # test -n "$CONFIG_FILES" 5641 5874 5642 5643 for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS 5875 # Set up the scripts for CONFIG_HEADERS section. 5876 # No need to generate them if there are no CONFIG_HEADERS. 5877 # This happens for instance with `./config.status Makefile'. 5878 if test -n "$CONFIG_HEADERS"; then 5879 cat >"$tmp/defines.awk" <<\_ACAWK || 5880 BEGIN { 5881 _ACEOF 5882 5883 # Transform confdefs.h into an awk script `defines.awk', embedded as 5884 # here-document in config.status, that substitutes the proper values into 5885 # config.h.in to produce config.h. 5886 5887 # Create a delimiter string that does not exist in confdefs.h, to ease 5888 # handling of long lines. 5889 ac_delim='%!_!# ' 5890 for ac_last_try in false false :; do 5891 ac_t=`sed -n "/$ac_delim/p" confdefs.h` 5892 if test -z "$ac_t"; then 5893 break 5894 elif $ac_last_try; then 5895 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 5896 $as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} 5897 { (exit 1); exit 1; }; } 5898 else 5899 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 5900 fi 5901 done 5902 5903 # For the awk script, D is an array of macro values keyed by name, 5904 # likewise P contains macro parameters if any. Preserve backslash 5905 # newline sequences. 5906 5907 ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* 5908 sed -n ' 5909 s/.\{148\}/&'"$ac_delim"'/g 5910 t rset 5911 :rset 5912 s/^[ ]*#[ ]*define[ ][ ]*/ / 5913 t def 5914 d 5915 :def 5916 s/\\$// 5917 t bsnl 5918 s/["\\]/\\&/g 5919 s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ 5920 D["\1"]=" \3"/p 5921 s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p 5922 d 5923 :bsnl 5924 s/["\\]/\\&/g 5925 s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ 5926 D["\1"]=" \3\\\\\\n"\\/p 5927 t cont 5928 s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p 5929 t cont 5930 d 5931 :cont 5932 n 5933 s/.\{148\}/&'"$ac_delim"'/g 5934 t clear 5935 :clear 5936 s/\\$// 5937 t bsnlc 5938 s/["\\]/\\&/g; s/^/"/; s/$/"/p 5939 d 5940 :bsnlc 5941 s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p 5942 b cont 5943 ' <confdefs.h | sed ' 5944 s/'"$ac_delim"'/"\\\ 5945 "/g' >>$CONFIG_STATUS || ac_write_fail=1 5946 5947 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5948 for (key in D) D_is_set[key] = 1 5949 FS = "" 5950 } 5951 /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { 5952 line = \$ 0 5953 split(line, arg, " ") 5954 if (arg[1] == "#") { 5955 defundef = arg[2] 5956 mac1 = arg[3] 5957 } else { 5958 defundef = substr(arg[1], 2) 5959 mac1 = arg[2] 5960 } 5961 split(mac1, mac2, "(") #) 5962 macro = mac2[1] 5963 prefix = substr(line, 1, index(line, defundef) - 1) 5964 if (D_is_set[macro]) { 5965 # Preserve the white space surrounding the "#". 5966 print prefix "define", macro P[macro] D[macro] 5967 next 5968 } else { 5969 # Replace #undef with comments. This is necessary, for example, 5970 # in the case of _POSIX_SOURCE, which is predefined and required 5971 # on some systems where configure will not decide to define it. 5972 if (defundef == "undef") { 5973 print "/*", prefix defundef, macro, "*/" 5974 next 5975 } 5976 } 5977 } 5978 { print } 5979 _ACAWK 5980 _ACEOF 5981 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5982 { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 5983 $as_echo "$as_me: error: could not setup config headers machinery" >&2;} 5984 { (exit 1); exit 1; }; } 5985 fi # test -n "$CONFIG_HEADERS" 5986 5987 5988 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " 5989 shift 5990 for ac_tag 5644 5991 do 5645 5992 case $ac_tag in … … 5648 5995 case $ac_mode$ac_tag in 5649 5996 :[FHL]*:*);; 5650 :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&55651 echo "$as_me: error: Invalid tag $ac_tag." >&2;}5997 :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 5998 $as_echo "$as_me: error: invalid tag $ac_tag" >&2;} 5652 5999 { (exit 1); exit 1; }; };; 5653 6000 :[FH]-) ac_tag=-:-;; … … 5678 6025 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 5679 6026 esac || 5680 { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&55681 echo "$as_me: error: cannot find input file: $ac_f" >&2;}6027 { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 6028 $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} 5682 6029 { (exit 1); exit 1; }; };; 5683 6030 esac 5684 ac_file_inputs="$ac_file_inputs $ac_f" 6031 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 6032 ac_file_inputs="$ac_file_inputs '$ac_f'" 5685 6033 done 5686 6034 … … 5688 6036 # use $as_me), people would be surprised to read: 5689 6037 # /* config.h. Generated by config.status. */ 5690 configure_input="Generated from "`IFS=: 5691 echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." 6038 configure_input='Generated from '` 6039 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' 6040 `' by configure.' 5692 6041 if test x"$ac_file" != x-; then 5693 6042 configure_input="$ac_file. $configure_input" 5694 { echo "$as_me:$LINENO: creating $ac_file" >&55695 echo "$as_me: creating $ac_file" >&6;}6043 { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 6044 $as_echo "$as_me: creating $ac_file" >&6;} 5696 6045 fi 6046 # Neutralize special characters interpreted by sed in replacement strings. 6047 case $configure_input in #( 6048 *\&* | *\|* | *\\* ) 6049 ac_sed_conf_input=`$as_echo "$configure_input" | 6050 sed 's/[\\\\&|]/\\\\&/g'`;; #( 6051 *) ac_sed_conf_input=$configure_input;; 6052 esac 5697 6053 5698 6054 case $ac_tag in 5699 *:-:* | *:-) cat >"$tmp/stdin";; 6055 *:-:* | *:-) cat >"$tmp/stdin" \ 6056 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6057 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6058 { (exit 1); exit 1; }; } ;; 5700 6059 esac 5701 6060 ;; … … 5707 6066 X"$ac_file" : 'X\(//\)$' \| \ 5708 6067 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || 5709 echo X"$ac_file" |6068 $as_echo X"$ac_file" | 5710 6069 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 5711 6070 s//\1/ … … 5733 6092 while :; do 5734 6093 case $as_dir in #( 5735 *\'*) as_qdir=` echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(6094 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 5736 6095 *) as_qdir=$as_dir;; 5737 6096 esac … … 5742 6101 X"$as_dir" : 'X\(//\)$' \| \ 5743 6102 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 5744 echo X"$as_dir" |6103 $as_echo X"$as_dir" | 5745 6104 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 5746 6105 s//\1/ … … 5763 6122 done 5764 6123 test -z "$as_dirs" || eval "mkdir $as_dirs" 5765 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&55766 echo "$as_me: error: cannot create directory $as_dir" >&2;}6124 } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 6125 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} 5767 6126 { (exit 1); exit 1; }; }; } 5768 6127 ac_builddir=. … … 5771 6130 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 5772 6131 *) 5773 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`6132 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 5774 6133 # A ".." for each directory in $ac_dir_suffix. 5775 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`6134 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 5776 6135 case $ac_top_builddir_sub in 5777 6136 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; … … 5813 6172 _ACEOF 5814 6173 5815 cat >>$CONFIG_STATUS <<\_ACEOF 6174 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5816 6175 # If the template does not know about datarootdir, expand it. 5817 6176 # FIXME: This hack should be removed a few years after 2.60. 5818 6177 ac_datarootdir_hack=; ac_datarootdir_seen= 5819 6178 5820 case `sed -n '/datarootdir/ { 6179 ac_sed_dataroot=' 6180 /datarootdir/ { 5821 6181 p 5822 6182 q … … 5827 6187 /@localedir@/p 5828 6188 /@mandir@/p 5829 ' $ac_file_inputs` in 6189 ' 6190 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in 5830 6191 *datarootdir*) ac_datarootdir_seen=yes;; 5831 6192 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) 5832 { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&55833 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}5834 _ACEOF 5835 cat >>$CONFIG_STATUS <<_ACEOF 6193 { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 6194 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} 6195 _ACEOF 6196 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5836 6197 ac_datarootdir_hack=' 5837 6198 s&@datadir@&$datadir&g … … 5847 6208 # Shell code in configure.ac might set extrasub. 5848 6209 # FIXME: do we really want to maintain this feature? 5849 cat >>$CONFIG_STATUS <<_ACEOF 5850 sed"$ac_vpsub6210 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 6211 ac_sed_extra="$ac_vpsub 5851 6212 $extrasub 5852 6213 _ACEOF 5853 cat >>$CONFIG_STATUS <<\_ACEOF 6214 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5854 6215 :t 5855 6216 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b 5856 s &@configure_input@&$configure_input&;t t6217 s|@configure_input@|$ac_sed_conf_input|;t t 5857 6218 s&@top_builddir@&$ac_top_builddir_sub&;t t 6219 s&@top_build_prefix@&$ac_top_build_prefix&;t t 5858 6220 s&@srcdir@&$ac_srcdir&;t t 5859 6221 s&@abs_srcdir@&$ac_abs_srcdir&;t t … … 5865 6227 s&@INSTALL@&$ac_INSTALL&;t t 5866 6228 $ac_datarootdir_hack 5867 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 6229 " 6230 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ 6231 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6232 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6233 { (exit 1); exit 1; }; } 5868 6234 5869 6235 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 5870 6236 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 5871 6237 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 5872 { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'6238 { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' 5873 6239 which seems to be undefined. Please make sure it is defined." >&5 5874 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'6240 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 5875 6241 which seems to be undefined. Please make sure it is defined." >&2;} 5876 6242 5877 6243 rm -f "$tmp/stdin" 5878 6244 case $ac_file in 5879 -) cat "$tmp/out"; rm -f "$tmp/out";; 5880 *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; 5881 esac 6245 -) cat "$tmp/out" && rm -f "$tmp/out";; 6246 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; 6247 esac \ 6248 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6249 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6250 { (exit 1); exit 1; }; } 5882 6251 ;; 5883 6252 :H) … … 5885 6254 # CONFIG_HEADER 5886 6255 # 5887 _ACEOF5888 5889 # Transform confdefs.h into a sed script `conftest.defines', that5890 # substitutes the proper values into config.h.in to produce config.h.5891 rm -f conftest.defines conftest.tail5892 # First, append a space to every undef/define line, to ease matching.5893 echo 's/$/ /' >conftest.defines5894 # Then, protect against being on the right side of a sed subst, or in5895 # an unquoted here document, in config.status. If some macros were5896 # called several times there might be several #defines for the same5897 # symbol, which is useless. But do not sort them, since the last5898 # AC_DEFINE must be honored.5899 ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*5900 # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where5901 # NAME is the cpp macro being defined, VALUE is the value it is being given.5902 # PARAMS is the parameter list in the macro definition--in most cases, it's5903 # just an empty string.5904 ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*'5905 ac_dB='\\)[ (].*,\\1define\\2'5906 ac_dC=' '5907 ac_dD=' ,'5908 5909 uniq confdefs.h |5910 sed -n '5911 t rset5912 :rset5913 s/^[ ]*#[ ]*define[ ][ ]*//5914 t ok5915 d5916 :ok5917 s/[\\&,]/\\&/g5918 s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p5919 s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p5920 ' >>conftest.defines5921 5922 # Remove the space that was appended to ease matching.5923 # Then replace #undef with comments. This is necessary, for5924 # example, in the case of _POSIX_SOURCE, which is predefined and required5925 # on some systems where configure will not decide to define it.5926 # (The regexp can be short, since the line contains either #define or #undef.)5927 echo 's/ $//5928 s,^[ #]*u.*,/* & */,' >>conftest.defines5929 5930 # Break up conftest.defines:5931 ac_max_sed_lines=505932 5933 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1"5934 # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2"5935 # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1"5936 # et cetera.5937 ac_in='$ac_file_inputs'5938 ac_out='"$tmp/out1"'5939 ac_nxt='"$tmp/out2"'5940 5941 while :5942 do5943 # Write a here document:5944 cat >>$CONFIG_STATUS <<_ACEOF5945 # First, check the format of the line:5946 cat >"\$tmp/defines.sed" <<\\CEOF5947 /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def5948 /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def5949 b5950 :def5951 _ACEOF5952 sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS5953 echo 'CEOF5954 sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS5955 ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in5956 sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail5957 grep . conftest.tail >/dev/null || break5958 rm -f conftest.defines5959 mv conftest.tail conftest.defines5960 done5961 rm -f conftest.defines conftest.tail5962 5963 echo "ac_result=$ac_in" >>$CONFIG_STATUS5964 cat >>$CONFIG_STATUS <<\_ACEOF5965 6256 if test x"$ac_file" != x-; then 5966 echo "/* $configure_input */" >"$tmp/config.h" 5967 cat "$ac_result" >>"$tmp/config.h" 5968 if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then 5969 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 5970 echo "$as_me: $ac_file is unchanged" >&6;} 6257 { 6258 $as_echo "/* $configure_input */" \ 6259 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" 6260 } >"$tmp/config.h" \ 6261 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6262 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6263 { (exit 1); exit 1; }; } 6264 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then 6265 { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 6266 $as_echo "$as_me: $ac_file is unchanged" >&6;} 5971 6267 else 5972 rm -f $ac_file 5973 mv "$tmp/config.h" $ac_file 6268 rm -f "$ac_file" 6269 mv "$tmp/config.h" "$ac_file" \ 6270 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6271 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6272 { (exit 1); exit 1; }; } 5974 6273 fi 5975 6274 else 5976 echo "/* $configure_input */" 5977 cat "$ac_result" 6275 $as_echo "/* $configure_input */" \ 6276 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ 6277 || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 6278 $as_echo "$as_me: error: could not create -" >&2;} 6279 { (exit 1); exit 1; }; } 5978 6280 fi 5979 rm -f "$tmp/out12"5980 6281 ;; 5981 6282 … … 5990 6291 chmod +x $CONFIG_STATUS 5991 6292 ac_clean_files=$ac_clean_files_save 6293 6294 test $ac_write_fail = 0 || 6295 { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 6296 $as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} 6297 { (exit 1); exit 1; }; } 5992 6298 5993 6299 … … 6018 6324 if test "$no_recursion" != yes; then 6019 6325 6020 # Remove --cache-file and --srcdir arguments so they do not pile up. 6326 # Remove --cache-file, --srcdir, and --disable-option-checking arguments 6327 # so they do not pile up. 6021 6328 ac_sub_configure_args= 6022 6329 ac_prev= … … 6047 6354 -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) 6048 6355 ;; 6356 --disable-option-checking) 6357 ;; 6049 6358 *) 6050 6359 case $ac_arg in 6051 *\'*) ac_arg=` echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;6360 *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 6052 6361 esac 6053 6362 ac_sub_configure_args="$ac_sub_configure_args '$ac_arg'" ;; … … 6059 6368 ac_arg="--prefix=$prefix" 6060 6369 case $ac_arg in 6061 *\'*) ac_arg=` echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;6370 *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 6062 6371 esac 6063 6372 ac_sub_configure_args="'$ac_arg' $ac_sub_configure_args" … … 6068 6377 fi 6069 6378 6379 # Always prepend --disable-option-checking to silence warnings, since 6380 # different subdirs can have different --enable and --with options. 6381 ac_sub_configure_args="--disable-option-checking $ac_sub_configure_args" 6382 6070 6383 ac_popdir=`pwd` 6071 6384 for ac_dir in : $subdirs; do test "x$ac_dir" = x: && continue … … 6076 6389 6077 6390 ac_msg="=== configuring in $ac_dir (`pwd`/$ac_dir)" 6078 echo "$as_me:$LINENO: $ac_msg" >&56079 echo "$ac_msg" >&66391 $as_echo "$as_me:$LINENO: $ac_msg" >&5 6392 $as_echo "$ac_msg" >&6 6080 6393 { as_dir="$ac_dir" 6081 6394 case $as_dir in #( … … 6086 6399 while :; do 6087 6400 case $as_dir in #( 6088 *\'*) as_qdir=` echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(6401 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 6089 6402 *) as_qdir=$as_dir;; 6090 6403 esac … … 6095 6408 X"$as_dir" : 'X\(//\)$' \| \ 6096 6409 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 6097 echo X"$as_dir" |6410 $as_echo X"$as_dir" | 6098 6411 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 6099 6412 s//\1/ … … 6116 6429 done 6117 6430 test -z "$as_dirs" || eval "mkdir $as_dirs" 6118 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&56119 echo "$as_me: error: cannot create directory $as_dir" >&2;}6431 } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 6432 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} 6120 6433 { (exit 1); exit 1; }; }; } 6121 6434 ac_builddir=. … … 6124 6437 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 6125 6438 *) 6126 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`6439 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 6127 6440 # A ".." for each directory in $ac_dir_suffix. 6128 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`6441 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 6129 6442 case $ac_top_builddir_sub in 6130 6443 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; … … 6165 6478 ac_sub_configure=$ac_aux_dir/configure 6166 6479 else 6167 { echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&56168 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;}6480 { $as_echo "$as_me:$LINENO: WARNING: no configuration information is in $ac_dir" >&5 6481 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2;} 6169 6482 ac_sub_configure= 6170 6483 fi … … 6179 6492 esac 6180 6493 6181 { echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&56182 echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;}6494 { $as_echo "$as_me:$LINENO: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&5 6495 $as_echo "$as_me: running $SHELL $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir" >&6;} 6183 6496 # The eval makes quoting arguments work. 6184 6497 eval "\$SHELL \"\$ac_sub_configure\" $ac_sub_configure_args \ 6185 6498 --cache-file=\"\$ac_sub_cache_file\" --srcdir=\"\$ac_srcdir\"" || 6186 { { echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&56187 echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;}6499 { { $as_echo "$as_me:$LINENO: error: $ac_sub_configure failed for $ac_dir" >&5 6500 $as_echo "$as_me: error: $ac_sub_configure failed for $ac_dir" >&2;} 6188 6501 { (exit 1); exit 1; }; } 6189 6502 fi … … 6192 6505 done 6193 6506 fi 6194 6507 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 6508 { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 6509 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 6510 fi 6511 -
autom4te.cache/output.1
rbddcaf1 r560b071 1 1 @%:@! /bin/sh 2 2 @%:@ Guess values for system-dependent variables and create Makefiles. 3 @%:@ Generated by GNU Autoconf 2.6 1.3 @%:@ Generated by GNU Autoconf 2.63. 4 4 @%:@ 5 5 @%:@ Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 6 @%:@ 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.6 @%:@ 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 7 7 @%:@ This configure script is free software; the Free Software Foundation 8 8 @%:@ gives unlimited permission to copy, distribute and modify it. … … 16 16 emulate sh 17 17 NULLCMD=: 18 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which18 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 19 19 # is contrary to our usage. Disable this feature. 20 20 alias -g '${1+"$@"}'='"$@"' … … 38 38 as_cr_alnum=$as_cr_Letters$as_cr_digits 39 39 40 as_nl=' 41 ' 42 export as_nl 43 # Printing a long string crashes Solaris 7 /usr/bin/printf. 44 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 45 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 46 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 47 if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 48 as_echo='printf %s\n' 49 as_echo_n='printf %s' 50 else 51 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 52 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 53 as_echo_n='/usr/ucb/echo -n' 54 else 55 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 56 as_echo_n_body='eval 57 arg=$1; 58 case $arg in 59 *"$as_nl"*) 60 expr "X$arg" : "X\\(.*\\)$as_nl"; 61 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 62 esac; 63 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 64 ' 65 export as_echo_n_body 66 as_echo_n='sh -c $as_echo_n_body as_echo' 67 fi 68 export as_echo_body 69 as_echo='sh -c $as_echo_body as_echo' 70 fi 71 40 72 # The user is always right. 41 73 if test "${PATH_SEPARATOR+set}" != set; then 42 echo "#! /bin/sh" >conf$$.sh 43 echo "exit 0" >>conf$$.sh 44 chmod +x conf$$.sh 45 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 46 PATH_SEPARATOR=';' 47 else 48 PATH_SEPARATOR=: 49 fi 50 rm -f conf$$.sh 74 PATH_SEPARATOR=: 75 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 76 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 77 PATH_SEPARATOR=';' 78 } 51 79 fi 52 80 … … 64 92 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 65 93 # splitting by setting IFS to empty value.) 66 as_nl='67 '68 94 IFS=" "" $as_nl" 69 95 … … 88 114 fi 89 115 if test ! -f "$as_myself"; then 90 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2116 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 91 117 { (exit 1); exit 1; } 92 118 fi … … 101 127 102 128 # NLS nuisances. 103 for as_var in \ 104 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 105 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 106 LC_TELEPHONE LC_TIME 107 do 108 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 109 eval $as_var=C; export $as_var 110 else 111 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 112 fi 113 done 129 LC_ALL=C 130 export LC_ALL 131 LANGUAGE=C 132 export LANGUAGE 114 133 115 134 # Required to use basename. … … 133 152 X"$0" : 'X\(//\)$' \| \ 134 153 X"$0" : 'X\(/\)' \| . 2>/dev/null || 135 echo X/"$0" |154 $as_echo X/"$0" | 136 155 sed '/^.*\/\([^/][^/]*\)\/*$/{ 137 156 s//\1/ … … 159 178 fi 160 179 161 if test $as_have_required = yes && 180 if test $as_have_required = yes && (eval ": 162 181 (as_func_return () { 163 182 (exit \$1) … … 241 260 emulate sh 242 261 NULLCMD=: 243 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which262 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 244 263 # is contrary to our usage. Disable this feature. 245 264 alias -g '${1+"$@"}'='"$@"' … … 262 281 emulate sh 263 282 NULLCMD=: 264 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which283 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 265 284 # is contrary to our usage. Disable this feature. 266 285 alias -g '${1+"$@"}'='"$@"' … … 342 361 if test "x$CONFIG_SHELL" != x; then 343 362 for as_var in BASH_ENV ENV 344 345 346 347 363 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 364 done 365 export CONFIG_SHELL 366 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 348 367 fi 349 368 … … 414 433 test \$exitcode = 0") || { 415 434 echo No shell found that supports shell functions. 416 echo Please tell autoconf@gnu.org about your system, 417 echo including any error possibly output before this 418 echo message 435 echo Please tell bug-autoconf@gnu.org about your system, 436 echo including any error possibly output before this message. 437 echo This can help us improve future autoconf versions. 438 echo Configuration will now proceed without shell functions. 419 439 } 420 440 … … 452 472 ' >$as_me.lineno && 453 473 chmod +x "$as_me.lineno" || 454 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2474 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 455 475 { (exit 1); exit 1; }; } 456 476 … … 480 500 ECHO_N='-n';; 481 501 esac 482 483 502 if expr a : '\(a\)' >/dev/null 2>&1 && 484 503 test "X`expr 00001 : '.*\(...\)'`" = X001; then … … 493 512 else 494 513 rm -f conf$$.dir 495 mkdir conf$$.dir 496 fi 497 echo >conf$$.file 498 if ln -s conf$$.file conf$$ 2>/dev/null; then 499 as_ln_s='ln -s' 500 # ... but there are two gotchas: 501 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 502 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 503 # In both cases, we have to default to `cp -p'. 504 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 514 mkdir conf$$.dir 2>/dev/null 515 fi 516 if (echo >conf$$.file) 2>/dev/null; then 517 if ln -s conf$$.file conf$$ 2>/dev/null; then 518 as_ln_s='ln -s' 519 # ... but there are two gotchas: 520 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 521 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 522 # In both cases, we have to default to `cp -p'. 523 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 524 as_ln_s='cp -p' 525 elif ln conf$$.file conf$$ 2>/dev/null; then 526 as_ln_s=ln 527 else 505 528 as_ln_s='cp -p' 506 elif ln conf$$.file conf$$ 2>/dev/null; then 507 as_ln_s=ln 529 fi 508 530 else 509 531 as_ln_s='cp -p' … … 530 552 eval sh -c '\'' 531 553 if test -d "$1"; then 532 554 test -d "$1/."; 533 555 else 534 556 case $1 in 535 557 -*)set "./$1";; 536 558 esac; 537 559 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in … … 614 636 #endif" 615 637 616 ac_subst_vars='SHELL 638 enable_option_checking=no 639 ac_subst_vars='LTLIBOBJS 640 LIB@&t@OBJS 641 subdirs 642 INSTALL_DATA 643 INSTALL_SCRIPT 644 INSTALL_PROGRAM 645 ATHSTATIC 646 XSUBPPFLAGS 647 XSUBPPDIR 648 GLIB_LIBS 649 GLIB_CFLAGS 650 PKG_CONFIG 651 EGREP 652 GREP 653 CPP 654 OBJEXT 655 EXEEXT 656 ac_ct_CC 657 CPPFLAGS 658 LDFLAGS 659 CFLAGS 660 CC 661 target_alias 662 host_alias 663 build_alias 664 LIBS 665 ECHO_T 666 ECHO_N 667 ECHO_C 668 DEFS 669 mandir 670 localedir 671 libdir 672 psdir 673 pdfdir 674 dvidir 675 htmldir 676 infodir 677 docdir 678 oldincludedir 679 includedir 680 localstatedir 681 sharedstatedir 682 sysconfdir 683 datadir 684 datarootdir 685 libexecdir 686 sbindir 687 bindir 688 program_transform_name 689 prefix 690 exec_prefix 691 PACKAGE_BUGREPORT 692 PACKAGE_STRING 693 PACKAGE_VERSION 694 PACKAGE_TARNAME 695 PACKAGE_NAME 617 696 PATH_SEPARATOR 618 PACKAGE_NAME 619 PACKAGE_TARNAME 620 PACKAGE_VERSION 621 PACKAGE_STRING 622 PACKAGE_BUGREPORT 623 exec_prefix 624 prefix 625 program_transform_name 626 bindir 627 sbindir 628 libexecdir 629 datarootdir 630 datadir 631 sysconfdir 632 sharedstatedir 633 localstatedir 634 includedir 635 oldincludedir 636 docdir 637 infodir 638 htmldir 639 dvidir 640 pdfdir 641 psdir 642 libdir 643 localedir 644 mandir 645 DEFS 646 ECHO_C 647 ECHO_N 648 ECHO_T 649 LIBS 650 build_alias 651 host_alias 652 target_alias 653 CC 654 CFLAGS 655 LDFLAGS 656 CPPFLAGS 657 ac_ct_CC 658 EXEEXT 659 OBJEXT 660 CPP 661 GREP 662 EGREP 663 PKG_CONFIG 664 GLIB_CFLAGS 665 GLIB_LIBS 666 XSUBPPDIR 667 XSUBPPFLAGS 668 ATHSTATIC 669 INSTALL_PROGRAM 670 INSTALL_SCRIPT 671 INSTALL_DATA 672 subdirs 673 LIB@&t@OBJS 674 LTLIBOBJS' 697 SHELL' 675 698 ac_subst_files='' 699 ac_user_opts=' 700 enable_option_checking 701 enable_athstatic 702 ' 676 703 ac_precious_vars='build_alias 677 704 host_alias … … 691 718 ac_init_help= 692 719 ac_init_version=false 720 ac_unrecognized_opts= 721 ac_unrecognized_sep= 693 722 # The variables have the same names as the options, with 694 723 # dashes changed to underlines. … … 789 818 790 819 -disable-* | --disable-*) 791 ac_ feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`820 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 792 821 # Reject names that are not valid shell variable names. 793 expr "x$ac_ feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&794 { echo "$as_me: error: invalid feature name: $ac_feature" >&2822 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 823 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 795 824 { (exit 1); exit 1; }; } 796 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 797 eval enable_$ac_feature=no ;; 825 ac_useropt_orig=$ac_useropt 826 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 827 case $ac_user_opts in 828 *" 829 "enable_$ac_useropt" 830 "*) ;; 831 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" 832 ac_unrecognized_sep=', ';; 833 esac 834 eval enable_$ac_useropt=no ;; 798 835 799 836 -docdir | --docdir | --docdi | --doc | --do) … … 808 845 809 846 -enable-* | --enable-*) 810 ac_ feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`847 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 811 848 # Reject names that are not valid shell variable names. 812 expr "x$ac_ feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&813 { echo "$as_me: error: invalid feature name: $ac_feature" >&2849 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 850 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 814 851 { (exit 1); exit 1; }; } 815 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 816 eval enable_$ac_feature=\$ac_optarg ;; 852 ac_useropt_orig=$ac_useropt 853 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 854 case $ac_user_opts in 855 *" 856 "enable_$ac_useropt" 857 "*) ;; 858 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" 859 ac_unrecognized_sep=', ';; 860 esac 861 eval enable_$ac_useropt=\$ac_optarg ;; 817 862 818 863 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ … … 1005 1050 1006 1051 -with-* | --with-*) 1007 ac_ package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`1052 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1008 1053 # Reject names that are not valid shell variable names. 1009 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1010 { echo "$as_me: error: invalid package name: $ac_package" >&21054 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1055 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1011 1056 { (exit 1); exit 1; }; } 1012 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1013 eval with_$ac_package=\$ac_optarg ;; 1057 ac_useropt_orig=$ac_useropt 1058 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1059 case $ac_user_opts in 1060 *" 1061 "with_$ac_useropt" 1062 "*) ;; 1063 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" 1064 ac_unrecognized_sep=', ';; 1065 esac 1066 eval with_$ac_useropt=\$ac_optarg ;; 1014 1067 1015 1068 -without-* | --without-*) 1016 ac_ package=`expr "x$ac_option" : 'x-*without-\(.*\)'`1069 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1017 1070 # Reject names that are not valid shell variable names. 1018 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1019 { echo "$as_me: error: invalid package name: $ac_package" >&21071 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1072 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1020 1073 { (exit 1); exit 1; }; } 1021 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1022 eval with_$ac_package=no ;; 1074 ac_useropt_orig=$ac_useropt 1075 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1076 case $ac_user_opts in 1077 *" 1078 "with_$ac_useropt" 1079 "*) ;; 1080 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" 1081 ac_unrecognized_sep=', ';; 1082 esac 1083 eval with_$ac_useropt=no ;; 1023 1084 1024 1085 --x) … … 1040 1101 x_libraries=$ac_optarg ;; 1041 1102 1042 -*) { echo "$as_me: error: unrecognized option: $ac_option1103 -*) { $as_echo "$as_me: error: unrecognized option: $ac_option 1043 1104 Try \`$0 --help' for more information." >&2 1044 1105 { (exit 1); exit 1; }; } … … 1049 1110 # Reject names that are not valid shell variable names. 1050 1111 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 1051 { echo "$as_me: error: invalid variable name: $ac_envvar" >&21112 { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1052 1113 { (exit 1); exit 1; }; } 1053 1114 eval $ac_envvar=\$ac_optarg … … 1056 1117 *) 1057 1118 # FIXME: should be removed in autoconf 3.0. 1058 echo "$as_me: WARNING: you should use --build, --host, --target" >&21119 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1059 1120 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1060 echo "$as_me: WARNING: invalid host type: $ac_option" >&21121 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1061 1122 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1062 1123 ;; … … 1067 1128 if test -n "$ac_prev"; then 1068 1129 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1069 { echo "$as_me: error: missing argument to $ac_option" >&21130 { $as_echo "$as_me: error: missing argument to $ac_option" >&2 1070 1131 { (exit 1); exit 1; }; } 1071 1132 fi 1072 1133 1073 # Be sure to have absolute directory names. 1134 if test -n "$ac_unrecognized_opts"; then 1135 case $enable_option_checking in 1136 no) ;; 1137 fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 1138 { (exit 1); exit 1; }; } ;; 1139 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1140 esac 1141 fi 1142 1143 # Check all directory arguments for consistency. 1074 1144 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1075 1145 datadir sysconfdir sharedstatedir localstatedir includedir \ … … 1078 1148 do 1079 1149 eval ac_val=\$$ac_var 1150 # Remove trailing slashes. 1151 case $ac_val in 1152 */ ) 1153 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` 1154 eval $ac_var=\$ac_val;; 1155 esac 1156 # Be sure to have absolute directory names. 1080 1157 case $ac_val in 1081 1158 [\\/$]* | ?:[\\/]* ) continue;; 1082 1159 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1083 1160 esac 1084 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&21161 { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1085 1162 { (exit 1); exit 1; }; } 1086 1163 done … … 1097 1174 if test "x$build_alias" = x; then 1098 1175 cross_compiling=maybe 1099 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.1176 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1100 1177 If a cross compiler is detected then cross compile mode will be used." >&2 1101 1178 elif test "x$build_alias" != "x$host_alias"; then … … 1113 1190 ac_ls_di=`ls -di .` && 1114 1191 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1115 { echo "$as_me: error: Working directory cannot be determined" >&21192 { $as_echo "$as_me: error: working directory cannot be determined" >&2 1116 1193 { (exit 1); exit 1; }; } 1117 1194 test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1118 { echo "$as_me: error: pwd does not report name of working directory" >&21195 { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 1119 1196 { (exit 1); exit 1; }; } 1120 1197 … … 1124 1201 ac_srcdir_defaulted=yes 1125 1202 # Try the directory containing this script, then the parent directory. 1126 ac_confdir=`$as_dirname -- "$ 0" ||1127 $as_expr X"$ 0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \1128 X"$ 0" : 'X\(//\)[^/]' \| \1129 X"$ 0" : 'X\(//\)$' \| \1130 X"$ 0" : 'X\(/\)' \| . 2>/dev/null ||1131 echo X"$0" |1203 ac_confdir=`$as_dirname -- "$as_myself" || 1204 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1205 X"$as_myself" : 'X\(//\)[^/]' \| \ 1206 X"$as_myself" : 'X\(//\)$' \| \ 1207 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || 1208 $as_echo X"$as_myself" | 1132 1209 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1133 1210 s//\1/ … … 1156 1233 if test ! -r "$srcdir/$ac_unique_file"; then 1157 1234 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1158 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&21235 { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1159 1236 { (exit 1); exit 1; }; } 1160 1237 fi 1161 1238 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1162 1239 ac_abs_confdir=`( 1163 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&21240 cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 1164 1241 { (exit 1); exit 1; }; } 1165 1242 pwd)` … … 1210 1287 Installation directories: 1211 1288 --prefix=PREFIX install architecture-independent files in PREFIX 1212 1289 [$ac_default_prefix] 1213 1290 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1214 1291 [PREFIX] 1215 1292 1216 1293 By default, \`make install' will install all the files in … … 1222 1299 1223 1300 Fine tuning of the installation directories: 1224 --bindir=DIR user executables [EPREFIX/bin]1225 --sbindir=DIR system admin executables [EPREFIX/sbin]1226 --libexecdir=DIR program executables [EPREFIX/libexec]1227 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]1228 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]1229 --localstatedir=DIR modifiable single-machine data [PREFIX/var]1230 --libdir=DIR object code libraries [EPREFIX/lib]1231 --includedir=DIR C header files [PREFIX/include]1232 --oldincludedir=DIR C header files for non-gcc [/usr/include]1233 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]1234 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]1235 --infodir=DIR info documentation [DATAROOTDIR/info]1236 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]1237 --mandir=DIR man documentation [DATAROOTDIR/man]1238 --docdir=DIR documentation root @<:@DATAROOTDIR/doc/PACKAGE@:>@1239 --htmldir=DIR html documentation [DOCDIR]1240 --dvidir=DIR dvi documentation [DOCDIR]1241 --pdfdir=DIR pdf documentation [DOCDIR]1242 --psdir=DIR ps documentation [DOCDIR]1301 --bindir=DIR user executables [EPREFIX/bin] 1302 --sbindir=DIR system admin executables [EPREFIX/sbin] 1303 --libexecdir=DIR program executables [EPREFIX/libexec] 1304 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1305 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1306 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1307 --libdir=DIR object code libraries [EPREFIX/lib] 1308 --includedir=DIR C header files [PREFIX/include] 1309 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1310 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1311 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1312 --infodir=DIR info documentation [DATAROOTDIR/info] 1313 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1314 --mandir=DIR man documentation [DATAROOTDIR/man] 1315 --docdir=DIR documentation root @<:@DATAROOTDIR/doc/PACKAGE@:>@ 1316 --htmldir=DIR html documentation [DOCDIR] 1317 --dvidir=DIR dvi documentation [DOCDIR] 1318 --pdfdir=DIR pdf documentation [DOCDIR] 1319 --psdir=DIR ps documentation [DOCDIR] 1243 1320 _ACEOF 1244 1321 … … 1252 1329 1253 1330 Optional Features: 1331 --disable-option-checking ignore unrecognized --enable/--with options 1254 1332 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1255 1333 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] … … 1279 1357 # If there are subdirs, report their specific --help. 1280 1358 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1281 test -d "$ac_dir" || continue 1359 test -d "$ac_dir" || 1360 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || 1361 continue 1282 1362 ac_builddir=. 1283 1363 … … 1285 1365 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1286 1366 *) 1287 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`1367 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 1288 1368 # A ".." for each directory in $ac_dir_suffix. 1289 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`1369 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 1290 1370 case $ac_top_builddir_sub in 1291 1371 "") ac_top_builddir_su