- Timestamp:
- 02/23/09 18:37:06 (3 years ago)
- Location:
- branches/win/trunk
- Files:
-
- 1 added
- 10 edited
-
Makefile.in (modified) (2 diffs)
-
aclocal.m4 (modified) (1 diff)
-
config.h.in (modified) (1 diff)
-
configure (modified) (280 diffs)
-
configure.ac (modified) (1 diff)
-
man/Makefile.in (modified) (1 diff)
-
src/Makefile.am (modified) (1 diff)
-
src/Makefile.in (modified) (1 diff)
-
src/ocat.h (modified) (2 diffs)
-
src/ocat_cygwin.h (added)
-
src/ocateth.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/win/trunk/Makefile.in
r472 r480 35 35 $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ 36 36 $(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS COPYING \ 37 ChangeLog INSTALL NEWS TODO config.guess config.sub depcomp \ 38 install-sh missing 37 ChangeLog INSTALL NEWS TODO depcomp install-sh missing 39 38 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 40 39 am__aclocal_m4_deps = $(top_srcdir)/configure.ac … … 161 160 sysconfdir = @sysconfdir@ 162 161 target_alias = @target_alias@ 162 top_build_prefix = @top_build_prefix@ 163 163 top_builddir = @top_builddir@ 164 164 top_srcdir = @top_srcdir@ -
branches/win/trunk/aclocal.m4
r367 r480 14 14 m4_ifndef([AC_AUTOCONF_VERSION], 15 15 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl 16 m4_if(AC_AUTOCONF_VERSION, [2.6 1],,17 [m4_warning([this file was generated for autoconf 2.6 1.16 m4_if(AC_AUTOCONF_VERSION, [2.63],, 17 [m4_warning([this file was generated for autoconf 2.63. 18 18 You have another version of autoconf. It may work, but is not guaranteed to. 19 19 If you have problems, you may need to regenerate the build system entirely. -
branches/win/trunk/config.h.in
r421 r480 12 12 /* Define to 1 if you have the <endian.h> header file. */ 13 13 #undef HAVE_ENDIAN_H 14 15 /* Define to 1 if you have the `ether_ntoa' function. */ 16 #undef HAVE_ETHER_NTOA 14 17 15 18 /* Define to 1 if you have the `ether_ntoa_r' function. */ -
branches/win/trunk/configure
r476 r480 1 1 #! /bin/sh 2 2 # Guess values for system-dependent variables and create Makefiles. 3 # Generated by GNU Autoconf 2.6 1 for onioncat 0.1.10-475M.3 # Generated by GNU Autoconf 2.63 for onioncat 0.1.10-479M. 4 4 # 5 5 # Report bugs to <rahra@cypherpunk.at>. 6 6 # 7 7 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 8 # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.8 # 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 9 9 # This configure script is free software; the Free Software Foundation 10 10 # gives unlimited permission to copy, distribute and modify it. … … 18 18 emulate sh 19 19 NULLCMD=: 20 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 21 21 # is contrary to our usage. Disable this feature. 22 22 alias -g '${1+"$@"}'='"$@"' … … 40 40 as_cr_alnum=$as_cr_Letters$as_cr_digits 41 41 42 as_nl=' 43 ' 44 export as_nl 45 # Printing a long string crashes Solaris 7 /usr/bin/printf. 46 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 47 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 48 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 49 if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 50 as_echo='printf %s\n' 51 as_echo_n='printf %s' 52 else 53 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 54 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 55 as_echo_n='/usr/ucb/echo -n' 56 else 57 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 58 as_echo_n_body='eval 59 arg=$1; 60 case $arg in 61 *"$as_nl"*) 62 expr "X$arg" : "X\\(.*\\)$as_nl"; 63 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 64 esac; 65 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 66 ' 67 export as_echo_n_body 68 as_echo_n='sh -c $as_echo_n_body as_echo' 69 fi 70 export as_echo_body 71 as_echo='sh -c $as_echo_body as_echo' 72 fi 73 42 74 # The user is always right. 43 75 if test "${PATH_SEPARATOR+set}" != set; then 44 echo "#! /bin/sh" >conf$$.sh 45 echo "exit 0" >>conf$$.sh 46 chmod +x conf$$.sh 47 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 48 PATH_SEPARATOR=';' 49 else 50 PATH_SEPARATOR=: 51 fi 52 rm -f conf$$.sh 76 PATH_SEPARATOR=: 77 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 78 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 79 PATH_SEPARATOR=';' 80 } 53 81 fi 54 82 … … 66 94 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 67 95 # splitting by setting IFS to empty value.) 68 as_nl='69 '70 96 IFS=" "" $as_nl" 71 97 … … 90 116 fi 91 117 if test ! -f "$as_myself"; then 92 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2118 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 93 119 { (exit 1); exit 1; } 94 120 fi … … 103 129 104 130 # NLS nuisances. 105 for as_var in \ 106 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 107 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 108 LC_TELEPHONE LC_TIME 109 do 110 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 111 eval $as_var=C; export $as_var 112 else 113 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 114 fi 115 done 131 LC_ALL=C 132 export LC_ALL 133 LANGUAGE=C 134 export LANGUAGE 116 135 117 136 # Required to use basename. … … 135 154 X"$0" : 'X\(//\)$' \| \ 136 155 X"$0" : 'X\(/\)' \| . 2>/dev/null || 137 echo X/"$0" |156 $as_echo X/"$0" | 138 157 sed '/^.*\/\([^/][^/]*\)\/*$/{ 139 158 s//\1/ … … 161 180 fi 162 181 163 if test $as_have_required = yes && (eval ":182 if test $as_have_required = yes && (eval ": 164 183 (as_func_return () { 165 184 (exit \$1) … … 243 262 emulate sh 244 263 NULLCMD=: 245 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which264 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 246 265 # is contrary to our usage. Disable this feature. 247 266 alias -g '${1+"$@"}'='"$@"' … … 264 283 emulate sh 265 284 NULLCMD=: 266 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which285 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 267 286 # is contrary to our usage. Disable this feature. 268 287 alias -g '${1+"$@"}'='"$@"' … … 344 363 if test "x$CONFIG_SHELL" != x; then 345 364 for as_var in BASH_ENV ENV 346 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var347 done348 export CONFIG_SHELL349 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}365 do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 366 done 367 export CONFIG_SHELL 368 exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} 350 369 fi 351 370 … … 416 435 test \$exitcode = 0") || { 417 436 echo No shell found that supports shell functions. 418 echo Please tell autoconf@gnu.org about your system, 419 echo including any error possibly output before this 420 echo message 437 echo Please tell bug-autoconf@gnu.org about your system, 438 echo including any error possibly output before this message. 439 echo This can help us improve future autoconf versions. 440 echo Configuration will now proceed without shell functions. 421 441 } 422 442 … … 454 474 ' >$as_me.lineno && 455 475 chmod +x "$as_me.lineno" || 456 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2476 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 457 477 { (exit 1); exit 1; }; } 458 478 … … 482 502 ECHO_N='-n';; 483 503 esac 484 485 504 if expr a : '\(a\)' >/dev/null 2>&1 && 486 505 test "X`expr 00001 : '.*\(...\)'`" = X001; then … … 495 514 else 496 515 rm -f conf$$.dir 497 mkdir conf$$.dir 498 fi 499 echo >conf$$.file 500 if ln -s conf$$.file conf$$ 2>/dev/null; then 501 as_ln_s='ln -s' 502 # ... but there are two gotchas: 503 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 504 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 505 # In both cases, we have to default to `cp -p'. 506 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 516 mkdir conf$$.dir 2>/dev/null 517 fi 518 if (echo >conf$$.file) 2>/dev/null; then 519 if ln -s conf$$.file conf$$ 2>/dev/null; then 520 as_ln_s='ln -s' 521 # ... but there are two gotchas: 522 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 523 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 524 # In both cases, we have to default to `cp -p'. 525 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 526 as_ln_s='cp -p' 527 elif ln conf$$.file conf$$ 2>/dev/null; then 528 as_ln_s=ln 529 else 507 530 as_ln_s='cp -p' 508 elif ln conf$$.file conf$$ 2>/dev/null; then 509 as_ln_s=ln 531 fi 510 532 else 511 533 as_ln_s='cp -p' … … 532 554 eval sh -c '\'' 533 555 if test -d "$1"; then 534 test -d "$1/.";556 test -d "$1/."; 535 557 else 536 558 case $1 in 537 -*)set "./$1";;559 -*)set "./$1";; 538 560 esac; 539 561 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in … … 575 597 PACKAGE_NAME='onioncat' 576 598 PACKAGE_TARNAME='onioncat' 577 PACKAGE_VERSION='0.1.10-47 5M'578 PACKAGE_STRING='onioncat 0.1.10-47 5M'599 PACKAGE_VERSION='0.1.10-479M' 600 PACKAGE_STRING='onioncat 0.1.10-479M' 579 601 PACKAGE_BUGREPORT='rahra@cypherpunk.at' 580 602 … … 615 637 #endif" 616 638 617 ac_subst_vars='SHELL 639 ac_subst_vars='LTLIBOBJS 640 LIBOBJS 641 EGREP 642 GREP 643 CPP 644 am__fastdepCC_FALSE 645 am__fastdepCC_TRUE 646 CCDEPMODE 647 AMDEPBACKSLASH 648 AMDEP_FALSE 649 AMDEP_TRUE 650 am__quote 651 am__include 652 DEPDIR 653 OBJEXT 654 EXEEXT 655 ac_ct_CC 656 CPPFLAGS 657 LDFLAGS 658 CC 659 CFLAGS 660 am__untar 661 am__tar 662 AMTAR 663 am__leading_dot 664 SET_MAKE 665 AWK 666 mkdir_p 667 MKDIR_P 668 INSTALL_STRIP_PROGRAM 669 STRIP 670 install_sh 671 MAKEINFO 672 AUTOHEADER 673 AUTOMAKE 674 AUTOCONF 675 ACLOCAL 676 VERSION 677 PACKAGE 678 CYGPATH_W 679 am__isrc 680 INSTALL_DATA 681 INSTALL_SCRIPT 682 INSTALL_PROGRAM 683 target_alias 684 host_alias 685 build_alias 686 LIBS 687 ECHO_T 688 ECHO_N 689 ECHO_C 690 DEFS 691 mandir 692 localedir 693 libdir 694 psdir 695 pdfdir 696 dvidir 697 htmldir 698 infodir 699 docdir 700 oldincludedir 701 includedir 702 localstatedir 703 sharedstatedir 704 sysconfdir 705 datadir 706 datarootdir 707 libexecdir 708 sbindir 709 bindir 710 program_transform_name 711 prefix 712 exec_prefix 713 PACKAGE_BUGREPORT 714 PACKAGE_STRING 715 PACKAGE_VERSION 716 PACKAGE_TARNAME 717 PACKAGE_NAME 618 718 PATH_SEPARATOR 619 PACKAGE_NAME 620 PACKAGE_TARNAME 621 PACKAGE_VERSION 622 PACKAGE_STRING 623 PACKAGE_BUGREPORT 624 exec_prefix 625 prefix 626 program_transform_name 627 bindir 628 sbindir 629 libexecdir 630 datarootdir 631 datadir 632 sysconfdir 633 sharedstatedir 634 localstatedir 635 includedir 636 oldincludedir 637 docdir 638 infodir 639 htmldir 640 dvidir 641 pdfdir 642 psdir 643 libdir 644 localedir 645 mandir 646 DEFS 647 ECHO_C 648 ECHO_N 649 ECHO_T 650 LIBS 651 build_alias 652 host_alias 653 target_alias 654 INSTALL_PROGRAM 655 INSTALL_SCRIPT 656 INSTALL_DATA 657 am__isrc 658 CYGPATH_W 659 PACKAGE 660 VERSION 661 ACLOCAL 662 AUTOCONF 663 AUTOMAKE 664 AUTOHEADER 665 MAKEINFO 666 install_sh 667 STRIP 668 INSTALL_STRIP_PROGRAM 669 mkdir_p 670 AWK 671 SET_MAKE 672 am__leading_dot 673 AMTAR 674 am__tar 675 am__untar 676 CFLAGS 677 CC 678 LDFLAGS 679 CPPFLAGS 680 ac_ct_CC 681 EXEEXT 682 OBJEXT 683 DEPDIR 684 am__include 685 am__quote 686 AMDEP_TRUE 687 AMDEP_FALSE 688 AMDEPBACKSLASH 689 CCDEPMODE 690 am__fastdepCC_TRUE 691 am__fastdepCC_FALSE 692 CPP 693 GREP 694 EGREP 695 LIBOBJS 696 LTLIBOBJS' 719 SHELL' 697 720 ac_subst_files='' 721 ac_user_opts=' 722 enable_option_checking 723 enable_debug 724 enable_packet_log 725 enable_handle_http 726 enable_packet_queue 727 enable_check_ipsrc 728 enable_rtt 729 enable_dependency_tracking 730 ' 698 731 ac_precious_vars='build_alias 699 732 host_alias … … 710 743 ac_init_help= 711 744 ac_init_version=false 745 ac_unrecognized_opts= 746 ac_unrecognized_sep= 712 747 # The variables have the same names as the options, with 713 748 # dashes changed to underlines. … … 808 843 809 844 -disable-* | --disable-*) 810 ac_ feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`845 ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` 811 846 # 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" >&2847 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 848 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 814 849 { (exit 1); exit 1; }; } 815 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 816 eval enable_$ac_feature=no ;; 850 ac_useropt_orig=$ac_useropt 851 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 852 case $ac_user_opts in 853 *" 854 "enable_$ac_useropt" 855 "*) ;; 856 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" 857 ac_unrecognized_sep=', ';; 858 esac 859 eval enable_$ac_useropt=no ;; 817 860 818 861 -docdir | --docdir | --docdi | --doc | --do) … … 827 870 828 871 -enable-* | --enable-*) 829 ac_ feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`872 ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` 830 873 # Reject names that are not valid shell variable names. 831 expr "x$ac_ feature" : ".*[^-._$as_cr_alnum]" >/dev/null &&832 { echo "$as_me: error: invalid feature name: $ac_feature" >&2874 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 875 { $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2 833 876 { (exit 1); exit 1; }; } 834 ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` 835 eval enable_$ac_feature=\$ac_optarg ;; 877 ac_useropt_orig=$ac_useropt 878 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 879 case $ac_user_opts in 880 *" 881 "enable_$ac_useropt" 882 "*) ;; 883 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" 884 ac_unrecognized_sep=', ';; 885 esac 886 eval enable_$ac_useropt=\$ac_optarg ;; 836 887 837 888 -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ … … 1024 1075 1025 1076 -with-* | --with-*) 1026 ac_ package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`1077 ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` 1027 1078 # Reject names that are not valid shell variable names. 1028 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1029 { echo "$as_me: error: invalid package name: $ac_package" >&21079 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1080 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1030 1081 { (exit 1); exit 1; }; } 1031 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1032 eval with_$ac_package=\$ac_optarg ;; 1082 ac_useropt_orig=$ac_useropt 1083 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1084 case $ac_user_opts in 1085 *" 1086 "with_$ac_useropt" 1087 "*) ;; 1088 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" 1089 ac_unrecognized_sep=', ';; 1090 esac 1091 eval with_$ac_useropt=\$ac_optarg ;; 1033 1092 1034 1093 -without-* | --without-*) 1035 ac_ package=`expr "x$ac_option" : 'x-*without-\(.*\)'`1094 ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` 1036 1095 # Reject names that are not valid shell variable names. 1037 expr "x$ac_ package" : ".*[^-._$as_cr_alnum]" >/dev/null &&1038 { echo "$as_me: error: invalid package name: $ac_package" >&21096 expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && 1097 { $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2 1039 1098 { (exit 1); exit 1; }; } 1040 ac_package=`echo $ac_package | sed 's/[-.]/_/g'` 1041 eval with_$ac_package=no ;; 1099 ac_useropt_orig=$ac_useropt 1100 ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` 1101 case $ac_user_opts in 1102 *" 1103 "with_$ac_useropt" 1104 "*) ;; 1105 *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" 1106 ac_unrecognized_sep=', ';; 1107 esac 1108 eval with_$ac_useropt=no ;; 1042 1109 1043 1110 --x) … … 1059 1126 x_libraries=$ac_optarg ;; 1060 1127 1061 -*) { echo "$as_me: error: unrecognized option: $ac_option1128 -*) { $as_echo "$as_me: error: unrecognized option: $ac_option 1062 1129 Try \`$0 --help' for more information." >&2 1063 1130 { (exit 1); exit 1; }; } … … 1068 1135 # Reject names that are not valid shell variable names. 1069 1136 expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && 1070 { echo "$as_me: error: invalid variable name: $ac_envvar" >&21137 { $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2 1071 1138 { (exit 1); exit 1; }; } 1072 1139 eval $ac_envvar=\$ac_optarg … … 1075 1142 *) 1076 1143 # FIXME: should be removed in autoconf 3.0. 1077 echo "$as_me: WARNING: you should use --build, --host, --target" >&21144 $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 1078 1145 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && 1079 echo "$as_me: WARNING: invalid host type: $ac_option" >&21146 $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 1080 1147 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} 1081 1148 ;; … … 1086 1153 if test -n "$ac_prev"; then 1087 1154 ac_option=--`echo $ac_prev | sed 's/_/-/g'` 1088 { echo "$as_me: error: missing argument to $ac_option" >&21155 { $as_echo "$as_me: error: missing argument to $ac_option" >&2 1089 1156 { (exit 1); exit 1; }; } 1090 1157 fi 1091 1158 1092 # Be sure to have absolute directory names. 1159 if test -n "$ac_unrecognized_opts"; then 1160 case $enable_option_checking in 1161 no) ;; 1162 fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2 1163 { (exit 1); exit 1; }; } ;; 1164 *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; 1165 esac 1166 fi 1167 1168 # Check all directory arguments for consistency. 1093 1169 for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ 1094 1170 datadir sysconfdir sharedstatedir localstatedir includedir \ … … 1097 1173 do 1098 1174 eval ac_val=\$$ac_var 1175 # Remove trailing slashes. 1176 case $ac_val in 1177 */ ) 1178 ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` 1179 eval $ac_var=\$ac_val;; 1180 esac 1181 # Be sure to have absolute directory names. 1099 1182 case $ac_val in 1100 1183 [\\/$]* | ?:[\\/]* ) continue;; 1101 1184 NONE | '' ) case $ac_var in *prefix ) continue;; esac;; 1102 1185 esac 1103 { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&21186 { $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 1104 1187 { (exit 1); exit 1; }; } 1105 1188 done … … 1116 1199 if test "x$build_alias" = x; then 1117 1200 cross_compiling=maybe 1118 echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.1201 $as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host. 1119 1202 If a cross compiler is detected then cross compile mode will be used." >&2 1120 1203 elif test "x$build_alias" != "x$host_alias"; then … … 1132 1215 ac_ls_di=`ls -di .` && 1133 1216 ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || 1134 { echo "$as_me: error: Working directory cannot be determined" >&21217 { $as_echo "$as_me: error: working directory cannot be determined" >&2 1135 1218 { (exit 1); exit 1; }; } 1136 1219 test "X$ac_ls_di" = "X$ac_pwd_ls_di" || 1137 { echo "$as_me: error: pwd does not report name of working directory" >&21220 { $as_echo "$as_me: error: pwd does not report name of working directory" >&2 1138 1221 { (exit 1); exit 1; }; } 1139 1222 … … 1143 1226 ac_srcdir_defaulted=yes 1144 1227 # Try the directory containing this script, then the parent directory. 1145 ac_confdir=`$as_dirname -- "$ 0" ||1146 $as_expr X"$ 0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \1147 X"$ 0" : 'X\(//\)[^/]' \| \1148 X"$ 0" : 'X\(//\)$' \| \1149 X"$ 0" : 'X\(/\)' \| . 2>/dev/null ||1150 echo X"$0" |1228 ac_confdir=`$as_dirname -- "$as_myself" || 1229 $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ 1230 X"$as_myself" : 'X\(//\)[^/]' \| \ 1231 X"$as_myself" : 'X\(//\)$' \| \ 1232 X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || 1233 $as_echo X"$as_myself" | 1151 1234 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 1152 1235 s//\1/ … … 1175 1258 if test ! -r "$srcdir/$ac_unique_file"; then 1176 1259 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." 1177 { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&21260 { $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 1178 1261 { (exit 1); exit 1; }; } 1179 1262 fi 1180 1263 ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" 1181 1264 ac_abs_confdir=`( 1182 cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&21265 cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2 1183 1266 { (exit 1); exit 1; }; } 1184 1267 pwd)` … … 1207 1290 # This message is too long to be a string in the A/UX 3.1 sh. 1208 1291 cat <<_ACEOF 1209 \`configure' configures onioncat 0.1.10-47 5M to adapt to many kinds of systems.1292 \`configure' configures onioncat 0.1.10-479M to adapt to many kinds of systems. 1210 1293 1211 1294 Usage: $0 [OPTION]... [VAR=VALUE]... … … 1229 1312 Installation directories: 1230 1313 --prefix=PREFIX install architecture-independent files in PREFIX 1231 [$ac_default_prefix]1314 [$ac_default_prefix] 1232 1315 --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX 1233 [PREFIX]1316 [PREFIX] 1234 1317 1235 1318 By default, \`make install' will install all the files in … … 1241 1324 1242 1325 Fine tuning of the installation directories: 1243 --bindir=DIR user executables [EPREFIX/bin]1244 --sbindir=DIR system admin executables [EPREFIX/sbin]1245 --libexecdir=DIR program executables [EPREFIX/libexec]1246 --sysconfdir=DIR read-only single-machine data [PREFIX/etc]1247 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]1248 --localstatedir=DIR modifiable single-machine data [PREFIX/var]1249 --libdir=DIR object code libraries [EPREFIX/lib]1250 --includedir=DIR C header files [PREFIX/include]1251 --oldincludedir=DIR C header files for non-gcc [/usr/include]1252 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share]1253 --datadir=DIR read-only architecture-independent data [DATAROOTDIR]1254 --infodir=DIR info documentation [DATAROOTDIR/info]1255 --localedir=DIR locale-dependent data [DATAROOTDIR/locale]1256 --mandir=DIR man documentation [DATAROOTDIR/man]1257 --docdir=DIR documentation root [DATAROOTDIR/doc/onioncat]1258 --htmldir=DIR html documentation [DOCDIR]1259 --dvidir=DIR dvi documentation [DOCDIR]1260 --pdfdir=DIR pdf documentation [DOCDIR]1261 --psdir=DIR ps documentation [DOCDIR]1326 --bindir=DIR user executables [EPREFIX/bin] 1327 --sbindir=DIR system admin executables [EPREFIX/sbin] 1328 --libexecdir=DIR program executables [EPREFIX/libexec] 1329 --sysconfdir=DIR read-only single-machine data [PREFIX/etc] 1330 --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] 1331 --localstatedir=DIR modifiable single-machine data [PREFIX/var] 1332 --libdir=DIR object code libraries [EPREFIX/lib] 1333 --includedir=DIR C header files [PREFIX/include] 1334 --oldincludedir=DIR C header files for non-gcc [/usr/include] 1335 --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] 1336 --datadir=DIR read-only architecture-independent data [DATAROOTDIR] 1337 --infodir=DIR info documentation [DATAROOTDIR/info] 1338 --localedir=DIR locale-dependent data [DATAROOTDIR/locale] 1339 --mandir=DIR man documentation [DATAROOTDIR/man] 1340 --docdir=DIR documentation root [DATAROOTDIR/doc/onioncat] 1341 --htmldir=DIR html documentation [DOCDIR] 1342 --dvidir=DIR dvi documentation [DOCDIR] 1343 --pdfdir=DIR pdf documentation [DOCDIR] 1344 --psdir=DIR ps documentation [DOCDIR] 1262 1345 _ACEOF 1263 1346 … … 1273 1356 if test -n "$ac_init_help"; then 1274 1357 case $ac_init_help in 1275 short | recursive ) echo "Configuration of onioncat 0.1.10-47 5M:";;1358 short | recursive ) echo "Configuration of onioncat 0.1.10-479M:";; 1276 1359 esac 1277 1360 cat <<\_ACEOF 1278 1361 1279 1362 Optional Features: 1363 --disable-option-checking ignore unrecognized --enable/--with options 1280 1364 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) 1281 1365 --enable-FEATURE[=ARG] include FEATURE [ARG=yes] … … 1310 1394 # If there are subdirs, report their specific --help. 1311 1395 for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue 1312 test -d "$ac_dir" || continue 1396 test -d "$ac_dir" || 1397 { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || 1398 continue 1313 1399 ac_builddir=. 1314 1400 … … 1316 1402 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 1317 1403 *) 1318 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`1404 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 1319 1405 # A ".." for each directory in $ac_dir_suffix. 1320 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`1406 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 1321 1407 case $ac_top_builddir_sub in 1322 1408 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; … … 1354 1440 $SHELL "$ac_srcdir/configure" --help=recursive 1355 1441 else 1356 echo "$as_me: WARNING: no configuration information is in $ac_dir" >&21442 $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 1357 1443 fi || ac_status=$? 1358 1444 cd "$ac_pwd" || { ac_status=$?; break; } … … 1363 1449 if $ac_init_version; then 1364 1450 cat <<\_ACEOF 1365 onioncat configure 0.1.10-47 5M1366 generated by GNU Autoconf 2.6 11451 onioncat configure 0.1.10-479M 1452 generated by GNU Autoconf 2.63 1367 1453 1368 1454 Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 1369 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.1455 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. 1370 1456 This configure script is free software; the Free Software Foundation 1371 1457 gives unlimited permission to copy, distribute and modify it. … … 1377 1463 running configure, to aid debugging if configure makes a mistake. 1378 1464 1379 It was created by onioncat $as_me 0.1.10-47 5M, which was1380 generated by GNU Autoconf 2.6 1. Invocation command line was1465 It was created by onioncat $as_me 0.1.10-479M, which was 1466 generated by GNU Autoconf 2.63. Invocation command line was 1381 1467 1382 1468 $ $0 $@ … … 1414 1500 IFS=$as_save_IFS 1415 1501 test -z "$as_dir" && as_dir=. 1416 echo "PATH: $as_dir"1502 $as_echo "PATH: $as_dir" 1417 1503 done 1418 1504 IFS=$as_save_IFS … … 1449 1535 continue ;; 1450 1536 *\'*) 1451 ac_arg=` echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;1537 ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; 1452 1538 esac 1453 1539 case $ac_pass in … … 1501 1587 *${as_nl}*) 1502 1588 case $ac_var in #( 1503 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&51504 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;1589 *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 1590 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 1505 1591 esac 1506 1592 case $ac_var in #( 1507 1593 _ | IFS | as_nl) ;; #( 1594 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 1508 1595 *) $as_unset $ac_var ;; 1509 1596 esac ;; … … 1535 1622 eval ac_val=\$$ac_var 1536 1623 case $ac_val in 1537 *\'\''*) ac_val=` echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;1624 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1538 1625 esac 1539 echo "$ac_var='\''$ac_val'\''"1626 $as_echo "$ac_var='\''$ac_val'\''" 1540 1627 done | sort 1541 1628 echo … … 1552 1639 eval ac_val=\$$ac_var 1553 1640 case $ac_val in 1554 *\'\''*) ac_val=` echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;1641 *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; 1555 1642 esac 1556 echo "$ac_var='\''$ac_val'\''"1643 $as_echo "$ac_var='\''$ac_val'\''" 1557 1644 done | sort 1558 1645 echo … … 1570 1657 fi 1571 1658 test "$ac_signal" != 0 && 1572 echo "$as_me: caught signal $ac_signal"1573 echo "$as_me: exit $exit_status"1659 $as_echo "$as_me: caught signal $ac_signal" 1660 $as_echo "$as_me: exit $exit_status" 1574 1661 } >&5 1575 1662 rm -f core *.core core.conftest.* && … … 1613 1700 1614 1701 # Let the site file select an alternate cache file if it wants to. 1615 # Prefer explicitly selected file to automatically selected ones. 1702 # Prefer an explicitly selected file to automatically selected ones. 1703 ac_site_file1=NONE 1704 ac_site_file2=NONE 1616 1705 if test -n "$CONFIG_SITE"; then 1617 set x "$CONFIG_SITE"1706 ac_site_file1=$CONFIG_SITE 1618 1707 elif test "x$prefix" != xNONE; then 1619 set x "$prefix/share/config.site" "$prefix/etc/config.site"1620 else1621 set x "$ac_default_prefix/share/config.site" \ 1622 "$ac_default_prefix/etc/config.site" 1623 fi 1624 shift 1625 for ac_site_file 1708 ac_site_file1=$prefix/share/config.site 1709 ac_site_file2=$prefix/etc/config.site 1710 else 1711 ac_site_file1=$ac_default_prefix/share/config.site 1712 ac_site_file2=$ac_default_prefix/etc/config.site 1713 fi 1714 for ac_site_file in "$ac_site_file1" "$ac_site_file2" 1626 1715 do 1716 test "x$ac_site_file" = xNONE && continue 1627 1717 if test -r "$ac_site_file"; then 1628 { echo "$as_me:$LINENO: loading site script $ac_site_file" >&51629 echo "$as_me: loading site script $ac_site_file" >&6;}1718 { $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 1719 $as_echo "$as_me: loading site script $ac_site_file" >&6;} 1630 1720 sed 's/^/| /' "$ac_site_file" >&5 1631 1721 . "$ac_site_file" … … 1637 1727 # files actually), so we avoid doing that. 1638 1728 if test -f "$cache_file"; then 1639 { echo "$as_me:$LINENO: loading cache $cache_file" >&51640 echo "$as_me: loading cache $cache_file" >&6;}1729 { $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5 1730 $as_echo "$as_me: loading cache $cache_file" >&6;} 1641 1731 case $cache_file in 1642 1732 [\\/]* | ?:[\\/]* ) . "$cache_file";; … … 1645 1735 fi 1646 1736 else 1647 { echo "$as_me:$LINENO: creating cache $cache_file" >&51648 echo "$as_me: creating cache $cache_file" >&6;}1737 { $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5 1738 $as_echo "$as_me: creating cache $cache_file" >&6;} 1649 1739 >$cache_file 1650 1740 fi … … 1660 1750 case $ac_old_set,$ac_new_set in 1661 1751 set,) 1662 { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&51663 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}1752 { $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 1753 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} 1664 1754 ac_cache_corrupted=: ;; 1665 1755 ,set) 1666 { echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&51667 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}1756 { $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5 1757 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} 1668 1758 ac_cache_corrupted=: ;; 1669 1759 ,);; 1670 1760 *) 1671 1761 if test "x$ac_old_val" != "x$ac_new_val"; then 1672 { echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1673 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1674 { echo "$as_me:$LINENO: former value: $ac_old_val" >&5 1675 echo "$as_me: former value: $ac_old_val" >&2;} 1676 { echo "$as_me:$LINENO: current value: $ac_new_val" >&5 1677 echo "$as_me: current value: $ac_new_val" >&2;} 1678 ac_cache_corrupted=: 1762 # differences in whitespace do not lead to failure. 1763 ac_old_val_w=`echo x $ac_old_val` 1764 ac_new_val_w=`echo x $ac_new_val` 1765 if test "$ac_old_val_w" != "$ac_new_val_w"; then 1766 { $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5 1767 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} 1768 ac_cache_corrupted=: 1769 else 1770 { $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 1771 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} 1772 eval $ac_var=\$ac_old_val 1773 fi 1774 { $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5 1775 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} 1776 { $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5 1777 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} 1679 1778 fi;; 1680 1779 esac … … 1682 1781 if test "$ac_new_set" = set; then 1683 1782 case $ac_new_val in 1684 *\'*) ac_arg=$ac_var=` echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;1783 *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; 1685 1784 *) ac_arg=$ac_var=$ac_new_val ;; 1686 1785 esac … … 1692 1791 done 1693 1792 if $ac_cache_corrupted; then 1694 { echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1695 echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1696 { { echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1697 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1793 { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 1794 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 1795 { $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5 1796 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} 1797 { { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5 1798 $as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;} 1698 1799 { (exit 1); exit 1; }; } 1699 1800 fi … … 1749 1850 done 1750 1851 if test -z "$ac_aux_dir"; then 1751 { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&51752 echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}1852 { { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 1853 $as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} 1753 1854 { (exit 1); exit 1; }; } 1754 1855 fi … … 1776 1877 # OS/2's system install, which has a completely different semantic 1777 1878 # ./install, which can be erroneously created by make from ./install.sh. 1778 { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 1779 echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } 1879 # Reject install programs that cannot install multiple files. 1880 { $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 1881 $as_echo_n "checking for a BSD-compatible install... " >&6; } 1780 1882 if test -z "$INSTALL"; then 1781 1883 if test "${ac_cv_path_install+set}" = set; then 1782 echo $ECHO_N "(cached) $ECHO_C" >&61884 $as_echo_n "(cached) " >&6 1783 1885 else 1784 1886 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR … … 1809 1911 : 1810 1912 else 1811 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 1812 break 3 1913 rm -rf conftest.one conftest.two conftest.dir 1914 echo one > conftest.one 1915 echo two > conftest.two 1916 mkdir conftest.dir 1917 if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && 1918 test -s conftest.one && test -s conftest.two && 1919 test -s conftest.dir/conftest.one && 1920 test -s conftest.dir/conftest.two 1921 then 1922 ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" 1923 break 3 1924 fi 1813 1925 fi 1814 1926 fi … … 1817 1929 ;; 1818 1930 esac 1931 1819 1932 done 1820 1933 IFS=$as_save_IFS 1821 1934 1935 rm -rf conftest.one conftest.two conftest.dir 1822 1936 1823 1937 fi … … 1832 1946 fi 1833 1947 fi 1834 { echo "$as_me:$LINENO: result: $INSTALL" >&51835 echo "${ECHO_T}$INSTALL" >&6; }1948 { $as_echo "$as_me:$LINENO: result: $INSTALL" >&5 1949 $as_echo "$INSTALL" >&6; } 1836 1950 1837 1951 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. … … 1843 1957 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' 1844 1958 1845 { echo "$as_me:$LINENO: checking whether build environment is sane" >&51846 echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; }1959 { $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5 1960 $as_echo_n "checking whether build environment is sane... " >&6; } 1847 1961 # Just in case 1848 1962 sleep 1 … … 1867 1981 # broken ls alias from the environment. This has actually 1868 1982 # happened. Such a system could not be considered "sane". 1869 { { echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken1983 { { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken 1870 1984 alias in your environment" >&5 1871 echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken1985 $as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken 1872 1986 alias in your environment" >&2;} 1873 1987 { (exit 1); exit 1; }; } … … 1880 1994 : 1881 1995 else 1882 { { echo "$as_me:$LINENO: error: newly created file is older than distributed files!1996 { { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files! 1883 1997 Check your system clock" >&5 1884 echo "$as_me: error: newly created file is older than distributed files!1998 $as_echo "$as_me: error: newly created file is older than distributed files! 1885 1999 Check your system clock" >&2;} 1886 2000 { (exit 1); exit 1; }; } 1887 2001 fi 1888 { echo "$as_me:$LINENO: result: yes" >&51889 echo "${ECHO_T}yes" >&6; }2002 { $as_echo "$as_me:$LINENO: result: yes" >&5 2003 $as_echo "yes" >&6; } 1890 2004 test "$program_prefix" != NONE && 1891 2005 program_transform_name="s&^&$program_prefix&;$program_transform_name" … … 1893 2007 test "$program_suffix" != NONE && 1894 2008 program_transform_name="s&\$&$program_suffix&;$program_transform_name" 1895 # Double any \ or $. echo might interpret backslashes.2009 # Double any \ or $. 1896 2010 # By default was `s,x,x', remove it if useless. 1897 cat <<\_ACEOF >conftest.sed 1898 s/[\\$]/&&/g;s/;s,x,x,$// 1899 _ACEOF 1900 program_transform_name=`echo $program_transform_name | sed -f conftest.sed` 1901 rm -f conftest.sed 2011 ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' 2012 program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` 1902 2013 1903 2014 # expand $ac_aux_dir to an absolute path … … 1910 2021 else 1911 2022 am_missing_run= 1912 { echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&51913 echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}1914 fi 1915 1916 { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&51917 echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; }2023 { $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5 2024 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} 2025 fi 2026 2027 { $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 2028 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } 1918 2029 if test -z "$MKDIR_P"; then 1919 2030 if test "${ac_cv_path_mkdir+set}" = set; then 1920 echo $ECHO_N "(cached) $ECHO_C" >&62031 $as_echo_n "(cached) " >&6 1921 2032 else 1922 2033 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR … … 1953 2064 fi 1954 2065 fi 1955 { echo "$as_me:$LINENO: result: $MKDIR_P" >&51956 echo "${ECHO_T}$MKDIR_P" >&6; }2066 { $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5 2067 $as_echo "$MKDIR_P" >&6; } 1957 2068 1958 2069 mkdir_p="$MKDIR_P" … … 1966 2077 # Extract the first word of "$ac_prog", so it can be a program name with args. 1967 2078 set dummy $ac_prog; ac_word=$2 1968 { echo "$as_me:$LINENO: checking for $ac_word" >&51969 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2079 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2080 $as_echo_n "checking for $ac_word... " >&6; } 1970 2081 if test "${ac_cv_prog_AWK+set}" = set; then 1971 echo $ECHO_N "(cached) $ECHO_C" >&62082 $as_echo_n "(cached) " >&6 1972 2083 else 1973 2084 if test -n "$AWK"; then … … 1982 2093 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 1983 2094 ac_cv_prog_AWK="$ac_prog" 1984 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52095 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 1985 2096 break 2 1986 2097 fi … … 1993 2104 AWK=$ac_cv_prog_AWK 1994 2105 if test -n "$AWK"; then 1995 { echo "$as_me:$LINENO: result: $AWK" >&51996 echo "${ECHO_T}$AWK" >&6; }1997 else 1998 { echo "$as_me:$LINENO: result: no" >&51999 echo "${ECHO_T}no" >&6; }2106 { $as_echo "$as_me:$LINENO: result: $AWK" >&5 2107 $as_echo "$AWK" >&6; } 2108 else 2109 { $as_echo "$as_me:$LINENO: result: no" >&5 2110 $as_echo "no" >&6; } 2000 2111 fi 2001 2112 … … 2004 2115 done 2005 2116 2006 { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 2007 echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } 2008 set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 2117 { $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 2118 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } 2119 set x ${MAKE-make} 2120 ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` 2009 2121 if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then 2010 echo $ECHO_N "(cached) $ECHO_C" >&62122 $as_echo_n "(cached) " >&6 2011 2123 else 2012 2124 cat >conftest.make <<\_ACEOF … … 2025 2137 fi 2026 2138 if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then 2027 { echo "$as_me:$LINENO: result: yes" >&52028 echo "${ECHO_T}yes" >&6; }2139 { $as_echo "$as_me:$LINENO: result: yes" >&5 2140 $as_echo "yes" >&6; } 2029 2141 SET_MAKE= 2030 2142 else 2031 { echo "$as_me:$LINENO: result: no" >&52032 echo "${ECHO_T}no" >&6; }2143 { $as_echo "$as_me:$LINENO: result: no" >&5 2144 $as_echo "no" >&6; } 2033 2145 SET_MAKE="MAKE=${MAKE-make}" 2034 2146 fi … … 2049 2161 # test to see if srcdir already configured 2050 2162 if test -f $srcdir/config.status; then 2051 { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&52052 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}2163 { { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 2164 $as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} 2053 2165 { (exit 1); exit 1; }; } 2054 2166 fi … … 2067 2179 # Define the identity of the package. 2068 2180 PACKAGE='onioncat' 2069 VERSION='0.1.10-47 5M'2181 VERSION='0.1.10-479M' 2070 2182 2071 2183 … … 2105 2217 # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. 2106 2218 set dummy ${ac_tool_prefix}strip; ac_word=$2 2107 { echo "$as_me:$LINENO: checking for $ac_word" >&52108 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2219 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2220 $as_echo_n "checking for $ac_word... " >&6; } 2109 2221 if test "${ac_cv_prog_STRIP+set}" = set; then 2110 echo $ECHO_N "(cached) $ECHO_C" >&62222 $as_echo_n "(cached) " >&6 2111 2223 else 2112 2224 if test -n "$STRIP"; then … … 2121 2233 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2122 2234 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 2123 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52235 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2124 2236 break 2 2125 2237 fi … … 2132 2244 STRIP=$ac_cv_prog_STRIP 2133 2245 if test -n "$STRIP"; then 2134 { echo "$as_me:$LINENO: result: $STRIP" >&52135 echo "${ECHO_T}$STRIP" >&6; }2136 else 2137 { echo "$as_me:$LINENO: result: no" >&52138 echo "${ECHO_T}no" >&6; }2246 { $as_echo "$as_me:$LINENO: result: $STRIP" >&5 2247 $as_echo "$STRIP" >&6; } 2248 else 2249 { $as_echo "$as_me:$LINENO: result: no" >&5 2250 $as_echo "no" >&6; } 2139 2251 fi 2140 2252 … … 2145 2257 # Extract the first word of "strip", so it can be a program name with args. 2146 2258 set dummy strip; ac_word=$2 2147 { echo "$as_me:$LINENO: checking for $ac_word" >&52148 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2259 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2260 $as_echo_n "checking for $ac_word... " >&6; } 2149 2261 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then 2150 echo $ECHO_N "(cached) $ECHO_C" >&62262 $as_echo_n "(cached) " >&6 2151 2263 else 2152 2264 if test -n "$ac_ct_STRIP"; then … … 2161 2273 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2162 2274 ac_cv_prog_ac_ct_STRIP="strip" 2163 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52275 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2164 2276 break 2 2165 2277 fi … … 2172 2284 ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP 2173 2285 if test -n "$ac_ct_STRIP"; then 2174 { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&52175 echo "${ECHO_T}$ac_ct_STRIP" >&6; }2176 else 2177 { echo "$as_me:$LINENO: result: no" >&52178 echo "${ECHO_T}no" >&6; }2286 { $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 2287 $as_echo "$ac_ct_STRIP" >&6; } 2288 else 2289 { $as_echo "$as_me:$LINENO: result: no" >&5 2290 $as_echo "no" >&6; } 2179 2291 fi 2180 2292 … … 2184 2296 case $cross_compiling:$ac_tool_warned in 2185 2297 yes:) 2186 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2187 whose name does not start with the host triplet. If you think this 2188 configuration is useful to you, please write to autoconf@gnu.org." >&5 2189 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2190 whose name does not start with the host triplet. If you think this 2191 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2298 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 2299 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2192 2300 ac_tool_warned=yes ;; 2193 2301 esac … … 2218 2326 2219 2327 cat >>confdefs.h <<\_ACEOF 2220 #define SVN_REVISION "47 5M"2328 #define SVN_REVISION "479M" 2221 2329 _ACEOF 2222 2330 … … 2229 2337 enableval=$enable_debug; 2230 2338 cat >>confdefs.h <<\_ACEOF 2231 #define DEBUG 2339 #define DEBUG /**/ 2232 2340 _ACEOF 2233 2341 … … 2238 2346 enableval=$enable_packet_log; 2239 2347 cat >>confdefs.h <<\_ACEOF 2240 #define PACKET_LOG 2348 #define PACKET_LOG /**/ 2241 2349 _ACEOF 2242 2350 … … 2247 2355 enableval=$enable_handle_http; 2248 2356 cat >>confdefs.h <<\_ACEOF 2249 #define HANDLE_HTTP 2357 #define HANDLE_HTTP /**/ 2250 2358 _ACEOF 2251 2359 … … 2256 2364 enableval=$enable_packet_queue; 2257 2365 cat >>confdefs.h <<\_ACEOF 2258 #define PACKET_QUEUE 2366 #define PACKET_QUEUE /**/ 2259 2367 _ACEOF 2260 2368 … … 2265 2373 enableval=$enable_check_ipsrc; 2266 2374 cat >>confdefs.h <<\_ACEOF 2267 #define CHECK_IPSRC 2375 #define CHECK_IPSRC /**/ 2268 2376 _ACEOF 2269 2377 … … 2274 2382 enableval=$enable_rtt; 2275 2383 cat >>confdefs.h <<\_ACEOF 2276 #define MEASURE_RTT 2384 #define MEASURE_RTT /**/ 2277 2385 _ACEOF 2278 2386 … … 2289 2397 # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. 2290 2398 set dummy ${ac_tool_prefix}gcc; ac_word=$2 2291 { echo "$as_me:$LINENO: checking for $ac_word" >&52292 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2399 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2400 $as_echo_n "checking for $ac_word... " >&6; } 2293 2401 if test "${ac_cv_prog_CC+set}" = set; then 2294 echo $ECHO_N "(cached) $ECHO_C" >&62402 $as_echo_n "(cached) " >&6 2295 2403 else 2296 2404 if test -n "$CC"; then … … 2305 2413 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2306 2414 ac_cv_prog_CC="${ac_tool_prefix}gcc" 2307 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52415 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2308 2416 break 2 2309 2417 fi … … 2316 2424 CC=$ac_cv_prog_CC 2317 2425 if test -n "$CC"; then 2318 { echo "$as_me:$LINENO: result: $CC" >&52319 echo "${ECHO_T}$CC" >&6; }2320 else 2321 { echo "$as_me:$LINENO: result: no" >&52322 echo "${ECHO_T}no" >&6; }2426 { $as_echo "$as_me:$LINENO: result: $CC" >&5 2427 $as_echo "$CC" >&6; } 2428 else 2429 { $as_echo "$as_me:$LINENO: result: no" >&5 2430 $as_echo "no" >&6; } 2323 2431 fi 2324 2432 … … 2329 2437 # Extract the first word of "gcc", so it can be a program name with args. 2330 2438 set dummy gcc; ac_word=$2 2331 { echo "$as_me:$LINENO: checking for $ac_word" >&52332 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2439 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2440 $as_echo_n "checking for $ac_word... " >&6; } 2333 2441 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 2334 echo $ECHO_N "(cached) $ECHO_C" >&62442 $as_echo_n "(cached) " >&6 2335 2443 else 2336 2444 if test -n "$ac_ct_CC"; then … … 2345 2453 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2346 2454 ac_cv_prog_ac_ct_CC="gcc" 2347 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52455 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2348 2456 break 2 2349 2457 fi … … 2356 2464 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2357 2465 if test -n "$ac_ct_CC"; then 2358 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&52359 echo "${ECHO_T}$ac_ct_CC" >&6; }2360 else 2361 { echo "$as_me:$LINENO: result: no" >&52362 echo "${ECHO_T}no" >&6; }2466 { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 2467 $as_echo "$ac_ct_CC" >&6; } 2468 else 2469 { $as_echo "$as_me:$LINENO: result: no" >&5 2470 $as_echo "no" >&6; } 2363 2471 fi 2364 2472 … … 2368 2476 case $cross_compiling:$ac_tool_warned in 2369 2477 yes:) 2370 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2371 whose name does not start with the host triplet. If you think this 2372 configuration is useful to you, please write to autoconf@gnu.org." >&5 2373 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2374 whose name does not start with the host triplet. If you think this 2375 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2478 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 2479 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2376 2480 ac_tool_warned=yes ;; 2377 2481 esac … … 2386 2490 # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. 2387 2491 set dummy ${ac_tool_prefix}cc; ac_word=$2 2388 { echo "$as_me:$LINENO: checking for $ac_word" >&52389 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2492 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2493 $as_echo_n "checking for $ac_word... " >&6; } 2390 2494 if test "${ac_cv_prog_CC+set}" = set; then 2391 echo $ECHO_N "(cached) $ECHO_C" >&62495 $as_echo_n "(cached) " >&6 2392 2496 else 2393 2497 if test -n "$CC"; then … … 2402 2506 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2403 2507 ac_cv_prog_CC="${ac_tool_prefix}cc" 2404 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52508 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2405 2509 break 2 2406 2510 fi … … 2413 2517 CC=$ac_cv_prog_CC 2414 2518 if test -n "$CC"; then 2415 { echo "$as_me:$LINENO: result: $CC" >&52416 echo "${ECHO_T}$CC" >&6; }2417 else 2418 { echo "$as_me:$LINENO: result: no" >&52419 echo "${ECHO_T}no" >&6; }2519 { $as_echo "$as_me:$LINENO: result: $CC" >&5 2520 $as_echo "$CC" >&6; } 2521 else 2522 { $as_echo "$as_me:$LINENO: result: no" >&5 2523 $as_echo "no" >&6; } 2420 2524 fi 2421 2525 … … 2426 2530 # Extract the first word of "cc", so it can be a program name with args. 2427 2531 set dummy cc; ac_word=$2 2428 { echo "$as_me:$LINENO: checking for $ac_word" >&52429 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2532 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2533 $as_echo_n "checking for $ac_word... " >&6; } 2430 2534 if test "${ac_cv_prog_CC+set}" = set; then 2431 echo $ECHO_N "(cached) $ECHO_C" >&62535 $as_echo_n "(cached) " >&6 2432 2536 else 2433 2537 if test -n "$CC"; then … … 2447 2551 fi 2448 2552 ac_cv_prog_CC="cc" 2449 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52553 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2450 2554 break 2 2451 2555 fi … … 2470 2574 CC=$ac_cv_prog_CC 2471 2575 if test -n "$CC"; then 2472 { echo "$as_me:$LINENO: result: $CC" >&52473 echo "${ECHO_T}$CC" >&6; }2474 else 2475 { echo "$as_me:$LINENO: result: no" >&52476 echo "${ECHO_T}no" >&6; }2576 { $as_echo "$as_me:$LINENO: result: $CC" >&5 2577 $as_echo "$CC" >&6; } 2578 else 2579 { $as_echo "$as_me:$LINENO: result: no" >&5 2580 $as_echo "no" >&6; } 2477 2581 fi 2478 2582 … … 2485 2589 # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. 2486 2590 set dummy $ac_tool_prefix$ac_prog; ac_word=$2 2487 { echo "$as_me:$LINENO: checking for $ac_word" >&52488 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2591 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2592 $as_echo_n "checking for $ac_word... " >&6; } 2489 2593 if test "${ac_cv_prog_CC+set}" = set; then 2490 echo $ECHO_N "(cached) $ECHO_C" >&62594 $as_echo_n "(cached) " >&6 2491 2595 else 2492 2596 if test -n "$CC"; then … … 2501 2605 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2502 2606 ac_cv_prog_CC="$ac_tool_prefix$ac_prog" 2503 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52607 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2504 2608 break 2 2505 2609 fi … … 2512 2616 CC=$ac_cv_prog_CC 2513 2617 if test -n "$CC"; then 2514 { echo "$as_me:$LINENO: result: $CC" >&52515 echo "${ECHO_T}$CC" >&6; }2516 else 2517 { echo "$as_me:$LINENO: result: no" >&52518 echo "${ECHO_T}no" >&6; }2618 { $as_echo "$as_me:$LINENO: result: $CC" >&5 2619 $as_echo "$CC" >&6; } 2620 else 2621 { $as_echo "$as_me:$LINENO: result: no" >&5 2622 $as_echo "no" >&6; } 2519 2623 fi 2520 2624 … … 2529 2633 # Extract the first word of "$ac_prog", so it can be a program name with args. 2530 2634 set dummy $ac_prog; ac_word=$2 2531 { echo "$as_me:$LINENO: checking for $ac_word" >&52532 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; }2635 { $as_echo "$as_me:$LINENO: checking for $ac_word" >&5 2636 $as_echo_n "checking for $ac_word... " >&6; } 2533 2637 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then 2534 echo $ECHO_N "(cached) $ECHO_C" >&62638 $as_echo_n "(cached) " >&6 2535 2639 else 2536 2640 if test -n "$ac_ct_CC"; then … … 2545 2649 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then 2546 2650 ac_cv_prog_ac_ct_CC="$ac_prog" 2547 echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&52651 $as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 2548 2652 break 2 2549 2653 fi … … 2556 2660 ac_ct_CC=$ac_cv_prog_ac_ct_CC 2557 2661 if test -n "$ac_ct_CC"; then 2558 { echo "$as_me:$LINENO: result: $ac_ct_CC" >&52559 echo "${ECHO_T}$ac_ct_CC" >&6; }2560 else 2561 { echo "$as_me:$LINENO: result: no" >&52562 echo "${ECHO_T}no" >&6; }2662 { $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 2663 $as_echo "$ac_ct_CC" >&6; } 2664 else 2665 { $as_echo "$as_me:$LINENO: result: no" >&5 2666 $as_echo "no" >&6; } 2563 2667 fi 2564 2668 … … 2572 2676 case $cross_compiling:$ac_tool_warned in 2573 2677 yes:) 2574 { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools 2575 whose name does not start with the host triplet. If you think this 2576 configuration is useful to you, please write to autoconf@gnu.org." >&5 2577 echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools 2578 whose name does not start with the host triplet. If you think this 2579 configuration is useful to you, please write to autoconf@gnu.org." >&2;} 2678 { $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5 2679 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} 2580 2680 ac_tool_warned=yes ;; 2581 2681 esac … … 2587 2687 2588 2688 2589 test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH 2689 test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2690 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2691 { { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH 2590 2692 See \`config.log' for more details." >&5 2591 echo "$as_me: error: no acceptable C compiler found in \$PATH2693 $as_echo "$as_me: error: no acceptable C compiler found in \$PATH 2592 2694 See \`config.log' for more details." >&2;} 2593 { (exit 1); exit 1; }; } 2695 { (exit 1); exit 1; }; }; } 2594 2696 2595 2697 # Provide some information about the compiler. 2596 echo "$as_me:$LINENO: checking for C compiler version" >&5 2597 ac_compiler=`set X $ac_compile; echo $2` 2698 $as_echo "$as_me:$LINENO: checking for C compiler version" >&5 2699 set X $ac_compile 2700 ac_compiler=$2 2598 2701 { (ac_try="$ac_compiler --version >&5" 2599 2702 case "(($ac_try" in … … 2601 2704 *) ac_try_echo=$ac_try;; 2602 2705 esac 2603 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2706 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2707 $as_echo "$ac_try_echo") >&5 2604 2708 (eval "$ac_compiler --version >&5") 2>&5 2605 2709 ac_status=$? 2606 echo "$as_me:$LINENO: \$? = $ac_status" >&52710 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2607 2711 (exit $ac_status); } 2608 2712 { (ac_try="$ac_compiler -v >&5" … … 2611 2715 *) ac_try_echo=$ac_try;; 2612 2716 esac 2613 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2717 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2718 $as_echo "$ac_try_echo") >&5 2614 2719 (eval "$ac_compiler -v >&5") 2>&5 2615 2720 ac_status=$? 2616 echo "$as_me:$LINENO: \$? = $ac_status" >&52721 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2617 2722 (exit $ac_status); } 2618 2723 { (ac_try="$ac_compiler -V >&5" … … 2621 2726 *) ac_try_echo=$ac_try;; 2622 2727 esac 2623 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2728 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2729 $as_echo "$ac_try_echo") >&5 2624 2730 (eval "$ac_compiler -V >&5") 2>&5 2625 2731 ac_status=$? 2626 echo "$as_me:$LINENO: \$? = $ac_status" >&52732 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2627 2733 (exit $ac_status); } 2628 2734 … … 2643 2749 _ACEOF 2644 2750 ac_clean_files_save=$ac_clean_files 2645 ac_clean_files="$ac_clean_files a.out a. exe b.out"2751 ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" 2646 2752 # Try to create an executable without -o first, disregard a.out. 2647 2753 # It will help us diagnose broken compilers, and finding out an intuition 2648 2754 # of exeext. 2649 { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 2650 echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } 2651 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2652 # 2653 # List of possible output files, starting from the most likely. 2654 # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) 2655 # only as a last resort. b.out is created by i960 compilers. 2656 ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' 2657 # 2658 # The IRIX 6 linker writes into existing files which may not be 2659 # executable, retaining their permissions. Remove them first so a 2660 # subsequent execution test works. 2755 { $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 2756 $as_echo_n "checking for C compiler default output file name... " >&6; } 2757 ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` 2758 2759 # The possible output files: 2760 ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" 2761 2661 2762 ac_rmfiles= 2662 2763 for ac_file in $ac_files 2663 2764 do 2664 2765 case $ac_file in 2665 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj ) ;;2766 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2666 2767 * ) ac_rmfiles="$ac_rmfiles $ac_file";; 2667 2768 esac … … 2674 2775 *) ac_try_echo=$ac_try;; 2675 2776 esac 2676 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2777 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2778 $as_echo "$ac_try_echo") >&5 2677 2779 (eval "$ac_link_default") 2>&5 2678 2780 ac_status=$? 2679 echo "$as_me:$LINENO: \$? = $ac_status" >&52781 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2680 2782 (exit $ac_status); }; then 2681 2783 # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. … … 2688 2790 test -f "$ac_file" || continue 2689 2791 case $ac_file in 2690 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj )2792 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) 2691 2793 ;; 2692 2794 [ab].out ) … … 2715 2817 fi 2716 2818 2717 { echo "$as_me:$LINENO: result: $ac_file" >&52718 echo "${ECHO_T}$ac_file" >&6; }2819 { $as_echo "$as_me:$LINENO: result: $ac_file" >&5 2820 $as_echo "$ac_file" >&6; } 2719 2821 if test -z "$ac_file"; then 2720 echo "$as_me: failed program was:" >&52822 $as_echo "$as_me: failed program was:" >&5 2721 2823 sed 's/^/| /' conftest.$ac_ext >&5 2722 2824 2723 { { echo "$as_me:$LINENO: error: C compiler cannot create executables 2825 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2826 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2827 { { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables 2724 2828 See \`config.log' for more details." >&5 2725 echo "$as_me: error: C compiler cannot create executables2829 $as_echo "$as_me: error: C compiler cannot create executables 2726 2830 See \`config.log' for more details." >&2;} 2727 { (exit 77); exit 77; }; } 2831 { (exit 77); exit 77; }; }; } 2728 2832 fi 2729 2833 … … 2732 2836 # Check that the compiler produces executables we can run. If not, either 2733 2837 # the compiler is broken, or we cross compile. 2734 { echo "$as_me:$LINENO: checking whether the C compiler works" >&52735 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; }2838 { $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5 2839 $as_echo_n "checking whether the C compiler works... " >&6; } 2736 2840 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 2737 2841 # If not cross compiling, check that we can run a simple program. … … 2742 2846 *) ac_try_echo=$ac_try;; 2743 2847 esac 2744 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2848 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2849 $as_echo "$ac_try_echo") >&5 2745 2850 (eval "$ac_try") 2>&5 2746 2851 ac_status=$? 2747 echo "$as_me:$LINENO: \$? = $ac_status" >&52852 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2748 2853 (exit $ac_status); }; }; then 2749 2854 cross_compiling=no … … 2752 2857 cross_compiling=yes 2753 2858 else 2754 { { echo "$as_me:$LINENO: error: cannot run C compiled programs. 2859 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2860 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2861 { { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs. 2755 2862 If you meant to cross compile, use \`--host'. 2756 2863 See \`config.log' for more details." >&5 2757 echo "$as_me: error: cannot run C compiled programs.2864 $as_echo "$as_me: error: cannot run C compiled programs. 2758 2865 If you meant to cross compile, use \`--host'. 2759 2866 See \`config.log' for more details." >&2;} 2760 { (exit 1); exit 1; }; } 2867 { (exit 1); exit 1; }; }; } 2761 2868 fi 2762 2869 fi 2763 2870 fi 2764 { echo "$as_me:$LINENO: result: yes" >&52765 echo "${ECHO_T}yes" >&6; }2766 2767 rm -f a.outa.exe conftest$ac_cv_exeext b.out2871 { $as_echo "$as_me:$LINENO: result: yes" >&5 2872 $as_echo "yes" >&6; } 2873 2874 rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out 2768 2875 ac_clean_files=$ac_clean_files_save 2769 2876 # Check that the compiler produces executables we can run. If not, either 2770 2877 # the compiler is broken, or we cross compile. 2771 { echo "$as_me:$LINENO: checking whether we are cross compiling" >&52772 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; }2773 { echo "$as_me:$LINENO: result: $cross_compiling" >&52774 echo "${ECHO_T}$cross_compiling" >&6; }2775 2776 { echo "$as_me:$LINENO: checking for suffix of executables" >&52777 echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; }2878 { $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 2879 $as_echo_n "checking whether we are cross compiling... " >&6; } 2880 { $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5 2881 $as_echo "$cross_compiling" >&6; } 2882 2883 { $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5 2884 $as_echo_n "checking for suffix of executables... " >&6; } 2778 2885 if { (ac_try="$ac_link" 2779 2886 case "(($ac_try" in … … 2781 2888 *) ac_try_echo=$ac_try;; 2782 2889 esac 2783 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2890 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2891 $as_echo "$ac_try_echo") >&5 2784 2892 (eval "$ac_link") 2>&5 2785 2893 ac_status=$? 2786 echo "$as_me:$LINENO: \$? = $ac_status" >&52894 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2787 2895 (exit $ac_status); }; then 2788 2896 # If both `conftest.exe' and `conftest' are `present' (well, observable) … … 2793 2901 test -f "$ac_file" || continue 2794 2902 case $ac_file in 2795 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *. o | *.obj ) ;;2903 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; 2796 2904 *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` 2797 2905 break;; … … 2800 2908 done 2801 2909 else 2802 { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link 2910 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2911 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2912 { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link 2803 2913 See \`config.log' for more details." >&5 2804 echo "$as_me: error: cannot compute suffix of executables: cannot compile and link2914 $as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link 2805 2915 See \`config.log' for more details." >&2;} 2806 { (exit 1); exit 1; }; } 2916 { (exit 1); exit 1; }; }; } 2807 2917 fi 2808 2918 2809 2919 rm -f conftest$ac_cv_exeext 2810 { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&52811 echo "${ECHO_T}$ac_cv_exeext" >&6; }2920 { $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 2921 $as_echo "$ac_cv_exeext" >&6; } 2812 2922 2813 2923 rm -f conftest.$ac_ext 2814 2924 EXEEXT=$ac_cv_exeext 2815 2925 ac_exeext=$EXEEXT 2816 { echo "$as_me:$LINENO: checking for suffix of object files" >&52817 echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; }2926 { $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5 2927 $as_echo_n "checking for suffix of object files... " >&6; } 2818 2928 if test "${ac_cv_objext+set}" = set; then 2819 echo $ECHO_N "(cached) $ECHO_C" >&62929 $as_echo_n "(cached) " >&6 2820 2930 else 2821 2931 cat >conftest.$ac_ext <<_ACEOF … … 2840 2950 *) ac_try_echo=$ac_try;; 2841 2951 esac 2842 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 2952 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 2953 $as_echo "$ac_try_echo") >&5 2843 2954 (eval "$ac_compile") 2>&5 2844 2955 ac_status=$? 2845 echo "$as_me:$LINENO: \$? = $ac_status" >&52956 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2846 2957 (exit $ac_status); }; then 2847 2958 for ac_file in conftest.o conftest.obj conftest.*; do 2848 2959 test -f "$ac_file" || continue; 2849 2960 case $ac_file in 2850 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;2961 *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; 2851 2962 *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` 2852 2963 break;; … … 2854 2965 done 2855 2966 else 2856 echo "$as_me: failed program was:" >&52967 $as_echo "$as_me: failed program was:" >&5 2857 2968 sed 's/^/| /' conftest.$ac_ext >&5 2858 2969 2859 { { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile 2970 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 2971 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 2972 { { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile 2860 2973 See \`config.log' for more details." >&5 2861 echo "$as_me: error: cannot compute suffix of object files: cannot compile2974 $as_echo "$as_me: error: cannot compute suffix of object files: cannot compile 2862 2975 See \`config.log' for more details." >&2;} 2863 { (exit 1); exit 1; }; } 2976 { (exit 1); exit 1; }; }; } 2864 2977 fi 2865 2978 2866 2979 rm -f conftest.$ac_cv_objext conftest.$ac_ext 2867 2980 fi 2868 { echo "$as_me:$LINENO: result: $ac_cv_objext" >&52869 echo "${ECHO_T}$ac_cv_objext" >&6; }2981 { $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 2982 $as_echo "$ac_cv_objext" >&6; } 2870 2983 OBJEXT=$ac_cv_objext 2871 2984 ac_objext=$OBJEXT 2872 { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&52873 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; }2985 { $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 2986 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } 2874 2987 if test "${ac_cv_c_compiler_gnu+set}" = set; then 2875 echo $ECHO_N "(cached) $ECHO_C" >&62988 $as_echo_n "(cached) " >&6 2876 2989 else 2877 2990 cat >conftest.$ac_ext <<_ACEOF … … 2899 3012 *) ac_try_echo=$ac_try;; 2900 3013 esac 2901 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3014 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3015 $as_echo "$ac_try_echo") >&5 2902 3016 (eval "$ac_compile") 2>conftest.er1 2903 3017 ac_status=$? … … 2905 3019 rm -f conftest.er1 2906 3020 cat conftest.err >&5 2907 echo "$as_me:$LINENO: \$? = $ac_status" >&53021 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2908 3022 (exit $ac_status); } && { 2909 3023 test -z "$ac_c_werror_flag" || … … 2912 3026 ac_compiler_gnu=yes 2913 3027 else 2914 echo "$as_me: failed program was:" >&53028 $as_echo "$as_me: failed program was:" >&5 2915 3029 sed 's/^/| /' conftest.$ac_ext >&5 2916 3030 … … 2922 3036 2923 3037 fi 2924 { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 2925 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } 2926 GCC=`test $ac_compiler_gnu = yes && echo yes` 3038 { $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 3039 $as_echo "$ac_cv_c_compiler_gnu" >&6; } 3040 if test $ac_compiler_gnu = yes; then 3041 GCC=yes 3042 else 3043 GCC= 3044 fi 2927 3045 ac_test_CFLAGS=${CFLAGS+set} 2928 3046 ac_save_CFLAGS=$CFLAGS 2929 { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&52930 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; }3047 { $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 3048 $as_echo_n "checking whether $CC accepts -g... " >&6; } 2931 3049 if test "${ac_cv_prog_cc_g+set}" = set; then 2932 echo $ECHO_N "(cached) $ECHO_C" >&63050 $as_echo_n "(cached) " >&6 2933 3051 else 2934 3052 ac_save_c_werror_flag=$ac_c_werror_flag … … 2957 3075 *) ac_try_echo=$ac_try;; 2958 3076 esac 2959 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3077 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3078 $as_echo "$ac_try_echo") >&5 2960 3079 (eval "$ac_compile") 2>conftest.er1 2961 3080 ac_status=$? … … 2963 3082 rm -f conftest.er1 2964 3083 cat conftest.err >&5 2965 echo "$as_me:$LINENO: \$? = $ac_status" >&53084 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 2966 3085 (exit $ac_status); } && { 2967 3086 test -z "$ac_c_werror_flag" || … … 2970 3089 ac_cv_prog_cc_g=yes 2971 3090 else 2972 echo "$as_me: failed program was:" >&53091 $as_echo "$as_me: failed program was:" >&5 2973 3092 sed 's/^/| /' conftest.$ac_ext >&5 2974 3093 … … 2995 3114 *) ac_try_echo=$ac_try;; 2996 3115 esac 2997 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3116 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3117 $as_echo "$ac_try_echo") >&5 2998 3118 (eval "$ac_compile") 2>conftest.er1 2999 3119 ac_status=$? … … 3001 3121 rm -f conftest.er1 3002 3122 cat conftest.err >&5 3003 echo "$as_me:$LINENO: \$? = $ac_status" >&53123 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3004 3124 (exit $ac_status); } && { 3005 3125 test -z "$ac_c_werror_flag" || … … 3008 3128 : 3009 3129 else 3010 echo "$as_me: failed program was:" >&53130 $as_echo "$as_me: failed program was:" >&5 3011 3131 sed 's/^/| /' conftest.$ac_ext >&5 3012 3132 … … 3034 3154 *) ac_try_echo=$ac_try;; 3035 3155 esac 3036 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3156 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3157 $as_echo "$ac_try_echo") >&5 3037 3158 (eval "$ac_compile") 2>conftest.er1 3038 3159 ac_status=$? … … 3040 3161 rm -f conftest.er1 3041 3162 cat conftest.err >&5 3042 echo "$as_me:$LINENO: \$? = $ac_status" >&53163 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3043 3164 (exit $ac_status); } && { 3044 3165 test -z "$ac_c_werror_flag" || … … 3047 3168 ac_cv_prog_cc_g=yes 3048 3169 else 3049 echo "$as_me: failed program was:" >&53170 $as_echo "$as_me: failed program was:" >&5 3050 3171 sed 's/^/| /' conftest.$ac_ext >&5 3051 3172 … … 3062 3183 ac_c_werror_flag=$ac_save_c_werror_flag 3063 3184 fi 3064 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&53065 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; }3185 { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 3186 $as_echo "$ac_cv_prog_cc_g" >&6; } 3066 3187 if test "$ac_test_CFLAGS" = set; then 3067 3188 CFLAGS=$ac_save_CFLAGS … … 3079 3200 fi 3080 3201 fi 3081 { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&53082 echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; }3202 { $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 3203 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } 3083 3204 if test "${ac_cv_prog_cc_c89+set}" = set; then 3084 echo $ECHO_N "(cached) $ECHO_C" >&63205 $as_echo_n "(cached) " >&6 3085 3206 else 3086 3207 ac_cv_prog_cc_c89=no … … 3153 3274 *) ac_try_echo=$ac_try;; 3154 3275 esac 3155 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3276 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3277 $as_echo "$ac_try_echo") >&5 3156 3278 (eval "$ac_compile") 2>conftest.er1 3157 3279 ac_status=$? … … 3159 3281 rm -f conftest.er1 3160 3282 cat conftest.err >&5 3161 echo "$as_me:$LINENO: \$? = $ac_status" >&53283 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3162 3284 (exit $ac_status); } && { 3163 3285 test -z "$ac_c_werror_flag" || … … 3166 3288 ac_cv_prog_cc_c89=$ac_arg 3167 3289 else 3168 echo "$as_me: failed program was:" >&53290 $as_echo "$as_me: failed program was:" >&5 3169 3291 sed 's/^/| /' conftest.$ac_ext >&5 3170 3292 … … 3182 3304 case "x$ac_cv_prog_cc_c89" in 3183 3305 x) 3184 { echo "$as_me:$LINENO: result: none needed" >&53185 echo "${ECHO_T}none needed" >&6; } ;;3306 { $as_echo "$as_me:$LINENO: result: none needed" >&5 3307 $as_echo "none needed" >&6; } ;; 3186 3308 xno) 3187 { echo "$as_me:$LINENO: result: unsupported" >&53188 echo "${ECHO_T}unsupported" >&6; } ;;3309 { $as_echo "$as_me:$LINENO: result: unsupported" >&5 3310 $as_echo "unsupported" >&6; } ;; 3189 3311 *) 3190 3312 CC="$CC $ac_cv_prog_cc_c89" 3191 { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&53192 echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;;3313 { $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 3314 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; 3193 3315 esac 3194 3316 … … 3211 3333 END 3212 3334 # If we don't find an include directive, just comment out the code. 3213 { echo "$as_me:$LINENO: checking for style of include used by $am_make" >&53214 echo $ECHO_N "checking for style of include used by $am_make... $ECHO_C" >&6; }3335 { $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5 3336 $as_echo_n "checking for style of include used by $am_make... " >&6; } 3215 3337 am__include="#" 3216 3338 am__quote= … … 3239 3361 3240 3362 3241 { echo "$as_me:$LINENO: result: $_am_result" >&53242 echo "${ECHO_T}$_am_result" >&6; }3363 { $as_echo "$as_me:$LINENO: result: $_am_result" >&5 3364 $as_echo "$_am_result" >&6; } 3243 3365 rm -f confinc confmf 3244 3366 … … 3264 3386 depcc="$CC" am_compiler_list= 3265 3387 3266 { echo "$as_me:$LINENO: checking dependency style of $depcc" >&53267 echo $ECHO_N "checking dependency style of $depcc... $ECHO_C" >&6; }3388 { $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 3389 $as_echo_n "checking dependency style of $depcc... " >&6; } 3268 3390 if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then 3269 echo $ECHO_N "(cached) $ECHO_C" >&63391 $as_echo_n "(cached) " >&6 3270 3392 else 3271 3393 if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then … … 3355 3477 3356 3478 fi 3357 { echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&53358 echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; }3479 { $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5 3480 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } 3359 3481 CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type 3360 3482 … … 3375 3497 3376 3498 3377 { echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&53378 echo $ECHO_N "checking for pthread_create in -lpthread... $ECHO_C" >&6; }3499 { $as_echo "$as_me:$LINENO: checking for pthread_create in -lpthread" >&5 3500 $as_echo_n "checking for pthread_create in -lpthread... " >&6; } 3379 3501 if test "${ac_cv_lib_pthread_pthread_create+set}" = set; then 3380 echo $ECHO_N "(cached) $ECHO_C" >&63502 $as_echo_n "(cached) " >&6 3381 3503 else 3382 3504 ac_check_lib_save_LIBS=$LIBS … … 3410 3532 *) ac_try_echo=$ac_try;; 3411 3533 esac 3412 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3534 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3535 $as_echo "$ac_try_echo") >&5 3413 3536 (eval "$ac_link") 2>conftest.er1 3414 3537 ac_status=$? … … 3416 3539 rm -f conftest.er1 3417 3540 cat conftest.err >&5 3418 echo "$as_me:$LINENO: \$? = $ac_status" >&53541 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3419 3542 (exit $ac_status); } && { 3420 3543 test -z "$ac_c_werror_flag" || 3421 3544 test ! -s conftest.err 3422 } && test -s conftest$ac_exeext && 3423 $as_test_x conftest$ac_exeext; then 3545 } && test -s conftest$ac_exeext && { 3546 test "$cross_compiling" = yes || 3547 $as_test_x conftest$ac_exeext 3548 }; then 3424 3549 ac_cv_lib_pthread_pthread_create=yes 3425 3550 else 3426 echo "$as_me: failed program was:" >&53551 $as_echo "$as_me: failed program was:" >&5 3427 3552 sed 's/^/| /' conftest.$ac_ext >&5 3428 3553 … … 3430 3555 fi 3431 3556 3557 rm -rf conftest.dSYM 3432 3558 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 3433 3559 conftest$ac_exeext conftest.$ac_ext 3434 3560 LIBS=$ac_check_lib_save_LIBS 3435 3561 fi 3436 { echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&53437 echo "${ECHO_T}$ac_cv_lib_pthread_pthread_create" >&6; }3438 if test $ac_cv_lib_pthread_pthread_create =yes; then3562 { $as_echo "$as_me:$LINENO: result: $ac_cv_lib_pthread_pthread_create" >&5 3563 $as_echo "$ac_cv_lib_pthread_pthread_create" >&6; } 3564 if test "x$ac_cv_lib_pthread_pthread_create" = x""yes; then 3439 3565 cat >>confdefs.h <<_ACEOF 3440 3566 #define HAVE_LIBPTHREAD 1 … … 3469 3595 for ac_header in sys/types.h sys/socket.h netinet/in.h netinet/in_systm.h netinet/ip.h netinet/ip6.h netinet/in6.h net/if.h net/if_tun.h linux/if_tun.h linux/sockios.h endian.h sys/endian.h netinet/icmp6.h net/ethernet.h netinet/if_ether.h netinet/ether.h 3470 3596 do 3471 as_ac_Header=` echo "ac_cv_header_$ac_header" | $as_tr_sh`3472 { echo "$as_me:$LINENO: checking for $ac_header" >&53473 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }3597 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 3598 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 3599 $as_echo_n "checking for $ac_header... " >&6; } 3474 3600 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 3475 echo $ECHO_N "(cached) $ECHO_C" >&63601 $as_echo_n "(cached) " >&6 3476 3602 else 3477 3603 cat >conftest.$ac_ext <<_ACEOF … … 3508 3634 *) ac_try_echo=$ac_try;; 3509 3635 esac 3510 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3636 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3637 $as_echo "$ac_try_echo") >&5 3511 3638 (eval "$ac_compile") 2>conftest.er1 3512 3639 ac_status=$? … … 3514 3641 rm -f conftest.er1 3515 3642 cat conftest.err >&5 3516 echo "$as_me:$LINENO: \$? = $ac_status" >&53643 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3517 3644 (exit $ac_status); } && { 3518 3645 test -z "$ac_c_werror_flag" || … … 3521 3648 eval "$as_ac_Header=yes" 3522 3649 else 3523 echo "$as_me: failed program was:" >&53650 $as_echo "$as_me: failed program was:" >&5 3524 3651 sed 's/^/| /' conftest.$ac_ext >&5 3525 3652 … … 3529 3656 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 3530 3657 fi 3531 ac_res=`eval echo '${'$as_ac_Header'}'` 3532 { echo "$as_me:$LINENO: result: $ac_res" >&5 3533 echo "${ECHO_T}$ac_res" >&6; } 3534 if test `eval echo '${'$as_ac_Header'}'` = yes; then 3658 ac_res=`eval 'as_val=${'$as_ac_Header'} 3659 $as_echo "$as_val"'` 3660 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 3661 $as_echo "$ac_res" >&6; } 3662 as_val=`eval 'as_val=${'$as_ac_Header'} 3663 $as_echo "$as_val"'` 3664 if test "x$as_val" = x""yes; then 3535 3665 cat >>confdefs.h <<_ACEOF 3536 #define ` echo "HAVE_$ac_header" | $as_tr_cpp` 13666 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 3537 3667 _ACEOF 3538 3668 … … 3546 3676 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' 3547 3677 ac_compiler_gnu=$ac_cv_c_compiler_gnu 3548 { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&53549 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; }3678 { $as_echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 3679 $as_echo_n "checking how to run the C preprocessor... " >&6; } 3550 3680 # On Suns, sometimes $CPP names a directory. 3551 3681 if test -n "$CPP" && test -d "$CPP"; then … … 3554 3684 if test -z "$CPP"; then 3555 3685 if test "${ac_cv_prog_CPP+set}" = set; then 3556 echo $ECHO_N "(cached) $ECHO_C" >&63686 $as_echo_n "(cached) " >&6 3557 3687 else 3558 3688 # Double quotes because CPP needs to be expanded … … 3586 3716 *) ac_try_echo=$ac_try;; 3587 3717 esac 3588 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3718 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3719 $as_echo "$ac_try_echo") >&5 3589 3720 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3590 3721 ac_status=$? … … 3592 3723 rm -f conftest.er1 3593 3724 cat conftest.err >&5 3594 echo "$as_me:$LINENO: \$? = $ac_status" >&53725 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3595 3726 (exit $ac_status); } >/dev/null && { 3596 3727 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3599 3730 : 3600 3731 else 3601 echo "$as_me: failed program was:" >&53732 $as_echo "$as_me: failed program was:" >&5 3602 3733 sed 's/^/| /' conftest.$ac_ext >&5 3603 3734 … … 3623 3754 *) ac_try_echo=$ac_try;; 3624 3755 esac 3625 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3756 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3757 $as_echo "$ac_try_echo") >&5 3626 3758 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3627 3759 ac_status=$? … … 3629 3761 rm -f conftest.er1 3630 3762 cat conftest.err >&5 3631 echo "$as_me:$LINENO: \$? = $ac_status" >&53763 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3632 3764 (exit $ac_status); } >/dev/null && { 3633 3765 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3637 3769 continue 3638 3770 else 3639 echo "$as_me: failed program was:" >&53771 $as_echo "$as_me: failed program was:" >&5 3640 3772 sed 's/^/| /' conftest.$ac_ext >&5 3641 3773 … … 3662 3794 ac_cv_prog_CPP=$CPP 3663 3795 fi 3664 { echo "$as_me:$LINENO: result: $CPP" >&53665 echo "${ECHO_T}$CPP" >&6; }3796 { $as_echo "$as_me:$LINENO: result: $CPP" >&5 3797 $as_echo "$CPP" >&6; } 3666 3798 ac_preproc_ok=false 3667 3799 for ac_c_preproc_warn_flag in '' yes … … 3691 3823 *) ac_try_echo=$ac_try;; 3692 3824 esac 3693 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3825 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3826 $as_echo "$ac_try_echo") >&5 3694 3827 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3695 3828 ac_status=$? … … 3697 3830 rm -f conftest.er1 3698 3831 cat conftest.err >&5 3699 echo "$as_me:$LINENO: \$? = $ac_status" >&53832 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3700 3833 (exit $ac_status); } >/dev/null && { 3701 3834 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3704 3837 : 3705 3838 else 3706 echo "$as_me: failed program was:" >&53839 $as_echo "$as_me: failed program was:" >&5 3707 3840 sed 's/^/| /' conftest.$ac_ext >&5 3708 3841 … … 3728 3861 *) ac_try_echo=$ac_try;; 3729 3862 esac 3730 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 3863 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 3864 $as_echo "$ac_try_echo") >&5 3731 3865 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 3732 3866 ac_status=$? … … 3734 3868 rm -f conftest.er1 3735 3869 cat conftest.err >&5 3736 echo "$as_me:$LINENO: \$? = $ac_status" >&53870 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3737 3871 (exit $ac_status); } >/dev/null && { 3738 3872 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 3742 3876 continue 3743 3877 else 3744 echo "$as_me: failed program was:" >&53878 $as_echo "$as_me: failed program was:" >&5 3745 3879 sed 's/^/| /' conftest.$ac_ext >&5 3746 3880 … … 3758 3892 : 3759 3893 else 3760 { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check 3894 { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5 3895 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} 3896 { { $as_echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check 3761 3897 See \`config.log' for more details." >&5 3762 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check3898 $as_echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check 3763 3899 See \`config.log' for more details." >&2;} 3764 { (exit 1); exit 1; }; } 3900 { (exit 1); exit 1; }; }; } 3765 3901 fi 3766 3902 … … 3772 3908 3773 3909 3774 { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&53775 echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; }3910 { $as_echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 3911 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } 3776 3912 if test "${ac_cv_path_GREP+set}" = set; then 3777 echo $ECHO_N "(cached) $ECHO_C" >&6 3778 else 3779 # Extract the first word of "grep ggrep" to use in msg output 3780 if test -z "$GREP"; then 3781 set dummy grep ggrep; ac_prog_name=$2 3782 if test "${ac_cv_path_GREP+set}" = set; then 3783 echo $ECHO_N "(cached) $ECHO_C" >&6 3784 else 3913 $as_echo_n "(cached) " >&6 3914 else 3915 if test -z "$GREP"; then 3785 3916 ac_path_GREP_found=false 3786 # Loop through the user's path and test for each of PROGNAME-LIST3787 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR3917 # Loop through the user's path and test for each of PROGNAME-LIST 3918 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3788 3919 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 3789 3920 do … … 3791 3922 test -z "$as_dir" && as_dir=. 3792 3923 for ac_prog in grep ggrep; do 3793 for ac_exec_ext in '' $ac_executable_extensions; do3794 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"3795 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue3796 # Check for GNU ac_path_GREP and select it if it is found.3924 for ac_exec_ext in '' $ac_executable_extensions; do 3925 ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" 3926 { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue 3927 # Check for GNU ac_path_GREP and select it if it is found. 3797 3928 # Check for GNU $ac_path_GREP 3798 3929 case `"$ac_path_GREP" --version 2>&1` in … … 3801 3932 *) 3802 3933 ac_count=0 3803 echo $ECHO_N "0123456789$ECHO_C">"conftest.in"3934 $as_echo_n 0123456789 >"conftest.in" 3804 3935 while : 3805 3936 do … … 3807 3938 mv "conftest.tmp" "conftest.in" 3808 3939 cp "conftest.in" "conftest.nl" 3809 echo 'GREP' >> "conftest.nl"3940 $as_echo 'GREP' >> "conftest.nl" 3810 3941 "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break 3811 3942 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break … … 3822 3953 esac 3823 3954 3824 3825 $ac_path_GREP_found && break 33955 $ac_path_GREP_found && break 3 3956 done 3826 3957 done 3827 3958 done 3828 3829 done3830 3959 IFS=$as_save_IFS 3831 3832 3833 fi 3834 3835 GREP="$ac_cv_path_GREP" 3836 if test -z "$GREP"; then 3837 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 3838 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 3960 if test -z "$ac_cv_path_GREP"; then 3961 { { $as_echo "$as_me:$LINENO: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 3962 $as_echo "$as_me: error: no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 3839 3963 { (exit 1); exit 1; }; } 3840 fi 3841 3964 fi 3842 3965 else 3843 3966 ac_cv_path_GREP=$GREP 3844 3967 fi 3845 3968 3846 3847 fi 3848 { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 3849 echo "${ECHO_T}$ac_cv_path_GREP" >&6; } 3969 fi 3970 { $as_echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 3971 $as_echo "$ac_cv_path_GREP" >&6; } 3850 3972 GREP="$ac_cv_path_GREP" 3851 3973 3852 3974 3853 { echo "$as_me:$LINENO: checking for egrep" >&53854 echo $ECHO_N "checking for egrep... $ECHO_C" >&6; }3975 { $as_echo "$as_me:$LINENO: checking for egrep" >&5 3976 $as_echo_n "checking for egrep... " >&6; } 3855 3977 if test "${ac_cv_path_EGREP+set}" = set; then 3856 echo $ECHO_N "(cached) $ECHO_C" >&63978 $as_echo_n "(cached) " >&6 3857 3979 else 3858 3980 if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 3859 3981 then ac_cv_path_EGREP="$GREP -E" 3860 3982 else 3861 # Extract the first word of "egrep" to use in msg output 3862 if test -z "$EGREP"; then 3863 set dummy egrep; ac_prog_name=$2 3864 if test "${ac_cv_path_EGREP+set}" = set; then 3865 echo $ECHO_N "(cached) $ECHO_C" >&6 3866 else 3983 if test -z "$EGREP"; then 3867 3984 ac_path_EGREP_found=false 3868 # Loop through the user's path and test for each of PROGNAME-LIST3869 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR3985 # Loop through the user's path and test for each of PROGNAME-LIST 3986 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR 3870 3987 for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin 3871 3988 do … … 3873 3990 test -z "$as_dir" && as_dir=. 3874 3991 for ac_prog in egrep; do 3875 for ac_exec_ext in '' $ac_executable_extensions; do3876 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"3877 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue3878 # Check for GNU ac_path_EGREP and select it if it is found.3992 for ac_exec_ext in '' $ac_executable_extensions; do 3993 ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" 3994 { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue 3995 # Check for GNU ac_path_EGREP and select it if it is found. 3879 3996 # Check for GNU $ac_path_EGREP 3880 3997 case `"$ac_path_EGREP" --version 2>&1` in … … 3883 4000 *) 3884 4001 ac_count=0 3885 echo $ECHO_N "0123456789$ECHO_C">"conftest.in"4002 $as_echo_n 0123456789 >"conftest.in" 3886 4003 while : 3887 4004 do … … 3889 4006 mv "conftest.tmp" "conftest.in" 3890 4007 cp "conftest.in" "conftest.nl" 3891 echo 'EGREP' >> "conftest.nl"4008 $as_echo 'EGREP' >> "conftest.nl" 3892 4009 "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break 3893 4010 diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break … … 3904 4021 esac 3905 4022 3906 3907 $ac_path_EGREP_found && break 34023 $ac_path_EGREP_found && break 3 4024 done 3908 4025 done 3909 4026 done 3910 3911 done3912 4027 IFS=$as_save_IFS 3913 3914 3915 fi 3916 3917 EGREP="$ac_cv_path_EGREP" 3918 if test -z "$EGREP"; then 3919 { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 3920 echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 4028 if test -z "$ac_cv_path_EGREP"; then 4029 { { $as_echo "$as_me:$LINENO: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 4030 $as_echo "$as_me: error: no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} 3921 4031 { (exit 1); exit 1; }; } 3922 fi 3923 4032 fi 3924 4033 else 3925 4034 ac_cv_path_EGREP=$EGREP 3926 4035 fi 3927 4036 3928 3929 4037 fi 3930 4038 fi 3931 { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&53932 echo "${ECHO_T}$ac_cv_path_EGREP" >&6; }4039 { $as_echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 4040 $as_echo "$ac_cv_path_EGREP" >&6; } 3933 4041 EGREP="$ac_cv_path_EGREP" 3934 4042 3935 4043 3936 { echo "$as_me:$LINENO: checking for ANSI C header files" >&53937 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }4044 { $as_echo "$as_me:$LINENO: checking for ANSI C header files" >&5 4045 $as_echo_n "checking for ANSI C header files... " >&6; } 3938 4046 if test "${ac_cv_header_stdc+set}" = set; then 3939 echo $ECHO_N "(cached) $ECHO_C" >&64047 $as_echo_n "(cached) " >&6 3940 4048 else 3941 4049 cat >conftest.$ac_ext <<_ACEOF … … 3964 4072 *) ac_try_echo=$ac_try;; 3965 4073 esac 3966 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4074 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4075 $as_echo "$ac_try_echo") >&5 3967 4076 (eval "$ac_compile") 2>conftest.er1 3968 4077 ac_status=$? … … 3970 4079 rm -f conftest.er1 3971 4080 cat conftest.err >&5 3972 echo "$as_me:$LINENO: \$? = $ac_status" >&54081 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 3973 4082 (exit $ac_status); } && { 3974 4083 test -z "$ac_c_werror_flag" || … … 3977 4086 ac_cv_header_stdc=yes 3978 4087 else 3979 echo "$as_me: failed program was:" >&54088 $as_echo "$as_me: failed program was:" >&5 3980 4089 sed 's/^/| /' conftest.$ac_ext >&5 3981 4090 … … 4069 4178 *) ac_try_echo=$ac_try;; 4070 4179 esac 4071 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4180 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4181 $as_echo "$ac_try_echo") >&5 4072 4182 (eval "$ac_link") 2>&5 4073 4183 ac_status=$? 4074 echo "$as_me:$LINENO: \$? = $ac_status" >&54184 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4075 4185 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' 4076 4186 { (case "(($ac_try" in … … 4078 4188 *) ac_try_echo=$ac_try;; 4079 4189 esac 4080 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4190 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4191 $as_echo "$ac_try_echo") >&5 4081 4192 (eval "$ac_try") 2>&5 4082 4193 ac_status=$? 4083 echo "$as_me:$LINENO: \$? = $ac_status" >&54194 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4084 4195 (exit $ac_status); }; }; then 4085 4196 : 4086 4197 else 4087 echo "$as_me: program exited with status $ac_status" >&54088 echo "$as_me: failed program was:" >&54198 $as_echo "$as_me: program exited with status $ac_status" >&5 4199 $as_echo "$as_me: failed program was:" >&5 4089 4200 sed 's/^/| /' conftest.$ac_ext >&5 4090 4201 … … 4092 4203 ac_cv_header_stdc=no 4093 4204 fi 4205 rm -rf conftest.dSYM 4094 4206 rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext 4095 4207 fi … … 4098 4210 fi 4099 4211 fi 4100 { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&54101 echo "${ECHO_T}$ac_cv_header_stdc" >&6; }4212 { $as_echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 4213 $as_echo "$ac_cv_header_stdc" >&6; } 4102 4214 if test $ac_cv_header_stdc = yes; then 4103 4215 … … 4121 4233 inttypes.h stdint.h unistd.h 4122 4234 do 4123 as_ac_Header=` echo "ac_cv_header_$ac_header" | $as_tr_sh`4124 { echo "$as_me:$LINENO: checking for $ac_header" >&54125 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4235 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4236 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4237 $as_echo_n "checking for $ac_header... " >&6; } 4126 4238 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4127 echo $ECHO_N "(cached) $ECHO_C" >&64239 $as_echo_n "(cached) " >&6 4128 4240 else 4129 4241 cat >conftest.$ac_ext <<_ACEOF … … 4143 4255 *) ac_try_echo=$ac_try;; 4144 4256 esac 4145 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4257 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4258 $as_echo "$ac_try_echo") >&5 4146 4259 (eval "$ac_compile") 2>conftest.er1 4147 4260 ac_status=$? … … 4149 4262 rm -f conftest.er1 4150 4263 cat conftest.err >&5 4151 echo "$as_me:$LINENO: \$? = $ac_status" >&54264 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4152 4265 (exit $ac_status); } && { 4153 4266 test -z "$ac_c_werror_flag" || … … 4156 4269 eval "$as_ac_Header=yes" 4157 4270 else 4158 echo "$as_me: failed program was:" >&54271 $as_echo "$as_me: failed program was:" >&5 4159 4272 sed 's/^/| /' conftest.$ac_ext >&5 4160 4273 … … 4164 4277 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4165 4278 fi 4166 ac_res=`eval echo '${'$as_ac_Header'}'` 4167 { echo "$as_me:$LINENO: result: $ac_res" >&5 4168 echo "${ECHO_T}$ac_res" >&6; } 4169 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4279 ac_res=`eval 'as_val=${'$as_ac_Header'} 4280 $as_echo "$as_val"'` 4281 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4282 $as_echo "$ac_res" >&6; } 4283 as_val=`eval 'as_val=${'$as_ac_Header'} 4284 $as_echo "$as_val"'` 4285 if test "x$as_val" = x""yes; then 4170 4286 cat >>confdefs.h <<_ACEOF 4171 #define ` echo "HAVE_$ac_header" | $as_tr_cpp` 14287 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4172 4288 _ACEOF 4173 4289 … … 4181 4297 for ac_header in readline/readline.h readline/history.h 4182 4298 do 4183 as_ac_Header=` echo "ac_cv_header_$ac_header" | $as_tr_sh`4299 as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` 4184 4300 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4185 { echo "$as_me:$LINENO: checking for $ac_header" >&54186 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4301 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4302 $as_echo_n "checking for $ac_header... " >&6; } 4187 4303 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4188 echo $ECHO_N "(cached) $ECHO_C" >&6 4189 fi 4190 ac_res=`eval echo '${'$as_ac_Header'}'` 4191 { echo "$as_me:$LINENO: result: $ac_res" >&5 4192 echo "${ECHO_T}$ac_res" >&6; } 4304 $as_echo_n "(cached) " >&6 4305 fi 4306 ac_res=`eval 'as_val=${'$as_ac_Header'} 4307 $as_echo "$as_val"'` 4308 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4309 $as_echo "$ac_res" >&6; } 4193 4310 else 4194 4311 # Is the header compilable? 4195 { echo "$as_me:$LINENO: checking $ac_header usability" >&54196 echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; }4312 { $as_echo "$as_me:$LINENO: checking $ac_header usability" >&5 4313 $as_echo_n "checking $ac_header usability... " >&6; } 4197 4314 cat >conftest.$ac_ext <<_ACEOF 4198 4315 /* confdefs.h. */ … … 4210 4327 *) ac_try_echo=$ac_try;; 4211 4328 esac 4212 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4329 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4330 $as_echo "$ac_try_echo") >&5 4213 4331 (eval "$ac_compile") 2>conftest.er1 4214 4332 ac_status=$? … … 4216 4334 rm -f conftest.er1 4217 4335 cat conftest.err >&5 4218 echo "$as_me:$LINENO: \$? = $ac_status" >&54336 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4219 4337 (exit $ac_status); } && { 4220 4338 test -z "$ac_c_werror_flag" || … … 4223 4341 ac_header_compiler=yes 4224 4342 else 4225 echo "$as_me: failed program was:" >&54343 $as_echo "$as_me: failed program was:" >&5 4226 4344 sed 's/^/| /' conftest.$ac_ext >&5 4227 4345 … … 4230 4348 4231 4349 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4232 { echo "$as_me:$LINENO: result: $ac_header_compiler" >&54233 echo "${ECHO_T}$ac_header_compiler" >&6; }4350 { $as_echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 4351 $as_echo "$ac_header_compiler" >&6; } 4234 4352 4235 4353 # Is the header present? 4236 { echo "$as_me:$LINENO: checking $ac_header presence" >&54237 echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; }4354 { $as_echo "$as_me:$LINENO: checking $ac_header presence" >&5 4355 $as_echo_n "checking $ac_header presence... " >&6; } 4238 4356 cat >conftest.$ac_ext <<_ACEOF 4239 4357 /* confdefs.h. */ … … 4249 4367 *) ac_try_echo=$ac_try;; 4250 4368 esac 4251 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4369 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4370 $as_echo "$ac_try_echo") >&5 4252 4371 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 4253 4372 ac_status=$? … … 4255 4374 rm -f conftest.er1 4256 4375 cat conftest.err >&5 4257 echo "$as_me:$LINENO: \$? = $ac_status" >&54376 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4258 4377 (exit $ac_status); } >/dev/null && { 4259 4378 test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || … … 4262 4381 ac_header_preproc=yes 4263 4382 else 4264 echo "$as_me: failed program was:" >&54383 $as_echo "$as_me: failed program was:" >&5 4265 4384 sed 's/^/| /' conftest.$ac_ext >&5 4266 4385 … … 4269 4388 4270 4389 rm -f conftest.err conftest.$ac_ext 4271 { echo "$as_me:$LINENO: result: $ac_header_preproc" >&54272 echo "${ECHO_T}$ac_header_preproc" >&6; }4390 { $as_echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 4391 $as_echo "$ac_header_preproc" >&6; } 4273 4392 4274 4393 # So? What about this header? 4275 4394 case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in 4276 4395 yes:no: ) 4277 { echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&54278 echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}4279 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&54280 echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;}4396 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5 4397 $as_echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;} 4398 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the compiler's result" >&5 4399 $as_echo "$as_me: WARNING: $ac_header: proceeding with the compiler's result" >&2;} 4281 4400 ac_header_preproc=yes 4282 4401 ;; 4283 4402 no:yes:* ) 4284 { echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&54285 echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}4286 { echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&54287 echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}4288 { echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&54289 echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;}4290 { echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&54291 echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;}4292 { echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&54293 echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}4294 { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&54295 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;}4403 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5 4404 $as_echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;} 4405 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5 4406 $as_echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;} 4407 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: see the Autoconf documentation" >&5 4408 $as_echo "$as_me: WARNING: $ac_header: see the Autoconf documentation" >&2;} 4409 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&5 4410 $as_echo "$as_me: WARNING: $ac_header: section \"Present But Cannot Be Compiled\"" >&2;} 4411 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5 4412 $as_echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} 4413 { $as_echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 4414 $as_echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} 4296 4415 ( cat <<\_ASBOX 4297 4416 ## ---------------------------------- ## … … 4302 4421 ;; 4303 4422 esac 4304 { echo "$as_me:$LINENO: checking for $ac_header" >&54305 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; }4423 { $as_echo "$as_me:$LINENO: checking for $ac_header" >&5 4424 $as_echo_n "checking for $ac_header... " >&6; } 4306 4425 if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then 4307 echo $ECHO_N "(cached) $ECHO_C" >&64426 $as_echo_n "(cached) " >&6 4308 4427 else 4309 4428 eval "$as_ac_Header=\$ac_header_preproc" 4310 4429 fi 4311 ac_res=`eval echo '${'$as_ac_Header'}'` 4312 { echo "$as_me:$LINENO: result: $ac_res" >&5 4313 echo "${ECHO_T}$ac_res" >&6; } 4314 4315 fi 4316 if test `eval echo '${'$as_ac_Header'}'` = yes; then 4430 ac_res=`eval 'as_val=${'$as_ac_Header'} 4431 $as_echo "$as_val"'` 4432 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 4433 $as_echo "$ac_res" >&6; } 4434 4435 fi 4436 as_val=`eval 'as_val=${'$as_ac_Header'} 4437 $as_echo "$as_val"'` 4438 if test "x$as_val" = x""yes; then 4317 4439 cat >>confdefs.h <<_ACEOF 4318 #define ` echo "HAVE_$ac_header" | $as_tr_cpp` 14440 #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 4319 4441 _ACEOF 4320 4442 … … 4325 4447 4326 4448 # Checks for typedefs, structures, and compiler characteristics. 4327 { echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&54328 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6; }4449 { $as_echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5 4450 $as_echo_n "checking for an ANSI C-conforming const... " >&6; } 4329 4451 if test "${ac_cv_c_const+set}" = set; then 4330 echo $ECHO_N "(cached) $ECHO_C" >&64452 $as_echo_n "(cached) " >&6 4331 4453 else 4332 4454 cat >conftest.$ac_ext <<_ACEOF … … 4400 4522 *) ac_try_echo=$ac_try;; 4401 4523 esac 4402 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4524 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4525 $as_echo "$ac_try_echo") >&5 4403 4526 (eval "$ac_compile") 2>conftest.er1 4404 4527 ac_status=$? … … 4406 4529 rm -f conftest.er1 4407 4530 cat conftest.err >&5 4408 echo "$as_me:$LINENO: \$? = $ac_status" >&54531 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4409 4532 (exit $ac_status); } && { 4410 4533 test -z "$ac_c_werror_flag" || … … 4413 4536 ac_cv_c_const=yes 4414 4537 else 4415 echo "$as_me: failed program was:" >&54538 $as_echo "$as_me: failed program was:" >&5 4416 4539 sed 's/^/| /' conftest.$ac_ext >&5 4417 4540 … … 4421 4544 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4422 4545 fi 4423 { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&54424 echo "${ECHO_T}$ac_cv_c_const" >&6; }4546 { $as_echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 4547 $as_echo "$ac_cv_c_const" >&6; } 4425 4548 if test $ac_cv_c_const = no; then 4426 4549 4427 4550 cat >>confdefs.h <<\_ACEOF 4428 #define const 4551 #define const /**/ 4429 4552 _ACEOF 4430 4553 … … 4439 4562 #AC_CHECK_TYPE([struct sockaddr_in], [AC_DEFINE([HAVE_STRUCT_IP6_HDR],[1],[define if struct ip6_hdr exists])]) 4440 4563 4441 { echo "$as_me:$LINENO: checking for struct ip6_hdr" >&54442 echo $ECHO_N "checking for struct ip6_hdr... $ECHO_C" >&6; }4564 { $as_echo "$as_me:$LINENO: checking for struct ip6_hdr" >&5 4565 $as_echo_n "checking for struct ip6_hdr... " >&6; } 4443 4566 if test "${ac_cv_type_struct_ip6_hdr+set}" = set; then 4444 echo $ECHO_N "(cached) $ECHO_C" >&6 4445 else 4446 cat >conftest.$ac_ext <<_ACEOF 4567 $as_echo_n "(cached) " >&6 4568 else 4569 ac_cv_type_struct_ip6_hdr=no 4570 cat >conftest.$ac_ext <<_ACEOF 4447 4571 /* confdefs.h. */ 4448 4572 _ACEOF … … 4465 4589 4466 4590 4467 typedef struct ip6_hdr ac__type_new_;4468 4591 int 4469 4592 main () 4470 4593 { 4471 if ((ac__type_new_ *) 0) 4472 return 0; 4473 if (sizeof (ac__type_new_)) 4474 return 0; 4594 if (sizeof (struct ip6_hdr)) 4595 return 0; 4475 4596 ; 4476 4597 return 0; … … 4483 4604 *) ac_try_echo=$ac_try;; 4484 4605 esac 4485 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4606 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4607 $as_echo "$ac_try_echo") >&5 4486 4608 (eval "$ac_compile") 2>conftest.er1 4487 4609 ac_status=$? … … 4489 4611 rm -f conftest.er1 4490 4612 cat conftest.err >&5 4491 echo "$as_me:$LINENO: \$? = $ac_status" >&54613 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4492 4614 (exit $ac_status); } && { 4493 4615 test -z "$ac_c_werror_flag" || 4494 4616 test ! -s conftest.err 4495 4617 } && test -s conftest.$ac_objext; then 4496 ac_cv_type_struct_ip6_hdr=yes 4497 else 4498 echo "$as_me: failed program was:" >&5 4618 cat >conftest.$ac_ext <<_ACEOF 4619 /* confdefs.h. */ 4620 _ACEOF 4621 cat confdefs.h >>conftest.$ac_ext 4622 cat >>conftest.$ac_ext <<_ACEOF 4623 /* end confdefs.h. */ 4624 4625 #ifdef HAVE_SYS_TYPES_H 4626 #include <sys/types.h> 4627 #endif 4628 #ifdef HAVE_NETINET_IN_H 4629 #include <netinet/in.h> 4630 #endif 4631 #ifdef HAVE_NETINET_IN6_H 4632 #include <netinet/in6.h> 4633 #endif 4634 #ifdef HAVE_NETINET_IP6_H 4635 #include <netinet/ip6.h> 4636 #endif 4637 4638 4639 int 4640 main () 4641 { 4642 if (sizeof ((struct ip6_hdr))) 4643 return 0; 4644 ; 4645 return 0; 4646 } 4647 _ACEOF 4648 rm -f conftest.$ac_objext 4649 if { (ac_try="$ac_compile" 4650 case "(($ac_try" in 4651 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4652 *) ac_try_echo=$ac_try;; 4653 esac 4654 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4655 $as_echo "$ac_try_echo") >&5 4656 (eval "$ac_compile") 2>conftest.er1 4657 ac_status=$? 4658 grep -v '^ *+' conftest.er1 >conftest.err 4659 rm -f conftest.er1 4660 cat conftest.err >&5 4661 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4662 (exit $ac_status); } && { 4663 test -z "$ac_c_werror_flag" || 4664 test ! -s conftest.err 4665 } && test -s conftest.$ac_objext; then 4666 : 4667 else 4668 $as_echo "$as_me: failed program was:" >&5 4499 4669 sed 's/^/| /' conftest.$ac_ext >&5 4500 4670 4501 ac_cv_type_struct_ip6_hdr= no4671 ac_cv_type_struct_ip6_hdr=yes 4502 4672 fi 4503 4673 4504 4674 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4505 fi 4506 { echo "$as_me:$LINENO: result: $ac_cv_type_struct_ip6_hdr" >&5 4507 echo "${ECHO_T}$ac_cv_type_struct_ip6_hdr" >&6; } 4508 if test $ac_cv_type_struct_ip6_hdr = yes; then 4675 else 4676 $as_echo "$as_me: failed program was:" >&5 4677 sed 's/^/| /' conftest.$ac_ext >&5 4678 4679 4680 fi 4681 4682 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4683 fi 4684 { $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_ip6_hdr" >&5 4685 $as_echo "$ac_cv_type_struct_ip6_hdr" >&6; } 4686 if test "x$ac_cv_type_struct_ip6_hdr" = x""yes; then 4509 4687 4510 4688 cat >>confdefs.h <<_ACEOF … … 4516 4694 4517 4695 4518 { echo "$as_me:$LINENO: checking for struct iphdr" >&54519 echo $ECHO_N "checking for struct iphdr... $ECHO_C" >&6; }4696 { $as_echo "$as_me:$LINENO: checking for struct iphdr" >&5 4697 $as_echo_n "checking for struct iphdr... " >&6; } 4520 4698 if test "${ac_cv_type_struct_iphdr+set}" = set; then 4521 echo $ECHO_N "(cached) $ECHO_C" >&6 4522 else 4523 cat >conftest.$ac_ext <<_ACEOF 4699 $as_echo_n "(cached) " >&6 4700 else 4701 ac_cv_type_struct_iphdr=no 4702 cat >conftest.$ac_ext <<_ACEOF 4524 4703 /* confdefs.h. */ 4525 4704 _ACEOF … … 4539 4718 4540 4719 4541 typedef struct iphdr ac__type_new_;4542 4720 int 4543 4721 main () 4544 4722 { 4545 if ((ac__type_new_ *) 0) 4546 return 0; 4547 if (sizeof (ac__type_new_)) 4548 return 0; 4723 if (sizeof (struct iphdr)) 4724 return 0; 4549 4725 ; 4550 4726 return 0; … … 4557 4733 *) ac_try_echo=$ac_try;; 4558 4734 esac 4559 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4735 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4736 $as_echo "$ac_try_echo") >&5 4560 4737 (eval "$ac_compile") 2>conftest.er1 4561 4738 ac_status=$? … … 4563 4740 rm -f conftest.er1 4564 4741 cat conftest.err >&5 4565 echo "$as_me:$LINENO: \$? = $ac_status" >&54742 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4566 4743 (exit $ac_status); } && { 4567 4744 test -z "$ac_c_werror_flag" || 4568 4745 test ! -s conftest.err 4569 4746 } && test -s conftest.$ac_objext; then 4570 ac_cv_type_struct_iphdr=yes 4571 else 4572 echo "$as_me: failed program was:" >&5 4747 cat >conftest.$ac_ext <<_ACEOF 4748 /* confdefs.h. */ 4749 _ACEOF 4750 cat confdefs.h >>conftest.$ac_ext 4751 cat >>conftest.$ac_ext <<_ACEOF 4752 /* end confdefs.h. */ 4753 4754 #ifdef HAVE_SYS_TYPES_H 4755 #include <sys/types.h> 4756 #endif 4757 #ifdef HAVE_NETINET_IN_H 4758 #include <netinet/in.h> 4759 #endif 4760 #ifdef HAVE_NETINET_IP_H 4761 #include <netinet/ip.h> 4762 #endif 4763 4764 4765 int 4766 main () 4767 { 4768 if (sizeof ((struct iphdr))) 4769 return 0; 4770 ; 4771 return 0; 4772 } 4773 _ACEOF 4774 rm -f conftest.$ac_objext 4775 if { (ac_try="$ac_compile" 4776 case "(($ac_try" in 4777 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4778 *) ac_try_echo=$ac_try;; 4779 esac 4780 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4781 $as_echo "$ac_try_echo") >&5 4782 (eval "$ac_compile") 2>conftest.er1 4783 ac_status=$? 4784 grep -v '^ *+' conftest.er1 >conftest.err 4785 rm -f conftest.er1 4786 cat conftest.err >&5 4787 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4788 (exit $ac_status); } && { 4789 test -z "$ac_c_werror_flag" || 4790 test ! -s conftest.err 4791 } && test -s conftest.$ac_objext; then 4792 : 4793 else 4794 $as_echo "$as_me: failed program was:" >&5 4573 4795 sed 's/^/| /' conftest.$ac_ext >&5 4574 4796 4575 ac_cv_type_struct_iphdr= no4797 ac_cv_type_struct_iphdr=yes 4576 4798 fi 4577 4799 4578 4800 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4579 fi 4580 { echo "$as_me:$LINENO: result: $ac_cv_type_struct_iphdr" >&5 4581 echo "${ECHO_T}$ac_cv_type_struct_iphdr" >&6; } 4582 if test $ac_cv_type_struct_iphdr = yes; then 4801 else 4802 $as_echo "$as_me: failed program was:" >&5 4803 sed 's/^/| /' conftest.$ac_ext >&5 4804 4805 4806 fi 4807 4808 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4809 fi 4810 { $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_iphdr" >&5 4811 $as_echo "$ac_cv_type_struct_iphdr" >&6; } 4812 if test "x$ac_cv_type_struct_iphdr" = x""yes; then 4583 4813 4584 4814 cat >>confdefs.h <<_ACEOF … … 4590 4820 4591 4821 4592 { echo "$as_me:$LINENO: checking for struct ip" >&54593 echo $ECHO_N "checking for struct ip... $ECHO_C" >&6; }4822 { $as_echo "$as_me:$LINENO: checking for struct ip" >&5 4823 $as_echo_n "checking for struct ip... " >&6; } 4594 4824 if test "${ac_cv_type_struct_ip+set}" = set; then 4595 echo $ECHO_N "(cached) $ECHO_C" >&6 4596 else 4597 cat >conftest.$ac_ext <<_ACEOF 4825 $as_echo_n "(cached) " >&6 4826 else 4827 ac_cv_type_struct_ip=no 4828 cat >conftest.$ac_ext <<_ACEOF 4598 4829 /* confdefs.h. */ 4599 4830 _ACEOF … … 4616 4847 4617 4848 4618 typedef struct ip ac__type_new_;4619 4849 int 4620 4850 main () 4621 4851 { 4622 if ((ac__type_new_ *) 0) 4623 return 0; 4624 if (sizeof (ac__type_new_)) 4625 return 0; 4852 if (sizeof (struct ip)) 4853 return 0; 4626 4854 ; 4627 4855 return 0; … … 4634 4862 *) ac_try_echo=$ac_try;; 4635 4863 esac 4636 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4864 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4865 $as_echo "$ac_try_echo") >&5 4637 4866 (eval "$ac_compile") 2>conftest.er1 4638 4867 ac_status=$? … … 4640 4869 rm -f conftest.er1 4641 4870 cat conftest.err >&5 4642 echo "$as_me:$LINENO: \$? = $ac_status" >&54871 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4643 4872 (exit $ac_status); } && { 4644 4873 test -z "$ac_c_werror_flag" || 4645 4874 test ! -s conftest.err 4646 4875 } && test -s conftest.$ac_objext; then 4647 ac_cv_type_struct_ip=yes 4648 else 4649 echo "$as_me: failed program was:" >&5 4876 cat >conftest.$ac_ext <<_ACEOF 4877 /* confdefs.h. */ 4878 _ACEOF 4879 cat confdefs.h >>conftest.$ac_ext 4880 cat >>conftest.$ac_ext <<_ACEOF 4881 /* end confdefs.h. */ 4882 4883 #ifdef HAVE_SYS_TYPES_H 4884 #include <sys/types.h> 4885 #endif 4886 #ifdef HAVE_NETINET_IN_H 4887 #include <netinet/in.h> 4888 #endif 4889 #ifdef HAVE_NETINET_IN_SYSTM_H 4890 #include <netinet/in_systm.h> 4891 #endif 4892 #ifdef HAVE_NETINET_IP_H 4893 #include <netinet/ip.h> 4894 #endif 4895 4896 4897 int 4898 main () 4899 { 4900 if (sizeof ((struct ip))) 4901 return 0; 4902 ; 4903 return 0; 4904 } 4905 _ACEOF 4906 rm -f conftest.$ac_objext 4907 if { (ac_try="$ac_compile" 4908 case "(($ac_try" in 4909 *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; 4910 *) ac_try_echo=$ac_try;; 4911 esac 4912 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4913 $as_echo "$ac_try_echo") >&5 4914 (eval "$ac_compile") 2>conftest.er1 4915 ac_status=$? 4916 grep -v '^ *+' conftest.er1 >conftest.err 4917 rm -f conftest.er1 4918 cat conftest.err >&5 4919 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4920 (exit $ac_status); } && { 4921 test -z "$ac_c_werror_flag" || 4922 test ! -s conftest.err 4923 } && test -s conftest.$ac_objext; then 4924 : 4925 else 4926 $as_echo "$as_me: failed program was:" >&5 4650 4927 sed 's/^/| /' conftest.$ac_ext >&5 4651 4928 4652 ac_cv_type_struct_ip= no4929 ac_cv_type_struct_ip=yes 4653 4930 fi 4654 4931 4655 4932 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4656 fi 4657 { echo "$as_me:$LINENO: result: $ac_cv_type_struct_ip" >&5 4658 echo "${ECHO_T}$ac_cv_type_struct_ip" >&6; } 4659 if test $ac_cv_type_struct_ip = yes; then 4933 else 4934 $as_echo "$as_me: failed program was:" >&5 4935 sed 's/^/| /' conftest.$ac_ext >&5 4936 4937 4938 fi 4939 4940 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4941 fi 4942 { $as_echo "$as_me:$LINENO: result: $ac_cv_type_struct_ip" >&5 4943 $as_echo "$ac_cv_type_struct_ip" >&6; } 4944 if test "x$ac_cv_type_struct_ip" = x""yes; then 4660 4945 4661 4946 cat >>confdefs.h <<_ACEOF … … 4667 4952 4668 4953 4669 { echo "$as_me:$LINENO: checking for struct sockaddr_in.sin_len" >&54670 echo $ECHO_N "checking for struct sockaddr_in.sin_len... $ECHO_C" >&6; }4954 { $as_echo "$as_me:$LINENO: checking for struct sockaddr_in.sin_len" >&5 4955 $as_echo_n "checking for struct sockaddr_in.sin_len... " >&6; } 4671 4956 if test "${ac_cv_member_struct_sockaddr_in_sin_len+set}" = set; then 4672 echo $ECHO_N "(cached) $ECHO_C" >&64957 $as_echo_n "(cached) " >&6 4673 4958 else 4674 4959 cat >conftest.$ac_ext <<_ACEOF … … 4702 4987 *) ac_try_echo=$ac_try;; 4703 4988 esac 4704 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 4989 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 4990 $as_echo "$ac_try_echo") >&5 4705 4991 (eval "$ac_compile") 2>conftest.er1 4706 4992 ac_status=$? … … 4708 4994 rm -f conftest.er1 4709 4995 cat conftest.err >&5 4710 echo "$as_me:$LINENO: \$? = $ac_status" >&54996 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4711 4997 (exit $ac_status); } && { 4712 4998 test -z "$ac_c_werror_flag" || … … 4715 5001 ac_cv_member_struct_sockaddr_in_sin_len=yes 4716 5002 else 4717 echo "$as_me: failed program was:" >&55003 $as_echo "$as_me: failed program was:" >&5 4718 5004 sed 's/^/| /' conftest.$ac_ext >&5 4719 5005 … … 4748 5034 *) ac_try_echo=$ac_try;; 4749 5035 esac 4750 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5036 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 5037 $as_echo "$ac_try_echo") >&5 4751 5038 (eval "$ac_compile") 2>conftest.er1 4752 5039 ac_status=$? … … 4754 5041 rm -f conftest.er1 4755 5042 cat conftest.err >&5 4756 echo "$as_me:$LINENO: \$? = $ac_status" >&55043 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4757 5044 (exit $ac_status); } && { 4758 5045 test -z "$ac_c_werror_flag" || … … 4761 5048 ac_cv_member_struct_sockaddr_in_sin_len=yes 4762 5049 else 4763 echo "$as_me: failed program was:" >&55050 $as_echo "$as_me: failed program was:" >&5 4764 5051 sed 's/^/| /' conftest.$ac_ext >&5 4765 5052 … … 4772 5059 rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext 4773 5060 fi 4774 { echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_in_sin_len" >&54775 echo "${ECHO_T}$ac_cv_member_struct_sockaddr_in_sin_len" >&6; }4776 if test $ac_cv_member_struct_sockaddr_in_sin_len =yes; then5061 { $as_echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_in_sin_len" >&5 5062 $as_echo "$ac_cv_member_struct_sockaddr_in_sin_len" >&6; } 5063 if test "x$ac_cv_member_struct_sockaddr_in_sin_len" = x""yes; then 4777 5064 4778 5065 cat >>confdefs.h <<\_ACEOF … … 4795 5082 4796 5083 4797 for ac_func in strlcat strlcpy ether_ntoa_r readline 5084 5085 for ac_func in strlcat strlcpy ether_ntoa ether_ntoa_r readline 4798 5086 do 4799 as_ac_var=` echo "ac_cv_func_$ac_func" | $as_tr_sh`4800 { echo "$as_me:$LINENO: checking for $ac_func" >&54801 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; }5087 as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` 5088 { $as_echo "$as_me:$LINENO: checking for $ac_func" >&5 5089 $as_echo_n "checking for $ac_func... " >&6; } 4802 5090 if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then 4803 echo $ECHO_N "(cached) $ECHO_C" >&65091 $as_echo_n "(cached) " >&6 4804 5092 else 4805 5093 cat >conftest.$ac_ext <<_ACEOF … … 4854 5142 *) ac_try_echo=$ac_try;; 4855 5143 esac 4856 eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 5144 eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\"" 5145 $as_echo "$ac_try_echo") >&5 4857 5146 (eval "$ac_link") 2>conftest.er1 4858 5147 ac_status=$? … … 4860 5149 rm -f conftest.er1 4861 5150 cat conftest.err >&5 4862 echo "$as_me:$LINENO: \$? = $ac_status" >&55151 $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 4863 5152 (exit $ac_status); } && { 4864 5153 test -z "$ac_c_werror_flag" || 4865 5154 test ! -s conftest.err 4866 } && test -s conftest$ac_exeext && 4867 $as_test_x conftest$ac_exeext; then 5155 } && test -s conftest$ac_exeext && { 5156 test "$cross_compiling" = yes || 5157 $as_test_x conftest$ac_exeext 5158 }; then 4868 5159 eval "$as_ac_var=yes" 4869 5160 else 4870 echo "$as_me: failed program was:" >&55161 $as_echo "$as_me: failed program was:" >&5 4871 5162 sed 's/^/| /' conftest.$ac_ext >&5 4872 5163 … … 4874 5165 fi 4875 5166 5167 rm -rf conftest.dSYM 4876 5168 rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ 4877 5169 conftest$ac_exeext conftest.$ac_ext 4878 5170 fi 4879 ac_res=`eval echo '${'$as_ac_var'}'` 4880 { echo "$as_me:$LINENO: result: $ac_res" >&5 4881 echo "${ECHO_T}$ac_res" >&6; } 4882 if test `eval echo '${'$as_ac_var'}'` = yes; then 5171 ac_res=`eval 'as_val=${'$as_ac_var'} 5172 $as_echo "$as_val"'` 5173 { $as_echo "$as_me:$LINENO: result: $ac_res" >&5 5174 $as_echo "$ac_res" >&6; } 5175 as_val=`eval 'as_val=${'$as_ac_var'} 5176 $as_echo "$as_val"'` 5177 if test "x$as_val" = x""yes; then 4883 5178 cat >>confdefs.h <<_ACEOF 4884 #define ` echo "HAVE_$ac_func" | $as_tr_cpp` 15179 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 4885 5180 _ACEOF 4886 5181 … … 4918 5213 *${as_nl}*) 4919 5214 case $ac_var in #( 4920 *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&54921 echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;5215 *_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5 5216 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; 4922 5217 esac 4923 5218 case $ac_var in #( 4924 5219 _ | IFS | as_nl) ;; #( 5220 BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( 4925 5221 *) $as_unset $ac_var ;; 4926 5222 esac ;; … … 4955 5251 if test -w "$cache_file"; then 4956 5252 test "x$cache_file" != "x/dev/null" && 4957 { echo "$as_me:$LINENO: updating cache $cache_file" >&54958 echo "$as_me: updating cache $cache_file" >&6;}5253 { $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5 5254 $as_echo "$as_me: updating cache $cache_file" >&6;} 4959 5255 cat confcache >$cache_file 4960 5256 else 4961 { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&54962 echo "$as_me: not updating unwritable cache $cache_file" >&6;}5257 { $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 5258 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} 4963 5259 fi 4964 5260 fi … … 4976 5272 # 1. Remove the extension, and $U if already installed. 4977 5273 ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' 4978 ac_i=` echo "$ac_i" | sed "$ac_script"`5274 ac_i=`$as_echo "$ac_i" | sed "$ac_script"` 4979 5275 # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR 4980 5276 # will be set to the directory where LIBOBJS objects are built. … … 4988 5284 4989 5285 if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then 4990 { { echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.5286 { { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined. 4991 5287 Usually this means the macro was only invoked conditionally." >&5 4992 echo "$as_me: error: conditional \"AMDEP\" was never defined.5288 $as_echo "$as_me: error: conditional \"AMDEP\" was never defined. 4993 5289 Usually this means the macro was only invoked conditionally." >&2;} 4994 5290 { (exit 1); exit 1; }; } 4995 5291 fi 4996 5292 if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then 4997 { { echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.5293 { { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined. 4998 5294 Usually this means the macro was only invoked conditionally." >&5 4999 echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.5295 $as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined. 5000 5296 Usually this means the macro was only invoked conditionally." >&2;} 5001 5297 { (exit 1); exit 1; }; } … … 5003 5299 5004 5300 : ${CONFIG_STATUS=./config.status} 5301 ac_write_fail=0 5005 5302 ac_clean_files_save=$ac_clean_files 5006 5303 ac_clean_files="$ac_clean_files $CONFIG_STATUS" 5007 { echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&55008 echo "$as_me: creating $CONFIG_STATUS" >&6;}5009 cat >$CONFIG_STATUS <<_ACEOF 5304 { $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5 5305 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} 5306 cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5010 5307 #! $SHELL 5011 5308 # Generated by $as_me. … … 5020 5317 _ACEOF 5021 5318 5022 cat >>$CONFIG_STATUS <<\_ACEOF 5319 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5023 5320 ## --------------------- ## 5024 5321 ## M4sh Initialization. ## … … 5030 5327 emulate sh 5031 5328 NULLCMD=: 5032 # Zsh 3.x and 4.x performsword splitting on ${1+"$@"}, which5329 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 5033 5330 # is contrary to our usage. Disable this feature. 5034 5331 alias -g '${1+"$@"}'='"$@"' … … 5052 5349 as_cr_alnum=$as_cr_Letters$as_cr_digits 5053 5350 5351 as_nl=' 5352 ' 5353 export as_nl 5354 # Printing a long string crashes Solaris 7 /usr/bin/printf. 5355 as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' 5356 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo 5357 as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo 5358 if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then 5359 as_echo='printf %s\n' 5360 as_echo_n='printf %s' 5361 else 5362 if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then 5363 as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' 5364 as_echo_n='/usr/ucb/echo -n' 5365 else 5366 as_echo_body='eval expr "X$1" : "X\\(.*\\)"' 5367 as_echo_n_body='eval 5368 arg=$1; 5369 case $arg in 5370 *"$as_nl"*) 5371 expr "X$arg" : "X\\(.*\\)$as_nl"; 5372 arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; 5373 esac; 5374 expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" 5375 ' 5376 export as_echo_n_body 5377 as_echo_n='sh -c $as_echo_n_body as_echo' 5378 fi 5379 export as_echo_body 5380 as_echo='sh -c $as_echo_body as_echo' 5381 fi 5382 5054 5383 # The user is always right. 5055 5384 if test "${PATH_SEPARATOR+set}" != set; then 5056 echo "#! /bin/sh" >conf$$.sh 5057 echo "exit 0" >>conf$$.sh 5058 chmod +x conf$$.sh 5059 if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then 5060 PATH_SEPARATOR=';' 5061 else 5062 PATH_SEPARATOR=: 5063 fi 5064 rm -f conf$$.sh 5385 PATH_SEPARATOR=: 5386 (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { 5387 (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || 5388 PATH_SEPARATOR=';' 5389 } 5065 5390 fi 5066 5391 … … 5078 5403 # (If _AS_PATH_WALK were called with IFS unset, it would disable word 5079 5404 # splitting by setting IFS to empty value.) 5080 as_nl='5081 '5082 5405 IFS=" "" $as_nl" 5083 5406 … … 5102 5425 fi 5103 5426 if test ! -f "$as_myself"; then 5104 echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&25427 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 5105 5428 { (exit 1); exit 1; } 5106 5429 fi … … 5115 5438 5116 5439 # NLS nuisances. 5117 for as_var in \ 5118 LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ 5119 LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ 5120 LC_TELEPHONE LC_TIME 5121 do 5122 if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then 5123 eval $as_var=C; export $as_var 5124 else 5125 ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var 5126 fi 5127 done 5440 LC_ALL=C 5441 export LC_ALL 5442 LANGUAGE=C 5443 export LANGUAGE 5128 5444 5129 5445 # Required to use basename. … … 5147 5463 X"$0" : 'X\(//\)$' \| \ 5148 5464 X"$0" : 'X\(/\)' \| . 2>/dev/null || 5149 echo X/"$0" |5465 $as_echo X/"$0" | 5150 5466 sed '/^.*\/\([^/][^/]*\)\/*$/{ 5151 5467 s//\1/ … … 5198 5514 ' >$as_me.lineno && 5199 5515 chmod +x "$as_me.lineno" || 5200 { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&25516 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 5201 5517 { (exit 1); exit 1; }; } 5202 5518 … … 5226 5542 ECHO_N='-n';; 5227 5543 esac 5228 5229 5544 if expr a : '\(a\)' >/dev/null 2>&1 && 5230 5545 test "X`expr 00001 : '.*\(...\)'`" = X001; then … … 5239 5554 else 5240 5555 rm -f conf$$.dir 5241 mkdir conf$$.dir 5242 fi 5243 echo >conf$$.file 5244 if ln -s conf$$.file conf$$ 2>/dev/null; then 5245 as_ln_s='ln -s' 5246 # ... but there are two gotchas: 5247 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 5248 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 5249 # In both cases, we have to default to `cp -p'. 5250 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 5556 mkdir conf$$.dir 2>/dev/null 5557 fi 5558 if (echo >conf$$.file) 2>/dev/null; then 5559 if ln -s conf$$.file conf$$ 2>/dev/null; then 5560 as_ln_s='ln -s' 5561 # ... but there are two gotchas: 5562 # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. 5563 # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. 5564 # In both cases, we have to default to `cp -p'. 5565 ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || 5566 as_ln_s='cp -p' 5567 elif ln conf$$.file conf$$ 2>/dev/null; then 5568 as_ln_s=ln 5569 else 5251 5570 as_ln_s='cp -p' 5252 elif ln conf$$.file conf$$ 2>/dev/null; then 5253 as_ln_s=ln 5571 fi 5254 5572 else 5255 5573 as_ln_s='cp -p' … … 5276 5594 eval sh -c '\'' 5277 5595 if test -d "$1"; then 5278 test -d "$1/.";5596 test -d "$1/."; 5279 5597 else 5280 5598 case $1 in 5281 -*)set "./$1";;5599 -*)set "./$1";; 5282 5600 esac; 5283 5601 case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in … … 5301 5619 # values after options handling. 5302 5620 ac_log=" 5303 This file was extended by onioncat $as_me 0.1.10-47 5M, which was5304 generated by GNU Autoconf 2.6 1. Invocation command line was5621 This file was extended by onioncat $as_me 0.1.10-479M, which was 5622 generated by GNU Autoconf 2.63. Invocation command line was 5305 5623 5306 5624 CONFIG_FILES = $CONFIG_FILES … … 5315 5633 _ACEOF 5316 5634 5317 cat >>$CONFIG_STATUS <<_ACEOF 5635 case $ac_config_files in *" 5636 "*) set x $ac_config_files; shift; ac_config_files=$*;; 5637 esac 5638 5639 case $ac_config_headers in *" 5640 "*) set x $ac_config_headers; shift; ac_config_headers=$*;; 5641 esac 5642 5643 5644 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5318 5645 # Files that config.status was made for. 5319 5646 config_files="$ac_config_files" … … 5323 5650 _ACEOF 5324 5651 5325 cat >>$CONFIG_STATUS <<\_ACEOF 5652 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5326 5653 ac_cs_usage="\ 5327 5654 \`$as_me' instantiates files from templates according to the 5328 5655 current configuration. 5329 5656 5330 Usage: $0 [OPTION S][FILE]...5657 Usage: $0 [OPTION]... [FILE]... 5331 5658 5332 5659 -h, --help print this help, then exit 5333 5660 -V, --version print version number and configuration settings, then exit 5334 -q, --quiet do not print progress messages 5661 -q, --quiet, --silent 5662 do not print progress messages 5335 5663 -d, --debug don't remove temporary files 5336 5664 --recheck update $as_me by reconfiguring in the same conditions 5337 --file=FILE[:TEMPLATE]5338 instantiate the configuration file FILE5339 --header=FILE[:TEMPLATE]5340 instantiate the configuration header FILE5665 --file=FILE[:TEMPLATE] 5666 instantiate the configuration file FILE 5667 --header=FILE[:TEMPLATE] 5668 instantiate the configuration header FILE 5341 5669 5342 5670 Configuration files: … … 5352 5680 5353 5681 _ACEOF 5354 cat >>$CONFIG_STATUS <<_ACEOF 5682 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5355 5683 ac_cs_version="\\ 5356 onioncat config.status 0.1.10-47 5M5357 configured by $0, generated by GNU Autoconf 2.6 1,5358 with options \\"` echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"5359 5360 Copyright (C) 200 6Free Software Foundation, Inc.5684 onioncat config.status 0.1.10-479M 5685 configured by $0, generated by GNU Autoconf 2.63, 5686 with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" 5687 5688 Copyright (C) 2008 Free Software Foundation, Inc. 5361 5689 This config.status script is free software; the Free Software Foundation 5362 5690 gives unlimited permission to copy, distribute and modify it." … … 5366 5694 INSTALL='$INSTALL' 5367 5695 MKDIR_P='$MKDIR_P' 5368 _ACEOF 5369 5370 cat >>$CONFIG_STATUS <<\_ACEOF 5371 # If no file are specified by the user, then we need to provide default 5372 # value. By we need to know if files were specified by the user. 5696 AWK='$AWK' 5697 test -n "\$AWK" || AWK=awk 5698 _ACEOF 5699 5700 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5701 # The default lists apply if the user does not specify any file. 5373 5702 ac_need_defaults=: 5374 5703 while test $# != 0 … … 5392 5721 ac_cs_recheck=: ;; 5393 5722 --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) 5394 echo "$ac_cs_version"; exit ;;5723 $as_echo "$ac_cs_version"; exit ;; 5395 5724 --debug | --debu | --deb | --de | --d | -d ) 5396 5725 debug=: ;; 5397 5726 --file | --fil | --fi | --f ) 5398 5727 $ac_shift 5399 CONFIG_FILES="$CONFIG_FILES $ac_optarg" 5728 case $ac_optarg in 5729 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 5730 esac 5731 CONFIG_FILES="$CONFIG_FILES '$ac_optarg'" 5400 5732 ac_need_defaults=false;; 5401 5733 --header | --heade | --head | --hea ) 5402 5734 $ac_shift 5403 CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" 5735 case $ac_optarg in 5736 *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; 5737 esac 5738 CONFIG_HEADERS="$CONFIG_HEADERS '$ac_optarg'" 5404 5739 ac_need_defaults=false;; 5405 5740 --he | --h) 5406 5741 # Conflict between --help and --header 5407 { echo "$as_me: error: ambiguous option: $15742 { $as_echo "$as_me: error: ambiguous option: $1 5408 5743 Try \`$0 --help' for more information." >&2 5409 5744 { (exit 1); exit 1; }; };; 5410 5745 --help | --hel | -h ) 5411 echo "$ac_cs_usage"; exit ;;5746 $as_echo "$ac_cs_usage"; exit ;; 5412 5747 -q | -quiet | --quiet | --quie | --qui | --qu | --q \ 5413 5748 | -silent | --silent | --silen | --sile | --sil | --si | --s) … … 5415 5750 5416 5751 # This is an error. 5417 -*) { echo "$as_me: error: unrecognized option: $15752 -*) { $as_echo "$as_me: error: unrecognized option: $1 5418 5753 Try \`$0 --help' for more information." >&2 5419 5754 { (exit 1); exit 1; }; } ;; … … 5434 5769 5435 5770 _ACEOF 5436 cat >>$CONFIG_STATUS <<_ACEOF 5771 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5437 5772 if \$ac_cs_recheck; then 5438 echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 5439 CONFIG_SHELL=$SHELL 5773 set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion 5774 shift 5775 \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 5776 CONFIG_SHELL='$SHELL' 5440 5777 export CONFIG_SHELL 5441 exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion5442 fi 5443 5444 _ACEOF 5445 cat >>$CONFIG_STATUS <<\_ACEOF 5778 exec "\$@" 5779 fi 5780 5781 _ACEOF 5782 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5446 5783 exec 5>>config.log 5447 5784 { … … 5450 5787 ## Running $as_me. ## 5451 5788 _ASBOX 5452 echo "$ac_log"5789 $as_echo "$ac_log" 5453 5790 } >&5 5454 5791 5455 5792 _ACEOF 5456 cat >>$CONFIG_STATUS <<_ACEOF 5793 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5457 5794 # 5458 5795 # INIT-COMMANDS … … 5462 5799 _ACEOF 5463 5800 5464 cat >>$CONFIG_STATUS <<\_ACEOF 5801 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5465 5802 5466 5803 # Handling of arguments. … … 5474 5811 "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;; 5475 5812 5476 *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&55477 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}5813 *) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 5814 $as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;} 5478 5815 { (exit 1); exit 1; }; };; 5479 5816 esac … … 5516 5853 } || 5517 5854 { 5518 echo "$me: cannot create a temporary directory in ." >&25855 $as_echo "$as_me: cannot create a temporary directory in ." >&2 5519 5856 { (exit 1); exit 1; } 5520 5857 } 5521 5858 5522 # 5523 # Set up the sed scripts for CONFIG_FILES section. 5524 # 5525 5526 # No need to generate the scripts if there are no CONFIG_FILES. 5527 # This happens for instance when ./config.status config.h 5859 # Set up the scripts for CONFIG_FILES section. 5860 # No need to generate them if there are no CONFIG_FILES. 5861 # This happens for instance with `./config.status config.h'. 5528 5862 if test -n "$CONFIG_FILES"; then 5529 5863 5530 _ACEOF 5531 5532 5533 5864 5865 ac_cr=' 5866 ' 5867 ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` 5868 if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then 5869 ac_cs_awk_cr='\\r' 5870 else 5871 ac_cs_awk_cr=$ac_cr 5872 fi 5873 5874 echo 'BEGIN {' >"$tmp/subs1.awk" && 5875 _ACEOF 5876 5877 5878 { 5879 echo "cat >conf$$subs.awk <<_ACEOF" && 5880 echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && 5881 echo "_ACEOF" 5882 } >conf$$subs.sh || 5883 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5884 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5885 { (exit 1); exit 1; }; } 5886 ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'` 5534 5887 ac_delim='%!_!# ' 5535 5888 for ac_last_try in false false false false false :; do 5536 cat >conf$$subs.sed <<_ACEOF 5537 SHELL!$SHELL$ac_delim 5538 PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim 5539 PACKAGE_NAME!$PACKAGE_NAME$ac_delim 5540 PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim 5541 PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim 5542 PACKAGE_STRING!$PACKAGE_STRING$ac_delim 5543 PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim 5544 exec_prefix!$exec_prefix$ac_delim 5545 prefix!$prefix$ac_delim 5546 program_transform_name!$program_transform_name$ac_delim 5547 bindir!$bindir$ac_delim 5548 sbindir!$sbindir$ac_delim 5549 libexecdir!$libexecdir$ac_delim 5550 datarootdir!$datarootdir$ac_delim 5551 datadir!$datadir$ac_delim 5552 sysconfdir!$sysconfdir$ac_delim 5553 sharedstatedir!$sharedstatedir$ac_delim 5554 localstatedir!$localstatedir$ac_delim 5555 includedir!$includedir$ac_delim 5556 oldincludedir!$oldincludedir$ac_delim 5557 docdir!$docdir$ac_delim 5558 infodir!$infodir$ac_delim 5559 htmldir!$htmldir$ac_delim 5560 dvidir!$dvidir$ac_delim 5561 pdfdir!$pdfdir$ac_delim 5562 psdir!$psdir$ac_delim 5563 libdir!$libdir$ac_delim 5564 localedir!$localedir$ac_delim 5565 mandir!$mandir$ac_delim 5566 DEFS!$DEFS$ac_delim 5567 ECHO_C!$ECHO_C$ac_delim 5568 ECHO_N!$ECHO_N$ac_delim 5569 ECHO_T!$ECHO_T$ac_delim 5570 LIBS!$LIBS$ac_delim 5571 build_alias!$build_alias$ac_delim 5572 host_alias!$host_alias$ac_delim 5573 target_alias!$target_alias$ac_delim 5574 INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim 5575 INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim 5576 INSTALL_DATA!$INSTALL_DATA$ac_delim 5577 am__isrc!$am__isrc$ac_delim 5578 CYGPATH_W!$CYGPATH_W$ac_delim 5579 PACKAGE!$PACKAGE$ac_delim 5580 VERSION!$VERSION$ac_delim 5581 ACLOCAL!$ACLOCAL$ac_delim 5582 AUTOCONF!$AUTOCONF$ac_delim 5583 AUTOMAKE!$AUTOMAKE$ac_delim 5584 AUTOHEADER!$AUTOHEADER$ac_delim 5585 MAKEINFO!$MAKEINFO$ac_delim 5586 install_sh!$install_sh$ac_delim 5587 STRIP!$STRIP$ac_delim 5588 INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim 5589 mkdir_p!$mkdir_p$ac_delim 5590 AWK!$AWK$ac_delim 5591 SET_MAKE!$SET_MAKE$ac_delim 5592 am__leading_dot!$am__leading_dot$ac_delim 5593 AMTAR!$AMTAR$ac_delim 5594 am__tar!$am__tar$ac_delim 5595 am__untar!$am__untar$ac_delim 5596 CFLAGS!$CFLAGS$ac_delim 5597 CC!$CC$ac_delim 5598 LDFLAGS!$LDFLAGS$ac_delim 5599 CPPFLAGS!$CPPFLAGS$ac_delim 5600 ac_ct_CC!$ac_ct_CC$ac_delim 5601 EXEEXT!$EXEEXT$ac_delim 5602 OBJEXT!$OBJEXT$ac_delim 5603 DEPDIR!$DEPDIR$ac_delim 5604 am__include!$am__include$ac_delim 5605 am__quote!$am__quote$ac_delim 5606 AMDEP_TRUE!$AMDEP_TRUE$ac_delim 5607 AMDEP_FALSE!$AMDEP_FALSE$ac_delim 5608 AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim 5609 CCDEPMODE!$CCDEPMODE$ac_delim 5610 am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim 5611 am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim 5612 CPP!$CPP$ac_delim 5613 GREP!$GREP$ac_delim 5614 EGREP!$EGREP$ac_delim 5615 LIBOBJS!$LIBOBJS$ac_delim 5616 LTLIBOBJS!$LTLIBOBJS$ac_delim 5617 _ACEOF 5618 5619 if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 80; then 5889 . ./conf$$subs.sh || 5890 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5891 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5892 { (exit 1); exit 1; }; } 5893 5894 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` 5895 if test $ac_delim_n = $ac_delim_num; then 5620 5896 break 5621 5897 elif $ac_last_try; then 5622 { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&55623 echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}5898 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 5899 $as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} 5624 5900 { (exit 1); exit 1; }; } 5625 5901 else … … 5627 5903 fi 5628 5904 done 5629 5630 ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` 5631 if test -n "$ac_eof"; then 5632 ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` 5633 ac_eof=`expr $ac_eof + 1` 5634 fi 5635 5636 cat >>$CONFIG_STATUS <<_ACEOF 5637 cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof 5638 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end 5639 _ACEOF 5640 sed ' 5641 s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g 5642 s/^/s,@/; s/!/@,|#_!!_#|/ 5643 :n 5644 t n 5645 s/'"$ac_delim"'$/,g/; t 5646 s/$/\\/; p 5647 N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n 5648 ' >>$CONFIG_STATUS <conf$$subs.sed 5649 rm -f conf$$subs.sed 5650 cat >>$CONFIG_STATUS <<_ACEOF 5651 :end 5652 s/|#_!!_#|//g 5653 CEOF$ac_eof 5654 _ACEOF 5655 5905 rm -f conf$$subs.sh 5906 5907 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5908 cat >>"\$tmp/subs1.awk" <<\\_ACAWK && 5909 _ACEOF 5910 sed -n ' 5911 h 5912 s/^/S["/; s/!.*/"]=/ 5913 p 5914 g 5915 s/^[^!]*!// 5916 :repl 5917 t repl 5918 s/'"$ac_delim"'$// 5919 t delim 5920 :nl 5921 h 5922 s/\(.\{148\}\).*/\1/ 5923 t more1 5924 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ 5925 p 5926 n 5927 b repl 5928 :more1 5929 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 5930 p 5931 g 5932 s/.\{148\}// 5933 t nl 5934 :delim 5935 h 5936 s/\(.\{148\}\).*/\1/ 5937 t more2 5938 s/["\\]/\\&/g; s/^/"/; s/$/"/ 5939 p 5940 b 5941 :more2 5942 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ 5943 p 5944 g 5945 s/.\{148\}// 5946 t delim 5947 ' <conf$$subs.awk | sed ' 5948 /^[^""]/{ 5949 N 5950 s/\n// 5951 } 5952 ' >>$CONFIG_STATUS || ac_write_fail=1 5953 rm -f conf$$subs.awk 5954 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5955 _ACAWK 5956 cat >>"\$tmp/subs1.awk" <<_ACAWK && 5957 for (key in S) S_is_set[key] = 1 5958 FS = "" 5959 5960 } 5961 { 5962 line = $ 0 5963 nfields = split(line, field, "@") 5964 substed = 0 5965 len = length(field[1]) 5966 for (i = 2; i < nfields; i++) { 5967 key = field[i] 5968 keylen = length(key) 5969 if (S_is_set[key]) { 5970 value = S[key] 5971 line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) 5972 len += length(value) + length(field[++i]) 5973 substed = 1 5974 } else 5975 len += 1 + keylen 5976 } 5977 5978 print line 5979 } 5980 5981 _ACAWK 5982 _ACEOF 5983 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5984 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then 5985 sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" 5986 else 5987 cat 5988 fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ 5989 || { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5 5990 $as_echo "$as_me: error: could not setup config files machinery" >&2;} 5991 { (exit 1); exit 1; }; } 5992 _ACEOF 5656 5993 5657 5994 # VPATH may cause trouble with some makes, so we remove $(srcdir), … … 5670 6007 fi 5671 6008 5672 cat >>$CONFIG_STATUS <<\_ACEOF 6009 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5673 6010 fi # test -n "$CONFIG_FILES" 5674 6011 5675 5676 for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS 6012 # Set up the scripts for CONFIG_HEADERS section. 6013 # No need to generate them if there are no CONFIG_HEADERS. 6014 # This happens for instance with `./config.status Makefile'. 6015 if test -n "$CONFIG_HEADERS"; then 6016 cat >"$tmp/defines.awk" <<\_ACAWK || 6017 BEGIN { 6018 _ACEOF 6019 6020 # Transform confdefs.h into an awk script `defines.awk', embedded as 6021 # here-document in config.status, that substitutes the proper values into 6022 # config.h.in to produce config.h. 6023 6024 # Create a delimiter string that does not exist in confdefs.h, to ease 6025 # handling of long lines. 6026 ac_delim='%!_!# ' 6027 for ac_last_try in false false :; do 6028 ac_t=`sed -n "/$ac_delim/p" confdefs.h` 6029 if test -z "$ac_t"; then 6030 break 6031 elif $ac_last_try; then 6032 { { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_HEADERS" >&5 6033 $as_echo "$as_me: error: could not make $CONFIG_HEADERS" >&2;} 6034 { (exit 1); exit 1; }; } 6035 else 6036 ac_delim="$ac_delim!$ac_delim _$ac_delim!! " 6037 fi 6038 done 6039 6040 # For the awk script, D is an array of macro values keyed by name, 6041 # likewise P contains macro parameters if any. Preserve backslash 6042 # newline sequences. 6043 6044 ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* 6045 sed -n ' 6046 s/.\{148\}/&'"$ac_delim"'/g 6047 t rset 6048 :rset 6049 s/^[ ]*#[ ]*define[ ][ ]*/ / 6050 t def 6051 d 6052 :def 6053 s/\\$// 6054 t bsnl 6055 s/["\\]/\\&/g 6056 s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ 6057 D["\1"]=" \3"/p 6058 s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p 6059 d 6060 :bsnl 6061 s/["\\]/\\&/g 6062 s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ 6063 D["\1"]=" \3\\\\\\n"\\/p 6064 t cont 6065 s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p 6066 t cont 6067 d 6068 :cont 6069 n 6070 s/.\{148\}/&'"$ac_delim"'/g 6071 t clear 6072 :clear 6073 s/\\$// 6074 t bsnlc 6075 s/["\\]/\\&/g; s/^/"/; s/$/"/p 6076 d 6077 :bsnlc 6078 s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p 6079 b cont 6080 ' <confdefs.h | sed ' 6081 s/'"$ac_delim"'/"\\\ 6082 "/g' >>$CONFIG_STATUS || ac_write_fail=1 6083 6084 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 6085 for (key in D) D_is_set[key] = 1 6086 FS = "" 6087 } 6088 /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { 6089 line = \$ 0 6090 split(line, arg, " ") 6091 if (arg[1] == "#") { 6092 defundef = arg[2] 6093 mac1 = arg[3] 6094 } else { 6095 defundef = substr(arg[1], 2) 6096 mac1 = arg[2] 6097 } 6098 split(mac1, mac2, "(") #) 6099 macro = mac2[1] 6100 prefix = substr(line, 1, index(line, defundef) - 1) 6101 if (D_is_set[macro]) { 6102 # Preserve the white space surrounding the "#". 6103 print prefix "define", macro P[macro] D[macro] 6104 next 6105 } else { 6106 # Replace #undef with comments. This is necessary, for example, 6107 # in the case of _POSIX_SOURCE, which is predefined and required 6108 # on some systems where configure will not decide to define it. 6109 if (defundef == "undef") { 6110 print "/*", prefix defundef, macro, "*/" 6111 next 6112 } 6113 } 6114 } 6115 { print } 6116 _ACAWK 6117 _ACEOF 6118 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 6119 { { $as_echo "$as_me:$LINENO: error: could not setup config headers machinery" >&5 6120 $as_echo "$as_me: error: could not setup config headers machinery" >&2;} 6121 { (exit 1); exit 1; }; } 6122 fi # test -n "$CONFIG_HEADERS" 6123 6124 6125 eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" 6126 shift 6127 for ac_tag 5677 6128 do 5678 6129 case $ac_tag in … … 5681 6132 case $ac_mode$ac_tag in 5682 6133 :[FHL]*:*);; 5683 :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&55684 echo "$as_me: error: Invalid tag $ac_tag." >&2;}6134 :L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5 6135 $as_echo "$as_me: error: invalid tag $ac_tag" >&2;} 5685 6136 { (exit 1); exit 1; }; };; 5686 6137 :[FH]-) ac_tag=-:-;; … … 5711 6162 *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; 5712 6163 esac || 5713 { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&55714 echo "$as_me: error: cannot find input file: $ac_f" >&2;}6164 { { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 6165 $as_echo "$as_me: error: cannot find input file: $ac_f" >&2;} 5715 6166 { (exit 1); exit 1; }; };; 5716 6167 esac 5717 ac_file_inputs="$ac_file_inputs $ac_f" 6168 case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac 6169 ac_file_inputs="$ac_file_inputs '$ac_f'" 5718 6170 done 5719 6171 … … 5721 6173 # use $as_me), people would be surprised to read: 5722 6174 # /* config.h. Generated by config.status. */ 5723 configure_input="Generated from "`IFS=: 5724 echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." 6175 configure_input='Generated from '` 6176 $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' 6177 `' by configure.' 5725 6178 if test x"$ac_file" != x-; then 5726 6179 configure_input="$ac_file. $configure_input" 5727 { echo "$as_me:$LINENO: creating $ac_file" >&55728 echo "$as_me: creating $ac_file" >&6;}6180 { $as_echo "$as_me:$LINENO: creating $ac_file" >&5 6181 $as_echo "$as_me: creating $ac_file" >&6;} 5729 6182 fi 6183 # Neutralize special characters interpreted by sed in replacement strings. 6184 case $configure_input in #( 6185 *\&* | *\|* | *\\* ) 6186 ac_sed_conf_input=`$as_echo "$configure_input" | 6187 sed 's/[\\\\&|]/\\\\&/g'`;; #( 6188 *) ac_sed_conf_input=$configure_input;; 6189 esac 5730 6190 5731 6191 case $ac_tag in 5732 *:-:* | *:-) cat >"$tmp/stdin";; 6192 *:-:* | *:-) cat >"$tmp/stdin" \ 6193 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6194 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6195 { (exit 1); exit 1; }; } ;; 5733 6196 esac 5734 6197 ;; … … 5740 6203 X"$ac_file" : 'X\(//\)$' \| \ 5741 6204 X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || 5742 echo X"$ac_file" |6205 $as_echo X"$ac_file" | 5743 6206 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 5744 6207 s//\1/ … … 5766 6229 while :; do 5767 6230 case $as_dir in #( 5768 *\'*) as_qdir=` echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(6231 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 5769 6232 *) as_qdir=$as_dir;; 5770 6233 esac … … 5775 6238 X"$as_dir" : 'X\(//\)$' \| \ 5776 6239 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 5777 echo X"$as_dir" |6240 $as_echo X"$as_dir" | 5778 6241 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 5779 6242 s//\1/ … … 5796 6259 done 5797 6260 test -z "$as_dirs" || eval "mkdir $as_dirs" 5798 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&55799 echo "$as_me: error: cannot create directory $as_dir" >&2;}6261 } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 6262 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} 5800 6263 { (exit 1); exit 1; }; }; } 5801 6264 ac_builddir=. … … 5804 6267 .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; 5805 6268 *) 5806 ac_dir_suffix=/` echo "$ac_dir" | sed 's,^\.[\\/],,'`6269 ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` 5807 6270 # A ".." for each directory in $ac_dir_suffix. 5808 ac_top_builddir_sub=` echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'`6271 ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` 5809 6272 case $ac_top_builddir_sub in 5810 6273 "") ac_top_builddir_sub=. ac_top_build_prefix= ;; … … 5851 6314 _ACEOF 5852 6315 5853 cat >>$CONFIG_STATUS <<\_ACEOF 6316 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5854 6317 # If the template does not know about datarootdir, expand it. 5855 6318 # FIXME: This hack should be removed a few years after 2.60. 5856 6319 ac_datarootdir_hack=; ac_datarootdir_seen= 5857 6320 5858 case `sed -n '/datarootdir/ { 6321 ac_sed_dataroot=' 6322 /datarootdir/ { 5859 6323 p 5860 6324 q … … 5865 6329 /@localedir@/p 5866 6330 /@mandir@/p 5867 ' $ac_file_inputs` in 6331 ' 6332 case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in 5868 6333 *datarootdir*) ac_datarootdir_seen=yes;; 5869 6334 *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) 5870 { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&55871 echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}5872 _ACEOF 5873 cat >>$CONFIG_STATUS <<_ACEOF 6335 { $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 6336 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} 6337 _ACEOF 6338 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 5874 6339 ac_datarootdir_hack=' 5875 6340 s&@datadir@&$datadir&g … … 5885 6350 # Shell code in configure.ac might set extrasub. 5886 6351 # FIXME: do we really want to maintain this feature? 5887 cat >>$CONFIG_STATUS <<_ACEOF 5888 sed"$ac_vpsub6352 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 6353 ac_sed_extra="$ac_vpsub 5889 6354 $extrasub 5890 6355 _ACEOF 5891 cat >>$CONFIG_STATUS <<\_ACEOF 6356 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 5892 6357 :t 5893 6358 /@[a-zA-Z_][a-zA-Z_0-9]*@/!b 5894 s &@configure_input@&$configure_input&;t t6359 s|@configure_input@|$ac_sed_conf_input|;t t 5895 6360 s&@top_builddir@&$ac_top_builddir_sub&;t t 6361 s&@top_build_prefix@&$ac_top_build_prefix&;t t 5896 6362 s&@srcdir@&$ac_srcdir&;t t 5897 6363 s&@abs_srcdir@&$ac_abs_srcdir&;t t … … 5904 6370 s&@MKDIR_P@&$ac_MKDIR_P&;t t 5905 6371 $ac_datarootdir_hack 5906 " $ac_file_inputs | sed -f "$tmp/subs-1.sed" >$tmp/out 6372 " 6373 eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ 6374 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6375 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6376 { (exit 1); exit 1; }; } 5907 6377 5908 6378 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && 5909 6379 { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && 5910 6380 { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && 5911 { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'6381 { $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' 5912 6382 which seems to be undefined. Please make sure it is defined." >&5 5913 echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'6383 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' 5914 6384 which seems to be undefined. Please make sure it is defined." >&2;} 5915 6385 5916 6386 rm -f "$tmp/stdin" 5917 6387 case $ac_file in 5918 -) cat "$tmp/out"; rm -f "$tmp/out";; 5919 *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; 5920 esac 6388 -) cat "$tmp/out" && rm -f "$tmp/out";; 6389 *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; 6390 esac \ 6391 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6392 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6393 { (exit 1); exit 1; }; } 5921 6394 ;; 5922 6395 :H) … … 5924 6397 # CONFIG_HEADER 5925 6398 # 5926 _ACEOF5927 5928 # Transform confdefs.h into a sed script `conftest.defines', that5929 # substitutes the proper values into config.h.in to produce config.h.5930 rm -f conftest.defines conftest.tail5931 # First, append a space to every undef/define line, to ease matching.5932 echo 's/$/ /' >conftest.defines5933 # Then, protect against being on the right side of a sed subst, or in5934 # an unquoted here document, in config.status. If some macros were5935 # called several times there might be several #defines for the same5936 # symbol, which is useless. But do not sort them, since the last5937 # AC_DEFINE must be honored.5938 ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]*5939 # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where5940 # NAME is the cpp macro being defined, VALUE is the value it is being given.5941 # PARAMS is the parameter list in the macro definition--in most cases, it's5942 # just an empty string.5943 ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*'5944 ac_dB='\\)[ (].*,\\1define\\2'5945 ac_dC=' '5946 ac_dD=' ,'5947 5948 uniq confdefs.h |5949 sed -n '5950 t rset5951 :rset5952 s/^[ ]*#[ ]*define[ ][ ]*//5953 t ok5954 d5955 :ok5956 s/[\\&,]/\\&/g5957 s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p5958 s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p5959 ' >>conftest.defines5960 5961 # Remove the space that was appended to ease matching.5962 # Then replace #undef with comments. This is necessary, for5963 # example, in the case of _POSIX_SOURCE, which is predefined and required5964 # on some systems where configure will not decide to define it.5965 # (The regexp can be short, since the line contains either #define or #undef.)5966 echo 's/ $//5967 s,^[ #]*u.*,/* & */,' >>conftest.defines5968 5969 # Break up conftest.defines:5970 ac_max_sed_lines=505971 5972 # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1"5973 # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2"5974 # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1"5975 # et cetera.5976 ac_in='$ac_file_inputs'5977 ac_out='"$tmp/out1"'5978 ac_nxt='"$tmp/out2"'5979 5980 while :5981 do5982 # Write a here document:5983 cat >>$CONFIG_STATUS <<_ACEOF5984 # First, check the format of the line:5985 cat >"\$tmp/defines.sed" <<\\CEOF5986 /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def5987 /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def5988 b5989 :def5990 _ACEOF5991 sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS5992 echo 'CEOF5993 sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS5994 ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in5995 sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail5996 grep . conftest.tail >/dev/null || break5997 rm -f conftest.defines5998 mv conftest.tail conftest.defines5999 done6000 rm -f conftest.defines conftest.tail6001 6002 echo "ac_result=$ac_in" >>$CONFIG_STATUS6003 cat >>$CONFIG_STATUS <<\_ACEOF6004 6399 if test x"$ac_file" != x-; then 6005 echo "/* $configure_input */" >"$tmp/config.h" 6006 cat "$ac_result" >>"$tmp/config.h" 6007 if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then 6008 { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 6009 echo "$as_me: $ac_file is unchanged" >&6;} 6400 { 6401 $as_echo "/* $configure_input */" \ 6402 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" 6403 } >"$tmp/config.h" \ 6404 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6405 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6406 { (exit 1); exit 1; }; } 6407 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then 6408 { $as_echo "$as_me:$LINENO: $ac_file is unchanged" >&5 6409 $as_echo "$as_me: $ac_file is unchanged" >&6;} 6010 6410 else 6011 rm -f $ac_file 6012 mv "$tmp/config.h" $ac_file 6411 rm -f "$ac_file" 6412 mv "$tmp/config.h" "$ac_file" \ 6413 || { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5 6414 $as_echo "$as_me: error: could not create $ac_file" >&2;} 6415 { (exit 1); exit 1; }; } 6013 6416 fi 6014 6417 else 6015 echo "/* $configure_input */" 6016 cat "$ac_result" 6418 $as_echo "/* $configure_input */" \ 6419 && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ 6420 || { { $as_echo "$as_me:$LINENO: error: could not create -" >&5 6421 $as_echo "$as_me: error: could not create -" >&2;} 6422 { (exit 1); exit 1; }; } 6017 6423 fi 6018 rm -f "$tmp/out12" 6019 # Compute $ac_file's index in $config_headers. 6020 _am_arg=$ac_file 6424 # Compute "$ac_file"'s index in $config_headers. 6425 _am_arg="$ac_file" 6021 6426 _am_stamp_count=1 6022 6427 for _am_header in $config_headers :; do … … 6033 6438 X"$_am_arg" : 'X\(//\)$' \| \ 6034 6439 X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || 6035 echo X"$_am_arg" |6440 $as_echo X"$_am_arg" | 6036 6441 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 6037 6442 s//\1/ … … 6053 6458 ;; 6054 6459 6055 :C) { echo "$as_me:$LINENO: executing $ac_file commands" >&56056 echo "$as_me: executing $ac_file commands" >&6;}6460 :C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5 6461 $as_echo "$as_me: executing $ac_file commands" >&6;} 6057 6462 ;; 6058 6463 esac … … 6076 6481 X"$mf" : 'X\(//\)$' \| \ 6077 6482 X"$mf" : 'X\(/\)' \| . 2>/dev/null || 6078 echo X"$mf" |6483 $as_echo X"$mf" | 6079 6484 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 6080 6485 s//\1/ … … 6120 6525 X"$file" : 'X\(//\)$' \| \ 6121 6526 X"$file" : 'X\(/\)' \| . 2>/dev/null || 6122 echo X"$file" |6527 $as_echo X"$file" | 6123 6528 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 6124 6529 s//\1/ … … 6146 6551 while :; do 6147 6552 case $as_dir in #( 6148 *\'*) as_qdir=` echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #(6553 *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( 6149 6554 *) as_qdir=$as_dir;; 6150 6555 esac … … 6155 6560 X"$as_dir" : 'X\(//\)$' \| \ 6156 6561 X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || 6157 echo X"$as_dir" |6562 $as_echo X"$as_dir" | 6158 6563 sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ 6159 6564 s//\1/ … … 6176 6581 done 6177 6582 test -z "$as_dirs" || eval "mkdir $as_dirs" 6178 } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&56179 echo "$as_me: error: cannot create directory $as_dir" >&2;}6583 } || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 6584 $as_echo "$as_me: error: cannot create directory $as_dir" >&2;} 6180 6585 { (exit 1); exit 1; }; }; } 6181 6586 # echo "creating $dirpart/$file" … … 6193 6598 chmod +x $CONFIG_STATUS 6194 6599 ac_clean_files=$ac_clean_files_save 6600 6601 test $ac_write_fail = 0 || 6602 { { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5 6603 $as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;} 6604 { (exit 1); exit 1; }; } 6195 6605 6196 6606 … … 6215 6625 $ac_cs_success || { (exit 1); exit 1; } 6216 6626 fi 6217 6218 6627 if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then 6628 { $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 6629 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 6630 fi 6631 6632 -
branches/win/trunk/configure.ac
r435 r480 123 123 #AC_FUNC_VPRINTF 124 124 #AC_CHECK_FUNCS([clock_gettime memset select socket strchr strerror]) 125 AC_CHECK_FUNCS([strlcat strlcpy ether_ntoa _r readline])125 AC_CHECK_FUNCS([strlcat strlcpy ether_ntoa ether_ntoa_r readline]) 126 126 127 127 AC_CONFIG_FILES([Makefile src/Makefile man/Makefile]) -
branches/win/trunk/man/Makefile.in
r398 r480 128 128 sysconfdir = @sysconfdir@ 129 129 target_alias = @target_alias@ 130 top_build_prefix = @top_build_prefix@ 130 131 top_builddir = @top_builddir@ 131 132 top_srcdir = @top_srcdir@ -
branches/win/trunk/src/Makefile.am
r411 r480 1 1 bin_PROGRAMS = ocat 2 2 ocat_SOURCES = ocat.c ocatlog.c ocatroute.c ocatthread.c ocattun.c ocatv6conv.c ocatcompat.c ocatpeer.c ocatsetup.c ocatipv4route.c ocateth.c ocatsocks.c ocatlibe.c ocatctrl.c ocatipv6route.c ocaticmp.c 3 include_HEADERS = ocat.h strlcpy.c strlcat.c3 include_HEADERS = ocat.h ocat_cygwin.h strlcpy.c strlcat.c 4 4 -
branches/win/trunk/src/Makefile.in
r411 r480 156 156 sysconfdir = @sysconfdir@ 157 157 target_alias = @target_alias@ 158 top_build_prefix = @top_build_prefix@ 158 159 top_builddir = @top_builddir@ 159 160 top_srcdir = @top_srcdir@ 160 161 ocat_SOURCES = ocat.c ocatlog.c ocatroute.c ocatthread.c ocattun.c ocatv6conv.c ocatcompat.c ocatpeer.c ocatsetup.c ocatipv4route.c ocateth.c ocatsocks.c ocatlibe.c ocatctrl.c ocatipv6route.c ocaticmp.c 161 include_HEADERS = ocat.h strlcpy.c strlcat.c162 include_HEADERS = ocat.h ocat_cygwin.h strlcpy.c strlcat.c 162 163 all: all-am 163 164 -
branches/win/trunk/src/ocat.h
r434 r480 97 97 #endif 98 98 */ 99 100 #ifdef __CYGWIN__ 101 #include "ocat_cygwin.h" 102 #endif 99 103 100 104 #ifndef ETHERTYPE_IPV6 … … 454 458 455 459 456 #ifndef HAVE_STRUCT_IP6_HDR457 struct ip6_hdr458 {459 union460 {461 struct ip6_hdrctl462 {463 uint32_t ip6_un1_flow; /* 4 bits version, 8 bits TC,464 20 bits flow-ID */465 uint16_t ip6_un1_plen; /* payload length */466 uint8_t ip6_un1_nxt; /* next header */467 uint8_t ip6_un1_hlim; /* hop limit */468 } ip6_un1;469 uint8_t ip6_un2_vfc; /* 4 bits version, top 4 bits tclass */470 } ip6_ctlun;471 struct in6_addr ip6_src; /* source address */472 struct in6_addr ip6_dst; /* destination address */473 };474 475 #define ip6_vfc ip6_ctlun.ip6_un2_vfc476 #define ip6_flow ip6_ctlun.ip6_un1.ip6_un1_flow477 #define ip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen478 #define ip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt479 #define ip6_hlim ip6_ctlun.ip6_un1.ip6_un1_hlim480 #define ip6_hops ip6_ctlun.ip6_un1.ip6_un1_hlim481 #endif482 483 460 #ifndef WITHOUT_TUN 484 461 #ifdef __FreeBSD__ -
branches/win/trunk/src/ocateth.c
r429 r480 463 463 464 464 465 #ifndef HAVE_ETHER_NTOA 466 467 #define ETHER_ADDR_BUF_SIZE 18 468 static char ether_addr_buf_[ETHER_ADDR_BUF_SIZE]; 469 470 char *ether_ntoa(const struct ether_addr *addr) 471 { 472 snprintf(ether_addr_buf_, ETHER_ADDR_BUF_SIZE, "%02x:%02x:%02x:%02x:%02x:%02x", 473 addr->ether_addr_octet[0], addr->ether_addr_octet[1], addr->ether_addr_octet[2], 474 addr->ether_addr_octet[3], addr->ether_addr_octet[4], addr->ether_addr_octet[5]); 475 return ether_addr_buf_; 476 } 477 478 #endif 479 480 465 481 #ifndef HAVE_ETHER_NTOA_R 466 482
Note: See TracChangeset
for help on using the changeset viewer.
