Changeset 80 for trunk/src/gcc/boehm-gc/configure
- Timestamp:
- May 2, 2003, 12:30:43 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gcc/boehm-gc/configure
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r79 r80 554 554 fi 555 555 556 echo $ac_n "checking for path separator""... $ac_c" 1>&6 557 echo "configure:558: checking for path separator" >&5 558 # Filter path to get backslahes into forwardslashes 559 case "`uname -s 2> /dev/null`" in 560 OS/2) 561 PATH=`echo -E "$PATH" | sed 's+\\\\+/+g'` 562 PATH_IFS=';' 563 ;; 564 *) 565 PATH_IFS=':' 566 ;; 567 esac 568 echo "$ac_t""${PATH_IFS}" 1>&6 569 570 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 571 echo "configure:572: checking for Cygwin environment" >&5 572 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then 573 echo $ac_n "(cached) $ac_c" 1>&6 574 else 575 cat > conftest.$ac_ext <<EOF 576 #line 577 "configure" 577 #include "confdefs.h" 578 579 int main() { 580 581 #ifndef __CYGWIN__ 582 #define __CYGWIN__ __CYGWIN32__ 583 #endif 584 return __CYGWIN__; 585 ; return 0; } 586 EOF 587 if { (eval echo configure:588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 588 rm -rf conftest* 589 ac_cv_cygwin=yes 590 else 591 echo "configure: failed program was:" >&5 592 cat conftest.$ac_ext >&5 593 rm -rf conftest* 594 ac_cv_cygwin=no 595 fi 596 rm -f conftest* 597 rm -f conftest* 598 fi 599 600 echo "$ac_t""$ac_cv_cygwin" 1>&6 601 CYGWIN= 602 test "$ac_cv_cygwin" = yes && CYGWIN=yes 603 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 604 echo "configure:605: checking for mingw32 environment" >&5 605 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then 606 echo $ac_n "(cached) $ac_c" 1>&6 607 else 608 cat > conftest.$ac_ext <<EOF 609 #line 610 "configure" 610 #include "confdefs.h" 611 612 int main() { 613 return __MINGW32__; 614 ; return 0; } 615 EOF 616 if { (eval echo configure:617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 617 rm -rf conftest* 618 ac_cv_mingw32=yes 619 else 620 echo "configure: failed program was:" >&5 621 cat conftest.$ac_ext >&5 622 rm -rf conftest* 623 ac_cv_mingw32=no 624 fi 625 rm -f conftest* 626 rm -f conftest* 627 fi 628 629 echo "$ac_t""$ac_cv_mingw32" 1>&6 630 MINGW32= 631 test "$ac_cv_mingw32" = yes && MINGW32=yes 632 echo $ac_n "checking for EMX/OS2 environment""... $ac_c" 1>&6 633 echo "configure:634: checking for EMX/OS2 environment" >&5 634 if eval "test \"`echo '$''{'ac_cv_emxos2'+set}'`\" = set"; then 635 echo $ac_n "(cached) $ac_c" 1>&6 636 else 637 : ${CC=gcc.exe} 638 cat > conftest.$ac_ext <<EOF 639 #line 640 "configure" 640 #include "confdefs.h" 641 642 int main() { 643 return __EMX__; 644 ; return 0; } 645 EOF 646 if { (eval echo configure:647: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 647 rm -rf conftest* 648 ac_cv_emxos2=yes 649 else 650 echo "configure: failed program was:" >&5 651 cat conftest.$ac_ext >&5 652 rm -rf conftest* 653 ac_cv_emxos2=no 654 fi 655 rm -f conftest* 656 rm -f conftest* 657 fi 658 659 echo "$ac_t""$ac_cv_emxos2" 1>&6 660 if eval "test \"`echo '$''{'ac_cv_libpre'+set}'`\" = set"; then 661 echo $ac_n "(cached) $ac_c" 1>&6 662 else 663 if test "$ac_cv_emxos2" = yes ; then 664 ac_cv_libpre= 665 else 666 ac_cv_libpre=lib 667 fi 668 669 fi 670 671 EMXOS2= 672 test "$ac_cv_emxos2" = yes && EMXOS2=yes 673 674 675 676 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 677 echo "configure:678: checking for executable suffix" >&5 678 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 679 echo $ac_n "(cached) $ac_c" 1>&6 680 else 681 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 682 ac_cv_exeext=.exe 683 else 684 rm -f conftest* 685 echo 'int main () { return 0; }' > conftest.$ac_ext 686 ac_cv_exeext= 687 if { (eval echo configure:688: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 688 for file in conftest.*; do 689 case $file in 690 *.c | *.o | *.obj) ;; 691 *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; 692 esac 693 done 694 else 695 { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } 696 fi 697 rm -f conftest* 698 test x"${ac_cv_exeext}" = x && ac_cv_exeext=no 699 fi 700 fi 701 702 EXEEXT="" 703 test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} 704 echo "$ac_t""${ac_cv_exeext}" 1>&6 705 ac_exeext=$EXEEXT 706 556 707 557 708 … … 594 745 # ./install, which can be erroneously created by make from ./install.sh. 595 746 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 596 echo "configure: 597: checking for a BSD compatible install" >&5747 echo "configure:748: checking for a BSD compatible install" >&5 597 748 if test -z "$INSTALL"; then 598 749 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 599 750 echo $ac_n "(cached) $ac_c" 1>&6 600 751 else 601 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"752 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 602 753 for ac_dir in $PATH; do 603 754 # Account for people who put trailing slashes in PATH elements. 604 755 case "$ac_dir/" in 605 756 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 757 # We reject the install program from OS/2 or W3.1 758 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 606 759 *) 607 760 # OSF1 and SCO ODT 3.0 have their own names for install. … … 609 762 # by default. 610 763 for ac_prog in ginstall scoinst install; do 611 if test -f $ac_dir/$ac_prog ; then764 if test -f $ac_dir/$ac_prog$ac_exeext; then 612 765 if test $ac_prog = install && 613 766 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 615 768 : 616 769 else 617 ac_cv_path_install="$ac_dir/$ac_prog -c"770 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 618 771 break 2 619 772 fi … … 647 800 648 801 echo $ac_n "checking whether build environment is sane""... $ac_c" 1>&6 649 echo "configure: 650: checking whether build environment is sane" >&5802 echo "configure:803: checking whether build environment is sane" >&5 650 803 # Just in case 651 804 sleep 1 … … 704 857 705 858 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 706 echo "configure: 707: checking whether ${MAKE-make} sets \${MAKE}" >&5859 echo "configure:860: checking whether ${MAKE-make} sets \${MAKE}" >&5 707 860 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 708 861 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 736 889 fi 737 890 738 echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6739 echo "configure:740: checking for Cygwin environment" >&5740 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then741 echo $ac_n "(cached) $ac_c" 1>&6742 else743 cat > conftest.$ac_ext <<EOF744 #line 745 "configure"745 #include "confdefs.h"746 747 int main() {748 749 #ifndef __CYGWIN__750 #define __CYGWIN__ __CYGWIN32__751 #endif752 return __CYGWIN__;753 ; return 0; }754 EOF755 if { (eval echo configure:756: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then756 rm -rf conftest*757 ac_cv_cygwin=yes758 else759 echo "configure: failed program was:" >&5760 cat conftest.$ac_ext >&5761 rm -rf conftest*762 ac_cv_cygwin=no763 fi764 rm -f conftest*765 rm -f conftest*766 fi767 768 echo "$ac_t""$ac_cv_cygwin" 1>&6769 CYGWIN=770 test "$ac_cv_cygwin" = yes && CYGWIN=yes771 echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6772 echo "configure:773: checking for mingw32 environment" >&5773 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then774 echo $ac_n "(cached) $ac_c" 1>&6775 else776 cat > conftest.$ac_ext <<EOF777 #line 778 "configure"778 #include "confdefs.h"779 780 int main() {781 return __MINGW32__;782 ; return 0; }783 EOF784 if { (eval echo configure:785: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then785 rm -rf conftest*786 ac_cv_mingw32=yes787 else788 echo "configure: failed program was:" >&5789 cat conftest.$ac_ext >&5790 rm -rf conftest*791 ac_cv_mingw32=no792 fi793 rm -f conftest*794 rm -f conftest*795 fi796 797 echo "$ac_t""$ac_cv_mingw32" 1>&6798 MINGW32=799 test "$ac_cv_mingw32" = yes && MINGW32=yes800 891 801 892 # Check whether --enable-multilib or --disable-multilib was given. … … 893 984 894 985 echo $ac_n "checking host system type""... $ac_c" 1>&6 895 echo "configure: 896: checking host system type" >&5986 echo "configure:987: checking host system type" >&5 896 987 897 988 host_alias=$host … … 914 1005 915 1006 echo $ac_n "checking target system type""... $ac_c" 1>&6 916 echo "configure: 917: checking target system type" >&51007 echo "configure:1008: checking target system type" >&5 917 1008 918 1009 target_alias=$target … … 932 1023 933 1024 echo $ac_n "checking build system type""... $ac_c" 1>&6 934 echo "configure: 935: checking build system type" >&51025 echo "configure:1026: checking build system type" >&5 935 1026 936 1027 build_alias=$build … … 972 1063 missing_dir=`cd $ac_aux_dir && pwd` 973 1064 echo $ac_n "checking for working aclocal""... $ac_c" 1>&6 974 echo "configure: 975: checking for working aclocal" >&51065 echo "configure:1066: checking for working aclocal" >&5 975 1066 # Run test in a subshell; some versions of sh will print an error if 976 1067 # an executable is not found, even if stderr is redirected. … … 985 1076 986 1077 echo $ac_n "checking for working autoconf""... $ac_c" 1>&6 987 echo "configure: 988: checking for working autoconf" >&51078 echo "configure:1079: checking for working autoconf" >&5 988 1079 # Run test in a subshell; some versions of sh will print an error if 989 1080 # an executable is not found, even if stderr is redirected. … … 998 1089 999 1090 echo $ac_n "checking for working automake""... $ac_c" 1>&6 1000 echo "configure:10 01: checking for working automake" >&51091 echo "configure:1092: checking for working automake" >&5 1001 1092 # Run test in a subshell; some versions of sh will print an error if 1002 1093 # an executable is not found, even if stderr is redirected. … … 1011 1102 1012 1103 echo $ac_n "checking for working autoheader""... $ac_c" 1>&6 1013 echo "configure:1 014: checking for working autoheader" >&51104 echo "configure:1105: checking for working autoheader" >&5 1014 1105 # Run test in a subshell; some versions of sh will print an error if 1015 1106 # an executable is not found, even if stderr is redirected. … … 1024 1115 1025 1116 echo $ac_n "checking for working makeinfo""... $ac_c" 1>&6 1026 echo "configure:1 027: checking for working makeinfo" >&51117 echo "configure:1118: checking for working makeinfo" >&5 1027 1118 # Run test in a subshell; some versions of sh will print an error if 1028 1119 # an executable is not found, even if stderr is redirected. … … 1050 1141 set dummy gcc; ac_word=$2 1051 1142 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1052 echo "configure:1 053: checking for $ac_word" >&51143 echo "configure:1144: checking for $ac_word" >&5 1053 1144 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1054 1145 echo $ac_n "(cached) $ac_c" 1>&6 … … 1057 1148 ac_cv_prog_CC="$CC" # Let the user override the test. 1058 1149 else 1059 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1150 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1060 1151 ac_dummy="$PATH" 1061 1152 for ac_dir in $ac_dummy; do 1062 1153 test -z "$ac_dir" && ac_dir=. 1063 if test -f $ac_dir/$ac_word; then 1154 if test -f $ac_dir/$ac_word -o \ 1155 -f $ac_dir/$ac_word$ac_exeext ; then 1064 1156 ac_cv_prog_CC="gcc" 1065 1157 break … … 1080 1172 set dummy cc; ac_word=$2 1081 1173 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1082 echo "configure:1 083: checking for $ac_word" >&51174 echo "configure:1175: checking for $ac_word" >&5 1083 1175 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 1084 1176 echo $ac_n "(cached) $ac_c" 1>&6 … … 1087 1179 ac_cv_prog_CC="$CC" # Let the user override the test. 1088 1180 else 1089 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1181 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1090 1182 ac_prog_rejected=no 1091 1183 ac_dummy="$PATH" 1092 1184 for ac_dir in $ac_dummy; do 1093 1185 test -z "$ac_dir" && ac_dir=. 1094 if test -f $ac_dir/$ac_word; then 1095 if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then 1186 if test -f $ac_dir/$ac_word -o \ 1187 -f $ac_dir/$ac_word$ac_exeext ; then 1188 if test "$ac_dir/$ac_word" = "/usr/ucb/cc" -o \ 1189 "$ac_dir/$ac_word$ac_exeext" = "/usr/ucb/cc" ; then 1096 1190 ac_prog_rejected=yes 1097 1191 continue … … 1129 1223 1130 1224 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 1131 echo "configure:1 132: checking whether we are using GNU C" >&51225 echo "configure:1226: checking whether we are using GNU C" >&5 1132 1226 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 1133 1227 echo $ac_n "(cached) $ac_c" 1>&6 … … 1138 1232 #endif 1139 1233 EOF 1140 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1 141: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1234 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1141 1235 ac_cv_prog_gcc=yes 1142 1236 else … … 1153 1247 CFLAGS= 1154 1248 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 1155 echo "configure:1 156: checking whether ${CC-cc} accepts -g" >&51249 echo "configure:1250: checking whether ${CC-cc} accepts -g" >&5 1156 1250 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 1157 1251 echo $ac_n "(cached) $ac_c" 1>&6 … … 1190 1284 set dummy $ac_prog; ac_word=$2 1191 1285 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1192 echo "configure:1 193: checking for $ac_word" >&51286 echo "configure:1287: checking for $ac_word" >&5 1193 1287 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 1194 1288 echo $ac_n "(cached) $ac_c" 1>&6 … … 1197 1291 ac_cv_prog_CXX="$CXX" # Let the user override the test. 1198 1292 else 1199 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1293 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1200 1294 ac_dummy="$PATH" 1201 1295 for ac_dir in $ac_dummy; do 1202 1296 test -z "$ac_dir" && ac_dir=. 1203 if test -f $ac_dir/$ac_word; then 1297 if test -f $ac_dir/$ac_word -o \ 1298 -f $ac_dir/$ac_word$ac_exeext ; then 1204 1299 ac_cv_prog_CXX="$ac_prog" 1205 1300 break … … 1223 1318 1224 1319 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1225 echo "configure:1 226: checking whether we are using GNU C++" >&51320 echo "configure:1321: checking whether we are using GNU C++" >&5 1226 1321 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1227 1322 echo $ac_n "(cached) $ac_c" 1>&6 … … 1232 1327 #endif 1233 1328 EOF 1234 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1 235: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then1329 if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1330: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then 1235 1330 ac_cv_prog_gxx=yes 1236 1331 else … … 1247 1342 CXXFLAGS= 1248 1343 echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 1249 echo "configure:1 250: checking whether ${CXX-g++} accepts -g" >&51344 echo "configure:1345: checking whether ${CXX-g++} accepts -g" >&5 1250 1345 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1251 1346 echo $ac_n "(cached) $ac_c" 1>&6 … … 1280 1375 # be run before AC_CANONICAL_HOST. 1281 1376 echo $ac_n "checking build system type""... $ac_c" 1>&6 1282 echo "configure:1 283: checking build system type" >&51377 echo "configure:1378: checking build system type" >&5 1283 1378 1284 1379 build_alias=$build … … 1301 1396 set dummy ${ac_tool_prefix}as; ac_word=$2 1302 1397 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1303 echo "configure:13 04: checking for $ac_word" >&51398 echo "configure:1399: checking for $ac_word" >&5 1304 1399 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then 1305 1400 echo $ac_n "(cached) $ac_c" 1>&6 … … 1308 1403 ac_cv_prog_AS="$AS" # Let the user override the test. 1309 1404 else 1310 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1405 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1311 1406 ac_dummy="$PATH" 1312 1407 for ac_dir in $ac_dummy; do 1313 1408 test -z "$ac_dir" && ac_dir=. 1314 if test -f $ac_dir/$ac_word; then 1409 if test -f $ac_dir/$ac_word -o \ 1410 -f $ac_dir/$ac_word$ac_exeext ; then 1315 1411 ac_cv_prog_AS="${ac_tool_prefix}as" 1316 1412 break … … 1333 1429 set dummy ${ac_tool_prefix}ar; ac_word=$2 1334 1430 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1335 echo "configure:1 336: checking for $ac_word" >&51431 echo "configure:1432: checking for $ac_word" >&5 1336 1432 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1337 1433 echo $ac_n "(cached) $ac_c" 1>&6 … … 1340 1436 ac_cv_prog_AR="$AR" # Let the user override the test. 1341 1437 else 1342 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1438 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1343 1439 ac_dummy="$PATH" 1344 1440 for ac_dir in $ac_dummy; do 1345 1441 test -z "$ac_dir" && ac_dir=. 1346 if test -f $ac_dir/$ac_word; then 1442 if test -f $ac_dir/$ac_word -o \ 1443 -f $ac_dir/$ac_word$ac_exeext ; then 1347 1444 ac_cv_prog_AR="${ac_tool_prefix}ar" 1348 1445 break … … 1365 1462 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 1366 1463 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1367 echo "configure:1 368: checking for $ac_word" >&51464 echo "configure:1465: checking for $ac_word" >&5 1368 1465 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1369 1466 echo $ac_n "(cached) $ac_c" 1>&6 … … 1372 1469 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1373 1470 else 1374 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1471 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1375 1472 ac_dummy="$PATH" 1376 1473 for ac_dir in $ac_dummy; do 1377 1474 test -z "$ac_dir" && ac_dir=. 1378 if test -f $ac_dir/$ac_word; then 1475 if test -f $ac_dir/$ac_word -o \ 1476 -f $ac_dir/$ac_word$ac_exeext ; then 1379 1477 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 1380 1478 break … … 1397 1495 set dummy ranlib; ac_word=$2 1398 1496 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1399 echo "configure:14 00: checking for $ac_word" >&51497 echo "configure:1498: checking for $ac_word" >&5 1400 1498 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1401 1499 echo $ac_n "(cached) $ac_c" 1>&6 … … 1404 1502 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 1405 1503 else 1406 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"1504 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 1407 1505 ac_dummy="$PATH" 1408 1506 for ac_dir in $ac_dummy; do 1409 1507 test -z "$ac_dir" && ac_dir=. 1410 if test -f $ac_dir/$ac_word; then 1508 if test -f $ac_dir/$ac_word -o \ 1509 -f $ac_dir/$ac_word$ac_exeext ; then 1411 1510 ac_cv_prog_RANLIB="ranlib" 1412 1511 break … … 1442 1541 # ./install, which can be erroneously created by make from ./install.sh. 1443 1542 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1444 echo "configure:1 445: checking for a BSD compatible install" >&51543 echo "configure:1544: checking for a BSD compatible install" >&5 1445 1544 if test -z "$INSTALL"; then 1446 1545 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then 1447 1546 echo $ac_n "(cached) $ac_c" 1>&6 1448 1547 else 1449 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS=" :"1548 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$PATH_IFS" 1450 1549 for ac_dir in $PATH; do 1451 1550 # Account for people who put trailing slashes in PATH elements. 1452 1551 case "$ac_dir/" in 1453 1552 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;; 1553 # We reject the install program from OS/2 or W3.1 1554 */OS2|*/OS2/*|*/WINDOWS|*/WINDOWS/*) ;; 1454 1555 *) 1455 1556 # OSF1 and SCO ODT 3.0 have their own names for install. … … 1457 1558 # by default. 1458 1559 for ac_prog in ginstall scoinst install; do 1459 if test -f $ac_dir/$ac_prog ; then1560 if test -f $ac_dir/$ac_prog$ac_exeext; then 1460 1561 if test $ac_prog = install && 1461 1562 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then … … 1463 1564 : 1464 1565 else 1465 ac_cv_path_install="$ac_dir/$ac_prog -c"1566 ac_cv_path_install="$ac_dir/$ac_prog$ac_exeext -c" 1466 1567 break 2 1467 1568 fi … … 1496 1597 1497 1598 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 1498 echo "configure:1 499: checking whether to enable maintainer-specific portions of Makefiles" >&51599 echo "configure:1600: checking whether to enable maintainer-specific portions of Makefiles" >&5 1499 1600 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 1500 1601 if test "${enable_maintainer_mode+set}" = set; then … … 1533 1634 1534 1635 1636 1535 1637 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 1536 echo "configure:1 537: checking for executable suffix" >&51638 echo "configure:1639: checking for executable suffix" >&5 1537 1639 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 1538 1640 echo $ac_n "(cached) $ac_c" 1>&6 1539 1641 else 1540 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then1642 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 1541 1643 ac_cv_exeext=.exe 1542 1644 else … … 1544 1646 echo 'int main () { return 0; }' > conftest.$ac_ext 1545 1647 ac_cv_exeext= 1546 if { (eval echo configure:1 547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then1648 if { (eval echo configure:1649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 1547 1649 for file in conftest.*; do 1548 1650 case $file in … … 1666 1768 # Check if gcc -print-prog-name=ld gives a path. 1667 1769 echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 1668 echo "configure:1 669: checking for ld used by GCC" >&51770 echo "configure:1771: checking for ld used by GCC" >&5 1669 1771 case $host in 1670 1772 *-*-mingw*) … … 1696 1798 elif test "$with_gnu_ld" = yes; then 1697 1799 echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 1698 echo "configure:1 699: checking for GNU ld" >&51800 echo "configure:1801: checking for GNU ld" >&5 1699 1801 else 1700 1802 echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 1701 echo "configure:1 702: checking for non-GNU ld" >&51803 echo "configure:1804: checking for non-GNU ld" >&5 1702 1804 fi 1703 1805 if eval "test \"`echo '$''{'lt_cv_path_LD'+set}'`\" = set"; then … … 1734 1836 test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } 1735 1837 echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 1736 echo "configure:1 737: checking if the linker ($LD) is GNU ld" >&51838 echo "configure:1839: checking if the linker ($LD) is GNU ld" >&5 1737 1839 if eval "test \"`echo '$''{'lt_cv_prog_gnu_ld'+set}'`\" = set"; then 1738 1840 echo $ac_n "(cached) $ac_c" 1>&6 … … 1751 1853 1752 1854 echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 1753 echo "configure:1 754: checking for $LD option to reload object files" >&51855 echo "configure:1856: checking for $LD option to reload object files" >&5 1754 1856 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then 1755 1857 echo $ac_n "(cached) $ac_c" 1>&6 … … 1763 1865 1764 1866 echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 1765 echo "configure:1 766: checking for BSD-compatible nm" >&51867 echo "configure:1868: checking for BSD-compatible nm" >&5 1766 1868 if eval "test \"`echo '$''{'lt_cv_path_NM'+set}'`\" = set"; then 1767 1869 echo $ac_n "(cached) $ac_c" 1>&6 … … 1801 1903 1802 1904 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1803 echo "configure:1 804: checking whether ln -s works" >&51905 echo "configure:1906: checking whether ln -s works" >&5 1804 1906 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1805 1907 echo $ac_n "(cached) $ac_c" 1>&6 … … 1811 1913 ac_cv_prog_LN_S="ln -s" 1812 1914 else 1813 ac_cv_prog_LN_S=ln 1814 fi 1915 echo A > conftestdata; 1916 if ln conftestdata conftestdata2 2>/dev/null; then 1917 ac_cv_prog_LN_S=ln 1918 else 1919 ac_cv_prog_LN_S=cp 1920 fi 1921 fi 1922 rm -f conftestdata* 1815 1923 fi 1816 1924 LN_S="$ac_cv_prog_LN_S" … … 1822 1930 1823 1931 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 1824 echo "configure:1 825: checking how to recognise dependant libraries" >&51932 echo "configure:1933: checking how to recognise dependant libraries" >&5 1825 1933 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then 1826 1934 echo $ac_n "(cached) $ac_c" 1>&6 … … 1986 2094 1987 2095 echo $ac_n "checking for object suffix""... $ac_c" 1>&6 1988 echo "configure: 1989: checking for object suffix" >&52096 echo "configure:2097: checking for object suffix" >&5 1989 2097 if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then 1990 2098 echo $ac_n "(cached) $ac_c" 1>&6 … … 1992 2100 rm -f conftest* 1993 2101 echo 'int i = 1;' > conftest.$ac_ext 1994 if { (eval echo configure: 1995: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2102 if { (eval echo configure:2103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1995 2103 for ac_file in conftest.*; do 1996 2104 case $ac_file in … … 2016 2124 if test "$file_magic_cmd" = '$MAGIC_CMD'; then 2017 2125 echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 2018 echo "configure:2 019: checking for ${ac_tool_prefix}file" >&52126 echo "configure:2127: checking for ${ac_tool_prefix}file" >&5 2019 2127 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 2020 2128 echo $ac_n "(cached) $ac_c" 1>&6 … … 2078 2186 if test -n "$ac_tool_prefix"; then 2079 2187 echo $ac_n "checking for file""... $ac_c" 1>&6 2080 echo "configure:2 081: checking for file" >&52188 echo "configure:2189: checking for file" >&5 2081 2189 if eval "test \"`echo '$''{'lt_cv_path_MAGIC_CMD'+set}'`\" = set"; then 2082 2190 echo $ac_n "(cached) $ac_c" 1>&6 … … 2149 2257 set dummy ${ac_tool_prefix}ranlib; ac_word=$2 2150 2258 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2151 echo "configure:2 152: checking for $ac_word" >&52259 echo "configure:2260: checking for $ac_word" >&5 2152 2260 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2153 2261 echo $ac_n "(cached) $ac_c" 1>&6 … … 2156 2264 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2157 2265 else 2158 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2266 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2159 2267 ac_dummy="$PATH" 2160 2268 for ac_dir in $ac_dummy; do 2161 2269 test -z "$ac_dir" && ac_dir=. 2162 if test -f $ac_dir/$ac_word; then 2270 if test -f $ac_dir/$ac_word -o \ 2271 -f $ac_dir/$ac_word$ac_exeext ; then 2163 2272 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" 2164 2273 break … … 2181 2290 set dummy ranlib; ac_word=$2 2182 2291 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2183 echo "configure:2 184: checking for $ac_word" >&52292 echo "configure:2293: checking for $ac_word" >&5 2184 2293 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 2185 2294 echo $ac_n "(cached) $ac_c" 1>&6 … … 2188 2297 ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. 2189 2298 else 2190 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2299 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2191 2300 ac_dummy="$PATH" 2192 2301 for ac_dir in $ac_dummy; do 2193 2302 test -z "$ac_dir" && ac_dir=. 2194 if test -f $ac_dir/$ac_word; then 2303 if test -f $ac_dir/$ac_word -o \ 2304 -f $ac_dir/$ac_word$ac_exeext ; then 2195 2305 ac_cv_prog_RANLIB="ranlib" 2196 2306 break … … 2216 2326 set dummy ${ac_tool_prefix}strip; ac_word=$2 2217 2327 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2218 echo "configure:2 219: checking for $ac_word" >&52328 echo "configure:2329: checking for $ac_word" >&5 2219 2329 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2220 2330 echo $ac_n "(cached) $ac_c" 1>&6 … … 2223 2333 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2224 2334 else 2225 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2335 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2226 2336 ac_dummy="$PATH" 2227 2337 for ac_dir in $ac_dummy; do 2228 2338 test -z "$ac_dir" && ac_dir=. 2229 if test -f $ac_dir/$ac_word; then 2339 if test -f $ac_dir/$ac_word -o \ 2340 -f $ac_dir/$ac_word$ac_exeext ; then 2230 2341 ac_cv_prog_STRIP="${ac_tool_prefix}strip" 2231 2342 break … … 2248 2359 set dummy strip; ac_word=$2 2249 2360 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2250 echo "configure:2 251: checking for $ac_word" >&52361 echo "configure:2362: checking for $ac_word" >&5 2251 2362 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then 2252 2363 echo $ac_n "(cached) $ac_c" 1>&6 … … 2255 2366 ac_cv_prog_STRIP="$STRIP" # Let the user override the test. 2256 2367 else 2257 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS=" :"2368 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="$PATH_IFS" 2258 2369 ac_dummy="$PATH" 2259 2370 for ac_dir in $ac_dummy; do 2260 2371 test -z "$ac_dir" && ac_dir=. 2261 if test -f $ac_dir/$ac_word; then 2372 if test -f $ac_dir/$ac_word -o \ 2373 -f $ac_dir/$ac_word$ac_exeext ; then 2262 2374 ac_cv_prog_STRIP="strip" 2263 2375 break … … 2315 2427 *-*-irix6*) 2316 2428 # Find out which ABI we are using. 2317 echo '#line 2 318"configure"' > conftest.$ac_ext2318 if { (eval echo configure:2 319: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2429 echo '#line 2430 "configure"' > conftest.$ac_ext 2430 if { (eval echo configure:2431: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2319 2431 case `/usr/bin/file conftest.$ac_objext` in 2320 2432 *32-bit*) … … 2337 2449 CFLAGS="$CFLAGS -belf" 2338 2450 echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 2339 echo "configure:2 340: checking whether the C compiler needs -belf" >&52451 echo "configure:2452: checking whether the C compiler needs -belf" >&5 2340 2452 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then 2341 2453 echo $ac_n "(cached) $ac_c" 1>&6 … … 2350 2462 2351 2463 cat > conftest.$ac_ext <<EOF 2352 #line 2 353"configure"2464 #line 2465 "configure" 2353 2465 #include "confdefs.h" 2354 2466 … … 2357 2469 ; return 0; } 2358 2470 EOF 2359 if { (eval echo configure:2 360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2471 if { (eval echo configure:2472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2360 2472 rm -rf conftest* 2361 2473 lt_cv_cc_needs_belf=yes … … 2387 2499 2388 2500 echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6 2389 echo "configure:2 390: checking how to run the C++ preprocessor" >&52501 echo "configure:2502: checking how to run the C++ preprocessor" >&5 2390 2502 if test -z "$CXXCPP"; then 2391 2503 if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then … … 2400 2512 CXXCPP="${CXX-g++} -E" 2401 2513 cat > conftest.$ac_ext <<EOF 2402 #line 2403 "configure" 2514 #include <sys/types.h> 2515 #line 2516 "configure" 2403 2516 #include "confdefs.h" 2404 2517 #include <stdlib.h> 2405 2518 EOF 2406 2519 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2407 { (eval echo configure:2 408: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2520 { (eval echo configure:2521: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2408 2521 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2409 2522 if test -z "$ac_err"; then … … 2552 2665 2553 2666 echo $ac_n "checking whether to enable maintainer-specific portions of Makefiles""... $ac_c" 1>&6 2554 echo "configure:2 555: checking whether to enable maintainer-specific portions of Makefiles" >&52667 echo "configure:2668: checking whether to enable maintainer-specific portions of Makefiles" >&5 2555 2668 # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. 2556 2669 if test "${enable_maintainer_mode+set}" = set; then … … 2584 2697 2585 2698 2699 2586 2700 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2587 echo "configure:2 588: checking for executable suffix" >&52701 echo "configure:2702: checking for executable suffix" >&5 2588 2702 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then 2589 2703 echo $ac_n "(cached) $ac_c" 1>&6 2590 2704 else 2591 if test "$CYGWIN" = yes || test "$MINGW32" = yes ; then2705 if test "$CYGWIN" = yes || test "$MINGW32" = yes || test "$EMXOS2" = yes; then 2592 2706 ac_cv_exeext=.exe 2593 2707 else … … 2595 2709 echo 'int main () { return 0; }' > conftest.$ac_ext 2596 2710 ac_cv_exeext= 2597 if { (eval echo configure:2 598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then2711 if { (eval echo configure:2712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then 2598 2712 for file in conftest.*; do 2599 2713 case $file in … … 2618 2732 2619 2733 echo $ac_n "checking for thread model used by GCC""... $ac_c" 1>&6 2620 echo "configure:2 621: checking for thread model used by GCC" >&52734 echo "configure:2735: checking for thread model used by GCC" >&5 2621 2735 THREADS=`$CC -v 2>&1 | sed -n 's/^Thread model: //p'` 2622 2736 if test -z "$THREADS"; then … … 2749 2863 2750 2864 echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 2751 echo "configure:2 752: checking for dlopen in -ldl" >&52865 echo "configure:2866: checking for dlopen in -ldl" >&5 2752 2866 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` 2753 2867 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 2757 2871 LIBS="-ldl $LIBS" 2758 2872 cat > conftest.$ac_ext <<EOF 2759 #line 2 760"configure"2873 #line 2874 "configure" 2760 2874 #include "confdefs.h" 2761 2875 /* Override any gcc2 internal prototype to avoid an error. */ … … 2768 2882 ; return 0; } 2769 2883 EOF 2770 if { (eval echo configure:2 771: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then2884 if { (eval echo configure:2885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 2771 2885 rm -rf conftest* 2772 2886 eval "ac_cv_lib_$ac_lib_var=yes" … … 3085 3199 # Protect against shell expansion while executing Makefile rules. 3086 3200 # Protect against Makefile macro expansion. 3087 # 3088 # If the first sed substitution is executed (which looks for macros that 3089 # take arguments), then we branch to the quote section. Otherwise, 3090 # look for a macro that doesn't take arguments. 3091 cat >confdef2opt.sed <<\_ACEOF 3092 t clear 3093 : clear 3094 s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g 3095 t quote 3096 s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g 3097 t quote 3098 d 3099 : quote 3100 s,[ `~#$^&*(){}\\|;'"<>?],\\&,g 3101 s,\[,\\&,g 3102 s,\],\\&,g 3103 s,\$,$$,g 3104 p 3105 _ACEOF 3106 # We use echo to avoid assuming a particular line-breaking character. 3107 # The extra dot is to prevent the shell from consuming trailing 3108 # line-breaks from the sub-command output. A line-break within 3109 # single-quotes doesn't work because, if this script is created in a 3110 # platform that uses two characters for line-breaks (e.g., DOS), tr 3111 # would break. 3112 ac_LF_and_DOT=`echo; echo .` 3113 DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'` 3114 rm -f confdef2opt.sed 3201 cat > conftest.defs <<\EOF 3202 s%#define \([A-Za-z_][A-Za-z0-9_]*\) *\(.*\)%-D\1=\2%g 3203 s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g 3204 s%\[%\\&%g 3205 s%\]%\\&%g 3206 s%\$%$$%g 3207 EOF 3208 DEFS=`sed -f conftest.defs confdefs.h | tr '\012\015' ' '` 3209 rm -f conftest.defs 3115 3210 3116 3211 … … 3125 3220 # Run this file to recreate the current configuration. 3126 3221 # This directory was configured as follows, 3222 EOF 3223 echo ': ${CONFIG_SHELL='"${CONFIG_SHELL-/bin/sh}"'}' >> $CONFIG_STATUS 3224 cat >> $CONFIG_STATUS <<EOF 3127 3225 # on host `(hostname || uname -n) 2>/dev/null | sed 1q`: 3128 3226 # … … 3150 3248 ac_given_srcdir=$srcdir 3151 3249 ac_given_INSTALL="$INSTALL" 3250 PATHIFS="$PATH_IFS" 3152 3251 3153 3252 trap 'rm -fr `echo "Makefile include/Makefile" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15 … … 3160 3259 $ac_vpsub 3161 3260 $extrasub 3261 s,\([^a-zA-Z0-9:]\)/bin/sh\(.exe\),\1${CONFIG_SHELL-/bin/sh}\2,g 3162 3262 s%@SHELL@%$SHELL%g 3163 3263 s%@CFLAGS@%$CFLAGS%g … … 3183 3283 s%@infodir@%$infodir%g 3184 3284 s%@mandir@%$mandir%g 3285 s%@PATH_IFS@%$PATH_IFS%g 3286 s%@EXEEXT@%$EXEEXT%g 3185 3287 s%@gc_basedir@%$gc_basedir%g 3186 3288 s%@host@%$host%g … … 3219 3321 s%@MAINTAINER_MODE_FALSE@%$MAINTAINER_MODE_FALSE%g 3220 3322 s%@MAINT@%$MAINT%g 3221 s%@EXEEXT@%$EXEEXT%g3222 3323 s%@GC_CFLAGS@%$GC_CFLAGS%g 3223 3324 s%@LN_S@%$LN_S%g … … 3305 3406 if test -z "$ac_dots"; then top_srcdir=. 3306 3407 else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;; 3307 /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3408 /* | [A-Za-z]:*) 3409 srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;; 3308 3410 *) # Relative path. 3309 3411 srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix" … … 3312 3414 3313 3415 case "$ac_given_INSTALL" in 3314 [/$]* ) INSTALL="$ac_given_INSTALL" ;;3416 [/$]* | [A-Za-z]:*) INSTALL="$ac_given_INSTALL" ;; 3315 3417 *) INSTALL="$ac_dots$ac_given_INSTALL" ;; 3316 3418 esac … … 3325 3427 esac 3326 3428 3327 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s% :% $ac_given_srcdir/%g"`3429 ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%$PATHIFS% $ac_given_srcdir/%g"` 3328 3430 sed -e "$ac_comsub 3329 3431 s%@configure_input@%$configure_input%g -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.