configure
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:266k
源码类别:

通讯编程

开发平台:

Visual C++

  1. else
  2.   echo "configure: failed program was:" >&5
  3.   cat conftest.$ac_ext >&5
  4.   rm -fr conftest*
  5.   tcl_cv_api_serial=none
  6. fi
  7. rm -fr conftest*
  8. fi
  9.     fi
  10. fi
  11. echo "$ac_t""$tcl_cv_api_serial" 1>&6
  12.     case $tcl_cv_api_serial in
  13. termios) cat >> confdefs.h <<EOF
  14. #define USE_TERMIOS 1
  15. EOF
  16. ;;
  17. termio)  cat >> confdefs.h <<EOF
  18. #define USE_TERMIO 1
  19. EOF
  20. ;;
  21. sgtty)   cat >> confdefs.h <<EOF
  22. #define USE_SGTTY 1
  23. EOF
  24. ;;
  25.     esac
  26. #--------------------------------------------------------------------
  27. # Include sys/select.h if it exists and if it supplies things
  28. # that appear to be useful and aren't already in sys/types.h.
  29. # This appears to be true only on the RS/6000 under AIX.  Some
  30. # systems like OSF/1 have a sys/select.h that's of no use, and
  31. # other systems like SCO UNIX have a sys/select.h that's
  32. # pernicious.  If "fd_set" isn't defined anywhere then set a
  33. # special flag.
  34. #--------------------------------------------------------------------
  35. echo $ac_n "checking for fd_set in sys/types""... $ac_c" 1>&6
  36. echo "configure:6532: checking for fd_set in sys/types" >&5
  37. if eval "test "`echo '$''{'tcl_cv_type_fd_set'+set}'`" = set"; then
  38.   echo $ac_n "(cached) $ac_c" 1>&6
  39. else
  40.   
  41.     cat > conftest.$ac_ext <<EOF
  42. #line 6538 "configure"
  43. #include "confdefs.h"
  44. #include <sys/types.h>
  45. int main() {
  46. fd_set readMask, writeMask;
  47. ; return 0; }
  48. EOF
  49. if { (eval echo configure:6545: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  50.   rm -rf conftest*
  51.   tcl_cv_type_fd_set=yes
  52. else
  53.   echo "configure: failed program was:" >&5
  54.   cat conftest.$ac_ext >&5
  55.   rm -rf conftest*
  56.   tcl_cv_type_fd_set=no
  57. fi
  58. rm -f conftest*
  59. fi
  60. echo "$ac_t""$tcl_cv_type_fd_set" 1>&6
  61. tcl_ok=$tcl_cv_type_fd_set
  62. if test $tcl_ok = no; then
  63.     echo $ac_n "checking for fd_mask in sys/select""... $ac_c" 1>&6
  64. echo "configure:6561: checking for fd_mask in sys/select" >&5
  65. if eval "test "`echo '$''{'tcl_cv_grep_fd_mask'+set}'`" = set"; then
  66.   echo $ac_n "(cached) $ac_c" 1>&6
  67. else
  68.   
  69. cat > conftest.$ac_ext <<EOF
  70. #line 6567 "configure"
  71. #include "confdefs.h"
  72. #include <sys/select.h>
  73. EOF
  74. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  75.   egrep "fd_mask" >/dev/null 2>&1; then
  76.   rm -rf conftest*
  77.   tcl_cv_grep_fd_mask=present
  78. else
  79.   rm -rf conftest*
  80.   tcl_cv_grep_fd_mask=missing
  81. fi
  82. rm -f conftest*
  83. fi
  84. echo "$ac_t""$tcl_cv_grep_fd_mask" 1>&6
  85.     if test $tcl_cv_grep_fd_mask = present; then
  86. cat >> confdefs.h <<EOF
  87. #define HAVE_SYS_SELECT_H 1
  88. EOF
  89. tcl_ok=yes
  90.     fi
  91. fi
  92. if test $tcl_ok = no; then
  93.     cat >> confdefs.h <<EOF
  94. #define NO_FD_SET 1
  95. EOF
  96. fi
  97. #------------------------------------------------------------------------------
  98. #       Find out all about time handling differences.
  99. #------------------------------------------------------------------------------
  100. echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
  101. echo "configure:6604: checking whether struct tm is in sys/time.h or time.h" >&5
  102. if eval "test "`echo '$''{'ac_cv_struct_tm'+set}'`" = set"; then
  103.   echo $ac_n "(cached) $ac_c" 1>&6
  104. else
  105.   cat > conftest.$ac_ext <<EOF
  106. #line 6609 "configure"
  107. #include "confdefs.h"
  108. #include <sys/types.h>
  109. #include <time.h>
  110. int main() {
  111. struct tm *tp; tp->tm_sec;
  112. ; return 0; }
  113. EOF
  114. if { (eval echo configure:6617: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  115.   rm -rf conftest*
  116.   ac_cv_struct_tm=time.h
  117. else
  118.   echo "configure: failed program was:" >&5
  119.   cat conftest.$ac_ext >&5
  120.   rm -rf conftest*
  121.   ac_cv_struct_tm=sys/time.h
  122. fi
  123. rm -f conftest*
  124. fi
  125. echo "$ac_t""$ac_cv_struct_tm" 1>&6
  126. if test $ac_cv_struct_tm = sys/time.h; then
  127.   cat >> confdefs.h <<EOF
  128. #define TM_IN_SYS_TIME 1
  129. EOF
  130. fi
  131.     for ac_hdr in sys/time.h
  132. do
  133. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  134. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  135. echo "configure:6642: checking for $ac_hdr" >&5
  136. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  137.   echo $ac_n "(cached) $ac_c" 1>&6
  138. else
  139.   cat > conftest.$ac_ext <<EOF
  140. #line 6647 "configure"
  141. #include "confdefs.h"
  142. #include <$ac_hdr>
  143. EOF
  144. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  145. { (eval echo configure:6652: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  146. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  147. if test -z "$ac_err"; then
  148.   rm -rf conftest*
  149.   eval "ac_cv_header_$ac_safe=yes"
  150. else
  151.   echo "$ac_err" >&5
  152.   echo "configure: failed program was:" >&5
  153.   cat conftest.$ac_ext >&5
  154.   rm -rf conftest*
  155.   eval "ac_cv_header_$ac_safe=no"
  156. fi
  157. rm -f conftest*
  158. fi
  159. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  160.   echo "$ac_t""yes" 1>&6
  161.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  162.   cat >> confdefs.h <<EOF
  163. #define $ac_tr_hdr 1
  164. EOF
  165.  
  166. else
  167.   echo "$ac_t""no" 1>&6
  168. fi
  169. done
  170.     echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
  171. echo "configure:6679: checking whether time.h and sys/time.h may both be included" >&5
  172. if eval "test "`echo '$''{'ac_cv_header_time'+set}'`" = set"; then
  173.   echo $ac_n "(cached) $ac_c" 1>&6
  174. else
  175.   cat > conftest.$ac_ext <<EOF
  176. #line 6684 "configure"
  177. #include "confdefs.h"
  178. #include <sys/types.h>
  179. #include <sys/time.h>
  180. #include <time.h>
  181. int main() {
  182. struct tm *tp;
  183. ; return 0; }
  184. EOF
  185. if { (eval echo configure:6693: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  186.   rm -rf conftest*
  187.   ac_cv_header_time=yes
  188. else
  189.   echo "configure: failed program was:" >&5
  190.   cat conftest.$ac_ext >&5
  191.   rm -rf conftest*
  192.   ac_cv_header_time=no
  193. fi
  194. rm -f conftest*
  195. fi
  196. echo "$ac_t""$ac_cv_header_time" 1>&6
  197. if test $ac_cv_header_time = yes; then
  198.   cat >> confdefs.h <<EOF
  199. #define TIME_WITH_SYS_TIME 1
  200. EOF
  201. fi
  202.     echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6
  203. echo "configure:6714: checking for tm_zone in struct tm" >&5
  204. if eval "test "`echo '$''{'ac_cv_struct_tm_zone'+set}'`" = set"; then
  205.   echo $ac_n "(cached) $ac_c" 1>&6
  206. else
  207.   cat > conftest.$ac_ext <<EOF
  208. #line 6719 "configure"
  209. #include "confdefs.h"
  210. #include <sys/types.h>
  211. #include <$ac_cv_struct_tm>
  212. int main() {
  213. struct tm tm; tm.tm_zone;
  214. ; return 0; }
  215. EOF
  216. if { (eval echo configure:6727: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  217.   rm -rf conftest*
  218.   ac_cv_struct_tm_zone=yes
  219. else
  220.   echo "configure: failed program was:" >&5
  221.   cat conftest.$ac_ext >&5
  222.   rm -rf conftest*
  223.   ac_cv_struct_tm_zone=no
  224. fi
  225. rm -f conftest*
  226. fi
  227. echo "$ac_t""$ac_cv_struct_tm_zone" 1>&6
  228. if test "$ac_cv_struct_tm_zone" = yes; then
  229.   cat >> confdefs.h <<EOF
  230. #define HAVE_TM_ZONE 1
  231. EOF
  232. else
  233.   echo $ac_n "checking for tzname""... $ac_c" 1>&6
  234. echo "configure:6747: checking for tzname" >&5
  235. if eval "test "`echo '$''{'ac_cv_var_tzname'+set}'`" = set"; then
  236.   echo $ac_n "(cached) $ac_c" 1>&6
  237. else
  238.   cat > conftest.$ac_ext <<EOF
  239. #line 6752 "configure"
  240. #include "confdefs.h"
  241. #include <time.h>
  242. #ifndef tzname /* For SGI.  */
  243. extern char *tzname[]; /* RS6000 and others reject char **tzname.  */
  244. #endif
  245. int main() {
  246. atoi(*tzname);
  247. ; return 0; }
  248. EOF
  249. if { (eval echo configure:6762: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  250.   rm -rf conftest*
  251.   ac_cv_var_tzname=yes
  252. else
  253.   echo "configure: failed program was:" >&5
  254.   cat conftest.$ac_ext >&5
  255.   rm -rf conftest*
  256.   ac_cv_var_tzname=no
  257. fi
  258. rm -f conftest*
  259. fi
  260. echo "$ac_t""$ac_cv_var_tzname" 1>&6
  261.   if test $ac_cv_var_tzname = yes; then
  262.     cat >> confdefs.h <<EOF
  263. #define HAVE_TZNAME 1
  264. EOF
  265.   fi
  266. fi
  267.     for ac_func in gmtime_r localtime_r
  268. do
  269. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  270. echo "configure:6787: checking for $ac_func" >&5
  271. if eval "test "`echo '$''{'ac_cv_func_$ac_func'+set}'`" = set"; then
  272.   echo $ac_n "(cached) $ac_c" 1>&6
  273. else
  274.   cat > conftest.$ac_ext <<EOF
  275. #line 6792 "configure"
  276. #include "confdefs.h"
  277. /* System header to define __stub macros and hopefully few prototypes,
  278.     which can conflict with char $ac_func(); below.  */
  279. #include <assert.h>
  280. /* Override any gcc2 internal prototype to avoid an error.  */
  281. /* We use char because int might match the return type of a gcc2
  282.     builtin and then its argument prototype would still apply.  */
  283. char $ac_func();
  284. int main() {
  285. /* The GNU C library defines this for functions which it implements
  286.     to always fail with ENOSYS.  Some functions are actually named
  287.     something starting with __ and the normal name is an alias.  */
  288. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  289. choke me
  290. #else
  291. $ac_func();
  292. #endif
  293. ; return 0; }
  294. EOF
  295. if { (eval echo configure:6815: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  296.   rm -rf conftest*
  297.   eval "ac_cv_func_$ac_func=yes"
  298. else
  299.   echo "configure: failed program was:" >&5
  300.   cat conftest.$ac_ext >&5
  301.   rm -rf conftest*
  302.   eval "ac_cv_func_$ac_func=no"
  303. fi
  304. rm -f conftest*
  305. fi
  306. if eval "test "`echo '$ac_cv_func_'$ac_func`" = yes"; then
  307.   echo "$ac_t""yes" 1>&6
  308.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  309.   cat >> confdefs.h <<EOF
  310. #define $ac_tr_func 1
  311. EOF
  312.  
  313. else
  314.   echo "$ac_t""no" 1>&6
  315. fi
  316. done
  317.     echo $ac_n "checking tm_tzadj in struct tm""... $ac_c" 1>&6
  318. echo "configure:6841: checking tm_tzadj in struct tm" >&5
  319. if eval "test "`echo '$''{'tcl_cv_member_tm_tzadj'+set}'`" = set"; then
  320.   echo $ac_n "(cached) $ac_c" 1>&6
  321. else
  322.   
  323. cat > conftest.$ac_ext <<EOF
  324. #line 6847 "configure"
  325. #include "confdefs.h"
  326. #include <time.h>
  327. int main() {
  328. struct tm tm; tm.tm_tzadj;
  329. ; return 0; }
  330. EOF
  331. if { (eval echo configure:6854: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  332.   rm -rf conftest*
  333.   tcl_cv_member_tm_tzadj=yes
  334. else
  335.   echo "configure: failed program was:" >&5
  336.   cat conftest.$ac_ext >&5
  337.   rm -rf conftest*
  338.   tcl_cv_member_tm_tzadj=no
  339. fi
  340. rm -f conftest*
  341. fi
  342. echo "$ac_t""$tcl_cv_member_tm_tzadj" 1>&6
  343.     if test $tcl_cv_member_tm_tzadj = yes ; then
  344. cat >> confdefs.h <<EOF
  345. #define HAVE_TM_TZADJ 1
  346. EOF
  347.     fi
  348.     echo $ac_n "checking tm_gmtoff in struct tm""... $ac_c" 1>&6
  349. echo "configure:6875: checking tm_gmtoff in struct tm" >&5
  350. if eval "test "`echo '$''{'tcl_cv_member_tm_gmtoff'+set}'`" = set"; then
  351.   echo $ac_n "(cached) $ac_c" 1>&6
  352. else
  353.   
  354. cat > conftest.$ac_ext <<EOF
  355. #line 6881 "configure"
  356. #include "confdefs.h"
  357. #include <time.h>
  358. int main() {
  359. struct tm tm; tm.tm_gmtoff;
  360. ; return 0; }
  361. EOF
  362. if { (eval echo configure:6888: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  363.   rm -rf conftest*
  364.   tcl_cv_member_tm_gmtoff=yes
  365. else
  366.   echo "configure: failed program was:" >&5
  367.   cat conftest.$ac_ext >&5
  368.   rm -rf conftest*
  369.   tcl_cv_member_tm_gmtoff=no
  370. fi
  371. rm -f conftest*
  372. fi
  373. echo "$ac_t""$tcl_cv_member_tm_gmtoff" 1>&6
  374.     if test $tcl_cv_member_tm_gmtoff = yes ; then
  375. cat >> confdefs.h <<EOF
  376. #define HAVE_TM_GMTOFF 1
  377. EOF
  378.     fi
  379.     #
  380.     # Its important to include time.h in this check, as some systems
  381.     # (like convex) have timezone functions, etc.
  382.     #
  383.     echo $ac_n "checking long timezone variable""... $ac_c" 1>&6
  384. echo "configure:6913: checking long timezone variable" >&5
  385. if eval "test "`echo '$''{'tcl_cv_timezone_long'+set}'`" = set"; then
  386.   echo $ac_n "(cached) $ac_c" 1>&6
  387. else
  388.   
  389. cat > conftest.$ac_ext <<EOF
  390. #line 6919 "configure"
  391. #include "confdefs.h"
  392. #include <time.h>
  393. int main() {
  394. extern long timezone;
  395.     timezone += 1;
  396.     exit (0);
  397. ; return 0; }
  398. EOF
  399. if { (eval echo configure:6928: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  400.   rm -rf conftest*
  401.   tcl_cv_timezone_long=yes
  402. else
  403.   echo "configure: failed program was:" >&5
  404.   cat conftest.$ac_ext >&5
  405.   rm -rf conftest*
  406.   tcl_cv_timezone_long=no
  407. fi
  408. rm -f conftest*
  409. fi
  410. echo "$ac_t""$tcl_cv_timezone_long" 1>&6
  411.     if test $tcl_cv_timezone_long = yes ; then
  412. cat >> confdefs.h <<EOF
  413. #define HAVE_TIMEZONE_VAR 1
  414. EOF
  415.     else
  416. #
  417. # On some systems (eg IRIX 6.2), timezone is a time_t and not a long.
  418. #
  419. echo $ac_n "checking time_t timezone variable""... $ac_c" 1>&6
  420. echo "configure:6951: checking time_t timezone variable" >&5
  421. if eval "test "`echo '$''{'tcl_cv_timezone_time'+set}'`" = set"; then
  422.   echo $ac_n "(cached) $ac_c" 1>&6
  423. else
  424.   
  425.     cat > conftest.$ac_ext <<EOF
  426. #line 6957 "configure"
  427. #include "confdefs.h"
  428. #include <time.h>
  429. int main() {
  430. extern time_t timezone;
  431. timezone += 1;
  432. exit (0);
  433. ; return 0; }
  434. EOF
  435. if { (eval echo configure:6966: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  436.   rm -rf conftest*
  437.   tcl_cv_timezone_time=yes
  438. else
  439.   echo "configure: failed program was:" >&5
  440.   cat conftest.$ac_ext >&5
  441.   rm -rf conftest*
  442.   tcl_cv_timezone_time=no
  443. fi
  444. rm -f conftest*
  445. fi
  446. echo "$ac_t""$tcl_cv_timezone_time" 1>&6
  447. if test $tcl_cv_timezone_time = yes ; then
  448.     cat >> confdefs.h <<EOF
  449. #define HAVE_TIMEZONE_VAR 1
  450. EOF
  451. fi
  452.     fi
  453. #--------------------------------------------------------------------
  454. # Some systems (e.g., IRIX 4.0.5) lack the st_blksize field
  455. # in struct stat.  But we might be able to use fstatfs instead.
  456. #--------------------------------------------------------------------
  457. echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6
  458. echo "configure:6993: checking for st_blksize in struct stat" >&5
  459. if eval "test "`echo '$''{'ac_cv_struct_st_blksize'+set}'`" = set"; then
  460.   echo $ac_n "(cached) $ac_c" 1>&6
  461. else
  462.   cat > conftest.$ac_ext <<EOF
  463. #line 6998 "configure"
  464. #include "confdefs.h"
  465. #include <sys/types.h>
  466. #include <sys/stat.h>
  467. int main() {
  468. struct stat s; s.st_blksize;
  469. ; return 0; }
  470. EOF
  471. if { (eval echo configure:7006: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  472.   rm -rf conftest*
  473.   ac_cv_struct_st_blksize=yes
  474. else
  475.   echo "configure: failed program was:" >&5
  476.   cat conftest.$ac_ext >&5
  477.   rm -rf conftest*
  478.   ac_cv_struct_st_blksize=no
  479. fi
  480. rm -f conftest*
  481. fi
  482. echo "$ac_t""$ac_cv_struct_st_blksize" 1>&6
  483. if test $ac_cv_struct_st_blksize = yes; then
  484.   cat >> confdefs.h <<EOF
  485. #define HAVE_ST_BLKSIZE 1
  486. EOF
  487. fi
  488. echo $ac_n "checking for fstatfs""... $ac_c" 1>&6
  489. echo "configure:7027: checking for fstatfs" >&5
  490. if eval "test "`echo '$''{'ac_cv_func_fstatfs'+set}'`" = set"; then
  491.   echo $ac_n "(cached) $ac_c" 1>&6
  492. else
  493.   cat > conftest.$ac_ext <<EOF
  494. #line 7032 "configure"
  495. #include "confdefs.h"
  496. /* System header to define __stub macros and hopefully few prototypes,
  497.     which can conflict with char fstatfs(); below.  */
  498. #include <assert.h>
  499. /* Override any gcc2 internal prototype to avoid an error.  */
  500. /* We use char because int might match the return type of a gcc2
  501.     builtin and then its argument prototype would still apply.  */
  502. char fstatfs();
  503. int main() {
  504. /* The GNU C library defines this for functions which it implements
  505.     to always fail with ENOSYS.  Some functions are actually named
  506.     something starting with __ and the normal name is an alias.  */
  507. #if defined (__stub_fstatfs) || defined (__stub___fstatfs)
  508. choke me
  509. #else
  510. fstatfs();
  511. #endif
  512. ; return 0; }
  513. EOF
  514. if { (eval echo configure:7055: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  515.   rm -rf conftest*
  516.   eval "ac_cv_func_fstatfs=yes"
  517. else
  518.   echo "configure: failed program was:" >&5
  519.   cat conftest.$ac_ext >&5
  520.   rm -rf conftest*
  521.   eval "ac_cv_func_fstatfs=no"
  522. fi
  523. rm -f conftest*
  524. fi
  525. if eval "test "`echo '$ac_cv_func_'fstatfs`" = yes"; then
  526.   echo "$ac_t""yes" 1>&6
  527.   :
  528. else
  529.   echo "$ac_t""no" 1>&6
  530. cat >> confdefs.h <<EOF
  531. #define NO_FSTATFS 1
  532. EOF
  533. fi
  534. #--------------------------------------------------------------------
  535. #       Some system have no memcmp or it does not work with 8 bit
  536. #       data, this checks it and add memcmp.o to LIBOBJS if needed
  537. #--------------------------------------------------------------------
  538. echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&6
  539. echo "configure:7084: checking for 8-bit clean memcmp" >&5
  540. if eval "test "`echo '$''{'ac_cv_func_memcmp_clean'+set}'`" = set"; then
  541.   echo $ac_n "(cached) $ac_c" 1>&6
  542. else
  543.   if test "$cross_compiling" = yes; then
  544.   ac_cv_func_memcmp_clean=no
  545. else
  546.   cat > conftest.$ac_ext <<EOF
  547. #line 7092 "configure"
  548. #include "confdefs.h"
  549. main()
  550. {
  551.   char c0 = 0x40, c1 = 0x80, c2 = 0x81;
  552.   exit(memcmp(&c0, &c2, 1) < 0 && memcmp(&c1, &c2, 1) < 0 ? 0 : 1);
  553. }
  554. EOF
  555. if { (eval echo configure:7102: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  556. then
  557.   ac_cv_func_memcmp_clean=yes
  558. else
  559.   echo "configure: failed program was:" >&5
  560.   cat conftest.$ac_ext >&5
  561.   rm -fr conftest*
  562.   ac_cv_func_memcmp_clean=no
  563. fi
  564. rm -fr conftest*
  565. fi
  566. fi
  567. echo "$ac_t""$ac_cv_func_memcmp_clean" 1>&6
  568. test $ac_cv_func_memcmp_clean = no && LIBOBJS="$LIBOBJS memcmp.${ac_objext}"
  569. #--------------------------------------------------------------------
  570. #       Some system like SunOS 4 and other BSD like systems
  571. #       have no memmove (we assume they have bcopy instead).
  572. #       {The replacement define is in compat/string.h}
  573. #--------------------------------------------------------------------
  574. echo $ac_n "checking for memmove""... $ac_c" 1>&6
  575. echo "configure:7126: checking for memmove" >&5
  576. if eval "test "`echo '$''{'ac_cv_func_memmove'+set}'`" = set"; then
  577.   echo $ac_n "(cached) $ac_c" 1>&6
  578. else
  579.   cat > conftest.$ac_ext <<EOF
  580. #line 7131 "configure"
  581. #include "confdefs.h"
  582. /* System header to define __stub macros and hopefully few prototypes,
  583.     which can conflict with char memmove(); below.  */
  584. #include <assert.h>
  585. /* Override any gcc2 internal prototype to avoid an error.  */
  586. /* We use char because int might match the return type of a gcc2
  587.     builtin and then its argument prototype would still apply.  */
  588. char memmove();
  589. int main() {
  590. /* The GNU C library defines this for functions which it implements
  591.     to always fail with ENOSYS.  Some functions are actually named
  592.     something starting with __ and the normal name is an alias.  */
  593. #if defined (__stub_memmove) || defined (__stub___memmove)
  594. choke me
  595. #else
  596. memmove();
  597. #endif
  598. ; return 0; }
  599. EOF
  600. if { (eval echo configure:7154: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  601.   rm -rf conftest*
  602.   eval "ac_cv_func_memmove=yes"
  603. else
  604.   echo "configure: failed program was:" >&5
  605.   cat conftest.$ac_ext >&5
  606.   rm -rf conftest*
  607.   eval "ac_cv_func_memmove=no"
  608. fi
  609. rm -f conftest*
  610. fi
  611. if eval "test "`echo '$ac_cv_func_'memmove`" = yes"; then
  612.   echo "$ac_t""yes" 1>&6
  613.   :
  614. else
  615.   echo "$ac_t""no" 1>&6
  616. cat >> confdefs.h <<EOF
  617. #define NO_MEMMOVE 1
  618. EOF
  619.  cat >> confdefs.h <<EOF
  620. #define NO_STRING_H 1
  621. EOF
  622. fi
  623. #--------------------------------------------------------------------
  624. # On some systems strstr is broken: it returns a pointer even
  625. # even if the original string is empty.
  626. #--------------------------------------------------------------------
  627. if test "x${ac_cv_func_strstr}" = "xyes"; then
  628.     echo $ac_n "checking proper strstr implementation""... $ac_c" 1>&6
  629. echo "configure:7187: checking proper strstr implementation" >&5
  630. if eval "test "`echo '$''{'tcl_cv_strstr_unbroken'+set}'`" = set"; then
  631.   echo $ac_n "(cached) $ac_c" 1>&6
  632. else
  633.   
  634. if test "$cross_compiling" = yes; then
  635.   tcl_cv_strstr_unbroken=broken
  636. else
  637.   cat > conftest.$ac_ext <<EOF
  638. #line 7196 "configure"
  639. #include "confdefs.h"
  640. extern int strstr();
  641. int main()
  642. {
  643.     exit(strstr("test", "test") ? 1 : 0);
  644. }
  645. EOF
  646. if { (eval echo configure:7205: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  647. then
  648.   tcl_cv_strstr_unbroken=ok
  649. else
  650.   echo "configure: failed program was:" >&5
  651.   cat conftest.$ac_ext >&5
  652.   rm -fr conftest*
  653.   tcl_cv_strstr_unbroken=broken
  654. fi
  655. rm -fr conftest*
  656. fi
  657. fi
  658. echo "$ac_t""$tcl_cv_strstr_unbroken" 1>&6
  659.     if test $tcl_cv_strstr_unbroken = broken; then
  660.         LIBOBJS="$LIBOBJS strstr.o"
  661.     fi
  662. fi
  663. #--------------------------------------------------------------------
  664. # Check for strtoul function.  This is tricky because under some
  665. # versions of AIX strtoul returns an incorrect terminator
  666. # pointer for the string "0".
  667. #--------------------------------------------------------------------
  668. echo $ac_n "checking for strtoul""... $ac_c" 1>&6
  669. echo "configure:7232: checking for strtoul" >&5
  670. if eval "test "`echo '$''{'ac_cv_func_strtoul'+set}'`" = set"; then
  671.   echo $ac_n "(cached) $ac_c" 1>&6
  672. else
  673.   cat > conftest.$ac_ext <<EOF
  674. #line 7237 "configure"
  675. #include "confdefs.h"
  676. /* System header to define __stub macros and hopefully few prototypes,
  677.     which can conflict with char strtoul(); below.  */
  678. #include <assert.h>
  679. /* Override any gcc2 internal prototype to avoid an error.  */
  680. /* We use char because int might match the return type of a gcc2
  681.     builtin and then its argument prototype would still apply.  */
  682. char strtoul();
  683. int main() {
  684. /* The GNU C library defines this for functions which it implements
  685.     to always fail with ENOSYS.  Some functions are actually named
  686.     something starting with __ and the normal name is an alias.  */
  687. #if defined (__stub_strtoul) || defined (__stub___strtoul)
  688. choke me
  689. #else
  690. strtoul();
  691. #endif
  692. ; return 0; }
  693. EOF
  694. if { (eval echo configure:7260: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  695.   rm -rf conftest*
  696.   eval "ac_cv_func_strtoul=yes"
  697. else
  698.   echo "configure: failed program was:" >&5
  699.   cat conftest.$ac_ext >&5
  700.   rm -rf conftest*
  701.   eval "ac_cv_func_strtoul=no"
  702. fi
  703. rm -f conftest*
  704. fi
  705. if eval "test "`echo '$ac_cv_func_'strtoul`" = yes"; then
  706.   echo "$ac_t""yes" 1>&6
  707.   tcl_ok=1
  708. else
  709.   echo "$ac_t""no" 1>&6
  710. tcl_ok=0
  711. fi
  712. if test $tcl_ok = 1; then
  713.     echo $ac_n "checking proper strtoul implementation""... $ac_c" 1>&6
  714. echo "configure:7282: checking proper strtoul implementation" >&5
  715. if eval "test "`echo '$''{'tcl_cv_strtoul_unbroken'+set}'`" = set"; then
  716.   echo $ac_n "(cached) $ac_c" 1>&6
  717. else
  718.   
  719. if test "$cross_compiling" = yes; then
  720.   tcl_cv_strtoul_unbroken=broken
  721. else
  722.   cat > conftest.$ac_ext <<EOF
  723. #line 7291 "configure"
  724. #include "confdefs.h"
  725. extern int strtoul();
  726. int main()
  727. {
  728.     char *string = "0";
  729.     char *term;
  730.     int value;
  731.     value = strtoul(string, &term, 0);
  732.     if ((value != 0) || (term != (string+1))) {
  733. exit(1);
  734.     }
  735.     exit(0);
  736. }
  737. EOF
  738. if { (eval echo configure:7307: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  739. then
  740.   tcl_cv_strtoul_unbroken=ok 
  741. else
  742.   echo "configure: failed program was:" >&5
  743.   cat conftest.$ac_ext >&5
  744.   rm -fr conftest*
  745.   tcl_cv_strtoul_unbroken=broken
  746. fi
  747. rm -fr conftest*
  748. fi
  749. fi
  750. echo "$ac_t""$tcl_cv_strtoul_unbroken" 1>&6
  751.     if test $tcl_cv_strtoul_unbroken = broken; then
  752. tcl_ok=0
  753.     fi
  754. fi
  755. if test $tcl_ok = 0; then
  756.     LIBOBJS="$LIBOBJS strtoul.o"
  757. fi
  758. #--------------------------------------------------------------------
  759. # Check for the strtod function.  This is tricky because in some
  760. # versions of Linux strtod mis-parses strings starting with "+".
  761. #--------------------------------------------------------------------
  762. echo $ac_n "checking for strtod""... $ac_c" 1>&6
  763. echo "configure:7336: checking for strtod" >&5
  764. if eval "test "`echo '$''{'ac_cv_func_strtod'+set}'`" = set"; then
  765.   echo $ac_n "(cached) $ac_c" 1>&6
  766. else
  767.   cat > conftest.$ac_ext <<EOF
  768. #line 7341 "configure"
  769. #include "confdefs.h"
  770. /* System header to define __stub macros and hopefully few prototypes,
  771.     which can conflict with char strtod(); below.  */
  772. #include <assert.h>
  773. /* Override any gcc2 internal prototype to avoid an error.  */
  774. /* We use char because int might match the return type of a gcc2
  775.     builtin and then its argument prototype would still apply.  */
  776. char strtod();
  777. int main() {
  778. /* The GNU C library defines this for functions which it implements
  779.     to always fail with ENOSYS.  Some functions are actually named
  780.     something starting with __ and the normal name is an alias.  */
  781. #if defined (__stub_strtod) || defined (__stub___strtod)
  782. choke me
  783. #else
  784. strtod();
  785. #endif
  786. ; return 0; }
  787. EOF
  788. if { (eval echo configure:7364: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  789.   rm -rf conftest*
  790.   eval "ac_cv_func_strtod=yes"
  791. else
  792.   echo "configure: failed program was:" >&5
  793.   cat conftest.$ac_ext >&5
  794.   rm -rf conftest*
  795.   eval "ac_cv_func_strtod=no"
  796. fi
  797. rm -f conftest*
  798. fi
  799. if eval "test "`echo '$ac_cv_func_'strtod`" = yes"; then
  800.   echo "$ac_t""yes" 1>&6
  801.   tcl_ok=1
  802. else
  803.   echo "$ac_t""no" 1>&6
  804. tcl_ok=0
  805. fi
  806. if test $tcl_ok = 1; then
  807.     echo $ac_n "checking proper strtod implementation""... $ac_c" 1>&6
  808. echo "configure:7386: checking proper strtod implementation" >&5
  809. if eval "test "`echo '$''{'tcl_cv_strtod_unbroken'+set}'`" = set"; then
  810.   echo $ac_n "(cached) $ac_c" 1>&6
  811. else
  812.   
  813. if test "$cross_compiling" = yes; then
  814.   tcl_cv_strtod_unbroken=broken
  815. else
  816.   cat > conftest.$ac_ext <<EOF
  817. #line 7395 "configure"
  818. #include "confdefs.h"
  819. extern double strtod();
  820. int main()
  821. {
  822.     char *string = " +69";
  823.     char *term;
  824.     double value;
  825.     value = strtod(string, &term);
  826.     if ((value != 69) || (term != (string+4))) {
  827. exit(1);
  828.     }
  829.     exit(0);
  830. }
  831. EOF
  832. if { (eval echo configure:7411: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  833. then
  834.   tcl_cv_strtod_unbroken=ok 
  835. else
  836.   echo "configure: failed program was:" >&5
  837.   cat conftest.$ac_ext >&5
  838.   rm -fr conftest*
  839.   tcl_cv_strtod_unbroken=broken
  840. fi
  841. rm -fr conftest*
  842. fi
  843. fi
  844. echo "$ac_t""$tcl_cv_strtod_unbroken" 1>&6
  845.     if test $tcl_cv_strtod_unbroken = broken; then
  846. tcl_ok=0
  847.     fi
  848. fi
  849. if test $tcl_ok = 0; then
  850.     LIBOBJS="$LIBOBJS strtod.o"
  851. fi
  852. #--------------------------------------------------------------------
  853. # Under Solaris 2.4, strtod returns the wrong value for the
  854. # terminating character under some conditions.  Check for this
  855. # and if the problem exists use a substitute procedure
  856. # "fixstrtod" that corrects the error.
  857. #--------------------------------------------------------------------
  858.     echo $ac_n "checking for strtod""... $ac_c" 1>&6
  859. echo "configure:7443: checking for strtod" >&5
  860. if eval "test "`echo '$''{'ac_cv_func_strtod'+set}'`" = set"; then
  861.   echo $ac_n "(cached) $ac_c" 1>&6
  862. else
  863.   cat > conftest.$ac_ext <<EOF
  864. #line 7448 "configure"
  865. #include "confdefs.h"
  866. /* System header to define __stub macros and hopefully few prototypes,
  867.     which can conflict with char strtod(); below.  */
  868. #include <assert.h>
  869. /* Override any gcc2 internal prototype to avoid an error.  */
  870. /* We use char because int might match the return type of a gcc2
  871.     builtin and then its argument prototype would still apply.  */
  872. char strtod();
  873. int main() {
  874. /* The GNU C library defines this for functions which it implements
  875.     to always fail with ENOSYS.  Some functions are actually named
  876.     something starting with __ and the normal name is an alias.  */
  877. #if defined (__stub_strtod) || defined (__stub___strtod)
  878. choke me
  879. #else
  880. strtod();
  881. #endif
  882. ; return 0; }
  883. EOF
  884. if { (eval echo configure:7471: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  885.   rm -rf conftest*
  886.   eval "ac_cv_func_strtod=yes"
  887. else
  888.   echo "configure: failed program was:" >&5
  889.   cat conftest.$ac_ext >&5
  890.   rm -rf conftest*
  891.   eval "ac_cv_func_strtod=no"
  892. fi
  893. rm -f conftest*
  894. fi
  895. if eval "test "`echo '$ac_cv_func_'strtod`" = yes"; then
  896.   echo "$ac_t""yes" 1>&6
  897.   tcl_strtod=1
  898. else
  899.   echo "$ac_t""no" 1>&6
  900. tcl_strtod=0
  901. fi
  902.     if test "$tcl_strtod" = 1; then
  903. echo $ac_n "checking for Solaris2.4/Tru64 strtod bugs""... $ac_c" 1>&6
  904. echo "configure:7493: checking for Solaris2.4/Tru64 strtod bugs" >&5
  905. if eval "test "`echo '$''{'tcl_cv_strtod_buggy'+set}'`" = set"; then
  906.   echo $ac_n "(cached) $ac_c" 1>&6
  907. else
  908.   
  909.     if test "$cross_compiling" = yes; then
  910.   tcl_cv_strtod_buggy=buggy
  911. else
  912.   cat > conftest.$ac_ext <<EOF
  913. #line 7502 "configure"
  914. #include "confdefs.h"
  915. extern double strtod();
  916. int main() {
  917.     char *infString="Inf", *nanString="NaN", *spaceString=" ";
  918.     char *term;
  919.     double value;
  920.     value = strtod(infString, &term);
  921.     if ((term != infString) && (term[-1] == 0)) {
  922. exit(1);
  923.     }
  924.     value = strtod(nanString, &term);
  925.     if ((term != nanString) && (term[-1] == 0)) {
  926. exit(1);
  927.     }
  928.     value = strtod(spaceString, &term);
  929.     if (term == (spaceString+1)) {
  930. exit(1);
  931.     }
  932.     exit(0);
  933. }
  934. EOF
  935. if { (eval echo configure:7525: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  936. then
  937.   tcl_cv_strtod_buggy=ok
  938. else
  939.   echo "configure: failed program was:" >&5
  940.   cat conftest.$ac_ext >&5
  941.   rm -fr conftest*
  942.   tcl_cv_strtod_buggy=buggy
  943. fi
  944. rm -fr conftest*
  945. fi
  946. fi
  947. echo "$ac_t""$tcl_cv_strtod_buggy" 1>&6
  948. if test "$tcl_cv_strtod_buggy" = buggy; then
  949.     LIBOBJS="$LIBOBJS fixstrtod.o"
  950.     cat >> confdefs.h <<EOF
  951. #define strtod fixstrtod
  952. EOF
  953. fi
  954.     fi
  955. #--------------------------------------------------------------------
  956. # Check for various typedefs and provide substitutes if
  957. # they don't exist.
  958. #--------------------------------------------------------------------
  959. echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
  960. echo "configure:7556: checking for ANSI C header files" >&5
  961. if eval "test "`echo '$''{'ac_cv_header_stdc'+set}'`" = set"; then
  962.   echo $ac_n "(cached) $ac_c" 1>&6
  963. else
  964.   cat > conftest.$ac_ext <<EOF
  965. #line 7561 "configure"
  966. #include "confdefs.h"
  967. #include <stdlib.h>
  968. #include <stdarg.h>
  969. #include <string.h>
  970. #include <float.h>
  971. EOF
  972. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  973. { (eval echo configure:7569: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  974. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  975. if test -z "$ac_err"; then
  976.   rm -rf conftest*
  977.   ac_cv_header_stdc=yes
  978. else
  979.   echo "$ac_err" >&5
  980.   echo "configure: failed program was:" >&5
  981.   cat conftest.$ac_ext >&5
  982.   rm -rf conftest*
  983.   ac_cv_header_stdc=no
  984. fi
  985. rm -f conftest*
  986. if test $ac_cv_header_stdc = yes; then
  987.   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
  988. cat > conftest.$ac_ext <<EOF
  989. #line 7586 "configure"
  990. #include "confdefs.h"
  991. #include <string.h>
  992. EOF
  993. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  994.   egrep "memchr" >/dev/null 2>&1; then
  995.   :
  996. else
  997.   rm -rf conftest*
  998.   ac_cv_header_stdc=no
  999. fi
  1000. rm -f conftest*
  1001. fi
  1002. if test $ac_cv_header_stdc = yes; then
  1003.   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
  1004. cat > conftest.$ac_ext <<EOF
  1005. #line 7604 "configure"
  1006. #include "confdefs.h"
  1007. #include <stdlib.h>
  1008. EOF
  1009. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1010.   egrep "free" >/dev/null 2>&1; then
  1011.   :
  1012. else
  1013.   rm -rf conftest*
  1014.   ac_cv_header_stdc=no
  1015. fi
  1016. rm -f conftest*
  1017. fi
  1018. if test $ac_cv_header_stdc = yes; then
  1019.   # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi.
  1020. if test "$cross_compiling" = yes; then
  1021.   :
  1022. else
  1023.   cat > conftest.$ac_ext <<EOF
  1024. #line 7625 "configure"
  1025. #include "confdefs.h"
  1026. #include <ctype.h>
  1027. #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
  1028. #define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
  1029. #define XOR(e, f) (((e) && !(f)) || (!(e) && (f)))
  1030. int main () { int i; for (i = 0; i < 256; i++)
  1031. if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
  1032. exit (0); }
  1033. EOF
  1034. if { (eval echo configure:7636: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  1035. then
  1036.   :
  1037. else
  1038.   echo "configure: failed program was:" >&5
  1039.   cat conftest.$ac_ext >&5
  1040.   rm -fr conftest*
  1041.   ac_cv_header_stdc=no
  1042. fi
  1043. rm -fr conftest*
  1044. fi
  1045. fi
  1046. fi
  1047. echo "$ac_t""$ac_cv_header_stdc" 1>&6
  1048. if test $ac_cv_header_stdc = yes; then
  1049.   cat >> confdefs.h <<EOF
  1050. #define STDC_HEADERS 1
  1051. EOF
  1052. fi
  1053. echo $ac_n "checking for mode_t""... $ac_c" 1>&6
  1054. echo "configure:7660: checking for mode_t" >&5
  1055. if eval "test "`echo '$''{'ac_cv_type_mode_t'+set}'`" = set"; then
  1056.   echo $ac_n "(cached) $ac_c" 1>&6
  1057. else
  1058.   cat > conftest.$ac_ext <<EOF
  1059. #line 7665 "configure"
  1060. #include "confdefs.h"
  1061. #include <sys/types.h>
  1062. #if STDC_HEADERS
  1063. #include <stdlib.h>
  1064. #include <stddef.h>
  1065. #endif
  1066. EOF
  1067. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1068.   egrep "(^|[^a-zA-Z_0-9])mode_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
  1069.   rm -rf conftest*
  1070.   ac_cv_type_mode_t=yes
  1071. else
  1072.   rm -rf conftest*
  1073.   ac_cv_type_mode_t=no
  1074. fi
  1075. rm -f conftest*
  1076. fi
  1077. echo "$ac_t""$ac_cv_type_mode_t" 1>&6
  1078. if test $ac_cv_type_mode_t = no; then
  1079.   cat >> confdefs.h <<EOF
  1080. #define mode_t int
  1081. EOF
  1082. fi
  1083. echo $ac_n "checking for pid_t""... $ac_c" 1>&6
  1084. echo "configure:7693: checking for pid_t" >&5
  1085. if eval "test "`echo '$''{'ac_cv_type_pid_t'+set}'`" = set"; then
  1086.   echo $ac_n "(cached) $ac_c" 1>&6
  1087. else
  1088.   cat > conftest.$ac_ext <<EOF
  1089. #line 7698 "configure"
  1090. #include "confdefs.h"
  1091. #include <sys/types.h>
  1092. #if STDC_HEADERS
  1093. #include <stdlib.h>
  1094. #include <stddef.h>
  1095. #endif
  1096. EOF
  1097. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1098.   egrep "(^|[^a-zA-Z_0-9])pid_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
  1099.   rm -rf conftest*
  1100.   ac_cv_type_pid_t=yes
  1101. else
  1102.   rm -rf conftest*
  1103.   ac_cv_type_pid_t=no
  1104. fi
  1105. rm -f conftest*
  1106. fi
  1107. echo "$ac_t""$ac_cv_type_pid_t" 1>&6
  1108. if test $ac_cv_type_pid_t = no; then
  1109.   cat >> confdefs.h <<EOF
  1110. #define pid_t int
  1111. EOF
  1112. fi
  1113. echo $ac_n "checking for size_t""... $ac_c" 1>&6
  1114. echo "configure:7726: checking for size_t" >&5
  1115. if eval "test "`echo '$''{'ac_cv_type_size_t'+set}'`" = set"; then
  1116.   echo $ac_n "(cached) $ac_c" 1>&6
  1117. else
  1118.   cat > conftest.$ac_ext <<EOF
  1119. #line 7731 "configure"
  1120. #include "confdefs.h"
  1121. #include <sys/types.h>
  1122. #if STDC_HEADERS
  1123. #include <stdlib.h>
  1124. #include <stddef.h>
  1125. #endif
  1126. EOF
  1127. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1128.   egrep "(^|[^a-zA-Z_0-9])size_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
  1129.   rm -rf conftest*
  1130.   ac_cv_type_size_t=yes
  1131. else
  1132.   rm -rf conftest*
  1133.   ac_cv_type_size_t=no
  1134. fi
  1135. rm -f conftest*
  1136. fi
  1137. echo "$ac_t""$ac_cv_type_size_t" 1>&6
  1138. if test $ac_cv_type_size_t = no; then
  1139.   cat >> confdefs.h <<EOF
  1140. #define size_t unsigned
  1141. EOF
  1142. fi
  1143. echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6
  1144. echo "configure:7759: checking for uid_t in sys/types.h" >&5
  1145. if eval "test "`echo '$''{'ac_cv_type_uid_t'+set}'`" = set"; then
  1146.   echo $ac_n "(cached) $ac_c" 1>&6
  1147. else
  1148.   cat > conftest.$ac_ext <<EOF
  1149. #line 7764 "configure"
  1150. #include "confdefs.h"
  1151. #include <sys/types.h>
  1152. EOF
  1153. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1154.   egrep "uid_t" >/dev/null 2>&1; then
  1155.   rm -rf conftest*
  1156.   ac_cv_type_uid_t=yes
  1157. else
  1158.   rm -rf conftest*
  1159.   ac_cv_type_uid_t=no
  1160. fi
  1161. rm -f conftest*
  1162. fi
  1163. echo "$ac_t""$ac_cv_type_uid_t" 1>&6
  1164. if test $ac_cv_type_uid_t = no; then
  1165.   cat >> confdefs.h <<EOF
  1166. #define uid_t int
  1167. EOF
  1168.   cat >> confdefs.h <<EOF
  1169. #define gid_t int
  1170. EOF
  1171. fi
  1172. echo $ac_n "checking for socklen_t""... $ac_c" 1>&6
  1173. echo "configure:7794: checking for socklen_t" >&5
  1174. if eval "test "`echo '$''{'ac_cv_type_socklen_t'+set}'`" = set"; then
  1175.   echo $ac_n "(cached) $ac_c" 1>&6
  1176. else
  1177.   
  1178.     cat > conftest.$ac_ext <<EOF
  1179. #line 7800 "configure"
  1180. #include "confdefs.h"
  1181.     #include <sys/types.h>
  1182.     #include <sys/socket.h>
  1183.     #if STDC_HEADERS
  1184.     #include <stdlib.h>
  1185.     #include <stddef.h>
  1186.     #endif
  1187.     
  1188. EOF
  1189. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1190.   egrep "(^|[^a-zA-Z_0-9])socklen_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then
  1191.   rm -rf conftest*
  1192.   ac_cv_type_socklen_t=yes
  1193. else
  1194.   rm -rf conftest*
  1195.   ac_cv_type_socklen_t=no
  1196. fi
  1197. rm -f conftest*
  1198. fi
  1199. echo "$ac_t""$ac_cv_type_socklen_t" 1>&6
  1200. if test $ac_cv_type_socklen_t = no; then
  1201.     cat >> confdefs.h <<EOF
  1202. #define socklen_t unsigned
  1203. EOF
  1204. fi
  1205. #--------------------------------------------------------------------
  1206. # If a system doesn't have an opendir function (man, that's old!)
  1207. # then we have to supply a different version of dirent.h which
  1208. # is compatible with the substitute version of opendir that's
  1209. # provided.  This version only works with V7-style directories.
  1210. #--------------------------------------------------------------------
  1211. echo $ac_n "checking for opendir""... $ac_c" 1>&6
  1212. echo "configure:7839: checking for opendir" >&5
  1213. if eval "test "`echo '$''{'ac_cv_func_opendir'+set}'`" = set"; then
  1214.   echo $ac_n "(cached) $ac_c" 1>&6
  1215. else
  1216.   cat > conftest.$ac_ext <<EOF
  1217. #line 7844 "configure"
  1218. #include "confdefs.h"
  1219. /* System header to define __stub macros and hopefully few prototypes,
  1220.     which can conflict with char opendir(); below.  */
  1221. #include <assert.h>
  1222. /* Override any gcc2 internal prototype to avoid an error.  */
  1223. /* We use char because int might match the return type of a gcc2
  1224.     builtin and then its argument prototype would still apply.  */
  1225. char opendir();
  1226. int main() {
  1227. /* The GNU C library defines this for functions which it implements
  1228.     to always fail with ENOSYS.  Some functions are actually named
  1229.     something starting with __ and the normal name is an alias.  */
  1230. #if defined (__stub_opendir) || defined (__stub___opendir)
  1231. choke me
  1232. #else
  1233. opendir();
  1234. #endif
  1235. ; return 0; }
  1236. EOF
  1237. if { (eval echo configure:7867: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1238.   rm -rf conftest*
  1239.   eval "ac_cv_func_opendir=yes"
  1240. else
  1241.   echo "configure: failed program was:" >&5
  1242.   cat conftest.$ac_ext >&5
  1243.   rm -rf conftest*
  1244.   eval "ac_cv_func_opendir=no"
  1245. fi
  1246. rm -f conftest*
  1247. fi
  1248. if eval "test "`echo '$ac_cv_func_'opendir`" = yes"; then
  1249.   echo "$ac_t""yes" 1>&6
  1250.   :
  1251. else
  1252.   echo "$ac_t""no" 1>&6
  1253. cat >> confdefs.h <<EOF
  1254. #define USE_DIRENT2_H 1
  1255. EOF
  1256. fi
  1257. #--------------------------------------------------------------------
  1258. # The check below checks whether <sys/wait.h> defines the type
  1259. # "union wait" correctly.  It's needed because of weirdness in
  1260. # HP-UX where "union wait" is defined in both the BSD and SYS-V
  1261. # environments.  Checking the usability of WIFEXITED seems to do
  1262. # the trick.
  1263. #--------------------------------------------------------------------
  1264. echo $ac_n "checking union wait""... $ac_c" 1>&6
  1265. echo "configure:7900: checking union wait" >&5
  1266. if eval "test "`echo '$''{'tcl_cv_union_wait'+set}'`" = set"; then
  1267.   echo $ac_n "(cached) $ac_c" 1>&6
  1268. else
  1269.   
  1270.     cat > conftest.$ac_ext <<EOF
  1271. #line 7906 "configure"
  1272. #include "confdefs.h"
  1273. #include <sys/types.h> 
  1274. #include <sys/wait.h>
  1275. int main() {
  1276. union wait x;
  1277. WIFEXITED(x); /* Generates compiler error if WIFEXITED
  1278.  * uses an int. */
  1279.     
  1280. ; return 0; }
  1281. EOF
  1282. if { (eval echo configure:7918: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1283.   rm -rf conftest*
  1284.   tcl_cv_union_wait=yes
  1285. else
  1286.   echo "configure: failed program was:" >&5
  1287.   cat conftest.$ac_ext >&5
  1288.   rm -rf conftest*
  1289.   tcl_cv_union_wait=no
  1290. fi
  1291. rm -f conftest*
  1292. fi
  1293. echo "$ac_t""$tcl_cv_union_wait" 1>&6
  1294. if test $tcl_cv_union_wait = no; then
  1295.     cat >> confdefs.h <<EOF
  1296. #define NO_UNION_WAIT 1
  1297. EOF
  1298. fi
  1299. #--------------------------------------------------------------------
  1300. # Check whether there is an strncasecmp function on this system.
  1301. # This is a bit tricky because under SCO it's in -lsocket and
  1302. # under Sequent Dynix it's in -linet.
  1303. #--------------------------------------------------------------------
  1304. echo $ac_n "checking for strncasecmp""... $ac_c" 1>&6
  1305. echo "configure:7945: checking for strncasecmp" >&5
  1306. if eval "test "`echo '$''{'ac_cv_func_strncasecmp'+set}'`" = set"; then
  1307.   echo $ac_n "(cached) $ac_c" 1>&6
  1308. else
  1309.   cat > conftest.$ac_ext <<EOF
  1310. #line 7950 "configure"
  1311. #include "confdefs.h"
  1312. /* System header to define __stub macros and hopefully few prototypes,
  1313.     which can conflict with char strncasecmp(); below.  */
  1314. #include <assert.h>
  1315. /* Override any gcc2 internal prototype to avoid an error.  */
  1316. /* We use char because int might match the return type of a gcc2
  1317.     builtin and then its argument prototype would still apply.  */
  1318. char strncasecmp();
  1319. int main() {
  1320. /* The GNU C library defines this for functions which it implements
  1321.     to always fail with ENOSYS.  Some functions are actually named
  1322.     something starting with __ and the normal name is an alias.  */
  1323. #if defined (__stub_strncasecmp) || defined (__stub___strncasecmp)
  1324. choke me
  1325. #else
  1326. strncasecmp();
  1327. #endif
  1328. ; return 0; }
  1329. EOF
  1330. if { (eval echo configure:7973: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1331.   rm -rf conftest*
  1332.   eval "ac_cv_func_strncasecmp=yes"
  1333. else
  1334.   echo "configure: failed program was:" >&5
  1335.   cat conftest.$ac_ext >&5
  1336.   rm -rf conftest*
  1337.   eval "ac_cv_func_strncasecmp=no"
  1338. fi
  1339. rm -f conftest*
  1340. fi
  1341. if eval "test "`echo '$ac_cv_func_'strncasecmp`" = yes"; then
  1342.   echo "$ac_t""yes" 1>&6
  1343.   tcl_ok=1
  1344. else
  1345.   echo "$ac_t""no" 1>&6
  1346. tcl_ok=0
  1347. fi
  1348. if test "$tcl_ok" = 0; then
  1349.     echo $ac_n "checking for strncasecmp in -lsocket""... $ac_c" 1>&6
  1350. echo "configure:7995: checking for strncasecmp in -lsocket" >&5
  1351. ac_lib_var=`echo socket'_'strncasecmp | sed 'y%./+-%__p_%'`
  1352. if eval "test "`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`" = set"; then
  1353.   echo $ac_n "(cached) $ac_c" 1>&6
  1354. else
  1355.   ac_save_LIBS="$LIBS"
  1356. LIBS="-lsocket  $LIBS"
  1357. cat > conftest.$ac_ext <<EOF
  1358. #line 8003 "configure"
  1359. #include "confdefs.h"
  1360. /* Override any gcc2 internal prototype to avoid an error.  */
  1361. /* We use char because int might match the return type of a gcc2
  1362.     builtin and then its argument prototype would still apply.  */
  1363. char strncasecmp();
  1364. int main() {
  1365. strncasecmp()
  1366. ; return 0; }
  1367. EOF
  1368. if { (eval echo configure:8014: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1369.   rm -rf conftest*
  1370.   eval "ac_cv_lib_$ac_lib_var=yes"
  1371. else
  1372.   echo "configure: failed program was:" >&5
  1373.   cat conftest.$ac_ext >&5
  1374.   rm -rf conftest*
  1375.   eval "ac_cv_lib_$ac_lib_var=no"
  1376. fi
  1377. rm -f conftest*
  1378. LIBS="$ac_save_LIBS"
  1379. fi
  1380. if eval "test "`echo '$ac_cv_lib_'$ac_lib_var`" = yes"; then
  1381.   echo "$ac_t""yes" 1>&6
  1382.   tcl_ok=1
  1383. else
  1384.   echo "$ac_t""no" 1>&6
  1385. tcl_ok=0
  1386. fi
  1387. fi
  1388. if test "$tcl_ok" = 0; then
  1389.     echo $ac_n "checking for strncasecmp in -linet""... $ac_c" 1>&6
  1390. echo "configure:8038: checking for strncasecmp in -linet" >&5
  1391. ac_lib_var=`echo inet'_'strncasecmp | sed 'y%./+-%__p_%'`
  1392. if eval "test "`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`" = set"; then
  1393.   echo $ac_n "(cached) $ac_c" 1>&6
  1394. else
  1395.   ac_save_LIBS="$LIBS"
  1396. LIBS="-linet  $LIBS"
  1397. cat > conftest.$ac_ext <<EOF
  1398. #line 8046 "configure"
  1399. #include "confdefs.h"
  1400. /* Override any gcc2 internal prototype to avoid an error.  */
  1401. /* We use char because int might match the return type of a gcc2
  1402.     builtin and then its argument prototype would still apply.  */
  1403. char strncasecmp();
  1404. int main() {
  1405. strncasecmp()
  1406. ; return 0; }
  1407. EOF
  1408. if { (eval echo configure:8057: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1409.   rm -rf conftest*
  1410.   eval "ac_cv_lib_$ac_lib_var=yes"
  1411. else
  1412.   echo "configure: failed program was:" >&5
  1413.   cat conftest.$ac_ext >&5
  1414.   rm -rf conftest*
  1415.   eval "ac_cv_lib_$ac_lib_var=no"
  1416. fi
  1417. rm -f conftest*
  1418. LIBS="$ac_save_LIBS"
  1419. fi
  1420. if eval "test "`echo '$ac_cv_lib_'$ac_lib_var`" = yes"; then
  1421.   echo "$ac_t""yes" 1>&6
  1422.   tcl_ok=1
  1423. else
  1424.   echo "$ac_t""no" 1>&6
  1425. tcl_ok=0
  1426. fi
  1427. fi
  1428. if test "$tcl_ok" = 0; then
  1429.     LIBOBJS="$LIBOBJS strncasecmp.o"
  1430. fi
  1431. #--------------------------------------------------------------------
  1432. # The code below deals with several issues related to gettimeofday:
  1433. # 1. Some systems don't provide a gettimeofday function at all
  1434. #    (set NO_GETTOD if this is the case).
  1435. # 2. SGI systems don't use the BSD form of the gettimeofday function,
  1436. #    but they have a BSDgettimeofday function that can be used instead.
  1437. # 3. See if gettimeofday is declared in the <sys/time.h> header file.
  1438. #    if not, set the GETTOD_NOT_DECLARED flag so that tclPort.h can
  1439. #    declare it.
  1440. #--------------------------------------------------------------------
  1441. echo $ac_n "checking for BSDgettimeofday""... $ac_c" 1>&6
  1442. echo "configure:8095: checking for BSDgettimeofday" >&5
  1443. if eval "test "`echo '$''{'ac_cv_func_BSDgettimeofday'+set}'`" = set"; then
  1444.   echo $ac_n "(cached) $ac_c" 1>&6
  1445. else
  1446.   cat > conftest.$ac_ext <<EOF
  1447. #line 8100 "configure"
  1448. #include "confdefs.h"
  1449. /* System header to define __stub macros and hopefully few prototypes,
  1450.     which can conflict with char BSDgettimeofday(); below.  */
  1451. #include <assert.h>
  1452. /* Override any gcc2 internal prototype to avoid an error.  */
  1453. /* We use char because int might match the return type of a gcc2
  1454.     builtin and then its argument prototype would still apply.  */
  1455. char BSDgettimeofday();
  1456. int main() {
  1457. /* The GNU C library defines this for functions which it implements
  1458.     to always fail with ENOSYS.  Some functions are actually named
  1459.     something starting with __ and the normal name is an alias.  */
  1460. #if defined (__stub_BSDgettimeofday) || defined (__stub___BSDgettimeofday)
  1461. choke me
  1462. #else
  1463. BSDgettimeofday();
  1464. #endif
  1465. ; return 0; }
  1466. EOF
  1467. if { (eval echo configure:8123: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1468.   rm -rf conftest*
  1469.   eval "ac_cv_func_BSDgettimeofday=yes"
  1470. else
  1471.   echo "configure: failed program was:" >&5
  1472.   cat conftest.$ac_ext >&5
  1473.   rm -rf conftest*
  1474.   eval "ac_cv_func_BSDgettimeofday=no"
  1475. fi
  1476. rm -f conftest*
  1477. fi
  1478. if eval "test "`echo '$ac_cv_func_'BSDgettimeofday`" = yes"; then
  1479.   echo "$ac_t""yes" 1>&6
  1480.   cat >> confdefs.h <<EOF
  1481. #define HAVE_BSDGETTIMEOFDAY 1
  1482. EOF
  1483. else
  1484.   echo "$ac_t""no" 1>&6
  1485.     echo $ac_n "checking for gettimeofday""... $ac_c" 1>&6
  1486. echo "configure:8145: checking for gettimeofday" >&5
  1487. if eval "test "`echo '$''{'ac_cv_func_gettimeofday'+set}'`" = set"; then
  1488.   echo $ac_n "(cached) $ac_c" 1>&6
  1489. else
  1490.   cat > conftest.$ac_ext <<EOF
  1491. #line 8150 "configure"
  1492. #include "confdefs.h"
  1493. /* System header to define __stub macros and hopefully few prototypes,
  1494.     which can conflict with char gettimeofday(); below.  */
  1495. #include <assert.h>
  1496. /* Override any gcc2 internal prototype to avoid an error.  */
  1497. /* We use char because int might match the return type of a gcc2
  1498.     builtin and then its argument prototype would still apply.  */
  1499. char gettimeofday();
  1500. int main() {
  1501. /* The GNU C library defines this for functions which it implements
  1502.     to always fail with ENOSYS.  Some functions are actually named
  1503.     something starting with __ and the normal name is an alias.  */
  1504. #if defined (__stub_gettimeofday) || defined (__stub___gettimeofday)
  1505. choke me
  1506. #else
  1507. gettimeofday();
  1508. #endif
  1509. ; return 0; }
  1510. EOF
  1511. if { (eval echo configure:8173: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1512.   rm -rf conftest*
  1513.   eval "ac_cv_func_gettimeofday=yes"
  1514. else
  1515.   echo "configure: failed program was:" >&5
  1516.   cat conftest.$ac_ext >&5
  1517.   rm -rf conftest*
  1518.   eval "ac_cv_func_gettimeofday=no"
  1519. fi
  1520. rm -f conftest*
  1521. fi
  1522. if eval "test "`echo '$ac_cv_func_'gettimeofday`" = yes"; then
  1523.   echo "$ac_t""yes" 1>&6
  1524.   :
  1525. else
  1526.   echo "$ac_t""no" 1>&6
  1527. cat >> confdefs.h <<EOF
  1528. #define NO_GETTOD 1
  1529. EOF
  1530. fi
  1531. fi
  1532. echo $ac_n "checking for gettimeofday declaration""... $ac_c" 1>&6
  1533. echo "configure:8200: checking for gettimeofday declaration" >&5
  1534. if eval "test "`echo '$''{'tcl_cv_grep_gettimeofday'+set}'`" = set"; then
  1535.   echo $ac_n "(cached) $ac_c" 1>&6
  1536. else
  1537.   
  1538.     cat > conftest.$ac_ext <<EOF
  1539. #line 8206 "configure"
  1540. #include "confdefs.h"
  1541. #include <sys/time.h>
  1542. EOF
  1543. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1544.   egrep "gettimeofday" >/dev/null 2>&1; then
  1545.   rm -rf conftest*
  1546.   tcl_cv_grep_gettimeofday=present
  1547. else
  1548.   rm -rf conftest*
  1549.   tcl_cv_grep_gettimeofday=missing
  1550. fi
  1551. rm -f conftest*
  1552. fi
  1553. echo "$ac_t""$tcl_cv_grep_gettimeofday" 1>&6
  1554. if test $tcl_cv_grep_gettimeofday = missing ; then
  1555.     cat >> confdefs.h <<EOF
  1556. #define GETTOD_NOT_DECLARED 1
  1557. EOF
  1558. fi
  1559. #--------------------------------------------------------------------
  1560. # The following code checks to see whether it is possible to get
  1561. # signed chars on this platform.  This is needed in order to
  1562. # properly generate sign-extended ints from character values.
  1563. #--------------------------------------------------------------------
  1564. echo $ac_n "checking whether char is unsigned""... $ac_c" 1>&6
  1565. echo "configure:8237: checking whether char is unsigned" >&5
  1566. if eval "test "`echo '$''{'ac_cv_c_char_unsigned'+set}'`" = set"; then
  1567.   echo $ac_n "(cached) $ac_c" 1>&6
  1568. else
  1569.   if test "$GCC" = yes; then
  1570.   # GCC predefines this symbol on systems where it applies.
  1571. cat > conftest.$ac_ext <<EOF
  1572. #line 8244 "configure"
  1573. #include "confdefs.h"
  1574. #ifdef __CHAR_UNSIGNED__
  1575.   yes
  1576. #endif
  1577. EOF
  1578. if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
  1579.   egrep "yes" >/dev/null 2>&1; then
  1580.   rm -rf conftest*
  1581.   ac_cv_c_char_unsigned=yes
  1582. else
  1583.   rm -rf conftest*
  1584.   ac_cv_c_char_unsigned=no
  1585. fi
  1586. rm -f conftest*
  1587. else
  1588. if test "$cross_compiling" = yes; then
  1589.     { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
  1590. else
  1591.   cat > conftest.$ac_ext <<EOF
  1592. #line 8266 "configure"
  1593. #include "confdefs.h"
  1594. /* volatile prevents gcc2 from optimizing the test away on sparcs.  */
  1595. #if !defined(__STDC__) || __STDC__ != 1
  1596. #define volatile
  1597. #endif
  1598. main() {
  1599.   volatile char c = 255; exit(c < 0);
  1600. }
  1601. EOF
  1602. if { (eval echo configure:8276: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  1603. then
  1604.   ac_cv_c_char_unsigned=yes
  1605. else
  1606.   echo "configure: failed program was:" >&5
  1607.   cat conftest.$ac_ext >&5
  1608.   rm -fr conftest*
  1609.   ac_cv_c_char_unsigned=no
  1610. fi
  1611. rm -fr conftest*
  1612. fi
  1613. fi
  1614. fi
  1615. echo "$ac_t""$ac_cv_c_char_unsigned" 1>&6
  1616. if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then
  1617.   cat >> confdefs.h <<EOF
  1618. #define __CHAR_UNSIGNED__ 1
  1619. EOF
  1620. fi
  1621. echo $ac_n "checking signed char declarations""... $ac_c" 1>&6
  1622. echo "configure:8300: checking signed char declarations" >&5
  1623. if eval "test "`echo '$''{'tcl_cv_char_signed'+set}'`" = set"; then
  1624.   echo $ac_n "(cached) $ac_c" 1>&6
  1625. else
  1626.   
  1627.     cat > conftest.$ac_ext <<EOF
  1628. #line 8306 "configure"
  1629. #include "confdefs.h"
  1630. int main() {
  1631. signed char *p;
  1632. p = 0;
  1633. ; return 0; }
  1634. EOF
  1635. if { (eval echo configure:8316: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1636.   rm -rf conftest*
  1637.   tcl_cv_char_signed=yes
  1638. else
  1639.   echo "configure: failed program was:" >&5
  1640.   cat conftest.$ac_ext >&5
  1641.   rm -rf conftest*
  1642.   tcl_cv_char_signed=no
  1643. fi
  1644. rm -f conftest*
  1645. fi
  1646. echo "$ac_t""$tcl_cv_char_signed" 1>&6
  1647. if test $tcl_cv_char_signed = yes; then
  1648.     cat >> confdefs.h <<EOF
  1649. #define HAVE_SIGNED_CHAR 1
  1650. EOF
  1651. fi
  1652. #--------------------------------------------------------------------
  1653. #  Does putenv() copy or not?  We need to know to avoid memory leaks.
  1654. #--------------------------------------------------------------------
  1655. echo $ac_n "checking for a putenv() that copies the buffer""... $ac_c" 1>&6
  1656. echo "configure:8341: checking for a putenv() that copies the buffer" >&5
  1657. if eval "test "`echo '$''{'tcl_cv_putenv_copy'+set}'`" = set"; then
  1658.   echo $ac_n "(cached) $ac_c" 1>&6
  1659. else
  1660.   
  1661.     if test "$cross_compiling" = yes; then
  1662.   tcl_cv_putenv_copy=no
  1663. else
  1664.   cat > conftest.$ac_ext <<EOF
  1665. #line 8350 "configure"
  1666. #include "confdefs.h"
  1667. #include <stdlib.h>
  1668. #define OURVAR "havecopy=yes"
  1669. int main (int argc, char *argv[])
  1670. {
  1671.     char *foo, *bar;
  1672.     foo = (char *)strdup(OURVAR);
  1673.     putenv(foo);
  1674.     strcpy((char *)(strchr(foo, '=') + 1), "no");
  1675.     bar = getenv("havecopy");
  1676.     if (!strcmp(bar, "no")) {
  1677. /* doesnt copy */
  1678. return 0;
  1679.     } else {
  1680. /* does copy */
  1681. return 1;
  1682.     }
  1683. }
  1684.     
  1685. EOF
  1686. if { (eval echo configure:8372: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
  1687. then
  1688.   tcl_cv_putenv_copy=no
  1689. else
  1690.   echo "configure: failed program was:" >&5
  1691.   cat conftest.$ac_ext >&5
  1692.   rm -fr conftest*
  1693.   tcl_cv_putenv_copy=yes
  1694. fi
  1695. rm -fr conftest*
  1696. fi
  1697. fi
  1698. echo "$ac_t""$tcl_cv_putenv_copy" 1>&6
  1699. if test $tcl_cv_putenv_copy = yes; then
  1700.     cat >> confdefs.h <<EOF
  1701. #define HAVE_PUTENV_THAT_COPIES 1
  1702. EOF
  1703. fi
  1704. #--------------------------------------------------------------------
  1705. # Check for support of nl_langinfo function
  1706. #--------------------------------------------------------------------
  1707.     # Check whether --enable-langinfo or --disable-langinfo was given.
  1708. if test "${enable_langinfo+set}" = set; then
  1709.   enableval="$enable_langinfo"
  1710.   langinfo_ok=$enableval
  1711. else
  1712.   langinfo_ok=yes
  1713. fi
  1714.     HAVE_LANGINFO=0
  1715.     if test "$langinfo_ok" = "yes"; then
  1716. ac_safe=`echo "langinfo.h" | sed 'y%./+-%__p_%'`
  1717. echo $ac_n "checking for langinfo.h""... $ac_c" 1>&6
  1718. echo "configure:8412: checking for langinfo.h" >&5
  1719. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1720.   echo $ac_n "(cached) $ac_c" 1>&6
  1721. else
  1722.   cat > conftest.$ac_ext <<EOF
  1723. #line 8417 "configure"
  1724. #include "confdefs.h"
  1725. #include <langinfo.h>
  1726. EOF
  1727. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1728. { (eval echo configure:8422: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1729. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1730. if test -z "$ac_err"; then
  1731.   rm -rf conftest*
  1732.   eval "ac_cv_header_$ac_safe=yes"
  1733. else
  1734.   echo "$ac_err" >&5
  1735.   echo "configure: failed program was:" >&5
  1736.   cat conftest.$ac_ext >&5
  1737.   rm -rf conftest*
  1738.   eval "ac_cv_header_$ac_safe=no"
  1739. fi
  1740. rm -f conftest*
  1741. fi
  1742. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1743.   echo "$ac_t""yes" 1>&6
  1744.   langinfo_ok=yes
  1745. else
  1746.   echo "$ac_t""no" 1>&6
  1747. langinfo_ok=no
  1748. fi
  1749.     fi
  1750.     echo $ac_n "checking whether to use nl_langinfo""... $ac_c" 1>&6
  1751. echo "configure:8446: checking whether to use nl_langinfo" >&5
  1752.     if test "$langinfo_ok" = "yes"; then
  1753. if eval "test "`echo '$''{'tcl_cv_langinfo_h'+set}'`" = set"; then
  1754.   echo $ac_n "(cached) $ac_c" 1>&6
  1755. else
  1756.   
  1757.     cat > conftest.$ac_ext <<EOF
  1758. #line 8453 "configure"
  1759. #include "confdefs.h"
  1760. #include <langinfo.h>
  1761. int main() {
  1762. nl_langinfo(CODESET);
  1763. ; return 0; }
  1764. EOF
  1765. if { (eval echo configure:8460: "$ac_compile") 1>&5; (eval $ac_compile) 2>&5; }; then
  1766.   rm -rf conftest*
  1767.   tcl_cv_langinfo_h=yes
  1768. else
  1769.   echo "configure: failed program was:" >&5
  1770.   cat conftest.$ac_ext >&5
  1771.   rm -rf conftest*
  1772.   tcl_cv_langinfo_h=no
  1773. fi
  1774. rm -f conftest*
  1775. fi
  1776. echo "$ac_t""$tcl_cv_langinfo_h" 1>&6
  1777. if test $tcl_cv_langinfo_h = yes; then
  1778.     cat >> confdefs.h <<EOF
  1779. #define HAVE_LANGINFO 1
  1780. EOF
  1781. fi
  1782.     else 
  1783. echo "$ac_t""$langinfo_ok" 1>&6
  1784.     fi
  1785. #--------------------------------------------------------------------
  1786. # Darwin specific API checks and defines
  1787. #--------------------------------------------------------------------
  1788. if test "`uname -s`" = "Darwin" ; then
  1789.     for ac_hdr in copyfile.h
  1790. do
  1791. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1792. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1793. echo "configure:8493: checking for $ac_hdr" >&5
  1794. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1795.   echo $ac_n "(cached) $ac_c" 1>&6
  1796. else
  1797.   cat > conftest.$ac_ext <<EOF
  1798. #line 8498 "configure"
  1799. #include "confdefs.h"
  1800. #include <$ac_hdr>
  1801. EOF
  1802. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1803. { (eval echo configure:8503: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1804. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1805. if test -z "$ac_err"; then
  1806.   rm -rf conftest*
  1807.   eval "ac_cv_header_$ac_safe=yes"
  1808. else
  1809.   echo "$ac_err" >&5
  1810.   echo "configure: failed program was:" >&5
  1811.   cat conftest.$ac_ext >&5
  1812.   rm -rf conftest*
  1813.   eval "ac_cv_header_$ac_safe=no"
  1814. fi
  1815. rm -f conftest*
  1816. fi
  1817. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1818.   echo "$ac_t""yes" 1>&6
  1819.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1820.   cat >> confdefs.h <<EOF
  1821. #define $ac_tr_hdr 1
  1822. EOF
  1823.  
  1824. else
  1825.   echo "$ac_t""no" 1>&6
  1826. fi
  1827. done
  1828.     for ac_func in copyfile
  1829. do
  1830. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1831. echo "configure:8532: checking for $ac_func" >&5
  1832. if eval "test "`echo '$''{'ac_cv_func_$ac_func'+set}'`" = set"; then
  1833.   echo $ac_n "(cached) $ac_c" 1>&6
  1834. else
  1835.   cat > conftest.$ac_ext <<EOF
  1836. #line 8537 "configure"
  1837. #include "confdefs.h"
  1838. /* System header to define __stub macros and hopefully few prototypes,
  1839.     which can conflict with char $ac_func(); below.  */
  1840. #include <assert.h>
  1841. /* Override any gcc2 internal prototype to avoid an error.  */
  1842. /* We use char because int might match the return type of a gcc2
  1843.     builtin and then its argument prototype would still apply.  */
  1844. char $ac_func();
  1845. int main() {
  1846. /* The GNU C library defines this for functions which it implements
  1847.     to always fail with ENOSYS.  Some functions are actually named
  1848.     something starting with __ and the normal name is an alias.  */
  1849. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1850. choke me
  1851. #else
  1852. $ac_func();
  1853. #endif
  1854. ; return 0; }
  1855. EOF
  1856. if { (eval echo configure:8560: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1857.   rm -rf conftest*
  1858.   eval "ac_cv_func_$ac_func=yes"
  1859. else
  1860.   echo "configure: failed program was:" >&5
  1861.   cat conftest.$ac_ext >&5
  1862.   rm -rf conftest*
  1863.   eval "ac_cv_func_$ac_func=no"
  1864. fi
  1865. rm -f conftest*
  1866. fi
  1867. if eval "test "`echo '$ac_cv_func_'$ac_func`" = yes"; then
  1868.   echo "$ac_t""yes" 1>&6
  1869.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  1870.   cat >> confdefs.h <<EOF
  1871. #define $ac_tr_func 1
  1872. EOF
  1873.  
  1874. else
  1875.   echo "$ac_t""no" 1>&6
  1876. fi
  1877. done
  1878.     if test $tcl_corefoundation = yes; then
  1879. for ac_hdr in libkern/OSAtomic.h
  1880. do
  1881. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  1882. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  1883. echo "configure:8589: checking for $ac_hdr" >&5
  1884. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  1885.   echo $ac_n "(cached) $ac_c" 1>&6
  1886. else
  1887.   cat > conftest.$ac_ext <<EOF
  1888. #line 8594 "configure"
  1889. #include "confdefs.h"
  1890. #include <$ac_hdr>
  1891. EOF
  1892. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  1893. { (eval echo configure:8599: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  1894. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  1895. if test -z "$ac_err"; then
  1896.   rm -rf conftest*
  1897.   eval "ac_cv_header_$ac_safe=yes"
  1898. else
  1899.   echo "$ac_err" >&5
  1900.   echo "configure: failed program was:" >&5
  1901.   cat conftest.$ac_ext >&5
  1902.   rm -rf conftest*
  1903.   eval "ac_cv_header_$ac_safe=no"
  1904. fi
  1905. rm -f conftest*
  1906. fi
  1907. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  1908.   echo "$ac_t""yes" 1>&6
  1909.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  1910.   cat >> confdefs.h <<EOF
  1911. #define $ac_tr_hdr 1
  1912. EOF
  1913.  
  1914. else
  1915.   echo "$ac_t""no" 1>&6
  1916. fi
  1917. done
  1918. for ac_func in OSSpinLockLock
  1919. do
  1920. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1921. echo "configure:8628: checking for $ac_func" >&5
  1922. if eval "test "`echo '$''{'ac_cv_func_$ac_func'+set}'`" = set"; then
  1923.   echo $ac_n "(cached) $ac_c" 1>&6
  1924. else
  1925.   cat > conftest.$ac_ext <<EOF
  1926. #line 8633 "configure"
  1927. #include "confdefs.h"
  1928. /* System header to define __stub macros and hopefully few prototypes,
  1929.     which can conflict with char $ac_func(); below.  */
  1930. #include <assert.h>
  1931. /* Override any gcc2 internal prototype to avoid an error.  */
  1932. /* We use char because int might match the return type of a gcc2
  1933.     builtin and then its argument prototype would still apply.  */
  1934. char $ac_func();
  1935. int main() {
  1936. /* The GNU C library defines this for functions which it implements
  1937.     to always fail with ENOSYS.  Some functions are actually named
  1938.     something starting with __ and the normal name is an alias.  */
  1939. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1940. choke me
  1941. #else
  1942. $ac_func();
  1943. #endif
  1944. ; return 0; }
  1945. EOF
  1946. if { (eval echo configure:8656: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1947.   rm -rf conftest*
  1948.   eval "ac_cv_func_$ac_func=yes"
  1949. else
  1950.   echo "configure: failed program was:" >&5
  1951.   cat conftest.$ac_ext >&5
  1952.   rm -rf conftest*
  1953.   eval "ac_cv_func_$ac_func=no"
  1954. fi
  1955. rm -f conftest*
  1956. fi
  1957. if eval "test "`echo '$ac_cv_func_'$ac_func`" = yes"; then
  1958.   echo "$ac_t""yes" 1>&6
  1959.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  1960.   cat >> confdefs.h <<EOF
  1961. #define $ac_tr_func 1
  1962. EOF
  1963.  
  1964. else
  1965.   echo "$ac_t""no" 1>&6
  1966. fi
  1967. done
  1968. for ac_func in pthread_atfork
  1969. do
  1970. echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
  1971. echo "configure:8683: checking for $ac_func" >&5
  1972. if eval "test "`echo '$''{'ac_cv_func_$ac_func'+set}'`" = set"; then
  1973.   echo $ac_n "(cached) $ac_c" 1>&6
  1974. else
  1975.   cat > conftest.$ac_ext <<EOF
  1976. #line 8688 "configure"
  1977. #include "confdefs.h"
  1978. /* System header to define __stub macros and hopefully few prototypes,
  1979.     which can conflict with char $ac_func(); below.  */
  1980. #include <assert.h>
  1981. /* Override any gcc2 internal prototype to avoid an error.  */
  1982. /* We use char because int might match the return type of a gcc2
  1983.     builtin and then its argument prototype would still apply.  */
  1984. char $ac_func();
  1985. int main() {
  1986. /* The GNU C library defines this for functions which it implements
  1987.     to always fail with ENOSYS.  Some functions are actually named
  1988.     something starting with __ and the normal name is an alias.  */
  1989. #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
  1990. choke me
  1991. #else
  1992. $ac_func();
  1993. #endif
  1994. ; return 0; }
  1995. EOF
  1996. if { (eval echo configure:8711: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  1997.   rm -rf conftest*
  1998.   eval "ac_cv_func_$ac_func=yes"
  1999. else
  2000.   echo "configure: failed program was:" >&5
  2001.   cat conftest.$ac_ext >&5
  2002.   rm -rf conftest*
  2003.   eval "ac_cv_func_$ac_func=no"
  2004. fi
  2005. rm -f conftest*
  2006. fi
  2007. if eval "test "`echo '$ac_cv_func_'$ac_func`" = yes"; then
  2008.   echo "$ac_t""yes" 1>&6
  2009.     ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
  2010.   cat >> confdefs.h <<EOF
  2011. #define $ac_tr_func 1
  2012. EOF
  2013.  
  2014. else
  2015.   echo "$ac_t""no" 1>&6
  2016. fi
  2017. done
  2018.     fi
  2019.     cat >> confdefs.h <<EOF
  2020. #define USE_VFORK 1
  2021. EOF
  2022.     cat >> confdefs.h <<EOF
  2023. #define TCL_DEFAULT_ENCODING "utf-8"
  2024. EOF
  2025.     cat >> confdefs.h <<EOF
  2026. #define TCL_LOAD_FROM_MEMORY 1
  2027. EOF
  2028.     for ac_hdr in AvailabilityMacros.h
  2029. do
  2030. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  2031. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  2032. echo "configure:8752: checking for $ac_hdr" >&5
  2033. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  2034.   echo $ac_n "(cached) $ac_c" 1>&6
  2035. else
  2036.   cat > conftest.$ac_ext <<EOF
  2037. #line 8757 "configure"
  2038. #include "confdefs.h"
  2039. #include <$ac_hdr>
  2040. EOF
  2041. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  2042. { (eval echo configure:8762: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  2043. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  2044. if test -z "$ac_err"; then
  2045.   rm -rf conftest*
  2046.   eval "ac_cv_header_$ac_safe=yes"
  2047. else
  2048.   echo "$ac_err" >&5
  2049.   echo "configure: failed program was:" >&5
  2050.   cat conftest.$ac_ext >&5
  2051.   rm -rf conftest*
  2052.   eval "ac_cv_header_$ac_safe=no"
  2053. fi
  2054. rm -f conftest*
  2055. fi
  2056. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  2057.   echo "$ac_t""yes" 1>&6
  2058.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  2059.   cat >> confdefs.h <<EOF
  2060. #define $ac_tr_hdr 1
  2061. EOF
  2062.  
  2063. else
  2064.   echo "$ac_t""no" 1>&6
  2065. fi
  2066. done
  2067.     if test "$ac_cv_header_AvailabilityMacros_h" = yes; then
  2068. echo $ac_n "checking if weak import is available""... $ac_c" 1>&6
  2069. echo "configure:8790: checking if weak import is available" >&5
  2070. if eval "test "`echo '$''{'tcl_cv_cc_weak_import'+set}'`" = set"; then
  2071.   echo $ac_n "(cached) $ac_c" 1>&6
  2072. else
  2073.   
  2074.     hold_cflags=$CFLAGS; CFLAGS="$CFLAGS -Werror"
  2075.     cat > conftest.$ac_ext <<EOF
  2076. #line 8797 "configure"
  2077. #include "confdefs.h"
  2078.     #ifdef __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__
  2079.     #if __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1020
  2080.     #error __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1020
  2081.     #endif
  2082.     #elif MAC_OS_X_VERSION_MIN_REQUIRED < 1020
  2083.     #error MAC_OS_X_VERSION_MIN_REQUIRED < 1020
  2084.     #endif
  2085.     int rand(void) __attribute__((weak_import));
  2086. int main() {
  2087. rand();
  2088. ; return 0; }
  2089. EOF
  2090. if { (eval echo configure:8813: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2091.   rm -rf conftest*
  2092.   tcl_cv_cc_weak_import=yes
  2093. else
  2094.   echo "configure: failed program was:" >&5
  2095.   cat conftest.$ac_ext >&5
  2096.   rm -rf conftest*
  2097.   tcl_cv_cc_weak_import=no
  2098. fi
  2099. rm -f conftest*
  2100.     CFLAGS=$hold_cflags
  2101. fi
  2102. echo "$ac_t""$tcl_cv_cc_weak_import" 1>&6
  2103. if test $tcl_cv_cc_weak_import = yes; then
  2104.     cat >> confdefs.h <<EOF
  2105. #define HAVE_WEAK_IMPORT 1
  2106. EOF
  2107. fi
  2108.     fi
  2109. fi
  2110. #--------------------------------------------------------------------
  2111. # Check for support of fts functions (readdir replacement)
  2112. #--------------------------------------------------------------------
  2113. echo $ac_n "checking for fts""... $ac_c" 1>&6
  2114. echo "configure:8841: checking for fts" >&5
  2115. if eval "test "`echo '$''{'tcl_cv_api_fts'+set}'`" = set"; then
  2116.   echo $ac_n "(cached) $ac_c" 1>&6
  2117. else
  2118.   
  2119.     cat > conftest.$ac_ext <<EOF
  2120. #line 8847 "configure"
  2121. #include "confdefs.h"
  2122.     #include <sys/param.h>
  2123.     #include <sys/stat.h>
  2124.     #include <fts.h>
  2125. int main() {
  2126.     char*const p[2] = {"/", NULL};
  2127.     FTS *f = fts_open(p, FTS_PHYSICAL|FTS_NOCHDIR|FTS_NOSTAT, NULL);
  2128.     FTSENT *e = fts_read(f); fts_close(f);
  2129. ; return 0; }
  2130. EOF
  2131. if { (eval echo configure:8862: "$ac_link") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
  2132.   rm -rf conftest*
  2133.   tcl_cv_api_fts=yes
  2134. else
  2135.   echo "configure: failed program was:" >&5
  2136.   cat conftest.$ac_ext >&5
  2137.   rm -rf conftest*
  2138.   tcl_cv_api_fts=no
  2139. fi
  2140. rm -f conftest*
  2141. fi
  2142. echo "$ac_t""$tcl_cv_api_fts" 1>&6
  2143. if test $tcl_cv_api_fts = yes; then
  2144.     cat >> confdefs.h <<EOF
  2145. #define HAVE_FTS 1
  2146. EOF
  2147. fi
  2148. #--------------------------------------------------------------------
  2149. # The statements below check for systems where POSIX-style
  2150. # non-blocking I/O (O_NONBLOCK) doesn't work or is unimplemented. 
  2151. # On these systems (mostly older ones), use the old BSD-style
  2152. # FIONBIO approach instead.
  2153. #--------------------------------------------------------------------
  2154.     for ac_hdr in sys/ioctl.h
  2155. do
  2156. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  2157. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  2158. echo "configure:8894: checking for $ac_hdr" >&5
  2159. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  2160.   echo $ac_n "(cached) $ac_c" 1>&6
  2161. else
  2162.   cat > conftest.$ac_ext <<EOF
  2163. #line 8899 "configure"
  2164. #include "confdefs.h"
  2165. #include <$ac_hdr>
  2166. EOF
  2167. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  2168. { (eval echo configure:8904: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  2169. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  2170. if test -z "$ac_err"; then
  2171.   rm -rf conftest*
  2172.   eval "ac_cv_header_$ac_safe=yes"
  2173. else
  2174.   echo "$ac_err" >&5
  2175.   echo "configure: failed program was:" >&5
  2176.   cat conftest.$ac_ext >&5
  2177.   rm -rf conftest*
  2178.   eval "ac_cv_header_$ac_safe=no"
  2179. fi
  2180. rm -f conftest*
  2181. fi
  2182. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  2183.   echo "$ac_t""yes" 1>&6
  2184.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  2185.   cat >> confdefs.h <<EOF
  2186. #define $ac_tr_hdr 1
  2187. EOF
  2188.  
  2189. else
  2190.   echo "$ac_t""no" 1>&6
  2191. fi
  2192. done
  2193.     for ac_hdr in sys/filio.h
  2194. do
  2195. ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
  2196. echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
  2197. echo "configure:8934: checking for $ac_hdr" >&5
  2198. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  2199.   echo $ac_n "(cached) $ac_c" 1>&6
  2200. else
  2201.   cat > conftest.$ac_ext <<EOF
  2202. #line 8939 "configure"
  2203. #include "confdefs.h"
  2204. #include <$ac_hdr>
  2205. EOF
  2206. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  2207. { (eval echo configure:8944: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  2208. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  2209. if test -z "$ac_err"; then
  2210.   rm -rf conftest*
  2211.   eval "ac_cv_header_$ac_safe=yes"
  2212. else
  2213.   echo "$ac_err" >&5
  2214.   echo "configure: failed program was:" >&5
  2215.   cat conftest.$ac_ext >&5
  2216.   rm -rf conftest*
  2217.   eval "ac_cv_header_$ac_safe=no"
  2218. fi
  2219. rm -f conftest*
  2220. fi
  2221. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  2222.   echo "$ac_t""yes" 1>&6
  2223.     ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
  2224.   cat >> confdefs.h <<EOF
  2225. #define $ac_tr_hdr 1
  2226. EOF
  2227.  
  2228. else
  2229.   echo "$ac_t""no" 1>&6
  2230. fi
  2231. done
  2232.     
  2233.     echo $ac_n "checking system version""... $ac_c" 1>&6
  2234. echo "configure:8972: checking system version" >&5
  2235. if eval "test "`echo '$''{'tcl_cv_sys_version'+set}'`" = set"; then
  2236.   echo $ac_n "(cached) $ac_c" 1>&6
  2237. else
  2238.   
  2239. if test -f /usr/lib/NextStep/software_version; then
  2240.     tcl_cv_sys_version=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version`
  2241. else
  2242.     tcl_cv_sys_version=`uname -s`-`uname -r`
  2243.     if test "$?" -ne 0 ; then
  2244. echo "configure: warning: can't find uname command" 1>&2
  2245. tcl_cv_sys_version=unknown
  2246.     else
  2247. # Special check for weird MP-RAS system (uname returns weird
  2248. # results, and the version is kept in special file).
  2249. if test -r /etc/.relid -a "X`uname -n`" = "X`uname -s`" ; then
  2250.     tcl_cv_sys_version=MP-RAS-`awk '{print $3}' /etc/.relid`
  2251. fi
  2252. if test "`uname -s`" = "AIX" ; then
  2253.     tcl_cv_sys_version=AIX-`uname -v`.`uname -r`
  2254. fi
  2255.     fi
  2256. fi
  2257.     
  2258. fi
  2259. echo "$ac_t""$tcl_cv_sys_version" 1>&6
  2260.     system=$tcl_cv_sys_version
  2261.     echo $ac_n "checking FIONBIO vs. O_NONBLOCK for nonblocking I/O""... $ac_c" 1>&6
  2262. echo "configure:9003: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5
  2263.     case $system in
  2264. # There used to be code here to use FIONBIO under AIX.  However, it
  2265. # was reported that FIONBIO doesn't work under AIX 3.2.5.  Since
  2266. # using O_NONBLOCK seems fine under AIX 4.*, I removed the FIONBIO
  2267. # code (JO, 5/31/97).
  2268. OSF*)
  2269.     cat >> confdefs.h <<EOF
  2270. #define USE_FIONBIO 1
  2271. EOF
  2272.     echo "$ac_t""FIONBIO" 1>&6
  2273.     ;;
  2274. SunOS-4*)
  2275.     cat >> confdefs.h <<EOF
  2276. #define USE_FIONBIO 1
  2277. EOF
  2278.     echo "$ac_t""FIONBIO" 1>&6
  2279.     ;;
  2280. ULTRIX-4.*)
  2281.     cat >> confdefs.h <<EOF
  2282. #define USE_FIONBIO 1
  2283. EOF
  2284.     echo "$ac_t""FIONBIO" 1>&6
  2285.     ;;
  2286. *)
  2287.     echo "$ac_t""O_NONBLOCK" 1>&6
  2288.     ;;
  2289.     esac
  2290. #--------------------------------------------------------------------
  2291. # DTrace support
  2292. #--------------------------------------------------------------------
  2293. # Check whether --enable-dtrace or --disable-dtrace was given.
  2294. if test "${enable_dtrace+set}" = set; then
  2295.   enableval="$enable_dtrace"
  2296.   tcl_ok=$enableval
  2297. else
  2298.   tcl_ok=no
  2299. fi
  2300. if test $tcl_ok = yes; then
  2301.     ac_safe=`echo "sys/sdt.h" | sed 'y%./+-%__p_%'`
  2302. echo $ac_n "checking for sys/sdt.h""... $ac_c" 1>&6
  2303. echo "configure:9052: checking for sys/sdt.h" >&5
  2304. if eval "test "`echo '$''{'ac_cv_header_$ac_safe'+set}'`" = set"; then
  2305.   echo $ac_n "(cached) $ac_c" 1>&6
  2306. else
  2307.   cat > conftest.$ac_ext <<EOF
  2308. #line 9057 "configure"
  2309. #include "confdefs.h"
  2310. #include <sys/sdt.h>
  2311. EOF
  2312. ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
  2313. { (eval echo configure:9062: "$ac_try") 1>&5; (eval $ac_try) 2>&5; }
  2314. ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}$"`
  2315. if test -z "$ac_err"; then
  2316.   rm -rf conftest*
  2317.   eval "ac_cv_header_$ac_safe=yes"
  2318. else
  2319.   echo "$ac_err" >&5
  2320.   echo "configure: failed program was:" >&5
  2321.   cat conftest.$ac_ext >&5
  2322.   rm -rf conftest*
  2323.   eval "ac_cv_header_$ac_safe=no"
  2324. fi
  2325. rm -f conftest*
  2326. fi
  2327. if eval "test "`echo '$ac_cv_header_'$ac_safe`" = yes"; then
  2328.   echo "$ac_t""yes" 1>&6
  2329.   tcl_ok=yes
  2330. else
  2331.   echo "$ac_t""no" 1>&6
  2332. tcl_ok=no
  2333. fi
  2334. fi
  2335. if test $tcl_ok = yes; then
  2336.     # Extract the first word of "dtrace", so it can be a program name with args.
  2337. set dummy dtrace; ac_word=$2
  2338. echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
  2339. echo "configure:9089: checking for $ac_word" >&5
  2340. if eval "test "`echo '$''{'ac_cv_path_DTRACE'+set}'`" = set"; then
  2341.   echo $ac_n "(cached) $ac_c" 1>&6
  2342. else
  2343.   case "$DTRACE" in
  2344.   /*)
  2345.   ac_cv_path_DTRACE="$DTRACE" # Let the user override the test with a path.
  2346.   ;;
  2347.   ?:/*)  
  2348.   ac_cv_path_DTRACE="$DTRACE" # Let the user override the test with a dos path.
  2349.   ;;
  2350.   *)
  2351.   IFS="${IFS=  }"; ac_save_ifs="$IFS"; IFS=":"
  2352.   ac_dummy="$PATH:/usr/sbin"
  2353.   for ac_dir in $ac_dummy; do 
  2354.     test -z "$ac_dir" && ac_dir=.
  2355.     if test -f $ac_dir/$ac_word; then
  2356.       ac_cv_path_DTRACE="$ac_dir/$ac_word"
  2357.       break
  2358.     fi
  2359.   done
  2360.   IFS="$ac_save_ifs"
  2361.   ;;
  2362. esac
  2363. fi
  2364. DTRACE="$ac_cv_path_DTRACE"
  2365. if test -n "$DTRACE"; then
  2366.   echo "$ac_t""$DTRACE" 1>&6
  2367. else
  2368.   echo "$ac_t""no" 1>&6
  2369. fi
  2370.     test -z "$ac_cv_path_DTRACE" && tcl_ok=no
  2371. fi
  2372. echo $ac_n "checking whether to enable DTrace support""... $ac_c" 1>&6
  2373. echo "configure:9124: checking whether to enable DTrace support" >&5
  2374. if test $tcl_ok = yes; then
  2375.     cat >> confdefs.h <<EOF
  2376. #define USE_DTRACE 1
  2377. EOF
  2378.     DTRACE_SRC="${DTRACE_SRC}"
  2379.     DTRACE_HDR="${DTRACE_HDR}"
  2380.     if test "`uname -s`" != "Darwin" ; then
  2381. DTRACE_OBJ="${DTRACE_OBJ}"
  2382.     fi
  2383. fi
  2384. echo "$ac_t""$tcl_ok" 1>&6
  2385. #--------------------------------------------------------------------
  2386. # The statements below define a collection of symbols related to
  2387. # building libtcl as a shared library instead of a static library.
  2388. #--------------------------------------------------------------------
  2389. TCL_UNSHARED_LIB_SUFFIX=${UNSHARED_LIB_SUFFIX}
  2390. TCL_SHARED_LIB_SUFFIX=${SHARED_LIB_SUFFIX}
  2391. eval "TCL_LIB_FILE=libtcl${LIB_SUFFIX}"
  2392. # tclConfig.sh needs a version of the _LIB_SUFFIX that has been eval'ed
  2393. # so that the backslashes quoting the DBX braces are dropped.
  2394. # Trick to replace DBGX with TCL_DBGX
  2395. DBGX='${TCL_DBGX}'
  2396. eval "TCL_LIB_FILE=${TCL_LIB_FILE}"
  2397. TCL_LIBRARY='$(prefix)/lib/tcl$(VERSION)'
  2398. PRIVATE_INCLUDE_DIR='$(includedir)'
  2399. HTML_DIR='$(DISTDIR)/html'
  2400. # Note:  in the following variable, it's important to use the absolute
  2401. # path name of the Tcl directory rather than "..":  this is because
  2402. # AIX remembers this path and will attempt to use it at run-time to look
  2403. # up the Tcl library.
  2404. if test "`uname -s`" = "Darwin" ; then
  2405.     
  2406.     if test "`uname -s`" = "Darwin" ; then
  2407. echo $ac_n "checking how to package libraries""... $ac_c" 1>&6
  2408. echo "configure:9167: checking how to package libraries" >&5
  2409. # Check whether --enable-framework or --disable-framework was given.
  2410. if test "${enable_framework+set}" = set; then
  2411.   enableval="$enable_framework"
  2412.   enable_framework=$enableval
  2413. else
  2414.   enable_framework=no
  2415. fi
  2416. if test $enable_framework = yes; then
  2417.     if test $SHARED_BUILD = 0; then
  2418. echo "configure: warning: Frameworks can only be built if --enable-shared is yes" 1>&2
  2419. enable_framework=no
  2420.     fi
  2421.     if test $tcl_corefoundation = no; then
  2422. echo "configure: warning: Frameworks can only be used when CoreFoundation is available" 1>&2
  2423. enable_framework=no
  2424.     fi
  2425. fi
  2426. if test $enable_framework = yes; then
  2427.     echo "$ac_t""framework" 1>&6
  2428.     FRAMEWORK_BUILD=1
  2429. else
  2430.     if test $SHARED_BUILD = 1; then
  2431. echo "$ac_t""shared library" 1>&6
  2432.     else
  2433. echo "$ac_t""static library" 1>&6
  2434.     fi
  2435.     FRAMEWORK_BUILD=0
  2436. fi
  2437.     fi
  2438.     TCL_SHLIB_LD_EXTRAS="-compatibility_version ${TCL_VERSION} -current_version ${TCL_VERSION}`echo ${TCL_PATCH_LEVEL} | awk '{match($0, "\.[0-9]+"); print substr($0,RSTART,RLENGTH)}'`"
  2439.     TCL_SHLIB_LD_EXTRAS="${TCL_SHLIB_LD_EXTRAS}"' -install_name ${DYLIB_INSTALL_DIR}/${TCL_LIB_FILE}'
  2440.     echo "$LDFLAGS " | grep -q -- '-prebind ' && TCL_SHLIB_LD_EXTRAS="${TCL_SHLIB_LD_EXTRAS}"' -seg1addr 0xa000000'
  2441.     TCL_SHLIB_LD_EXTRAS="${TCL_SHLIB_LD_EXTRAS}"' -sectcreate __TEXT __info_plist Tcl-Info.plist'
  2442.     EXTRA_TCLSH_LIBS='-sectcreate __TEXT __info_plist Tclsh-Info.plist'
  2443.     EXTRA_APP_CC_SWITCHES='-mdynamic-no-pic'
  2444.     tcl_config_files="${tcl_config_files} Tcl-Info.plist:../macosx/Tcl-Info.plist.in Tclsh-Info.plist:../macosx/Tclsh-Info.plist.in"
  2445.     TCL_YEAR="`date +%Y`"
  2446. fi
  2447. if test "$FRAMEWORK_BUILD" = "1" ; then
  2448.     cat >> confdefs.h <<EOF
  2449. #define TCL_FRAMEWORK 1
  2450. EOF
  2451.     # Construct a fake local framework structure to make linking with
  2452.     # '-framework Tcl' and running of tcltest work
  2453.     
  2454.     LD_LIBRARY_PATH_VAR="DYLD_FRAMEWORK_PATH"
  2455.     if test "${libdir}" = '${exec_prefix}/lib'; then
  2456.         # override libdir default
  2457.         libdir="/Library/Frameworks"
  2458.     fi
  2459.     TCL_LIB_FILE="Tcl"
  2460.     TCL_LIB_FLAG="-framework Tcl"
  2461.     TCL_BUILD_LIB_SPEC="-F`pwd` -framework Tcl"
  2462.     TCL_LIB_SPEC="-F${libdir} -framework Tcl"
  2463.     libdir="${libdir}/Tcl.framework/Versions/${VERSION}"
  2464.     TCL_LIBRARY="${libdir}/Resources/Scripts"
  2465.     includedir="${libdir}/Headers"
  2466.     PRIVATE_INCLUDE_DIR="${libdir}/PrivateHeaders"
  2467.     HTML_DIR="${libdir}/Resources/Documentation/Reference/Tcl"
  2468.     EXTRA_INSTALL="install-private-headers html-tcl"
  2469.     EXTRA_BUILD_HTML='@ln -fs contents.htm $(HTML_INSTALL_DIR)/TclTOC.html' 
  2470.     EXTRA_INSTALL_BINARIES='@echo "Installing Info.plist to $(LIB_INSTALL_DIR)/Resources" && mkdir -p "$(LIB_INSTALL_DIR)/Resources" && $(INSTALL_DATA) Tcl-Info.plist "$(LIB_INSTALL_DIR)/Resources/Info.plist"'
  2471.     EXTRA_INSTALL_BINARIES="$EXTRA_INSTALL_BINARIES"' && echo "Installing license.terms to $(LIB_INSTALL_DIR)/Resources" && $(INSTALL_DATA) "$(TOP_DIR)/license.terms" "$(LIB_INSTALL_DIR)/Resources"'
  2472.     EXTRA_INSTALL_BINARIES="$EXTRA_INSTALL_BINARIES"' && echo "Finalizing Tcl.framework" && rm -f "$(LIB_INSTALL_DIR)/../Current" && ln -s "$(VERSION)" "$(LIB_INSTALL_DIR)/../Current" && for f in "$(LIB_FILE)" tclConfig.sh Resources Headers PrivateHeaders; do rm -f "$(LIB_INSTALL_DIR)/../../$$f" && ln -s "Versions/Current/$$f" "$(LIB_INSTALL_DIR)/../.."; done && f="$(STUB_LIB_FILE)" && rm -f "$(LIB_INSTALL_DIR)/../../$$f" && ln -s "Versions/$(VERSION)/$$f" "$(LIB_INSTALL_DIR)/../.."'
  2473.     # Don't use AC_DEFINE for the following as the framework version define 
  2474.     # needs to go into the Makefile even when using autoheader, so that we  
  2475.     # can pick up a potential make override of VERSION. Also, don't put this
  2476.     # into CFLAGS as it should not go into tclConfig.sh
  2477.     EXTRA_CC_SWITCHES='-DTCL_FRAMEWORK_VERSION="$(VERSION)"'
  2478. else
  2479.     # libdir must be a fully qualified path and not ${exec_prefix}/lib
  2480.     eval libdir="$libdir"
  2481.     if test "$SHARED_BUILD" = "0" || test "$TCL_NEEDS_EXP_FILE" = "0"; then
  2482.         if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
  2483.             TCL_LIB_FLAG="-ltcl${TCL_VERSION}${TCL_DBGX}"
  2484.         else
  2485.             TCL_LIB_FLAG="-ltcl`echo ${TCL_VERSION} | tr -d .`${TCL_DBGX}"
  2486.         fi
  2487.         TCL_BUILD_LIB_SPEC="-L`pwd` ${TCL_LIB_FLAG}"
  2488.         TCL_LIB_SPEC="-L${libdir} ${TCL_LIB_FLAG}"
  2489.     else
  2490.         TCL_BUILD_EXP_FILE="lib.exp"
  2491.         eval "TCL_EXP_FILE=libtcl${TCL_EXPORT_FILE_SUFFIX}"
  2492.     
  2493.         # Replace DBGX with TCL_DBGX
  2494.         eval "TCL_EXP_FILE="${TCL_EXP_FILE}""
  2495.         
  2496.         if test "$GCC" = "yes" ; then
  2497.             TCL_BUILD_LIB_SPEC="-Wl,-bI:`pwd`/${TCL_BUILD_EXP_FILE} -L`pwd`"
  2498.             TCL_LIB_SPEC="-Wl,-bI:${libdir}/${TCL_EXP_FILE} -L`pwd`"
  2499.         else
  2500.             TCL_BUILD_LIB_SPEC="-bI:`pwd`/${TCL_BUILD_EXP_FILE}"
  2501.             TCL_LIB_SPEC="-bI:${libdir}/${TCL_EXP_FILE}"
  2502.         fi
  2503.     fi
  2504. fi
  2505. VERSION='${VERSION}'
  2506. eval "CFG_TCL_SHARED_LIB_SUFFIX=${TCL_SHARED_LIB_SUFFIX}"
  2507. eval "CFG_TCL_UNSHARED_LIB_SUFFIX=${TCL_UNSHARED_LIB_SUFFIX}"
  2508. eval "CFG_TCL_EXPORT_FILE_SUFFIX=${TCL_EXPORT_FILE_SUFFIX}"
  2509. VERSION=${TCL_VERSION}
  2510. #--------------------------------------------------------------------
  2511. # The statements below define the symbol TCL_PACKAGE_PATH, which
  2512. # gives a list of directories that may contain packages.  The list
  2513. # consists of one directory for machine-dependent binaries and
  2514. # another for platform-independent scripts.
  2515. #--------------------------------------------------------------------
  2516. if test "$FRAMEWORK_BUILD" = "1" ; then
  2517.     test -z "$TCL_PACKAGE_PATH" && 
  2518.         TCL_PACKAGE_PATH="~/Library/Tcl /Library/Tcl /Network/Library/Tcl /System/Library/Tcl ~/Library/Frameworks /Library/Frameworks /Network/Library/Frameworks /System/Library/Frameworks"
  2519. elif test "$prefix" != "$exec_prefix"; then
  2520.     TCL_PACKAGE_PATH="${libdir} ${prefix}/lib ${TCL_PACKAGE_PATH}"
  2521. else
  2522.     TCL_PACKAGE_PATH="${prefix}/lib ${TCL_PACKAGE_PATH}"
  2523. fi
  2524. #--------------------------------------------------------------------
  2525. #       The statements below define various symbols relating to Tcl
  2526. #       stub support.
  2527. #--------------------------------------------------------------------
  2528. # Replace ${VERSION} with contents of ${TCL_VERSION}
  2529. eval "TCL_STUB_LIB_FILE=libtclstub${TCL_UNSHARED_LIB_SUFFIX}"
  2530. # Replace DBGX with TCL_DBGX
  2531. eval "TCL_STUB_LIB_FILE="${TCL_STUB_LIB_FILE}""
  2532. eval "TCL_STUB_LIB_DIR=${libdir}"
  2533. if test "${TCL_LIB_VERSIONS_OK}" = "ok"; then
  2534.     TCL_STUB_LIB_FLAG="-ltclstub${TCL_VERSION}${TCL_DBGX}"
  2535. else
  2536.     TCL_STUB_LIB_FLAG="-ltclstub`echo ${TCL_VERSION} | tr -d .`${TCL_DBGX}"
  2537. fi
  2538. TCL_BUILD_STUB_LIB_SPEC="-L`pwd` ${TCL_STUB_LIB_FLAG}"
  2539. TCL_STUB_LIB_SPEC="-L${TCL_STUB_LIB_DIR} ${TCL_STUB_LIB_FLAG}"
  2540. TCL_BUILD_STUB_LIB_PATH="`pwd`/${TCL_STUB_LIB_FILE}"
  2541. TCL_STUB_LIB_PATH="${TCL_STUB_LIB_DIR}/${TCL_STUB_LIB_FILE}"
  2542. # Install time header dir can be set via --includedir
  2543. eval "TCL_INCLUDE_SPEC="-I${includedir}""
  2544. #------------------------------------------------------------------------
  2545. # tclConfig.sh refers to this by a different name
  2546. #------------------------------------------------------------------------
  2547. TCL_SHARED_BUILD=${SHARED_BUILD}
  2548. CFLAGS="${CFLAGS} ${CPPFLAGS}"; CPPFLAGS=""
  2549. tcl_config_files="${tcl_config_files} Makefile dltest/Makefile tclConfig.sh"
  2550. trap '' 1 2 15
  2551. cat > confcache <<EOF
  2552. # This file is a shell script that caches the results of configure
  2553. # tests run on this system so they can be shared between configure
  2554. # scripts and configure runs.  It is not useful on other systems.
  2555. # If it contains results you don't want to keep, you may remove or edit it.
  2556. #
  2557. # By default, configure uses ./config.cache as the cache file,
  2558. # creating it if it does not exist already.  You can give configure
  2559. # the --cache-file=FILE option to use a different cache file; that is
  2560. # what configure does when it calls configure scripts in
  2561. # subdirectories, so they share the cache.
  2562. # Giving --cache-file=/dev/null disables caching, for debugging configure.
  2563. # config.status only pays attention to the cache file if you give it the
  2564. # --recheck option to rerun configure.
  2565. #
  2566. EOF
  2567. # The following way of writing the cache mishandles newlines in values,
  2568. # but we know of no workaround that is simple, portable, and efficient.
  2569. # So, don't put newlines in cache variables' values.
  2570. # Ultrix sh set writes to stderr and can't be redirected directly,
  2571. # and sets the high bit in the cache file unless we assign to the vars.
  2572. (set) 2>&1 |
  2573.   case `(ac_space=' '; set | grep ac_space) 2>&1` in
  2574.   *ac_space= *)
  2575.     # `set' does not quote correctly, so add quotes (double-quote substitution
  2576.     # turns \\ into \, and sed turns \ into ).
  2577.     sed -n 
  2578.       -e "s/'/'\\''/g" 
  2579.       -e "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/\1=${\1='\2'}/p"
  2580.     ;;
  2581.   *)
  2582.     # `set' quotes correctly as required by POSIX, so do not add quotes.
  2583.     sed -n -e 's/^([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*)=(.*)/1=${1=2}/p'
  2584.     ;;
  2585.   esac >> confcache
  2586. if cmp -s $cache_file confcache; then
  2587.   :
  2588. else
  2589.   if test -w $cache_file; then
  2590.     echo "updating cache $cache_file"
  2591.     cat confcache > $cache_file
  2592.   else
  2593.     echo "not updating unwritable cache $cache_file"
  2594.   fi
  2595. fi
  2596. rm -f confcache
  2597. trap 'rm -fr conftest* confdefs* core core.* *.core $ac_clean_files; exit 1' 1 2 15
  2598. test "x$prefix" = xNONE && prefix=$ac_default_prefix
  2599. # Let make expand exec_prefix.
  2600. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
  2601. # Any assignment to VPATH causes Sun make to only execute
  2602. # the first set of double-colon rules, so remove it if not needed.
  2603. # If there is a colon in the path, we need to keep it.
  2604. if test "x$srcdir" = x.; then
  2605.   ac_vpsub='/^[  ]*VPATH[  ]*=[^:]*$/d'
  2606. fi
  2607. trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
  2608. # Transform confdefs.h into DEFS.
  2609. # Protect against shell expansion while executing Makefile rules.
  2610. # Protect against Makefile macro expansion.
  2611. #
  2612. # If the first sed substitution is executed (which looks for macros that
  2613. # take arguments), then we branch to the quote section.  Otherwise,
  2614. # look for a macro that doesn't take arguments.
  2615. cat >confdef2opt.sed <<_ACEOF
  2616. t clear
  2617. : clear
  2618. s,^[  ]*#[  ]*define[  ][  ]*([^  (][^  (]*([^)]*))[  ]*(.*),-D1=2,g
  2619. t quote
  2620. s,^[  ]*#[  ]*define[  ][  ]*([^  ][^  ]*)[  ]*(.*),-D1=2,g
  2621. t quote
  2622. d
  2623. : quote
  2624. s,[  `~#$^&*(){}\|;'"<>?],\&,g
  2625. s,[,\&,g
  2626. s,],\&,g
  2627. s,$,$$,g
  2628. p
  2629. _ACEOF
  2630. # We use echo to avoid assuming a particular line-breaking character.
  2631. # The extra dot is to prevent the shell from consuming trailing
  2632. # line-breaks from the sub-command output.  A line-break within
  2633. # single-quotes doesn't work because, if this script is created in a
  2634. # platform that uses two characters for line-breaks (e.g., DOS), tr
  2635. # would break.
  2636. ac_LF_and_DOT=`echo; echo .`
  2637. DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
  2638. rm -f confdef2opt.sed
  2639. # Without the "./", some shells look in PATH for config.status.
  2640. : ${CONFIG_STATUS=./config.status}
  2641. echo creating $CONFIG_STATUS
  2642. rm -f $CONFIG_STATUS
  2643. cat > $CONFIG_STATUS <<EOF
  2644. #! /bin/sh
  2645. # Generated automatically by configure.
  2646. # Run this file to recreate the current configuration.
  2647. # This directory was configured as follows,
  2648. # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  2649. #
  2650. # $0 $ac_configure_args
  2651. #
  2652. # Compiler output produced by configure, useful for debugging
  2653. # configure, is in ./config.log if it exists.
  2654. ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
  2655. for ac_option
  2656. do
  2657.   case "$ac_option" in
  2658.   -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
  2659.     echo "running ${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
  2660.     exec ${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
  2661.   -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
  2662.     echo "$CONFIG_STATUS generated by autoconf version 2.13"
  2663.     exit 0 ;;
  2664.   -help | --help | --hel | --he | --h)
  2665.     echo "$ac_cs_usage"; exit 0 ;;
  2666.   *) echo "$ac_cs_usage"; exit 1 ;;
  2667.   esac
  2668. done
  2669. ac_given_srcdir=$srcdir
  2670. trap 'rm -fr `echo "${tcl_config_files}" | sed "s/:[^ ]*//g"` conftest*; exit 1' 1 2 15
  2671. EOF
  2672. cat >> $CONFIG_STATUS <<EOF
  2673. # Protect against being on the right side of a sed subst in config.status.
  2674. sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\&%]/\\&/g;
  2675.  s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
  2676. $ac_vpsub
  2677. $extrasub
  2678. s%@SHELL@%$SHELL%g
  2679. s%@CFLAGS@%$CFLAGS%g
  2680. s%@CPPFLAGS@%$CPPFLAGS%g
  2681. s%@CXXFLAGS@%$CXXFLAGS%g
  2682. s%@FFLAGS@%$FFLAGS%g
  2683. s%@DEFS@%$DEFS%g
  2684. s%@LDFLAGS@%$LDFLAGS%g
  2685. s%@LIBS@%$LIBS%g
  2686. s%@exec_prefix@%$exec_prefix%g
  2687. s%@prefix@%$prefix%g
  2688. s%@program_transform_name@%$program_transform_name%g
  2689. s%@bindir@%$bindir%g
  2690. s%@sbindir@%$sbindir%g
  2691. s%@libexecdir@%$libexecdir%g
  2692. s%@datadir@%$datadir%g
  2693. s%@sysconfdir@%$sysconfdir%g
  2694. s%@sharedstatedir@%$sharedstatedir%g
  2695. s%@localstatedir@%$localstatedir%g
  2696. s%@libdir@%$libdir%g
  2697. s%@includedir@%$includedir%g
  2698. s%@oldincludedir@%$oldincludedir%g
  2699. s%@infodir@%$infodir%g
  2700. s%@mandir@%$mandir%g
  2701. s%@MAN_FLAGS@%$MAN_FLAGS%g
  2702. s%@CC@%$CC%g
  2703. s%@CPP@%$CPP%g
  2704. s%@TCL_THREADS@%$TCL_THREADS%g
  2705. s%@TCL_LIBS@%$TCL_LIBS%g
  2706. s%@MATH_LIBS@%$MATH_LIBS%g
  2707. s%@RANLIB@%$RANLIB%g
  2708. s%@AR@%$AR%g
  2709. s%@DL_LIBS@%$DL_LIBS%g
  2710. s%@DL_OBJS@%$DL_OBJS%g
  2711. s%@PLAT_OBJS@%$PLAT_OBJS%g
  2712. s%@PLAT_SRCS@%$PLAT_SRCS%g
  2713. s%@CFLAGS_DEBUG@%$CFLAGS_DEBUG%g
  2714. s%@CFLAGS_OPTIMIZE@%$CFLAGS_OPTIMIZE%g
  2715. s%@CFLAGS_WARNING@%$CFLAGS_WARNING%g
  2716. s%@LDFLAGS_DEBUG@%$LDFLAGS_DEBUG%g
  2717. s%@LDFLAGS_OPTIMIZE@%$LDFLAGS_OPTIMIZE%g
  2718. s%@CC_SEARCH_FLAGS@%$CC_SEARCH_FLAGS%g
  2719. s%@LD_SEARCH_FLAGS@%$LD_SEARCH_FLAGS%g
  2720. s%@STLIB_LD@%$STLIB_LD%g
  2721. s%@SHLIB_LD@%$SHLIB_LD%g
  2722. s%@TCL_SHLIB_LD_EXTRAS@%$TCL_SHLIB_LD_EXTRAS%g
  2723. s%@TK_SHLIB_LD_EXTRAS@%$TK_SHLIB_LD_EXTRAS%g
  2724. s%@SHLIB_LD_LIBS@%$SHLIB_LD_LIBS%g
  2725. s%@SHLIB_CFLAGS@%$SHLIB_CFLAGS%g
  2726. s%@SHLIB_SUFFIX@%$SHLIB_SUFFIX%g
  2727. s%@MAKE_LIB@%$MAKE_LIB%g
  2728. s%@MAKE_STUB_LIB@%$MAKE_STUB_LIB%g
  2729. s%@INSTALL_LIB@%$INSTALL_LIB%g
  2730. s%@INSTALL_STUB_LIB@%$INSTALL_STUB_LIB%g
  2731. s%@CFLAGS_DEFAULT@%$CFLAGS_DEFAULT%g
  2732. s%@LDFLAGS_DEFAULT@%$LDFLAGS_DEFAULT%g
  2733. s%@LIBOBJS@%$LIBOBJS%g
  2734. s%@DTRACE@%$DTRACE%g
  2735. s%@TCL_VERSION@%$TCL_VERSION%g
  2736. s%@TCL_MAJOR_VERSION@%$TCL_MAJOR_VERSION%g
  2737. s%@TCL_MINOR_VERSION@%$TCL_MINOR_VERSION%g
  2738. s%@TCL_PATCH_LEVEL@%$TCL_PATCH_LEVEL%g
  2739. s%@TCL_YEAR@%$TCL_YEAR%g
  2740. s%@TCL_LIB_FILE@%$TCL_LIB_FILE%g
  2741. s%@TCL_LIB_FLAG@%$TCL_LIB_FLAG%g
  2742. s%@TCL_LIB_SPEC@%$TCL_LIB_SPEC%g
  2743. s%@TCL_STUB_LIB_FILE@%$TCL_STUB_LIB_FILE%g
  2744. s%@TCL_STUB_LIB_FLAG@%$TCL_STUB_LIB_FLAG%g
  2745. s%@TCL_STUB_LIB_SPEC@%$TCL_STUB_LIB_SPEC%g
  2746. s%@TCL_STUB_LIB_PATH@%$TCL_STUB_LIB_PATH%g
  2747. s%@TCL_INCLUDE_SPEC@%$TCL_INCLUDE_SPEC%g
  2748. s%@TCL_BUILD_STUB_LIB_SPEC@%$TCL_BUILD_STUB_LIB_SPEC%g
  2749. s%@TCL_BUILD_STUB_LIB_PATH@%$TCL_BUILD_STUB_LIB_PATH%g
  2750. s%@TCL_SRC_DIR@%$TCL_SRC_DIR%g
  2751. s%@TCL_DBGX@%$TCL_DBGX%g
  2752. s%@CFG_TCL_SHARED_LIB_SUFFIX@%$CFG_TCL_SHARED_LIB_SUFFIX%g
  2753. s%@CFG_TCL_UNSHARED_LIB_SUFFIX@%$CFG_TCL_UNSHARED_LIB_SUFFIX%g
  2754. s%@CFG_TCL_EXPORT_FILE_SUFFIX@%$CFG_TCL_EXPORT_FILE_SUFFIX%g
  2755. s%@TCL_SHARED_BUILD@%$TCL_SHARED_BUILD%g
  2756. s%@LD_LIBRARY_PATH_VAR@%$LD_LIBRARY_PATH_VAR%g
  2757. s%@TCL_BUILD_LIB_SPEC@%$TCL_BUILD_LIB_SPEC%g
  2758. s%@TCL_NEEDS_EXP_FILE@%$TCL_NEEDS_EXP_FILE%g
  2759. s%@TCL_BUILD_EXP_FILE@%$TCL_BUILD_EXP_FILE%g
  2760. s%@TCL_EXP_FILE@%$TCL_EXP_FILE%g
  2761. s%@TCL_LIB_VERSIONS_OK@%$TCL_LIB_VERSIONS_OK%g
  2762. s%@TCL_SHARED_LIB_SUFFIX@%$TCL_SHARED_LIB_SUFFIX%g
  2763. s%@TCL_UNSHARED_LIB_SUFFIX@%$TCL_UNSHARED_LIB_SUFFIX%g
  2764. s%@TCL_HAS_LONGLONG@%$TCL_HAS_LONGLONG%g
  2765. s%@DTRACE_SRC@%$DTRACE_SRC%g
  2766. s%@DTRACE_HDR@%$DTRACE_HDR%g
  2767. s%@DTRACE_OBJ@%$DTRACE_OBJ%g
  2768. s%@BUILD_DLTEST@%$BUILD_DLTEST%g
  2769. s%@TCL_PACKAGE_PATH@%$TCL_PACKAGE_PATH%g
  2770. s%@TCL_LIBRARY@%$TCL_LIBRARY%g
  2771. s%@PRIVATE_INCLUDE_DIR@%$PRIVATE_INCLUDE_DIR%g
  2772. s%@HTML_DIR@%$HTML_DIR%g
  2773. s%@EXTRA_CC_SWITCHES@%$EXTRA_CC_SWITCHES%g
  2774. s%@EXTRA_APP_CC_SWITCHES@%$EXTRA_APP_CC_SWITCHES%g
  2775. s%@EXTRA_INSTALL@%$EXTRA_INSTALL%g
  2776. s%@EXTRA_INSTALL_BINARIES@%$EXTRA_INSTALL_BINARIES%g
  2777. s%@EXTRA_BUILD_HTML@%$EXTRA_BUILD_HTML%g
  2778. s%@EXTRA_TCLSH_LIBS@%$EXTRA_TCLSH_LIBS%g
  2779. CEOF
  2780. EOF
  2781. cat >> $CONFIG_STATUS <<EOF
  2782. # Split the substitutions into bite-sized pieces for seds with
  2783. # small command number limits, like on Digital OSF/1 and HP-UX.
  2784. ac_max_sed_cmds=90 # Maximum number of lines to put in a sed script.
  2785. ac_file=1 # Number of current file.
  2786. ac_beg=1 # First line for current file.
  2787. ac_end=$ac_max_sed_cmds # Line after last line for current file.
  2788. ac_more_lines=:
  2789. ac_sed_cmds=""
  2790. while $ac_more_lines; do
  2791.   if test $ac_beg -gt 1; then
  2792.     sed "1,${ac_beg}d; ${ac_end}q" conftest.subs > conftest.s$ac_file
  2793.   else
  2794.     sed "${ac_end}q" conftest.subs > conftest.s$ac_file
  2795.   fi
  2796.   if test ! -s conftest.s$ac_file; then
  2797.     ac_more_lines=false
  2798.     rm -f conftest.s$ac_file
  2799.   else
  2800.     if test -z "$ac_sed_cmds"; then
  2801.       ac_sed_cmds="sed -f conftest.s$ac_file"
  2802.     else
  2803.       ac_sed_cmds="$ac_sed_cmds | sed -f conftest.s$ac_file"
  2804.     fi
  2805.     ac_file=`expr $ac_file + 1`
  2806.     ac_beg=$ac_end
  2807.     ac_end=`expr $ac_end + $ac_max_sed_cmds`
  2808.   fi
  2809. done
  2810. if test -z "$ac_sed_cmds"; then
  2811.   ac_sed_cmds=cat
  2812. fi
  2813. EOF
  2814. cat >> $CONFIG_STATUS <<EOF
  2815. CONFIG_FILES=${CONFIG_FILES-"${tcl_config_files}"}
  2816. EOF
  2817. cat >> $CONFIG_STATUS <<EOF
  2818. for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
  2819.   # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
  2820.   case "$ac_file" in
  2821.   *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
  2822.        ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
  2823.   *) ac_file_in="${ac_file}.in" ;;
  2824.   esac
  2825.   # Adjust a relative srcdir, top_srcdir, and INSTALL for subdirectories.
  2826.   # Remove last slash and all that follows it.  Not all systems have dirname.
  2827.   ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
  2828.   if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
  2829.     # The file is in a subdirectory.
  2830.     test ! -d "$ac_dir" && mkdir "$ac_dir"
  2831.     ac_dir_suffix="/`echo $ac_dir|sed 's%^./%%'`"
  2832.     # A "../" for each directory in $ac_dir_suffix.
  2833.     ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
  2834.   else
  2835.     ac_dir_suffix= ac_dots=
  2836.   fi
  2837.   case "$ac_given_srcdir" in
  2838.   .)  srcdir=.
  2839.       if test -z "$ac_dots"; then top_srcdir=.
  2840.       else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
  2841.   /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
  2842.   *) # Relative path.
  2843.     srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
  2844.     top_srcdir="$ac_dots$ac_given_srcdir" ;;
  2845.   esac
  2846.   echo creating "$ac_file"
  2847.   rm -f "$ac_file"
  2848.   configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
  2849.   case "$ac_file" in
  2850.   *Makefile*) ac_comsub="1i\
  2851. # $configure_input" ;;
  2852.   *) ac_comsub= ;;
  2853.   esac
  2854.   ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
  2855.   sed -e "$ac_comsub
  2856. s%@configure_input@%$configure_input%g
  2857. s%@srcdir@%$srcdir%g
  2858. s%@top_srcdir@%$top_srcdir%g
  2859. " $ac_file_inputs | (eval "$ac_sed_cmds") > $ac_file
  2860. fi; done
  2861. rm -f conftest.s*
  2862. EOF
  2863. cat >> $CONFIG_STATUS <<EOF
  2864. VERSION=${TCL_VERSION} FRAMEWORK_BUILD=${FRAMEWORK_BUILD}
  2865. EOF
  2866. cat >> $CONFIG_STATUS <<EOF
  2867. test "$FRAMEWORK_BUILD" = "1" && n=Tcl &&
  2868. f=$n.framework && v=Versions/$VERSION &&
  2869. echo "creating $f" && rm -rf $f && mkdir -p $f/$v/Resources &&
  2870. ln -s $v/$n $v/Resources $f && ln -s ../../../$n $f/$v &&
  2871. ln -s ../../../../$n-Info.plist $f/$v/Resources/Info.plist &&
  2872. unset n f v
  2873.     
  2874. exit 0
  2875. EOF
  2876. chmod +x $CONFIG_STATUS
  2877. rm -fr confdefs* $ac_clean_files
  2878. test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1