From 9d463d106e0773295dc5bd223472ee3d3e45b418 Mon Sep 17 00:00:00 2001 From: rmax Date: Tue, 25 Jun 2002 15:20:44 +0000 Subject: * unix/tcl.m4: New macro SC_CONFIG_MANPAGES. * unix/configure.in: Added support for symlinks and compression * unix/Makefile.in: when installing the manpages. [Patch 518052] * unix/mkLinks.tcl: Default is still hardlinks and no compression. * unix/mkLinks: generated * unix/configure: * unix/README: Added documentation for the new features. --- ChangeLog | 10 + unix/Makefile.in | 12 +- unix/README | 6 +- unix/configure | 731 ++++++------ unix/configure.in | 7 +- unix/mkLinks | 3250 +++++++++++++++++++++++++++++++++-------------------- unix/mkLinks.tcl | 34 +- unix/tcl.m4 | 42 + 8 files changed, 2506 insertions(+), 1586 deletions(-) diff --git a/ChangeLog b/ChangeLog index 609d600..5a5cbd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2002-06-25 Reinhard Max + * unix/tcl.m4: New macro SC_CONFIG_MANPAGES. + * unix/configure.in: Added support for symlinks and compression + * unix/Makefile.in: when installing the manpages. [Patch 518052] + * unix/mkLinks.tcl: Default is still hardlinks and no compression. + + * unix/mkLinks: generated + * unix/configure: + + * unix/README: Added documentation for the new features. + * unix/tcl.m4 (SC_PATH_TCLCONFIG): Replaced ${exec_prefix}/lib by ${libdir}. diff --git a/unix/Makefile.in b/unix/Makefile.in index 0839b68..6611301 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.101 2002/06/21 22:23:21 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.102 2002/06/25 15:20:44 rmax Exp $ VERSION = @TCL_VERSION@ @@ -238,6 +238,10 @@ TCL_BUILDTIME_LIBRARY = @TCL_SRC_DIR@/library CC = @CC@ #CC = purify -best-effort @CC@ -DPURIFY +# Flags to be passed to mkLinks to control whether the manpages +# should be compressed and linked with softlinks +MKLINKS_FLAGS = @MKLINKS_FLAGS@ + #---------------------------------------------------------------- # The information below should be usable as is. The configure # script won't modify it and you shouldn't need to modify it @@ -665,7 +669,7 @@ install-doc: doc chmod 444 $(MAN1_INSTALL_DIR)/$$i; \ done; @echo "Cross-linking top-level (.1) docs"; - @$(UNIX_DIR)/mkLinks $(MAN1_INSTALL_DIR) + @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN1_INSTALL_DIR) @echo "Installing C API (.3) docs"; @cd $(TOP_DIR)/doc; for i in *.3; \ do \ @@ -675,7 +679,7 @@ install-doc: doc chmod 444 $(MAN3_INSTALL_DIR)/$$i; \ done; @echo "Cross-linking C API (.3) docs"; - @$(UNIX_DIR)/mkLinks $(MAN3_INSTALL_DIR) + @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN3_INSTALL_DIR) @echo "Installing command (.n) docs"; @cd $(TOP_DIR)/doc; for i in *.n; \ do \ @@ -685,7 +689,7 @@ install-doc: doc chmod 444 $(MANN_INSTALL_DIR)/$$i; \ done; @echo "Cross-linking command (.n) docs"; - @$(UNIX_DIR)/mkLinks $(MANN_INSTALL_DIR) + @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MANN_INSTALL_DIR) Makefile: $(UNIX_DIR)/Makefile.in $(DLTEST_DIR)/Makefile.in $(SHELL) config.status diff --git a/unix/README b/unix/README index db268cf..59738c6 100644 --- a/unix/README +++ b/unix/README @@ -1,7 +1,7 @@ Tcl UNIX README --------------- -RCS: @(#) $Id: README,v 1.21 2002/03/05 20:31:21 hobbs Exp $ +RCS: @(#) $Id: README,v 1.22 2002/06/25 15:20:44 rmax Exp $ This is the directory where you configure, compile, test, and install UNIX versions of Tcl. This directory also contains source files for Tcl @@ -73,6 +73,10 @@ How To Compile And Install Tcl: default on platforms where nl_langinfo is found. --disable-langinfo Specifically disables use of nl_langinfo. + --enable-man-symlinks Use symlinks for linking the manpages that + should be reachable under several names. + --enable-man-compression=PROG + Compress the manpages using PROG. Note: by default gcc will be used if it can be located on the PATH. if you want to use cc instead of gcc, set the CC environment variable diff --git a/unix/configure b/unix/configure index 77f5bd5..26d7233 100755 --- a/unix/configure +++ b/unix/configure @@ -12,6 +12,11 @@ ac_help= ac_default_prefix=/usr/local # Any additions from configure.in: ac_help="$ac_help + --enable-man-symlinks use symlinks for the manpages" +ac_help="$ac_help + --enable-man-compression=PROG + compress the manpages with PROG" +ac_help="$ac_help --enable-threads build with threads" ac_help="$ac_help --enable-langinfo use nl_langinfo if possible to determine @@ -558,6 +563,39 @@ eval libdir="$libdir" TCL_SRC_DIR=`cd $srcdir/..; pwd` #------------------------------------------------------------------------ +# Compress and/or soft link the manpages? +#------------------------------------------------------------------------ + + + echo $ac_n "checking whether to use symlinks for manpages""... $ac_c" 1>&6 +echo "configure:572: checking whether to use symlinks for manpages" >&5 + # Check whether --enable-man-symlinks or --disable-man-symlinks was given. +if test "${enable_man_symlinks+set}" = set; then + enableval="$enable_man_symlinks" + test "$enableval" != "no" && MKLINKS_FLAGS="$MKLINKS_FLAGS --symlinks" +else + enableval="no" +fi + + echo "$ac_t""$enableval" 1>&6 + + echo $ac_n "checking compression for manpages""... $ac_c" 1>&6 +echo "configure:584: checking compression for manpages" >&5 + # Check whether --enable-man-compression or --disable-man-compression was given. +if test "${enable_man_compression+set}" = set; then + enableval="$enable_man_compression" + test "$enableval" = "yes" && echo && { echo "configure: error: missing argument to --enable-man-compression" 1>&2; exit 1; } + test "$enableval" != "no" && MKLINKS_FLAGS="$MKLINKS_FLAGS --compress $enableval" +else + enableval="no" +fi + + echo "$ac_t""$enableval" 1>&6 + + + + +#------------------------------------------------------------------------ # Standard compiler checks #------------------------------------------------------------------------ @@ -570,7 +608,7 @@ fi # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:574: checking for $ac_word" >&5 +echo "configure:612: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -600,7 +638,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:604: checking for $ac_word" >&5 +echo "configure:642: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -651,7 +689,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:655: checking for $ac_word" >&5 +echo "configure:693: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -683,7 +721,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:687: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:725: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -694,12 +732,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 698 "configure" +#line 736 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:703: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:741: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -725,12 +763,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:729: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:767: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:734: checking whether we are using GNU C" >&5 +echo "configure:772: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -739,7 +777,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:743: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:781: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -758,7 +796,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:762: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:800: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -792,7 +830,7 @@ fi # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:796: checking for $ac_word" >&5 +echo "configure:834: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -820,7 +858,7 @@ else fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:824: checking how to run the C preprocessor" >&5 +echo "configure:862: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -835,13 +873,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:845: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:883: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -852,13 +890,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:862: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:900: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -869,13 +907,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:879: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:917: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -903,17 +941,17 @@ for ac_hdr in unistd.h limits.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:907: checking for $ac_hdr" >&5 +echo "configure:945: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:917: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:955: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -946,7 +984,7 @@ done echo $ac_n "checking for building with threads""... $ac_c" 1>&6 -echo "configure:950: checking for building with threads" >&5 +echo "configure:988: checking for building with threads" >&5 # Check whether --enable-threads or --disable-threads was given. if test "${enable_threads+set}" = set; then enableval="$enable_threads" @@ -978,7 +1016,7 @@ EOF EOF echo $ac_n "checking for pthread_mutex_init in -lpthread""... $ac_c" 1>&6 -echo "configure:982: checking for pthread_mutex_init in -lpthread" >&5 +echo "configure:1020: checking for pthread_mutex_init in -lpthread" >&5 ac_lib_var=`echo pthread'_'pthread_mutex_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -986,7 +1024,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthread $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1039: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1025,7 +1063,7 @@ fi # pthread.h, but that will work with libpthread really doesn't # exist, like AIX 4.2. [Bug: 4359] echo $ac_n "checking for __pthread_mutex_init in -lpthread""... $ac_c" 1>&6 -echo "configure:1029: checking for __pthread_mutex_init in -lpthread" >&5 +echo "configure:1067: checking for __pthread_mutex_init in -lpthread" >&5 ac_lib_var=`echo pthread'_'__pthread_mutex_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1033,7 +1071,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthread $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1086: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1072,7 +1110,7 @@ fi THREADS_LIBS=" -lpthread" else echo $ac_n "checking for pthread_mutex_init in -lpthreads""... $ac_c" 1>&6 -echo "configure:1076: checking for pthread_mutex_init in -lpthreads" >&5 +echo "configure:1114: checking for pthread_mutex_init in -lpthreads" >&5 ac_lib_var=`echo pthreads'_'pthread_mutex_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1080,7 +1118,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthreads $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1117,7 +1155,7 @@ fi THREADS_LIBS=" -lpthreads" else echo $ac_n "checking for pthread_mutex_init in -lc""... $ac_c" 1>&6 -echo "configure:1121: checking for pthread_mutex_init in -lc" >&5 +echo "configure:1159: checking for pthread_mutex_init in -lc" >&5 ac_lib_var=`echo c'_'pthread_mutex_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1125,7 +1163,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1178: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1159,7 +1197,7 @@ fi if test "$tcl_ok" = "no"; then echo $ac_n "checking for pthread_mutex_init in -lc_r""... $ac_c" 1>&6 -echo "configure:1163: checking for pthread_mutex_init in -lc_r" >&5 +echo "configure:1201: checking for pthread_mutex_init in -lc_r" >&5 ac_lib_var=`echo c_r'_'pthread_mutex_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1167,7 +1205,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc_r $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1220: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1216,12 +1254,12 @@ fi for ac_func in pthread_attr_setstacksize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1220: checking for $ac_func" >&5 +echo "configure:1258: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1286: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1271,12 +1309,12 @@ done for ac_func in readdir_r do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1275: checking for $ac_func" >&5 +echo "configure:1313: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1341: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1338,18 +1376,18 @@ done if test -z "$no_pipe"; then if test -n "$GCC"; then echo $ac_n "checking if the compiler understands -pipe""... $ac_c" 1>&6 -echo "configure:1342: checking if the compiler understands -pipe" >&5 +echo "configure:1380: checking if the compiler understands -pipe" >&5 OLDCC="$CC" CC="$CC -pipe" cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1391: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -1369,21 +1407,21 @@ fi echo $ac_n "checking for required early compiler flags""... $ac_c" 1>&6 -echo "configure:1373: checking for required early compiler flags" >&5 +echo "configure:1411: checking for required early compiler flags" >&5 tcl_flags="" if eval "test \"`echo '$''{'tcl_cv_flag__isoc99_source'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { char *p = (char *)strtoll; char *q = (char *)strtoull; ; return 0; } EOF -if { (eval echo configure:1387: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1425: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__isoc99_source=no else @@ -1391,7 +1429,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext < @@ -1399,7 +1437,7 @@ int main() { char *p = (char *)strtoll; char *q = (char *)strtoull; ; return 0; } EOF -if { (eval echo configure:1403: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1441: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__isoc99_source=yes else @@ -1425,14 +1463,14 @@ EOF echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { struct stat64 buf; int i = stat64("/", &buf); ; return 0; } EOF -if { (eval echo configure:1436: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1474: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__largefile64_source=no else @@ -1440,7 +1478,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext < @@ -1448,7 +1486,7 @@ int main() { struct stat64 buf; int i = stat64("/", &buf); ; return 0; } EOF -if { (eval echo configure:1452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1490: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__largefile64_source=yes else @@ -1477,20 +1515,20 @@ EOF echo $ac_n "checking for 64-bit integer type""... $ac_c" 1>&6 -echo "configure:1481: checking for 64-bit integer type" >&5 +echo "configure:1519: checking for 64-bit integer type" >&5 if eval "test \"`echo '$''{'tcl_cv_type_64bit'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1532: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_64bit=__int64 else @@ -1502,13 +1540,13 @@ else { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext < int main() {exit(!(sizeof(long long) > sizeof(long)));} EOF -if { (eval echo configure:1512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1550: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_type_64bit="long long" else @@ -1533,13 +1571,13 @@ EOF # Now check for auxiliary declarations echo $ac_n "checking for struct dirent64""... $ac_c" 1>&6 -echo "configure:1537: checking for struct dirent64" >&5 +echo "configure:1575: checking for struct dirent64" >&5 if eval "test \"`echo '$''{'tcl_cv_struct_dirent64'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1547,7 +1585,7 @@ int main() { struct dirent64 p; ; return 0; } EOF -if { (eval echo configure:1551: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1589: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_struct_dirent64=yes else @@ -1568,13 +1606,13 @@ EOF echo "$ac_t""${tcl_cv_struct_dirent64}" 1>&6 echo $ac_n "checking for struct stat64""... $ac_c" 1>&6 -echo "configure:1572: checking for struct stat64" >&5 +echo "configure:1610: checking for struct stat64" >&5 if eval "test \"`echo '$''{'tcl_cv_struct_stat64'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -1582,7 +1620,7 @@ struct stat64 p; ; return 0; } EOF -if { (eval echo configure:1586: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1624: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_struct_stat64=yes else @@ -1603,13 +1641,13 @@ EOF echo "$ac_t""${tcl_cv_struct_stat64}" 1>&6 echo $ac_n "checking for off64_t""... $ac_c" 1>&6 -echo "configure:1607: checking for off64_t" >&5 +echo "configure:1645: checking for off64_t" >&5 if eval "test \"`echo '$''{'tcl_cv_type_off64_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -1617,7 +1655,7 @@ off64_t offset; ; return 0; } EOF -if { (eval echo configure:1621: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1659: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_off64_t=yes else @@ -1644,14 +1682,14 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:1648: checking whether byte ordering is bigendian" >&5 +echo "configure:1686: checking whether byte ordering is bigendian" >&5 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat > conftest.$ac_ext < #include @@ -1662,11 +1700,11 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:1666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1704: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* # It does; now see whether it defined to BIG_ENDIAN or not. cat > conftest.$ac_ext < #include @@ -1677,7 +1715,7 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:1681: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1719: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -1697,7 +1735,7 @@ if test "$cross_compiling" = yes; then { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; } else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1752: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_bigendian=no else @@ -1743,12 +1781,12 @@ fi for ac_func in getcwd do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1747: checking for $ac_func" >&5 +echo "configure:1785: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1805,12 +1843,12 @@ done for ac_func in opendir strstr do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1809: checking for $ac_func" >&5 +echo "configure:1847: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1875: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1863,12 +1901,12 @@ done for ac_func in strtol strtoll strtoull tmpnam waitpid do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1867: checking for $ac_func" >&5 +echo "configure:1905: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1933: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -1918,12 +1956,12 @@ done echo $ac_n "checking for strerror""... $ac_c" 1>&6 -echo "configure:1922: checking for strerror" >&5 +echo "configure:1960: checking for strerror" >&5 if eval "test \"`echo '$''{'ac_cv_func_strerror'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1988: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strerror=yes" else @@ -1970,12 +2008,12 @@ EOF fi echo $ac_n "checking for getwd""... $ac_c" 1>&6 -echo "configure:1974: checking for getwd" >&5 +echo "configure:2012: checking for getwd" >&5 if eval "test \"`echo '$''{'ac_cv_func_getwd'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2040: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getwd=yes" else @@ -2022,12 +2060,12 @@ EOF fi echo $ac_n "checking for wait3""... $ac_c" 1>&6 -echo "configure:2026: checking for wait3" >&5 +echo "configure:2064: checking for wait3" >&5 if eval "test \"`echo '$''{'ac_cv_func_wait3'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_wait3=yes" else @@ -2074,12 +2112,12 @@ EOF fi echo $ac_n "checking for uname""... $ac_c" 1>&6 -echo "configure:2078: checking for uname" >&5 +echo "configure:2116: checking for uname" >&5 if eval "test \"`echo '$''{'ac_cv_func_uname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2144: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_uname=yes" else @@ -2126,12 +2164,12 @@ EOF fi echo $ac_n "checking for realpath""... $ac_c" 1>&6 -echo "configure:2130: checking for realpath" >&5 +echo "configure:2168: checking for realpath" >&5 if eval "test \"`echo '$''{'ac_cv_func_realpath'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_realpath=yes" else @@ -2189,9 +2227,9 @@ fi echo $ac_n "checking dirent.h""... $ac_c" 1>&6 -echo "configure:2193: checking dirent.h" >&5 +echo "configure:2231: checking dirent.h" >&5 cat > conftest.$ac_ext < #include @@ -2217,7 +2255,7 @@ closedir(d); ; return 0; } EOF -if { (eval echo configure:2221: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2259: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* tcl_ok=yes else @@ -2238,17 +2276,17 @@ EOF echo "$ac_t""$tcl_ok" 1>&6 ac_safe=`echo "errno.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for errno.h""... $ac_c" 1>&6 -echo "configure:2242: checking for errno.h" >&5 +echo "configure:2280: checking for errno.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2252: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2290: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2275,17 +2313,17 @@ fi ac_safe=`echo "float.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for float.h""... $ac_c" 1>&6 -echo "configure:2279: checking for float.h" >&5 +echo "configure:2317: checking for float.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2289: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2327: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2312,17 +2350,17 @@ fi ac_safe=`echo "values.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for values.h""... $ac_c" 1>&6 -echo "configure:2316: checking for values.h" >&5 +echo "configure:2354: checking for values.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2326: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2364: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2349,17 +2387,17 @@ fi ac_safe=`echo "limits.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for limits.h""... $ac_c" 1>&6 -echo "configure:2353: checking for limits.h" >&5 +echo "configure:2391: checking for limits.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2363: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2401: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2386,17 +2424,17 @@ fi ac_safe=`echo "stdlib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stdlib.h""... $ac_c" 1>&6 -echo "configure:2390: checking for stdlib.h" >&5 +echo "configure:2428: checking for stdlib.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2400: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2438: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2419,7 +2457,7 @@ tcl_ok=0 fi cat > conftest.$ac_ext < EOF @@ -2433,7 +2471,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < EOF @@ -2447,7 +2485,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < EOF @@ -2468,17 +2506,17 @@ EOF fi ac_safe=`echo "string.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for string.h""... $ac_c" 1>&6 -echo "configure:2472: checking for string.h" >&5 +echo "configure:2510: checking for string.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2482: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2520: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2501,7 +2539,7 @@ tcl_ok=0 fi cat > conftest.$ac_ext < EOF @@ -2515,7 +2553,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < EOF @@ -2541,17 +2579,17 @@ EOF ac_safe=`echo "sys/wait.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/wait.h""... $ac_c" 1>&6 -echo "configure:2545: checking for sys/wait.h" >&5 +echo "configure:2583: checking for sys/wait.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2555: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2593: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2578,17 +2616,17 @@ fi ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:2582: checking for dlfcn.h" >&5 +echo "configure:2620: checking for dlfcn.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2592: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2630: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2620,17 +2658,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2624: checking for $ac_hdr" >&5 +echo "configure:2662: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2634: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2672: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2670,17 +2708,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2674: checking for $ac_hdr" >&5 +echo "configure:2712: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2684: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2722: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2707,7 +2745,7 @@ fi done echo $ac_n "checking termios vs. termio vs. sgtty""... $ac_c" 1>&6 -echo "configure:2711: checking termios vs. termio vs. sgtty" >&5 +echo "configure:2749: checking termios vs. termio vs. sgtty" >&5 if eval "test \"`echo '$''{'tcl_cv_api_serial'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2716,7 +2754,7 @@ else tcl_cv_api_serial=no else cat > conftest.$ac_ext < @@ -2731,7 +2769,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2773: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=termios else @@ -2748,7 +2786,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext < @@ -2762,7 +2800,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2766: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=termio else @@ -2780,7 +2818,7 @@ fi tcl_cv_api_serial=none else cat > conftest.$ac_ext < @@ -2795,7 +2833,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2837: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=sgtty else @@ -2813,7 +2851,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext < @@ -2830,7 +2868,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2834: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2872: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=termios else @@ -2848,7 +2886,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext < @@ -2864,7 +2902,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2906: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=termio else @@ -2882,7 +2920,7 @@ fi tcl_cv_api_serial=none else cat > conftest.$ac_ext < @@ -2899,7 +2937,7 @@ int main() { return 1; } EOF -if { (eval echo configure:2903: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2941: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_api_serial=sgtty else @@ -2942,19 +2980,19 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking for fd_set in sys/types""... $ac_c" 1>&6 -echo "configure:2946: checking for fd_set in sys/types" >&5 +echo "configure:2984: checking for fd_set in sys/types" >&5 if eval "test \"`echo '$''{'tcl_cv_type_fd_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { fd_set readMask, writeMask; ; return 0; } EOF -if { (eval echo configure:2958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2996: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_fd_set=yes else @@ -2970,12 +3008,12 @@ echo "$ac_t""$tcl_cv_type_fd_set" 1>&6 tk_ok=$tcl_cv_type_fd_set if test $tcl_cv_type_fd_set = no; then echo $ac_n "checking for fd_mask in sys/select""... $ac_c" 1>&6 -echo "configure:2974: checking for fd_mask in sys/select" >&5 +echo "configure:3012: checking for fd_mask in sys/select" >&5 if eval "test \"`echo '$''{'tcl_cv_grep_fd_mask'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF @@ -3012,12 +3050,12 @@ fi #------------------------------------------------------------------------------ echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:3016: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:3054: checking whether struct tm is in sys/time.h or time.h" >&5 if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3025,7 +3063,7 @@ int main() { struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:3029: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -3050,17 +3088,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3054: checking for $ac_hdr" >&5 +echo "configure:3092: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3064: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3102: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3087,12 +3125,12 @@ fi done echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:3091: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:3129: checking whether time.h and sys/time.h may both be included" >&5 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3101,7 +3139,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:3105: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3143: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -3122,12 +3160,12 @@ EOF fi echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6 -echo "configure:3126: checking for tm_zone in struct tm" >&5 +echo "configure:3164: checking for tm_zone in struct tm" >&5 if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include <$ac_cv_struct_tm> @@ -3135,7 +3173,7 @@ int main() { struct tm tm; tm.tm_zone; ; return 0; } EOF -if { (eval echo configure:3139: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3177: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm_zone=yes else @@ -3155,12 +3193,12 @@ EOF else echo $ac_n "checking for tzname""... $ac_c" 1>&6 -echo "configure:3159: checking for tzname" >&5 +echo "configure:3197: checking for tzname" >&5 if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #ifndef tzname /* For SGI. */ @@ -3170,7 +3208,7 @@ int main() { atoi(*tzname); ; return 0; } EOF -if { (eval echo configure:3174: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3212: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_var_tzname=yes else @@ -3195,12 +3233,12 @@ fi for ac_func in gmtime_r localtime_r do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3199: checking for $ac_func" >&5 +echo "configure:3237: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3249,19 +3287,19 @@ done echo $ac_n "checking tm_tzadj in struct tm""... $ac_c" 1>&6 -echo "configure:3253: checking tm_tzadj in struct tm" >&5 +echo "configure:3291: checking tm_tzadj in struct tm" >&5 if eval "test \"`echo '$''{'tcl_cv_member_tm_tzadj'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { struct tm tm; tm.tm_tzadj; ; return 0; } EOF -if { (eval echo configure:3265: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3303: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_member_tm_tzadj=yes else @@ -3282,19 +3320,19 @@ EOF fi echo $ac_n "checking tm_gmtoff in struct tm""... $ac_c" 1>&6 -echo "configure:3286: checking tm_gmtoff in struct tm" >&5 +echo "configure:3324: checking tm_gmtoff in struct tm" >&5 if eval "test \"`echo '$''{'tcl_cv_member_tm_gmtoff'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { struct tm tm; tm.tm_gmtoff; ; return 0; } EOF -if { (eval echo configure:3298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3336: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_member_tm_gmtoff=yes else @@ -3319,12 +3357,12 @@ EOF # (like convex) have timezone functions, etc. # echo $ac_n "checking long timezone variable""... $ac_c" 1>&6 -echo "configure:3323: checking long timezone variable" >&5 +echo "configure:3361: checking long timezone variable" >&5 if eval "test \"`echo '$''{'tcl_cv_var_timezone'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -3333,7 +3371,7 @@ extern long timezone; exit (0); ; return 0; } EOF -if { (eval echo configure:3337: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3375: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_timezone_long=yes else @@ -3356,12 +3394,12 @@ EOF # On some systems (eg IRIX 6.2), timezone is a time_t and not a long. # echo $ac_n "checking time_t timezone variable""... $ac_c" 1>&6 -echo "configure:3360: checking time_t timezone variable" >&5 +echo "configure:3398: checking time_t timezone variable" >&5 if eval "test \"`echo '$''{'tcl_cv_timezone_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -3370,7 +3408,7 @@ extern time_t timezone; exit (0); ; return 0; } EOF -if { (eval echo configure:3374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3412: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_timezone_time=yes else @@ -3397,12 +3435,12 @@ EOF # in struct stat. But we might be able to use fstatfs instead. #-------------------------------------------------------------------- echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6 -echo "configure:3401: checking for st_blksize in struct stat" >&5 +echo "configure:3439: checking for st_blksize in struct stat" >&5 if eval "test \"`echo '$''{'ac_cv_struct_st_blksize'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3410,7 +3448,7 @@ int main() { struct stat s; s.st_blksize; ; return 0; } EOF -if { (eval echo configure:3414: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_st_blksize=yes else @@ -3431,12 +3469,12 @@ EOF fi echo $ac_n "checking for fstatfs""... $ac_c" 1>&6 -echo "configure:3435: checking for fstatfs" >&5 +echo "configure:3473: checking for fstatfs" >&5 if eval "test \"`echo '$''{'ac_cv_func_fstatfs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_fstatfs=yes" else @@ -3488,7 +3526,7 @@ fi # data, this checks it and add memcmp.o to LIBOBJS if needed #-------------------------------------------------------------------- echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&6 -echo "configure:3492: checking for 8-bit clean memcmp" >&5 +echo "configure:3530: checking for 8-bit clean memcmp" >&5 if eval "test \"`echo '$''{'ac_cv_func_memcmp_clean'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3496,7 +3534,7 @@ else ac_cv_func_memcmp_clean=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3548: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_memcmp_clean=yes else @@ -3530,12 +3568,12 @@ test $ac_cv_func_memcmp_clean = no && LIBOBJS="$LIBOBJS memcmp.${ac_objext}" # {The replacement define is in compat/string.h} #-------------------------------------------------------------------- echo $ac_n "checking for memmove""... $ac_c" 1>&6 -echo "configure:3534: checking for memmove" >&5 +echo "configure:3572: checking for memmove" >&5 if eval "test \"`echo '$''{'ac_cv_func_memmove'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3600: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_memmove=yes" else @@ -3591,12 +3629,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking proper strstr implementation""... $ac_c" 1>&6 -echo "configure:3595: checking proper strstr implementation" >&5 +echo "configure:3633: checking proper strstr implementation" >&5 if test "$cross_compiling" = yes; then tcl_ok=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3648: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_ok=yes else @@ -3632,12 +3670,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strtoul""... $ac_c" 1>&6 -echo "configure:3636: checking for strtoul" >&5 +echo "configure:3674: checking for strtoul" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtoul'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtoul=yes" else @@ -3684,7 +3722,7 @@ if test "$cross_compiling" = yes; then tcl_ok=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3742: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -3723,12 +3761,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strtod""... $ac_c" 1>&6 -echo "configure:3727: checking for strtod" >&5 +echo "configure:3765: checking for strtod" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtod'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3793: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtod=yes" else @@ -3775,7 +3813,7 @@ if test "$cross_compiling" = yes; then tcl_ok=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3833: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -3817,12 +3855,12 @@ fi echo $ac_n "checking for strtod""... $ac_c" 1>&6 -echo "configure:3821: checking for strtod" >&5 +echo "configure:3859: checking for strtod" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtod'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtod=yes" else @@ -3867,12 +3905,12 @@ fi if test "$tcl_strtod" = 1; then echo $ac_n "checking for Solaris2.4/Tru64 strtod bugs""... $ac_c" 1>&6 -echo "configure:3871: checking for Solaris2.4/Tru64 strtod bugs" >&5 +echo "configure:3909: checking for Solaris2.4/Tru64 strtod bugs" >&5 if test "$cross_compiling" = yes; then tcl_ok=0 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3934: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_ok=1 else @@ -3923,12 +3961,12 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:3927: checking for ANSI C header files" >&5 +echo "configure:3965: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -3936,7 +3974,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3940: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3978: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3953,7 +3991,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3971,7 +4009,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -3992,7 +4030,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -4003,7 +4041,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:4007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -4027,12 +4065,12 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:4031: checking for mode_t" >&5 +echo "configure:4069: checking for mode_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -4060,12 +4098,12 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:4064: checking for pid_t" >&5 +echo "configure:4102: checking for pid_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -4093,12 +4131,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:4097: checking for size_t" >&5 +echo "configure:4135: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -4126,12 +4164,12 @@ EOF fi echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:4130: checking for uid_t in sys/types.h" >&5 +echo "configure:4168: checking for uid_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF @@ -4168,12 +4206,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for opendir""... $ac_c" 1>&6 -echo "configure:4172: checking for opendir" >&5 +echo "configure:4210: checking for opendir" >&5 if eval "test \"`echo '$''{'ac_cv_func_opendir'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4238: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_opendir=yes" else @@ -4229,12 +4267,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking union wait""... $ac_c" 1>&6 -echo "configure:4233: checking union wait" >&5 +echo "configure:4271: checking union wait" >&5 if eval "test \"`echo '$''{'tcl_cv_union_wait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -4246,7 +4284,7 @@ WIFEXITED(x); /* Generates compiler error if WIFEXITED ; return 0; } EOF -if { (eval echo configure:4250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4288: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* tcl_cv_union_wait=yes else @@ -4273,12 +4311,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strncasecmp""... $ac_c" 1>&6 -echo "configure:4277: checking for strncasecmp" >&5 +echo "configure:4315: checking for strncasecmp" >&5 if eval "test \"`echo '$''{'ac_cv_func_strncasecmp'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strncasecmp=yes" else @@ -4323,7 +4361,7 @@ fi if test "$tcl_ok" = 0; then echo $ac_n "checking for strncasecmp in -lsocket""... $ac_c" 1>&6 -echo "configure:4327: checking for strncasecmp in -lsocket" >&5 +echo "configure:4365: checking for strncasecmp in -lsocket" >&5 ac_lib_var=`echo socket'_'strncasecmp | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4331,7 +4369,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4384: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4366,7 +4404,7 @@ fi fi if test "$tcl_ok" = 0; then echo $ac_n "checking for strncasecmp in -linet""... $ac_c" 1>&6 -echo "configure:4370: checking for strncasecmp in -linet" >&5 +echo "configure:4408: checking for strncasecmp in -linet" >&5 ac_lib_var=`echo inet'_'strncasecmp | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4374,7 +4412,7 @@ else ac_save_LIBS="$LIBS" LIBS="-linet $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4423,12 +4461,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for BSDgettimeofday""... $ac_c" 1>&6 -echo "configure:4427: checking for BSDgettimeofday" >&5 +echo "configure:4465: checking for BSDgettimeofday" >&5 if eval "test \"`echo '$''{'ac_cv_func_BSDgettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4493: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_BSDgettimeofday=yes" else @@ -4473,12 +4511,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gettimeofday""... $ac_c" 1>&6 -echo "configure:4477: checking for gettimeofday" >&5 +echo "configure:4515: checking for gettimeofday" >&5 if eval "test \"`echo '$''{'ac_cv_func_gettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gettimeofday=yes" else @@ -4528,12 +4566,12 @@ fi fi echo $ac_n "checking for gettimeofday declaration""... $ac_c" 1>&6 -echo "configure:4532: checking for gettimeofday declaration" >&5 +echo "configure:4570: checking for gettimeofday declaration" >&5 if eval "test \"`echo '$''{'tcl_cv_grep_gettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF @@ -4564,14 +4602,14 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking whether char is unsigned""... $ac_c" 1>&6 -echo "configure:4568: checking whether char is unsigned" >&5 +echo "configure:4606: checking whether char is unsigned" >&5 if eval "test \"`echo '$''{'ac_cv_c_char_unsigned'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$GCC" = yes; then # GCC predefines this symbol on systems where it applies. cat > conftest.$ac_ext <&2; exit 1; } else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_char_unsigned=yes else @@ -4627,12 +4665,12 @@ EOF fi echo $ac_n "checking signed char declarations""... $ac_c" 1>&6 -echo "configure:4631: checking signed char declarations" >&5 +echo "configure:4669: checking signed char declarations" >&5 if eval "test \"`echo '$''{'tcl_cv_char_signed'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_char_signed=yes else @@ -4681,17 +4719,17 @@ fi if test "$langinfo_ok" = "yes"; then ac_safe=`echo "langinfo.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for langinfo.h""... $ac_c" 1>&6 -echo "configure:4685: checking for langinfo.h" >&5 +echo "configure:4723: checking for langinfo.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4695: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4733: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4716,17 +4754,17 @@ fi fi fi echo $ac_n "checking whether to use nl_langinfo""... $ac_c" 1>&6 -echo "configure:4720: checking whether to use nl_langinfo" >&5 +echo "configure:4758: checking whether to use nl_langinfo" >&5 if test "$langinfo_ok" = "yes"; then cat > conftest.$ac_ext < int main() { nl_langinfo(CODESET); ; return 0; } EOF -if { (eval echo configure:4730: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* langinfo_ok=yes else @@ -4762,12 +4800,12 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking for sin""... $ac_c" 1>&6 -echo "configure:4766: checking for sin" >&5 +echo "configure:4804: checking for sin" >&5 if eval "test \"`echo '$''{'ac_cv_func_sin'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4832: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sin=yes" else @@ -4811,7 +4849,7 @@ MATH_LIBS="-lm" fi echo $ac_n "checking for main in -lieee""... $ac_c" 1>&6 -echo "configure:4815: checking for main in -lieee" >&5 +echo "configure:4853: checking for main in -lieee" >&5 ac_lib_var=`echo ieee'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4819,14 +4857,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lieee $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4853,7 +4891,7 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for main in -linet""... $ac_c" 1>&6 -echo "configure:4857: checking for main in -linet" >&5 +echo "configure:4895: checking for main in -linet" >&5 ac_lib_var=`echo inet'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4861,14 +4899,14 @@ else ac_save_LIBS="$LIBS" LIBS="-linet $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4910: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -4890,17 +4928,17 @@ fi ac_safe=`echo "net/errno.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for net/errno.h""... $ac_c" 1>&6 -echo "configure:4894: checking for net/errno.h" >&5 +echo "configure:4932: checking for net/errno.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4904: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4942: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4945,12 +4983,12 @@ fi tcl_checkBoth=0 echo $ac_n "checking for connect""... $ac_c" 1>&6 -echo "configure:4949: checking for connect" >&5 +echo "configure:4987: checking for connect" >&5 if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_connect=yes" else @@ -4995,12 +5033,12 @@ fi if test "$tcl_checkSocket" = 1; then echo $ac_n "checking for setsockopt""... $ac_c" 1>&6 -echo "configure:4999: checking for setsockopt" >&5 +echo "configure:5037: checking for setsockopt" >&5 if eval "test \"`echo '$''{'ac_cv_func_setsockopt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5065: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_setsockopt=yes" else @@ -5041,7 +5079,7 @@ if eval "test \"`echo '$ac_cv_func_'setsockopt`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for setsockopt in -lsocket""... $ac_c" 1>&6 -echo "configure:5045: checking for setsockopt in -lsocket" >&5 +echo "configure:5083: checking for setsockopt in -lsocket" >&5 ac_lib_var=`echo socket'_'setsockopt | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5049,7 +5087,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5102: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5088,12 +5126,12 @@ fi tk_oldLibs=$LIBS LIBS="$LIBS -lsocket -lnsl" echo $ac_n "checking for accept""... $ac_c" 1>&6 -echo "configure:5092: checking for accept" >&5 +echo "configure:5130: checking for accept" >&5 if eval "test \"`echo '$''{'ac_cv_func_accept'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5158: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_accept=yes" else @@ -5138,12 +5176,12 @@ fi fi echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 -echo "configure:5142: checking for gethostbyname" >&5 +echo "configure:5180: checking for gethostbyname" >&5 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5208: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyname=yes" else @@ -5184,7 +5222,7 @@ if eval "test \"`echo '$ac_cv_func_'gethostbyname`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 -echo "configure:5188: checking for gethostbyname in -lnsl" >&5 +echo "configure:5226: checking for gethostbyname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5192,7 +5230,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5245: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5240,7 +5278,7 @@ LIBS="$LIBS$THREADS_LIBS" echo $ac_n "checking how to build libraries""... $ac_c" 1>&6 -echo "configure:5244: checking how to build libraries" >&5 +echo "configure:5282: checking how to build libraries" >&5 # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then enableval="$enable_shared" @@ -5281,7 +5319,7 @@ EOF # Step 0.a: Enable 64 bit support? echo $ac_n "checking if 64bit support is requested""... $ac_c" 1>&6 -echo "configure:5285: checking if 64bit support is requested" >&5 +echo "configure:5323: checking if 64bit support is requested" >&5 # Check whether --enable-64bit or --disable-64bit was given. if test "${enable_64bit+set}" = set; then enableval="$enable_64bit" @@ -5301,7 +5339,7 @@ fi # Step 0.b: Enable Solaris 64 bit VIS support? echo $ac_n "checking if 64bit Sparc VIS support is requested""... $ac_c" 1>&6 -echo "configure:5305: checking if 64bit Sparc VIS support is requested" >&5 +echo "configure:5343: checking if 64bit Sparc VIS support is requested" >&5 # Check whether --enable-64bit-vis or --disable-64bit-vis was given. if test "${enable_64bit_vis+set}" = set; then enableval="$enable_64bit_vis" @@ -5325,7 +5363,7 @@ fi # there are a few systems, like Next, where this doesn't work. echo $ac_n "checking system version (for dynamic loading)""... $ac_c" 1>&6 -echo "configure:5329: checking system version (for dynamic loading)" >&5 +echo "configure:5367: checking system version (for dynamic loading)" >&5 if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else @@ -5351,7 +5389,7 @@ echo "configure:5329: checking system version (for dynamic loading)" >&5 # Linux can use either -ldl or -ldld for dynamic loading. echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 -echo "configure:5355: checking for dlopen in -ldl" >&5 +echo "configure:5393: checking for dlopen in -ldl" >&5 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5359,7 +5397,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5414,7 +5452,7 @@ fi # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5418: checking for $ac_word" >&5 +echo "configure:5456: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5520,7 +5558,7 @@ fi # known GMT value. echo $ac_n "checking for gettimeofday in -lbsd""... $ac_c" 1>&6 -echo "configure:5524: checking for gettimeofday in -lbsd" >&5 +echo "configure:5562: checking for gettimeofday in -lbsd" >&5 ac_lib_var=`echo bsd'_'gettimeofday | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5528,7 +5566,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lbsd $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5581: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5618,7 +5656,7 @@ EOF SHLIB_SUFFIX=".sl" echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 -echo "configure:5622: checking for shl_load in -ldld" >&5 +echo "configure:5660: checking for shl_load in -ldld" >&5 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5626,7 +5664,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5682,7 +5720,7 @@ fi HP-UX-*.08.*|HP-UX-*.09.*|HP-UX-*.10.*) SHLIB_SUFFIX=".sl" echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 -echo "configure:5686: checking for shl_load in -ldld" >&5 +echo "configure:5724: checking for shl_load in -ldld" >&5 ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5690,7 +5728,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5808,17 +5846,17 @@ fi else ac_safe=`echo "dld.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dld.h""... $ac_c" 1>&6 -echo "configure:5812: checking for dld.h" >&5 +echo "configure:5850: checking for dld.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5822: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5860: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5875,17 +5913,17 @@ fi else ac_safe=`echo "dld.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dld.h""... $ac_c" 1>&6 -echo "configure:5879: checking for dld.h" >&5 +echo "configure:5917: checking for dld.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5889: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5927: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5940,17 +5978,17 @@ fi # Not available on all versions: check for include file. ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:5944: checking for dlfcn.h" >&5 +echo "configure:5982: checking for dlfcn.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5954: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5992: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5977,9 +6015,9 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then LDFLAGS="" LD_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' echo $ac_n "checking for ELF""... $ac_c" 1>&6 -echo "configure:5981: checking for ELF" >&5 +echo "configure:6019: checking for ELF" >&5 cat > conftest.$ac_ext <&6 -echo "configure:6314: checking for ld accepts -Bexport flag" >&5 +echo "configure:6352: checking for ld accepts -Bexport flag" >&5 LDFLAGS="${LDFLAGS} -Wl,-Bexport" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6362: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* found=yes else @@ -6366,9 +6404,9 @@ rm -f conftest* if test "x$DL_OBJS" = "xtclLoadAout.o" ; then echo $ac_n "checking sys/exec.h""... $ac_c" 1>&6 -echo "configure:6370: checking sys/exec.h" >&5 +echo "configure:6408: checking sys/exec.h" >&5 cat > conftest.$ac_ext < int main() { @@ -6386,7 +6424,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6390: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6404,9 +6442,9 @@ EOF else echo $ac_n "checking a.out.h""... $ac_c" 1>&6 -echo "configure:6408: checking a.out.h" >&5 +echo "configure:6446: checking a.out.h" >&5 cat > conftest.$ac_ext < int main() { @@ -6424,7 +6462,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6428: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6442,9 +6480,9 @@ EOF else echo $ac_n "checking sys/exec_aout.h""... $ac_c" 1>&6 -echo "configure:6446: checking sys/exec_aout.h" >&5 +echo "configure:6484: checking sys/exec_aout.h" >&5 cat > conftest.$ac_ext < int main() { @@ -6462,7 +6500,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6504: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -6559,7 +6597,7 @@ fi echo $ac_n "checking for build with symbols""... $ac_c" 1>&6 -echo "configure:6563: checking for build with symbols" >&5 +echo "configure:6601: checking for build with symbols" >&5 # Check whether --enable-symbols or --disable-symbols was given. if test "${enable_symbols+set}" = set; then enableval="$enable_symbols" @@ -6596,17 +6634,17 @@ TCL_DBGX=${DBGX} do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:6600: checking for $ac_hdr" >&5 +echo "configure:6638: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6610: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6648: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6636,17 +6674,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:6640: checking for $ac_hdr" >&5 +echo "configure:6678: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6650: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6688: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -6673,7 +6711,7 @@ fi done echo $ac_n "checking FIONBIO vs. O_NONBLOCK for nonblocking I/O""... $ac_c" 1>&6 -echo "configure:6677: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5 +echo "configure:6715: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5 if test -f /usr/lib/NextStep/software_version; then system=NEXTSTEP-`awk '/3/,/3/' /usr/lib/NextStep/software_version` else @@ -7049,6 +7087,7 @@ s%@includedir@%$includedir%g s%@oldincludedir@%$oldincludedir%g s%@infodir@%$infodir%g s%@mandir@%$mandir%g +s%@MKLINKS_FLAGS@%$MKLINKS_FLAGS%g s%@CC@%$CC%g s%@RANLIB@%$RANLIB%g s%@CPP@%$CPP%g diff --git a/unix/configure.in b/unix/configure.in index 9a57422..a5ec17f 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.88 2002/06/21 23:55:35 dkf Exp $ +# RCS: @(#) $Id: configure.in,v 1.89 2002/06/25 15:20:44 rmax Exp $ AC_INIT(../generic/tcl.h) @@ -28,6 +28,11 @@ eval libdir="$libdir" TCL_SRC_DIR=`cd $srcdir/..; pwd` #------------------------------------------------------------------------ +# Compress and/or soft link the manpages? +#------------------------------------------------------------------------ +SC_CONFIG_MANPAGES + +#------------------------------------------------------------------------ # Standard compiler checks #------------------------------------------------------------------------ diff --git a/unix/mkLinks b/unix/mkLinks index 33139b6..867b5a6 100644 --- a/unix/mkLinks +++ b/unix/mkLinks @@ -15,11 +15,33 @@ # The script takes one argument, which is the name of the directory # where the manual entries have been installed. +while true; do + case $1 in + -s | --symlinks ) + S=-s + ;; + -z | --compress ) + ZIP=$2 + shift + ;; + *) break + ;; + esac + shift +done + if test $# != 1; then - echo "Usage: mkLinks dir" + echo "Usage: mkLinks dir" exit 1 fi +if test -n "$ZIP"; then + touch TeST + $ZIP TeST + Z=`ls TeST* | sed 's/^[^.]*//'` + rm -f TeST* +fi + cd $1 echo foo > xyzzyTestingAVeryLongFileName.foo x=`echo xyzzyTe*` @@ -33,1234 +55,2002 @@ if test "$y" != "xyzzyTestingaverylongfilename.foo"; then CASEINSENSITIVEFS=1 fi -if test -r Access.3; then - rm -f Tcl_Access.3 - rm -f Tcl_Stat.3 - ln Access.3 Tcl_Access.3 - ln Access.3 Tcl_Stat.3 -fi -if test -r AddErrInfo.3; then - rm -f Tcl_AddObjErrorInfo.3 - rm -f Tcl_AddErrorInfo.3 - rm -f Tcl_SetObjErrorCode.3 - rm -f Tcl_SetErrorCode.3 - rm -f Tcl_SetErrorCodeVA.3 - rm -f Tcl_PosixError.3 - rm -f Tcl_LogCommandInfo.3 - ln AddErrInfo.3 Tcl_AddObjErrorInfo.3 - ln AddErrInfo.3 Tcl_AddErrorInfo.3 - ln AddErrInfo.3 Tcl_SetObjErrorCode.3 - ln AddErrInfo.3 Tcl_SetErrorCode.3 - ln AddErrInfo.3 Tcl_SetErrorCodeVA.3 - ln AddErrInfo.3 Tcl_PosixError.3 - ln AddErrInfo.3 Tcl_LogCommandInfo.3 -fi -if test -r Alloc.3; then - rm -f Tcl_Alloc.3 - rm -f Tcl_Free.3 - rm -f Tcl_Realloc.3 - rm -f Tcl_AttemptAlloc.3 - rm -f Tcl_AttemptRealloc.3 - rm -f ckalloc.3 - rm -f ckfree.3 - rm -f ckrealloc.3 - rm -f attemptckalloc.3 - rm -f attemptckrealloc.3 - ln Alloc.3 Tcl_Alloc.3 - ln Alloc.3 Tcl_Free.3 - ln Alloc.3 Tcl_Realloc.3 - ln Alloc.3 Tcl_AttemptAlloc.3 - ln Alloc.3 Tcl_AttemptRealloc.3 - ln Alloc.3 ckalloc.3 - ln Alloc.3 ckfree.3 - ln Alloc.3 ckrealloc.3 - ln Alloc.3 attemptckalloc.3 - ln Alloc.3 attemptckrealloc.3 -fi -if test -r AllowExc.3; then - rm -f Tcl_AllowExceptions.3 - ln AllowExc.3 Tcl_AllowExceptions.3 -fi -if test -r AppInit.3; then - rm -f Tcl_AppInit.3 - ln AppInit.3 Tcl_AppInit.3 -fi -if test -r AssocData.3; then - rm -f Tcl_GetAssocData.3 - rm -f Tcl_SetAssocData.3 - rm -f Tcl_DeleteAssocData.3 - ln AssocData.3 Tcl_GetAssocData.3 - ln AssocData.3 Tcl_SetAssocData.3 - ln AssocData.3 Tcl_DeleteAssocData.3 -fi -if test -r Async.3; then - rm -f Tcl_AsyncCreate.3 - rm -f Tcl_AsyncMark.3 - rm -f Tcl_AsyncInvoke.3 - rm -f Tcl_AsyncDelete.3 - rm -f Tcl_AsyncReady.3 - ln Async.3 Tcl_AsyncCreate.3 - ln Async.3 Tcl_AsyncMark.3 - ln Async.3 Tcl_AsyncInvoke.3 - ln Async.3 Tcl_AsyncDelete.3 - ln Async.3 Tcl_AsyncReady.3 -fi -if test -r BackgdErr.3; then - rm -f Tcl_BackgroundError.3 - ln BackgdErr.3 Tcl_BackgroundError.3 -fi -if test -r Backslash.3; then - rm -f Tcl_Backslash.3 - ln Backslash.3 Tcl_Backslash.3 -fi -if test -r BoolObj.3; then - rm -f Tcl_NewBooleanObj.3 - rm -f Tcl_SetBooleanObj.3 - rm -f Tcl_GetBooleanFromObj.3 - ln BoolObj.3 Tcl_NewBooleanObj.3 - ln BoolObj.3 Tcl_SetBooleanObj.3 - ln BoolObj.3 Tcl_GetBooleanFromObj.3 -fi -if test -r ByteArrObj.3; then - rm -f Tcl_NewByteArrayObj.3 - rm -f Tcl_SetByteArrayObj.3 - rm -f Tcl_GetByteArrayFromObj.3 - rm -f Tcl_SetByteArrayLength.3 - ln ByteArrObj.3 Tcl_NewByteArrayObj.3 - ln ByteArrObj.3 Tcl_SetByteArrayObj.3 - ln ByteArrObj.3 Tcl_GetByteArrayFromObj.3 - ln ByteArrObj.3 Tcl_SetByteArrayLength.3 -fi -if test -r CallDel.3; then - rm -f Tcl_CallWhenDeleted.3 - rm -f Tcl_DontCallWhenDeleted.3 - ln CallDel.3 Tcl_CallWhenDeleted.3 - ln CallDel.3 Tcl_DontCallWhenDeleted.3 -fi -if test -r ChnlStack.3; then - rm -f Tcl_StackChannel.3 - rm -f Tcl_UnstackChannel.3 - rm -f Tcl_GetStackedChannel.3 - rm -f Tcl_GetTopChannel.3 - ln ChnlStack.3 Tcl_StackChannel.3 - ln ChnlStack.3 Tcl_UnstackChannel.3 - ln ChnlStack.3 Tcl_GetStackedChannel.3 - ln ChnlStack.3 Tcl_GetTopChannel.3 -fi -if test -r CmdCmplt.3; then - rm -f Tcl_CommandComplete.3 - ln CmdCmplt.3 Tcl_CommandComplete.3 -fi -if test -r Concat.3; then - rm -f Tcl_Concat.3 - ln Concat.3 Tcl_Concat.3 -fi -if test -r CrtChannel.3; then - rm -f Tcl_CreateChannel.3 - rm -f Tcl_GetChannelInstanceData.3 - rm -f Tcl_GetChannelType.3 - rm -f Tcl_GetChannelName.3 - rm -f Tcl_GetChannelHandle.3 - rm -f Tcl_GetChannelMode.3 - rm -f Tcl_GetChannelBufferSize.3 - rm -f Tcl_SetChannelBufferSize.3 - rm -f Tcl_NotifyChannel.3 - rm -f Tcl_BadChannelOption.3 - rm -f Tcl_ChannelName.3 - rm -f Tcl_ChannelVersion.3 - rm -f Tcl_ChannelBlockModeProc.3 - rm -f Tcl_ChannelCloseProc.3 - rm -f Tcl_ChannelClose2Proc.3 - rm -f Tcl_ChannelInputProc.3 - rm -f Tcl_ChannelOutputProc.3 - rm -f Tcl_ChannelSeekProc.3 - rm -f Tcl_ChannelWideSeekProc.3 - rm -f Tcl_ChannelSetOptionProc.3 - rm -f Tcl_ChannelGetOptionProc.3 - rm -f Tcl_ChannelWatchProc.3 - rm -f Tcl_ChannelGetHandleProc.3 - rm -f Tcl_ChannelFlushProc.3 - rm -f Tcl_ChannelHandlerProc.3 - rm -f Tcl_IsChannelShared.3 - rm -f Tcl_IsChannelRegistered.3 - rm -f Tcl_CutChannel.3 - rm -f Tcl_SpliceChannel.3 - rm -f Tcl_IsChannelExisting.3 - rm -f Tcl_ClearChannelHandlers.3 - rm -f Tcl_GetChannelThread.3 - rm -f Tcl_ChannelBuffered.3 - ln CrtChannel.3 Tcl_CreateChannel.3 - ln CrtChannel.3 Tcl_GetChannelInstanceData.3 - ln CrtChannel.3 Tcl_GetChannelType.3 - ln CrtChannel.3 Tcl_GetChannelName.3 - ln CrtChannel.3 Tcl_GetChannelHandle.3 - ln CrtChannel.3 Tcl_GetChannelMode.3 - ln CrtChannel.3 Tcl_GetChannelBufferSize.3 - ln CrtChannel.3 Tcl_SetChannelBufferSize.3 - ln CrtChannel.3 Tcl_NotifyChannel.3 - ln CrtChannel.3 Tcl_BadChannelOption.3 - ln CrtChannel.3 Tcl_ChannelName.3 - ln CrtChannel.3 Tcl_ChannelVersion.3 - ln CrtChannel.3 Tcl_ChannelBlockModeProc.3 - ln CrtChannel.3 Tcl_ChannelCloseProc.3 - ln CrtChannel.3 Tcl_ChannelClose2Proc.3 - ln CrtChannel.3 Tcl_ChannelInputProc.3 - ln CrtChannel.3 Tcl_ChannelOutputProc.3 - ln CrtChannel.3 Tcl_ChannelSeekProc.3 - ln CrtChannel.3 Tcl_ChannelWideSeekProc.3 - ln CrtChannel.3 Tcl_ChannelSetOptionProc.3 - ln CrtChannel.3 Tcl_ChannelGetOptionProc.3 - ln CrtChannel.3 Tcl_ChannelWatchProc.3 - ln CrtChannel.3 Tcl_ChannelGetHandleProc.3 - ln CrtChannel.3 Tcl_ChannelFlushProc.3 - ln CrtChannel.3 Tcl_ChannelHandlerProc.3 - ln CrtChannel.3 Tcl_IsChannelShared.3 - ln CrtChannel.3 Tcl_IsChannelRegistered.3 - ln CrtChannel.3 Tcl_CutChannel.3 - ln CrtChannel.3 Tcl_SpliceChannel.3 - ln CrtChannel.3 Tcl_IsChannelExisting.3 - ln CrtChannel.3 Tcl_ClearChannelHandlers.3 - ln CrtChannel.3 Tcl_GetChannelThread.3 - ln CrtChannel.3 Tcl_ChannelBuffered.3 -fi -if test -r CrtChnlHdlr.3; then - rm -f Tcl_CreateChannelHandler.3 - rm -f Tcl_DeleteChannelHandler.3 - ln CrtChnlHdlr.3 Tcl_CreateChannelHandler.3 - ln CrtChnlHdlr.3 Tcl_DeleteChannelHandler.3 -fi -if test -r CrtCloseHdlr.3; then - rm -f Tcl_CreateCloseHandler.3 - rm -f Tcl_DeleteCloseHandler.3 - ln CrtCloseHdlr.3 Tcl_CreateCloseHandler.3 - ln CrtCloseHdlr.3 Tcl_DeleteCloseHandler.3 -fi -if test -r CrtCommand.3; then - rm -f Tcl_CreateCommand.3 - ln CrtCommand.3 Tcl_CreateCommand.3 -fi -if test -r CrtFileHdlr.3; then - rm -f Tcl_CreateFileHandler.3 - rm -f Tcl_DeleteFileHandler.3 - ln CrtFileHdlr.3 Tcl_CreateFileHandler.3 - ln CrtFileHdlr.3 Tcl_DeleteFileHandler.3 -fi -if test -r CrtInterp.3; then - rm -f Tcl_CreateInterp.3 - rm -f Tcl_DeleteInterp.3 - rm -f Tcl_InterpDeleted.3 - ln CrtInterp.3 Tcl_CreateInterp.3 - ln CrtInterp.3 Tcl_DeleteInterp.3 - ln CrtInterp.3 Tcl_InterpDeleted.3 -fi -if test -r CrtMathFnc.3; then - rm -f Tcl_CreateMathFunc.3 - rm -f Tcl_GetMathFuncInfo.3 - rm -f Tcl_ListMathFuncs.3 - ln CrtMathFnc.3 Tcl_CreateMathFunc.3 - ln CrtMathFnc.3 Tcl_GetMathFuncInfo.3 - ln CrtMathFnc.3 Tcl_ListMathFuncs.3 -fi -if test -r CrtObjCmd.3; then - rm -f Tcl_CreateObjCommand.3 - rm -f Tcl_DeleteCommand.3 - rm -f Tcl_DeleteCommandFromToken.3 - rm -f Tcl_GetCommandInfo.3 - rm -f Tcl_GetCommandInfoFromToken.3 - rm -f Tcl_SetCommandInfo.3 - rm -f Tcl_SetCommandInfoFromToken.3 - rm -f Tcl_GetCommandName.3 - rm -f Tcl_GetCommandFullName.3 - rm -f Tcl_GetCommandFromObj.3 - ln CrtObjCmd.3 Tcl_CreateObjCommand.3 - ln CrtObjCmd.3 Tcl_DeleteCommand.3 - ln CrtObjCmd.3 Tcl_DeleteCommandFromToken.3 - ln CrtObjCmd.3 Tcl_GetCommandInfo.3 - ln CrtObjCmd.3 Tcl_GetCommandInfoFromToken.3 - ln CrtObjCmd.3 Tcl_SetCommandInfo.3 - ln CrtObjCmd.3 Tcl_SetCommandInfoFromToken.3 - ln CrtObjCmd.3 Tcl_GetCommandName.3 - ln CrtObjCmd.3 Tcl_GetCommandFullName.3 - ln CrtObjCmd.3 Tcl_GetCommandFromObj.3 -fi -if test -r CrtSlave.3; then - rm -f Tcl_IsSafe.3 - rm -f Tcl_MakeSafe.3 - rm -f Tcl_CreateSlave.3 - rm -f Tcl_GetSlave.3 - rm -f Tcl_GetMaster.3 - rm -f Tcl_GetInterpPath.3 - rm -f Tcl_CreateAlias.3 - rm -f Tcl_CreateAliasObj.3 - rm -f Tcl_GetAlias.3 - rm -f Tcl_GetAliasObj.3 - rm -f Tcl_ExposeCommand.3 - rm -f Tcl_HideCommand.3 - ln CrtSlave.3 Tcl_IsSafe.3 - ln CrtSlave.3 Tcl_MakeSafe.3 - ln CrtSlave.3 Tcl_CreateSlave.3 - ln CrtSlave.3 Tcl_GetSlave.3 - ln CrtSlave.3 Tcl_GetMaster.3 - ln CrtSlave.3 Tcl_GetInterpPath.3 - ln CrtSlave.3 Tcl_CreateAlias.3 - ln CrtSlave.3 Tcl_CreateAliasObj.3 - ln CrtSlave.3 Tcl_GetAlias.3 - ln CrtSlave.3 Tcl_GetAliasObj.3 - ln CrtSlave.3 Tcl_ExposeCommand.3 - ln CrtSlave.3 Tcl_HideCommand.3 -fi -if test -r CrtTimerHdlr.3; then - rm -f Tcl_CreateTimerHandler.3 - rm -f Tcl_DeleteTimerHandler.3 - ln CrtTimerHdlr.3 Tcl_CreateTimerHandler.3 - ln CrtTimerHdlr.3 Tcl_DeleteTimerHandler.3 -fi -if test -r CrtTrace.3; then - rm -f Tcl_CreateTrace.3 - rm -f Tcl_CreateObjTrace.3 - rm -f Tcl_DeleteTrace.3 - ln CrtTrace.3 Tcl_CreateTrace.3 - ln CrtTrace.3 Tcl_CreateObjTrace.3 - ln CrtTrace.3 Tcl_DeleteTrace.3 -fi -if test -r DString.3; then - rm -f Tcl_DStringInit.3 - rm -f Tcl_DStringAppend.3 - rm -f Tcl_DStringAppendElement.3 - rm -f Tcl_DStringStartSublist.3 - rm -f Tcl_DStringEndSublist.3 - rm -f Tcl_DStringLength.3 - rm -f Tcl_DStringValue.3 - rm -f Tcl_DStringSetLength.3 - rm -f Tcl_DStringTrunc.3 - rm -f Tcl_DStringFree.3 - rm -f Tcl_DStringResult.3 - rm -f Tcl_DStringGetResult.3 - ln DString.3 Tcl_DStringInit.3 - ln DString.3 Tcl_DStringAppend.3 - ln DString.3 Tcl_DStringAppendElement.3 - ln DString.3 Tcl_DStringStartSublist.3 - ln DString.3 Tcl_DStringEndSublist.3 - ln DString.3 Tcl_DStringLength.3 - ln DString.3 Tcl_DStringValue.3 - ln DString.3 Tcl_DStringSetLength.3 - ln DString.3 Tcl_DStringTrunc.3 - ln DString.3 Tcl_DStringFree.3 - ln DString.3 Tcl_DStringResult.3 - ln DString.3 Tcl_DStringGetResult.3 -fi -if test -r DetachPids.3; then - rm -f Tcl_DetachPids.3 - rm -f Tcl_ReapDetachedProcs.3 - rm -f Tcl_WaitPid.3 - ln DetachPids.3 Tcl_DetachPids.3 - ln DetachPids.3 Tcl_ReapDetachedProcs.3 - ln DetachPids.3 Tcl_WaitPid.3 -fi -if test -r DoOneEvent.3; then - rm -f Tcl_DoOneEvent.3 - ln DoOneEvent.3 Tcl_DoOneEvent.3 -fi -if test -r DoWhenIdle.3; then - rm -f Tcl_DoWhenIdle.3 - rm -f Tcl_CancelIdleCall.3 - ln DoWhenIdle.3 Tcl_DoWhenIdle.3 - ln DoWhenIdle.3 Tcl_CancelIdleCall.3 -fi -if test -r DoubleObj.3; then - rm -f Tcl_NewDoubleObj.3 - rm -f Tcl_SetDoubleObj.3 - rm -f Tcl_GetDoubleFromObj.3 - ln DoubleObj.3 Tcl_NewDoubleObj.3 - ln DoubleObj.3 Tcl_SetDoubleObj.3 - ln DoubleObj.3 Tcl_GetDoubleFromObj.3 -fi -if test -r DumpActiveMemory.3; then - rm -f Tcl_DumpActiveMemory.3 - rm -f Tcl_InitMemory.3 - rm -f Tcl_ValidateAllMemory.3 - ln DumpActiveMemory.3 Tcl_DumpActiveMemory.3 - ln DumpActiveMemory.3 Tcl_InitMemory.3 - ln DumpActiveMemory.3 Tcl_ValidateAllMemory.3 -fi -if test -r Encoding.3; then - rm -f Tcl_GetEncoding.3 - rm -f Tcl_FreeEncoding.3 - rm -f Tcl_ExternalToUtfDString.3 - rm -f Tcl_ExternalToUtf.3 - rm -f Tcl_UtfToExternalDString.3 - rm -f Tcl_UtfToExternal.3 - rm -f Tcl_WinTCharToUtf.3 - rm -f Tcl_WinUtfToTChar.3 - rm -f Tcl_GetEncodingName.3 - rm -f Tcl_SetSystemEncoding.3 - rm -f Tcl_GetEncodingNames.3 - rm -f Tcl_CreateEncoding.3 - rm -f Tcl_GetDefaultEncodingDir.3 - rm -f Tcl_SetDefaultEncodingDir.3 - ln Encoding.3 Tcl_GetEncoding.3 - ln Encoding.3 Tcl_FreeEncoding.3 - ln Encoding.3 Tcl_ExternalToUtfDString.3 - ln Encoding.3 Tcl_ExternalToUtf.3 - ln Encoding.3 Tcl_UtfToExternalDString.3 - ln Encoding.3 Tcl_UtfToExternal.3 - ln Encoding.3 Tcl_WinTCharToUtf.3 - ln Encoding.3 Tcl_WinUtfToTChar.3 - ln Encoding.3 Tcl_GetEncodingName.3 - ln Encoding.3 Tcl_SetSystemEncoding.3 - ln Encoding.3 Tcl_GetEncodingNames.3 - ln Encoding.3 Tcl_CreateEncoding.3 - ln Encoding.3 Tcl_GetDefaultEncodingDir.3 - ln Encoding.3 Tcl_SetDefaultEncodingDir.3 -fi -if test -r Environment.3; then - rm -f Tcl_PutEnv.3 - ln Environment.3 Tcl_PutEnv.3 -fi -if test -r Eval.3; then - rm -f Tcl_EvalObjEx.3 - rm -f Tcl_EvalFile.3 - rm -f Tcl_EvalObjv.3 - rm -f Tcl_Eval.3 - rm -f Tcl_EvalEx.3 - rm -f Tcl_GlobalEval.3 - rm -f Tcl_GlobalEvalObj.3 - rm -f Tcl_VarEval.3 - rm -f Tcl_VarEvalVA.3 - ln Eval.3 Tcl_EvalObjEx.3 - ln Eval.3 Tcl_EvalFile.3 - ln Eval.3 Tcl_EvalObjv.3 - ln Eval.3 Tcl_Eval.3 - ln Eval.3 Tcl_EvalEx.3 - ln Eval.3 Tcl_GlobalEval.3 - ln Eval.3 Tcl_GlobalEvalObj.3 - ln Eval.3 Tcl_VarEval.3 - ln Eval.3 Tcl_VarEvalVA.3 -fi -if test -r Exit.3; then - rm -f Tcl_Exit.3 - rm -f Tcl_Finalize.3 - rm -f Tcl_CreateExitHandler.3 - rm -f Tcl_DeleteExitHandler.3 - rm -f Tcl_ExitThread.3 - rm -f Tcl_FinalizeThread.3 - rm -f Tcl_CreateThreadExitHandler.3 - rm -f Tcl_DeleteThreadExitHandler.3 - ln Exit.3 Tcl_Exit.3 - ln Exit.3 Tcl_Finalize.3 - ln Exit.3 Tcl_CreateExitHandler.3 - ln Exit.3 Tcl_DeleteExitHandler.3 - ln Exit.3 Tcl_ExitThread.3 - ln Exit.3 Tcl_FinalizeThread.3 - ln Exit.3 Tcl_CreateThreadExitHandler.3 - ln Exit.3 Tcl_DeleteThreadExitHandler.3 -fi -if test -r ExprLong.3; then - rm -f Tcl_ExprLong.3 - rm -f Tcl_ExprDouble.3 - rm -f Tcl_ExprBoolean.3 - rm -f Tcl_ExprString.3 - ln ExprLong.3 Tcl_ExprLong.3 - ln ExprLong.3 Tcl_ExprDouble.3 - ln ExprLong.3 Tcl_ExprBoolean.3 - ln ExprLong.3 Tcl_ExprString.3 -fi -if test -r ExprLongObj.3; then - rm -f Tcl_ExprLongObj.3 - rm -f Tcl_ExprDoubleObj.3 - rm -f Tcl_ExprBooleanObj.3 - rm -f Tcl_ExprObj.3 - ln ExprLongObj.3 Tcl_ExprLongObj.3 - ln ExprLongObj.3 Tcl_ExprDoubleObj.3 - ln ExprLongObj.3 Tcl_ExprBooleanObj.3 - ln ExprLongObj.3 Tcl_ExprObj.3 -fi -if test -r FileSystem.3; then - rm -f Tcl_FSRegister.3 - rm -f Tcl_FSUnregister.3 - rm -f Tcl_FSData.3 - rm -f Tcl_FSMountsChanged.3 - rm -f Tcl_FSGetFileSystemForPath.3 - rm -f Tcl_FSGetPathType.3 - rm -f Tcl_FSCopyFile.3 - rm -f Tcl_FSCopyDirectory.3 - rm -f Tcl_FSCreateDirectory.3 - rm -f Tcl_FSDeleteFile.3 - rm -f Tcl_FSRemoveDirectory.3 - rm -f Tcl_FSRenameFile.3 - rm -f Tcl_FSListVolumes.3 - rm -f Tcl_FSEvalFile.3 - rm -f Tcl_FSLoadFile.3 - rm -f Tcl_FSMatchInDirectory.3 - rm -f Tcl_FSLink.3 - rm -f Tcl_FSLstat.3 - rm -f Tcl_FSUtime.3 - rm -f Tcl_FSFileAttrsGet.3 - rm -f Tcl_FSFileAttrsSet.3 - rm -f Tcl_FSFileAttrStrings.3 - rm -f Tcl_FSStat.3 - rm -f Tcl_FSAccess.3 - rm -f Tcl_FSOpenFileChannel.3 - rm -f Tcl_FSGetCwd.3 - rm -f Tcl_FSChdir.3 - rm -f Tcl_FSPathSeparator.3 - rm -f Tcl_FSJoinPath.3 - rm -f Tcl_FSSplitPath.3 - rm -f Tcl_FSEqualPaths.3 - rm -f Tcl_FSGetNormalizedPath.3 - rm -f Tcl_FSJoinToPath.3 - rm -f Tcl_FSConvertToPathType.3 - rm -f Tcl_FSGetInternalRep.3 - rm -f Tcl_FSGetTranslatedPath.3 - rm -f Tcl_FSGetTranslatedStringPath.3 - rm -f Tcl_FSNewNativePath.3 - rm -f Tcl_FSGetNativePath.3 - rm -f Tcl_FSFileSystemInfo.3 - rm -f Tcl_AllocStatBuf.3 - ln FileSystem.3 Tcl_FSRegister.3 - ln FileSystem.3 Tcl_FSUnregister.3 - ln FileSystem.3 Tcl_FSData.3 - ln FileSystem.3 Tcl_FSMountsChanged.3 - ln FileSystem.3 Tcl_FSGetFileSystemForPath.3 - ln FileSystem.3 Tcl_FSGetPathType.3 - ln FileSystem.3 Tcl_FSCopyFile.3 - ln FileSystem.3 Tcl_FSCopyDirectory.3 - ln FileSystem.3 Tcl_FSCreateDirectory.3 - ln FileSystem.3 Tcl_FSDeleteFile.3 - ln FileSystem.3 Tcl_FSRemoveDirectory.3 - ln FileSystem.3 Tcl_FSRenameFile.3 - ln FileSystem.3 Tcl_FSListVolumes.3 - ln FileSystem.3 Tcl_FSEvalFile.3 - ln FileSystem.3 Tcl_FSLoadFile.3 - ln FileSystem.3 Tcl_FSMatchInDirectory.3 - ln FileSystem.3 Tcl_FSLink.3 - ln FileSystem.3 Tcl_FSLstat.3 - ln FileSystem.3 Tcl_FSUtime.3 - ln FileSystem.3 Tcl_FSFileAttrsGet.3 - ln FileSystem.3 Tcl_FSFileAttrsSet.3 - ln FileSystem.3 Tcl_FSFileAttrStrings.3 - ln FileSystem.3 Tcl_FSStat.3 - ln FileSystem.3 Tcl_FSAccess.3 - ln FileSystem.3 Tcl_FSOpenFileChannel.3 - ln FileSystem.3 Tcl_FSGetCwd.3 - ln FileSystem.3 Tcl_FSChdir.3 - ln FileSystem.3 Tcl_FSPathSeparator.3 - ln FileSystem.3 Tcl_FSJoinPath.3 - ln FileSystem.3 Tcl_FSSplitPath.3 - ln FileSystem.3 Tcl_FSEqualPaths.3 - ln FileSystem.3 Tcl_FSGetNormalizedPath.3 - ln FileSystem.3 Tcl_FSJoinToPath.3 - ln FileSystem.3 Tcl_FSConvertToPathType.3 - ln FileSystem.3 Tcl_FSGetInternalRep.3 - ln FileSystem.3 Tcl_FSGetTranslatedPath.3 - ln FileSystem.3 Tcl_FSGetTranslatedStringPath.3 - ln FileSystem.3 Tcl_FSNewNativePath.3 - ln FileSystem.3 Tcl_FSGetNativePath.3 - ln FileSystem.3 Tcl_FSFileSystemInfo.3 - ln FileSystem.3 Tcl_AllocStatBuf.3 -fi -if test -r FindExec.3; then - rm -f Tcl_FindExecutable.3 - rm -f Tcl_GetNameOfExecutable.3 - ln FindExec.3 Tcl_FindExecutable.3 - ln FindExec.3 Tcl_GetNameOfExecutable.3 -fi -if test -r GetCwd.3; then - rm -f Tcl_GetCwd.3 - rm -f Tcl_Chdir.3 - ln GetCwd.3 Tcl_GetCwd.3 - ln GetCwd.3 Tcl_Chdir.3 -fi -if test -r GetHostName.3; then - rm -f Tcl_GetHostName.3 - ln GetHostName.3 Tcl_GetHostName.3 -fi -if test -r GetIndex.3; then - rm -f Tcl_GetIndexFromObj.3 - rm -f Tcl_GetIndexFromObjStruct.3 - ln GetIndex.3 Tcl_GetIndexFromObj.3 - ln GetIndex.3 Tcl_GetIndexFromObjStruct.3 -fi -if test -r GetInt.3; then - rm -f Tcl_GetInt.3 - rm -f Tcl_GetDouble.3 - rm -f Tcl_GetBoolean.3 - ln GetInt.3 Tcl_GetInt.3 - ln GetInt.3 Tcl_GetDouble.3 - ln GetInt.3 Tcl_GetBoolean.3 -fi -if test -r GetOpnFl.3; then - rm -f Tcl_GetOpenFile.3 - ln GetOpnFl.3 Tcl_GetOpenFile.3 -fi -if test -r GetStdChan.3; then - rm -f Tcl_GetStdChannel.3 - rm -f Tcl_SetStdChannel.3 - ln GetStdChan.3 Tcl_GetStdChannel.3 - ln GetStdChan.3 Tcl_SetStdChannel.3 -fi -if test -r GetTime.3; then - rm -f Tcl_GetTime.3 - ln GetTime.3 Tcl_GetTime.3 -fi -if test -r GetVersion.3; then - rm -f Tcl_GetVersion.3 - ln GetVersion.3 Tcl_GetVersion.3 -fi -if test -r Hash.3; then - rm -f Tcl_InitHashTable.3 - rm -f Tcl_InitCustomHashTable.3 - rm -f Tcl_InitObjHashTable.3 - rm -f Tcl_DeleteHashTable.3 - rm -f Tcl_CreateHashEntry.3 - rm -f Tcl_DeleteHashEntry.3 - rm -f Tcl_FindHashEntry.3 - rm -f Tcl_GetHashValue.3 - rm -f Tcl_SetHashValue.3 - rm -f Tcl_GetHashKey.3 - rm -f Tcl_FirstHashEntry.3 - rm -f Tcl_NextHashEntry.3 - rm -f Tcl_HashStats.3 - ln Hash.3 Tcl_InitHashTable.3 - ln Hash.3 Tcl_InitCustomHashTable.3 - ln Hash.3 Tcl_InitObjHashTable.3 - ln Hash.3 Tcl_DeleteHashTable.3 - ln Hash.3 Tcl_CreateHashEntry.3 - ln Hash.3 Tcl_DeleteHashEntry.3 - ln Hash.3 Tcl_FindHashEntry.3 - ln Hash.3 Tcl_GetHashValue.3 - ln Hash.3 Tcl_SetHashValue.3 - ln Hash.3 Tcl_GetHashKey.3 - ln Hash.3 Tcl_FirstHashEntry.3 - ln Hash.3 Tcl_NextHashEntry.3 - ln Hash.3 Tcl_HashStats.3 -fi -if test -r Init.3; then - rm -f Tcl_Init.3 - ln Init.3 Tcl_Init.3 -fi -if test -r InitStubs.3; then - rm -f Tcl_InitStubs.3 - ln InitStubs.3 Tcl_InitStubs.3 -fi -if test -r IntObj.3; then - rm -f Tcl_NewIntObj.3 - rm -f Tcl_NewLongObj.3 - rm -f Tcl_NewWideIntObj.3 - rm -f Tcl_SetIntObj.3 - rm -f Tcl_SetLongObj.3 - rm -f Tcl_SetWideIntObj.3 - rm -f Tcl_GetIntFromObj.3 - rm -f Tcl_GetLongFromObj.3 - rm -f Tcl_GetWideIntFromObj.3 - ln IntObj.3 Tcl_NewIntObj.3 - ln IntObj.3 Tcl_NewLongObj.3 - ln IntObj.3 Tcl_NewWideIntObj.3 - ln IntObj.3 Tcl_SetIntObj.3 - ln IntObj.3 Tcl_SetLongObj.3 - ln IntObj.3 Tcl_SetWideIntObj.3 - ln IntObj.3 Tcl_GetIntFromObj.3 - ln IntObj.3 Tcl_GetLongFromObj.3 - ln IntObj.3 Tcl_GetWideIntFromObj.3 -fi -if test -r Interp.3; then - rm -f Tcl_Interp.3 - ln Interp.3 Tcl_Interp.3 -fi -if test -r LinkVar.3; then - rm -f Tcl_LinkVar.3 - rm -f Tcl_UnlinkVar.3 - rm -f Tcl_UpdateLinkedVar.3 - ln LinkVar.3 Tcl_LinkVar.3 - ln LinkVar.3 Tcl_UnlinkVar.3 - ln LinkVar.3 Tcl_UpdateLinkedVar.3 -fi -if test -r ListObj.3; then - rm -f Tcl_ListObjAppendList.3 - rm -f Tcl_ListObjAppendElement.3 - rm -f Tcl_NewListObj.3 - rm -f Tcl_SetListObj.3 - rm -f Tcl_ListObjGetElements.3 - rm -f Tcl_ListObjLength.3 - rm -f Tcl_ListObjIndex.3 - rm -f Tcl_ListObjReplace.3 - ln ListObj.3 Tcl_ListObjAppendList.3 - ln ListObj.3 Tcl_ListObjAppendElement.3 - ln ListObj.3 Tcl_NewListObj.3 - ln ListObj.3 Tcl_SetListObj.3 - ln ListObj.3 Tcl_ListObjGetElements.3 - ln ListObj.3 Tcl_ListObjLength.3 - ln ListObj.3 Tcl_ListObjIndex.3 - ln ListObj.3 Tcl_ListObjReplace.3 -fi -if test -r Macintosh.3; then - rm -f Tcl_MacSetEventProc.3 - rm -f Tcl_MacConvertTextResource.3 - rm -f Tcl_MacEvalResource.3 - rm -f Tcl_MacFindResource.3 - rm -f Tcl_GetOSTypeFromObj.3 - rm -f Tcl_SetOSTypeObj.3 - rm -f Tcl_NewOSTypeObj.3 - ln Macintosh.3 Tcl_MacSetEventProc.3 - ln Macintosh.3 Tcl_MacConvertTextResource.3 - ln Macintosh.3 Tcl_MacEvalResource.3 - ln Macintosh.3 Tcl_MacFindResource.3 - ln Macintosh.3 Tcl_GetOSTypeFromObj.3 - ln Macintosh.3 Tcl_SetOSTypeObj.3 - ln Macintosh.3 Tcl_NewOSTypeObj.3 -fi -if test -r Notifier.3; then - rm -f Tcl_CreateEventSource.3 - rm -f Tcl_DeleteEventSource.3 - rm -f Tcl_SetMaxBlockTime.3 - rm -f Tcl_QueueEvent.3 - rm -f Tcl_ThreadQueueEvent.3 - rm -f Tcl_ThreadAlert.3 - rm -f Tcl_GetCurrentThread.3 - rm -f Tcl_DeleteEvents.3 - rm -f Tcl_InitNotifier.3 - rm -f Tcl_FinalizeNotifier.3 - rm -f Tcl_WaitForEvent.3 - rm -f Tcl_AlertNotifier.3 - rm -f Tcl_SetTimer.3 - rm -f Tcl_ServiceAll.3 - rm -f Tcl_ServiceEvent.3 - rm -f Tcl_GetServiceMode.3 - rm -f Tcl_SetServiceMode.3 - ln Notifier.3 Tcl_CreateEventSource.3 - ln Notifier.3 Tcl_DeleteEventSource.3 - ln Notifier.3 Tcl_SetMaxBlockTime.3 - ln Notifier.3 Tcl_QueueEvent.3 - ln Notifier.3 Tcl_ThreadQueueEvent.3 - ln Notifier.3 Tcl_ThreadAlert.3 - ln Notifier.3 Tcl_GetCurrentThread.3 - ln Notifier.3 Tcl_DeleteEvents.3 - ln Notifier.3 Tcl_InitNotifier.3 - ln Notifier.3 Tcl_FinalizeNotifier.3 - ln Notifier.3 Tcl_WaitForEvent.3 - ln Notifier.3 Tcl_AlertNotifier.3 - ln Notifier.3 Tcl_SetTimer.3 - ln Notifier.3 Tcl_ServiceAll.3 - ln Notifier.3 Tcl_ServiceEvent.3 - ln Notifier.3 Tcl_GetServiceMode.3 - ln Notifier.3 Tcl_SetServiceMode.3 -fi -if test -r Object.3; then - rm -f Tcl_NewObj.3 - rm -f Tcl_DuplicateObj.3 - rm -f Tcl_IncrRefCount.3 - rm -f Tcl_DecrRefCount.3 - rm -f Tcl_IsShared.3 - rm -f Tcl_InvalidateStringRep.3 - ln Object.3 Tcl_NewObj.3 - ln Object.3 Tcl_DuplicateObj.3 - ln Object.3 Tcl_IncrRefCount.3 - ln Object.3 Tcl_DecrRefCount.3 - ln Object.3 Tcl_IsShared.3 - ln Object.3 Tcl_InvalidateStringRep.3 -fi -if test -r ObjectType.3; then - rm -f Tcl_RegisterObjType.3 - rm -f Tcl_GetObjType.3 - rm -f Tcl_AppendAllObjTypes.3 - rm -f Tcl_ConvertToType.3 - ln ObjectType.3 Tcl_RegisterObjType.3 - ln ObjectType.3 Tcl_GetObjType.3 - ln ObjectType.3 Tcl_AppendAllObjTypes.3 - ln ObjectType.3 Tcl_ConvertToType.3 -fi -if test -r OpenFileChnl.3; then - rm -f Tcl_OpenFileChannel.3 - rm -f Tcl_OpenCommandChannel.3 - rm -f Tcl_MakeFileChannel.3 - rm -f Tcl_GetChannel.3 - rm -f Tcl_GetChannelNames.3 - rm -f Tcl_GetChannelNamesEx.3 - rm -f Tcl_RegisterChannel.3 - rm -f Tcl_UnregisterChannel.3 - rm -f Tcl_DetachChannel.3 - rm -f Tcl_IsStandardChannel.3 - rm -f Tcl_Close.3 - rm -f Tcl_ReadChars.3 - rm -f Tcl_Read.3 - rm -f Tcl_GetsObj.3 - rm -f Tcl_Gets.3 - rm -f Tcl_WriteObj.3 - rm -f Tcl_WriteChars.3 - rm -f Tcl_Write.3 - rm -f Tcl_Flush.3 - rm -f Tcl_Seek.3 - rm -f Tcl_Tell.3 - rm -f Tcl_GetChannelOption.3 - rm -f Tcl_SetChannelOption.3 - rm -f Tcl_Eof.3 - rm -f Tcl_InputBlocked.3 - rm -f Tcl_InputBuffered.3 - rm -f Tcl_OutputBuffered.3 - rm -f Tcl_Ungets.3 - rm -f Tcl_ReadRaw.3 - rm -f Tcl_WriteRaw.3 - ln OpenFileChnl.3 Tcl_OpenFileChannel.3 - ln OpenFileChnl.3 Tcl_OpenCommandChannel.3 - ln OpenFileChnl.3 Tcl_MakeFileChannel.3 - ln OpenFileChnl.3 Tcl_GetChannel.3 - ln OpenFileChnl.3 Tcl_GetChannelNames.3 - ln OpenFileChnl.3 Tcl_GetChannelNamesEx.3 - ln OpenFileChnl.3 Tcl_RegisterChannel.3 - ln OpenFileChnl.3 Tcl_UnregisterChannel.3 - ln OpenFileChnl.3 Tcl_DetachChannel.3 - ln OpenFileChnl.3 Tcl_IsStandardChannel.3 - ln OpenFileChnl.3 Tcl_Close.3 - ln OpenFileChnl.3 Tcl_ReadChars.3 - ln OpenFileChnl.3 Tcl_Read.3 - ln OpenFileChnl.3 Tcl_GetsObj.3 - ln OpenFileChnl.3 Tcl_Gets.3 - ln OpenFileChnl.3 Tcl_WriteObj.3 - ln OpenFileChnl.3 Tcl_WriteChars.3 - ln OpenFileChnl.3 Tcl_Write.3 - ln OpenFileChnl.3 Tcl_Flush.3 - ln OpenFileChnl.3 Tcl_Seek.3 - ln OpenFileChnl.3 Tcl_Tell.3 - ln OpenFileChnl.3 Tcl_GetChannelOption.3 - ln OpenFileChnl.3 Tcl_SetChannelOption.3 - ln OpenFileChnl.3 Tcl_Eof.3 - ln OpenFileChnl.3 Tcl_InputBlocked.3 - ln OpenFileChnl.3 Tcl_InputBuffered.3 - ln OpenFileChnl.3 Tcl_OutputBuffered.3 - ln OpenFileChnl.3 Tcl_Ungets.3 - ln OpenFileChnl.3 Tcl_ReadRaw.3 - ln OpenFileChnl.3 Tcl_WriteRaw.3 -fi -if test -r OpenTcp.3; then - rm -f Tcl_OpenTcpClient.3 - rm -f Tcl_MakeTcpClientChannel.3 - rm -f Tcl_OpenTcpServer.3 - ln OpenTcp.3 Tcl_OpenTcpClient.3 - ln OpenTcp.3 Tcl_MakeTcpClientChannel.3 - ln OpenTcp.3 Tcl_OpenTcpServer.3 -fi -if test -r Panic.3; then - rm -f Tcl_Panic.3 - rm -f Tcl_PanicVA.3 - rm -f Tcl_SetPanicProc.3 - if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f panic.3; fi - rm -f panicVA.3 - ln Panic.3 Tcl_Panic.3 - ln Panic.3 Tcl_PanicVA.3 - ln Panic.3 Tcl_SetPanicProc.3 - if test "${CASEINSENSITIVEFS:-}" != "1"; then ln Panic.3 panic.3; fi - ln Panic.3 panicVA.3 -fi -if test -r ParseCmd.3; then - rm -f Tcl_ParseCommand.3 - rm -f Tcl_ParseExpr.3 - rm -f Tcl_ParseBraces.3 - rm -f Tcl_ParseQuotedString.3 - rm -f Tcl_ParseVarName.3 - rm -f Tcl_ParseVar.3 - rm -f Tcl_FreeParse.3 - rm -f Tcl_EvalTokens.3 - rm -f Tcl_EvalTokensStandard.3 - ln ParseCmd.3 Tcl_ParseCommand.3 - ln ParseCmd.3 Tcl_ParseExpr.3 - ln ParseCmd.3 Tcl_ParseBraces.3 - ln ParseCmd.3 Tcl_ParseQuotedString.3 - ln ParseCmd.3 Tcl_ParseVarName.3 - ln ParseCmd.3 Tcl_ParseVar.3 - ln ParseCmd.3 Tcl_FreeParse.3 - ln ParseCmd.3 Tcl_EvalTokens.3 - ln ParseCmd.3 Tcl_EvalTokensStandard.3 -fi -if test -r PkgRequire.3; then - rm -f Tcl_PkgRequire.3 - rm -f Tcl_PkgRequireEx.3 - rm -f Tcl_PkgPresent.3 - rm -f Tcl_PkgPresentEx.3 - rm -f Tcl_PkgProvide.3 - rm -f Tcl_PkgProvideEx.3 - ln PkgRequire.3 Tcl_PkgRequire.3 - ln PkgRequire.3 Tcl_PkgRequireEx.3 - ln PkgRequire.3 Tcl_PkgPresent.3 - ln PkgRequire.3 Tcl_PkgPresentEx.3 - ln PkgRequire.3 Tcl_PkgProvide.3 - ln PkgRequire.3 Tcl_PkgProvideEx.3 -fi -if test -r Preserve.3; then - rm -f Tcl_Preserve.3 - rm -f Tcl_Release.3 - rm -f Tcl_EventuallyFree.3 - ln Preserve.3 Tcl_Preserve.3 - ln Preserve.3 Tcl_Release.3 - ln Preserve.3 Tcl_EventuallyFree.3 -fi -if test -r PrintDbl.3; then - rm -f Tcl_PrintDouble.3 - ln PrintDbl.3 Tcl_PrintDouble.3 -fi -if test -r RecEvalObj.3; then - rm -f Tcl_RecordAndEvalObj.3 - ln RecEvalObj.3 Tcl_RecordAndEvalObj.3 -fi -if test -r RecordEval.3; then - rm -f Tcl_RecordAndEval.3 - ln RecordEval.3 Tcl_RecordAndEval.3 -fi -if test -r RegExp.3; then - rm -f Tcl_RegExpMatch.3 - rm -f Tcl_RegExpCompile.3 - rm -f Tcl_RegExpExec.3 - rm -f Tcl_RegExpRange.3 - rm -f Tcl_GetRegExpFromObj.3 - rm -f Tcl_RegExpMatchObj.3 - rm -f Tcl_RegExpExecObj.3 - rm -f Tcl_RegExpGetInfo.3 - ln RegExp.3 Tcl_RegExpMatch.3 - ln RegExp.3 Tcl_RegExpCompile.3 - ln RegExp.3 Tcl_RegExpExec.3 - ln RegExp.3 Tcl_RegExpRange.3 - ln RegExp.3 Tcl_GetRegExpFromObj.3 - ln RegExp.3 Tcl_RegExpMatchObj.3 - ln RegExp.3 Tcl_RegExpExecObj.3 - ln RegExp.3 Tcl_RegExpGetInfo.3 -fi -if test -r SaveResult.3; then - rm -f Tcl_SaveResult.3 - rm -f Tcl_RestoreResult.3 - rm -f Tcl_DiscardResult.3 - ln SaveResult.3 Tcl_SaveResult.3 - ln SaveResult.3 Tcl_RestoreResult.3 - ln SaveResult.3 Tcl_DiscardResult.3 -fi -if test -r SetErrno.3; then - rm -f Tcl_SetErrno.3 - rm -f Tcl_GetErrno.3 - rm -f Tcl_ErrnoId.3 - rm -f Tcl_ErrnoMsg.3 - ln SetErrno.3 Tcl_SetErrno.3 - ln SetErrno.3 Tcl_GetErrno.3 - ln SetErrno.3 Tcl_ErrnoId.3 - ln SetErrno.3 Tcl_ErrnoMsg.3 -fi -if test -r SetRecLmt.3; then - rm -f Tcl_SetRecursionLimit.3 - ln SetRecLmt.3 Tcl_SetRecursionLimit.3 -fi -if test -r SetResult.3; then - rm -f Tcl_SetObjResult.3 - rm -f Tcl_GetObjResult.3 - rm -f Tcl_SetResult.3 - rm -f Tcl_GetStringResult.3 - rm -f Tcl_AppendResult.3 - rm -f Tcl_AppendResultVA.3 - rm -f Tcl_AppendElement.3 - rm -f Tcl_ResetResult.3 - rm -f Tcl_FreeResult.3 - ln SetResult.3 Tcl_SetObjResult.3 - ln SetResult.3 Tcl_GetObjResult.3 - ln SetResult.3 Tcl_SetResult.3 - ln SetResult.3 Tcl_GetStringResult.3 - ln SetResult.3 Tcl_AppendResult.3 - ln SetResult.3 Tcl_AppendResultVA.3 - ln SetResult.3 Tcl_AppendElement.3 - ln SetResult.3 Tcl_ResetResult.3 - ln SetResult.3 Tcl_FreeResult.3 -fi -if test -r SetVar.3; then - rm -f Tcl_SetVar2Ex.3 - rm -f Tcl_SetVar.3 - rm -f Tcl_SetVar2.3 - rm -f Tcl_ObjSetVar2.3 - rm -f Tcl_GetVar2Ex.3 - rm -f Tcl_GetVar.3 - rm -f Tcl_GetVar2.3 - rm -f Tcl_ObjGetVar2.3 - rm -f Tcl_UnsetVar.3 - rm -f Tcl_UnsetVar2.3 - ln SetVar.3 Tcl_SetVar2Ex.3 - ln SetVar.3 Tcl_SetVar.3 - ln SetVar.3 Tcl_SetVar2.3 - ln SetVar.3 Tcl_ObjSetVar2.3 - ln SetVar.3 Tcl_GetVar2Ex.3 - ln SetVar.3 Tcl_GetVar.3 - ln SetVar.3 Tcl_GetVar2.3 - ln SetVar.3 Tcl_ObjGetVar2.3 - ln SetVar.3 Tcl_UnsetVar.3 - ln SetVar.3 Tcl_UnsetVar2.3 -fi -if test -r Signal.3; then - rm -f Tcl_SignalId.3 - rm -f Tcl_SignalMsg.3 - ln Signal.3 Tcl_SignalId.3 - ln Signal.3 Tcl_SignalMsg.3 -fi -if test -r Sleep.3; then - rm -f Tcl_Sleep.3 - ln Sleep.3 Tcl_Sleep.3 -fi -if test -r SourceRCFile.3; then - rm -f Tcl_SourceRCFile.3 - ln SourceRCFile.3 Tcl_SourceRCFile.3 -fi -if test -r SplitList.3; then - rm -f Tcl_SplitList.3 - rm -f Tcl_Merge.3 - rm -f Tcl_ScanElement.3 - rm -f Tcl_ConvertElement.3 - rm -f Tcl_ScanCountedElement.3 - rm -f Tcl_ConvertCountedElement.3 - ln SplitList.3 Tcl_SplitList.3 - ln SplitList.3 Tcl_Merge.3 - ln SplitList.3 Tcl_ScanElement.3 - ln SplitList.3 Tcl_ConvertElement.3 - ln SplitList.3 Tcl_ScanCountedElement.3 - ln SplitList.3 Tcl_ConvertCountedElement.3 -fi -if test -r SplitPath.3; then - rm -f Tcl_SplitPath.3 - rm -f Tcl_JoinPath.3 - rm -f Tcl_GetPathType.3 - ln SplitPath.3 Tcl_SplitPath.3 - ln SplitPath.3 Tcl_JoinPath.3 - ln SplitPath.3 Tcl_GetPathType.3 -fi -if test -r StaticPkg.3; then - rm -f Tcl_StaticPackage.3 - ln StaticPkg.3 Tcl_StaticPackage.3 -fi -if test -r StdChannels.3; then - rm -f Tcl_StandardChannels.3 - ln StdChannels.3 Tcl_StandardChannels.3 -fi -if test -r StrMatch.3; then - rm -f Tcl_StringMatch.3 - rm -f Tcl_StringCaseMatch.3 - ln StrMatch.3 Tcl_StringMatch.3 - ln StrMatch.3 Tcl_StringCaseMatch.3 -fi -if test -r StringObj.3; then - rm -f Tcl_NewStringObj.3 - rm -f Tcl_NewUnicodeObj.3 - rm -f Tcl_SetStringObj.3 - rm -f Tcl_SetUnicodeObj.3 - rm -f Tcl_GetStringFromObj.3 - rm -f Tcl_GetString.3 - rm -f Tcl_GetUnicodeFromObj.3 - rm -f Tcl_GetUnicode.3 - rm -f Tcl_GetUniChar.3 - rm -f Tcl_GetCharLength.3 - rm -f Tcl_GetRange.3 - rm -f Tcl_AppendToObj.3 - rm -f Tcl_AppendUnicodeToObj.3 - rm -f Tcl_AppendStringsToObj.3 - rm -f Tcl_AppendStringsToObjVA.3 - rm -f Tcl_AppendObjToObj.3 - rm -f Tcl_SetObjLength.3 - rm -f Tcl_ConcatObj.3 - rm -f Tcl_AttemptSetObjLength.3 - ln StringObj.3 Tcl_NewStringObj.3 - ln StringObj.3 Tcl_NewUnicodeObj.3 - ln StringObj.3 Tcl_SetStringObj.3 - ln StringObj.3 Tcl_SetUnicodeObj.3 - ln StringObj.3 Tcl_GetStringFromObj.3 - ln StringObj.3 Tcl_GetString.3 - ln StringObj.3 Tcl_GetUnicodeFromObj.3 - ln StringObj.3 Tcl_GetUnicode.3 - ln StringObj.3 Tcl_GetUniChar.3 - ln StringObj.3 Tcl_GetCharLength.3 - ln StringObj.3 Tcl_GetRange.3 - ln StringObj.3 Tcl_AppendToObj.3 - ln StringObj.3 Tcl_AppendUnicodeToObj.3 - ln StringObj.3 Tcl_AppendStringsToObj.3 - ln StringObj.3 Tcl_AppendStringsToObjVA.3 - ln StringObj.3 Tcl_AppendObjToObj.3 - ln StringObj.3 Tcl_SetObjLength.3 - ln StringObj.3 Tcl_ConcatObj.3 - ln StringObj.3 Tcl_AttemptSetObjLength.3 -fi -if test -r SubstObj.3; then - rm -f Tcl_SubstObj.3 - ln SubstObj.3 Tcl_SubstObj.3 -fi -if test -r Tcl_Main.3; then - rm -f Tcl_SetMainLoop.3 - ln Tcl_Main.3 Tcl_SetMainLoop.3 -fi -if test -r Thread.3; then - rm -f Tcl_ConditionNotify.3 - rm -f Tcl_ConditionWait.3 - rm -f Tcl_ConditionFinalize.3 - rm -f Tcl_GetThreadData.3 - rm -f Tcl_MutexLock.3 - rm -f Tcl_MutexUnlock.3 - rm -f Tcl_MutexFinalize.3 - rm -f Tcl_CreateThread.3 - rm -f Tcl_JoinThread.3 - ln Thread.3 Tcl_ConditionNotify.3 - ln Thread.3 Tcl_ConditionWait.3 - ln Thread.3 Tcl_ConditionFinalize.3 - ln Thread.3 Tcl_GetThreadData.3 - ln Thread.3 Tcl_MutexLock.3 - ln Thread.3 Tcl_MutexUnlock.3 - ln Thread.3 Tcl_MutexFinalize.3 - ln Thread.3 Tcl_CreateThread.3 - ln Thread.3 Tcl_JoinThread.3 -fi -if test -r ToUpper.3; then - rm -f Tcl_UniCharToUpper.3 - rm -f Tcl_UniCharToLower.3 - rm -f Tcl_UniCharToTitle.3 - rm -f Tcl_UtfToUpper.3 - rm -f Tcl_UtfToLower.3 - rm -f Tcl_UtfToTitle.3 - ln ToUpper.3 Tcl_UniCharToUpper.3 - ln ToUpper.3 Tcl_UniCharToLower.3 - ln ToUpper.3 Tcl_UniCharToTitle.3 - ln ToUpper.3 Tcl_UtfToUpper.3 - ln ToUpper.3 Tcl_UtfToLower.3 - ln ToUpper.3 Tcl_UtfToTitle.3 -fi -if test -r TraceCmd.3; then - rm -f Tcl_CommandTraceInfo.3 - rm -f Tcl_TraceCommand.3 - rm -f Tcl_UntraceCommand.3 - ln TraceCmd.3 Tcl_CommandTraceInfo.3 - ln TraceCmd.3 Tcl_TraceCommand.3 - ln TraceCmd.3 Tcl_UntraceCommand.3 -fi -if test -r TraceVar.3; then - rm -f Tcl_TraceVar.3 - rm -f Tcl_TraceVar2.3 - rm -f Tcl_UntraceVar.3 - rm -f Tcl_UntraceVar2.3 - rm -f Tcl_VarTraceInfo.3 - rm -f Tcl_VarTraceInfo2.3 - ln TraceVar.3 Tcl_TraceVar.3 - ln TraceVar.3 Tcl_TraceVar2.3 - ln TraceVar.3 Tcl_UntraceVar.3 - ln TraceVar.3 Tcl_UntraceVar2.3 - ln TraceVar.3 Tcl_VarTraceInfo.3 - ln TraceVar.3 Tcl_VarTraceInfo2.3 -fi -if test -r Translate.3; then - rm -f Tcl_TranslateFileName.3 - ln Translate.3 Tcl_TranslateFileName.3 -fi -if test -r UniCharIsAlpha.3; then - rm -f Tcl_UniCharIsAlnum.3 - rm -f Tcl_UniCharIsAlpha.3 - rm -f Tcl_UniCharIsControl.3 - rm -f Tcl_UniCharIsDigit.3 - rm -f Tcl_UniCharIsGraph.3 - rm -f Tcl_UniCharIsLower.3 - rm -f Tcl_UniCharIsPrint.3 - rm -f Tcl_UniCharIsPunct.3 - rm -f Tcl_UniCharIsSpace.3 - rm -f Tcl_UniCharIsUpper.3 - rm -f Tcl_UniCharIsWordChar.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsAlnum.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsAlpha.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsControl.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsDigit.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsGraph.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsLower.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsPrint.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsPunct.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsSpace.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsUpper.3 - ln UniCharIsAlpha.3 Tcl_UniCharIsWordChar.3 -fi -if test -r UpVar.3; then - rm -f Tcl_UpVar.3 - rm -f Tcl_UpVar2.3 - ln UpVar.3 Tcl_UpVar.3 - ln UpVar.3 Tcl_UpVar2.3 -fi -if test -r Utf.3; then - rm -f Tcl_UniChar.3 - rm -f Tcl_UniCharCaseMatch.3 - rm -f Tcl_UniCharNcasecmp.3 - rm -f Tcl_UniCharToUtf.3 - rm -f Tcl_UtfToUniChar.3 - rm -f Tcl_UniCharToUtfDString.3 - rm -f Tcl_UtfToUniCharDString.3 - rm -f Tcl_UniCharLen.3 - rm -f Tcl_UniCharNcmp.3 - rm -f Tcl_UtfCharComplete.3 - rm -f Tcl_NumUtfChars.3 - rm -f Tcl_UtfFindFirst.3 - rm -f Tcl_UtfFindLast.3 - rm -f Tcl_UtfNext.3 - rm -f Tcl_UtfPrev.3 - rm -f Tcl_UniCharAtIndex.3 - rm -f Tcl_UtfAtIndex.3 - rm -f Tcl_UtfBackslash.3 - ln Utf.3 Tcl_UniChar.3 - ln Utf.3 Tcl_UniCharCaseMatch.3 - ln Utf.3 Tcl_UniCharNcasecmp.3 - ln Utf.3 Tcl_UniCharToUtf.3 - ln Utf.3 Tcl_UtfToUniChar.3 - ln Utf.3 Tcl_UniCharToUtfDString.3 - ln Utf.3 Tcl_UtfToUniCharDString.3 - ln Utf.3 Tcl_UniCharLen.3 - ln Utf.3 Tcl_UniCharNcmp.3 - ln Utf.3 Tcl_UtfCharComplete.3 - ln Utf.3 Tcl_NumUtfChars.3 - ln Utf.3 Tcl_UtfFindFirst.3 - ln Utf.3 Tcl_UtfFindLast.3 - ln Utf.3 Tcl_UtfNext.3 - ln Utf.3 Tcl_UtfPrev.3 - ln Utf.3 Tcl_UniCharAtIndex.3 - ln Utf.3 Tcl_UtfAtIndex.3 - ln Utf.3 Tcl_UtfBackslash.3 -fi -if test -r WrongNumArgs.3; then - rm -f Tcl_WrongNumArgs.3 - ln WrongNumArgs.3 Tcl_WrongNumArgs.3 -fi -if test -r http.n; then - if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f Http.n; fi - if test "${CASEINSENSITIVEFS:-}" != "1"; then ln http.n Http.n; fi -fi -if test -r library.n; then - rm -f auto_execok.n - rm -f auto_import.n - rm -f auto_load.n - rm -f auto_mkindex.n - rm -f auto_mkindex_old.n - rm -f auto_qualify.n - rm -f auto_reset.n - rm -f tcl_findLibrary.n - rm -f parray.n - rm -f tcl_endOfWord.n - rm -f tcl_startOfNextWord.n - rm -f tcl_startOfPreviousWord.n - rm -f tcl_wordBreakAfter.n - rm -f tcl_wordBreakBefore.n - ln library.n auto_execok.n - ln library.n auto_import.n - ln library.n auto_load.n - ln library.n auto_mkindex.n - ln library.n auto_mkindex_old.n - ln library.n auto_qualify.n - ln library.n auto_reset.n - ln library.n tcl_findLibrary.n - ln library.n parray.n - ln library.n tcl_endOfWord.n - ln library.n tcl_startOfNextWord.n - ln library.n tcl_startOfPreviousWord.n - ln library.n tcl_wordBreakAfter.n - ln library.n tcl_wordBreakBefore.n -fi -if test -r packagens.n; then - rm -f pkg::create.n - ln packagens.n pkg::create.n -fi -if test -r pkgMkIndex.n; then - rm -f pkg_mkIndex.n - ln pkgMkIndex.n pkg_mkIndex.n -fi -if test -r safe.n; then - rm -f SafeBase.n - ln safe.n SafeBase.n +if test -n "$ZIP" -a -r Access.3; then + rm -f Access.3$Z + $ZIP Access.3 +fi +if test -r Access.3$Z; then + rm -f Tcl_Access.3 Tcl_Access.3$Z + rm -f Tcl_Stat.3 Tcl_Stat.3$Z + ln $S Access.3$Z Tcl_Access.3$Z + ln $S Access.3$Z Tcl_Stat.3$Z +fi +if test -n "$ZIP" -a -r AddErrInfo.3; then + rm -f AddErrInfo.3$Z + $ZIP AddErrInfo.3 +fi +if test -r AddErrInfo.3$Z; then + rm -f Tcl_AddObjErrorInfo.3 Tcl_AddObjErrorInfo.3$Z + rm -f Tcl_AddErrorInfo.3 Tcl_AddErrorInfo.3$Z + rm -f Tcl_SetObjErrorCode.3 Tcl_SetObjErrorCode.3$Z + rm -f Tcl_SetErrorCode.3 Tcl_SetErrorCode.3$Z + rm -f Tcl_SetErrorCodeVA.3 Tcl_SetErrorCodeVA.3$Z + rm -f Tcl_PosixError.3 Tcl_PosixError.3$Z + rm -f Tcl_LogCommandInfo.3 Tcl_LogCommandInfo.3$Z + ln $S AddErrInfo.3$Z Tcl_AddObjErrorInfo.3$Z + ln $S AddErrInfo.3$Z Tcl_AddErrorInfo.3$Z + ln $S AddErrInfo.3$Z Tcl_SetObjErrorCode.3$Z + ln $S AddErrInfo.3$Z Tcl_SetErrorCode.3$Z + ln $S AddErrInfo.3$Z Tcl_SetErrorCodeVA.3$Z + ln $S AddErrInfo.3$Z Tcl_PosixError.3$Z + ln $S AddErrInfo.3$Z Tcl_LogCommandInfo.3$Z +fi +if test -n "$ZIP" -a -r Alloc.3; then + rm -f Alloc.3$Z + $ZIP Alloc.3 +fi +if test -r Alloc.3$Z; then + rm -f Tcl_Alloc.3 Tcl_Alloc.3$Z + rm -f Tcl_Free.3 Tcl_Free.3$Z + rm -f Tcl_Realloc.3 Tcl_Realloc.3$Z + rm -f Tcl_AttemptAlloc.3 Tcl_AttemptAlloc.3$Z + rm -f Tcl_AttemptRealloc.3 Tcl_AttemptRealloc.3$Z + rm -f ckalloc.3 ckalloc.3$Z + rm -f ckfree.3 ckfree.3$Z + rm -f ckrealloc.3 ckrealloc.3$Z + rm -f attemptckalloc.3 attemptckalloc.3$Z + rm -f attemptckrealloc.3 attemptckrealloc.3$Z + ln $S Alloc.3$Z Tcl_Alloc.3$Z + ln $S Alloc.3$Z Tcl_Free.3$Z + ln $S Alloc.3$Z Tcl_Realloc.3$Z + ln $S Alloc.3$Z Tcl_AttemptAlloc.3$Z + ln $S Alloc.3$Z Tcl_AttemptRealloc.3$Z + ln $S Alloc.3$Z ckalloc.3$Z + ln $S Alloc.3$Z ckfree.3$Z + ln $S Alloc.3$Z ckrealloc.3$Z + ln $S Alloc.3$Z attemptckalloc.3$Z + ln $S Alloc.3$Z attemptckrealloc.3$Z +fi +if test -n "$ZIP" -a -r AllowExc.3; then + rm -f AllowExc.3$Z + $ZIP AllowExc.3 +fi +if test -r AllowExc.3$Z; then + rm -f Tcl_AllowExceptions.3 Tcl_AllowExceptions.3$Z + ln $S AllowExc.3$Z Tcl_AllowExceptions.3$Z +fi +if test -n "$ZIP" -a -r AppInit.3; then + rm -f AppInit.3$Z + $ZIP AppInit.3 +fi +if test -r AppInit.3$Z; then + rm -f Tcl_AppInit.3 Tcl_AppInit.3$Z + ln $S AppInit.3$Z Tcl_AppInit.3$Z +fi +if test -n "$ZIP" -a -r AssocData.3; then + rm -f AssocData.3$Z + $ZIP AssocData.3 +fi +if test -r AssocData.3$Z; then + rm -f Tcl_GetAssocData.3 Tcl_GetAssocData.3$Z + rm -f Tcl_SetAssocData.3 Tcl_SetAssocData.3$Z + rm -f Tcl_DeleteAssocData.3 Tcl_DeleteAssocData.3$Z + ln $S AssocData.3$Z Tcl_GetAssocData.3$Z + ln $S AssocData.3$Z Tcl_SetAssocData.3$Z + ln $S AssocData.3$Z Tcl_DeleteAssocData.3$Z +fi +if test -n "$ZIP" -a -r Async.3; then + rm -f Async.3$Z + $ZIP Async.3 +fi +if test -r Async.3$Z; then + rm -f Tcl_AsyncCreate.3 Tcl_AsyncCreate.3$Z + rm -f Tcl_AsyncMark.3 Tcl_AsyncMark.3$Z + rm -f Tcl_AsyncInvoke.3 Tcl_AsyncInvoke.3$Z + rm -f Tcl_AsyncDelete.3 Tcl_AsyncDelete.3$Z + rm -f Tcl_AsyncReady.3 Tcl_AsyncReady.3$Z + ln $S Async.3$Z Tcl_AsyncCreate.3$Z + ln $S Async.3$Z Tcl_AsyncMark.3$Z + ln $S Async.3$Z Tcl_AsyncInvoke.3$Z + ln $S Async.3$Z Tcl_AsyncDelete.3$Z + ln $S Async.3$Z Tcl_AsyncReady.3$Z +fi +if test -n "$ZIP" -a -r BackgdErr.3; then + rm -f BackgdErr.3$Z + $ZIP BackgdErr.3 +fi +if test -r BackgdErr.3$Z; then + rm -f Tcl_BackgroundError.3 Tcl_BackgroundError.3$Z + ln $S BackgdErr.3$Z Tcl_BackgroundError.3$Z +fi +if test -n "$ZIP" -a -r Backslash.3; then + rm -f Backslash.3$Z + $ZIP Backslash.3 +fi +if test -r Backslash.3$Z; then + rm -f Tcl_Backslash.3 Tcl_Backslash.3$Z + ln $S Backslash.3$Z Tcl_Backslash.3$Z +fi +if test -n "$ZIP" -a -r BoolObj.3; then + rm -f BoolObj.3$Z + $ZIP BoolObj.3 +fi +if test -r BoolObj.3$Z; then + rm -f Tcl_NewBooleanObj.3 Tcl_NewBooleanObj.3$Z + rm -f Tcl_SetBooleanObj.3 Tcl_SetBooleanObj.3$Z + rm -f Tcl_GetBooleanFromObj.3 Tcl_GetBooleanFromObj.3$Z + ln $S BoolObj.3$Z Tcl_NewBooleanObj.3$Z + ln $S BoolObj.3$Z Tcl_SetBooleanObj.3$Z + ln $S BoolObj.3$Z Tcl_GetBooleanFromObj.3$Z +fi +if test -n "$ZIP" -a -r ByteArrObj.3; then + rm -f ByteArrObj.3$Z + $ZIP ByteArrObj.3 +fi +if test -r ByteArrObj.3$Z; then + rm -f Tcl_NewByteArrayObj.3 Tcl_NewByteArrayObj.3$Z + rm -f Tcl_SetByteArrayObj.3 Tcl_SetByteArrayObj.3$Z + rm -f Tcl_GetByteArrayFromObj.3 Tcl_GetByteArrayFromObj.3$Z + rm -f Tcl_SetByteArrayLength.3 Tcl_SetByteArrayLength.3$Z + ln $S ByteArrObj.3$Z Tcl_NewByteArrayObj.3$Z + ln $S ByteArrObj.3$Z Tcl_SetByteArrayObj.3$Z + ln $S ByteArrObj.3$Z Tcl_GetByteArrayFromObj.3$Z + ln $S ByteArrObj.3$Z Tcl_SetByteArrayLength.3$Z +fi +if test -n "$ZIP" -a -r CallDel.3; then + rm -f CallDel.3$Z + $ZIP CallDel.3 +fi +if test -r CallDel.3$Z; then + rm -f Tcl_CallWhenDeleted.3 Tcl_CallWhenDeleted.3$Z + rm -f Tcl_DontCallWhenDeleted.3 Tcl_DontCallWhenDeleted.3$Z + ln $S CallDel.3$Z Tcl_CallWhenDeleted.3$Z + ln $S CallDel.3$Z Tcl_DontCallWhenDeleted.3$Z +fi +if test -n "$ZIP" -a -r ChnlStack.3; then + rm -f ChnlStack.3$Z + $ZIP ChnlStack.3 +fi +if test -r ChnlStack.3$Z; then + rm -f Tcl_StackChannel.3 Tcl_StackChannel.3$Z + rm -f Tcl_UnstackChannel.3 Tcl_UnstackChannel.3$Z + rm -f Tcl_GetStackedChannel.3 Tcl_GetStackedChannel.3$Z + rm -f Tcl_GetTopChannel.3 Tcl_GetTopChannel.3$Z + ln $S ChnlStack.3$Z Tcl_StackChannel.3$Z + ln $S ChnlStack.3$Z Tcl_UnstackChannel.3$Z + ln $S ChnlStack.3$Z Tcl_GetStackedChannel.3$Z + ln $S ChnlStack.3$Z Tcl_GetTopChannel.3$Z +fi +if test -n "$ZIP" -a -r CmdCmplt.3; then + rm -f CmdCmplt.3$Z + $ZIP CmdCmplt.3 +fi +if test -r CmdCmplt.3$Z; then + rm -f Tcl_CommandComplete.3 Tcl_CommandComplete.3$Z + ln $S CmdCmplt.3$Z Tcl_CommandComplete.3$Z +fi +if test -n "$ZIP" -a -r Concat.3; then + rm -f Concat.3$Z + $ZIP Concat.3 +fi +if test -r Concat.3$Z; then + rm -f Tcl_Concat.3 Tcl_Concat.3$Z + ln $S Concat.3$Z Tcl_Concat.3$Z +fi +if test -n "$ZIP" -a -r CrtChannel.3; then + rm -f CrtChannel.3$Z + $ZIP CrtChannel.3 +fi +if test -r CrtChannel.3$Z; then + rm -f Tcl_CreateChannel.3 Tcl_CreateChannel.3$Z + rm -f Tcl_GetChannelInstanceData.3 Tcl_GetChannelInstanceData.3$Z + rm -f Tcl_GetChannelType.3 Tcl_GetChannelType.3$Z + rm -f Tcl_GetChannelName.3 Tcl_GetChannelName.3$Z + rm -f Tcl_GetChannelHandle.3 Tcl_GetChannelHandle.3$Z + rm -f Tcl_GetChannelMode.3 Tcl_GetChannelMode.3$Z + rm -f Tcl_GetChannelBufferSize.3 Tcl_GetChannelBufferSize.3$Z + rm -f Tcl_SetChannelBufferSize.3 Tcl_SetChannelBufferSize.3$Z + rm -f Tcl_NotifyChannel.3 Tcl_NotifyChannel.3$Z + rm -f Tcl_BadChannelOption.3 Tcl_BadChannelOption.3$Z + rm -f Tcl_ChannelName.3 Tcl_ChannelName.3$Z + rm -f Tcl_ChannelVersion.3 Tcl_ChannelVersion.3$Z + rm -f Tcl_ChannelBlockModeProc.3 Tcl_ChannelBlockModeProc.3$Z + rm -f Tcl_ChannelCloseProc.3 Tcl_ChannelCloseProc.3$Z + rm -f Tcl_ChannelClose2Proc.3 Tcl_ChannelClose2Proc.3$Z + rm -f Tcl_ChannelInputProc.3 Tcl_ChannelInputProc.3$Z + rm -f Tcl_ChannelOutputProc.3 Tcl_ChannelOutputProc.3$Z + rm -f Tcl_ChannelSeekProc.3 Tcl_ChannelSeekProc.3$Z + rm -f Tcl_ChannelWideSeekProc.3 Tcl_ChannelWideSeekProc.3$Z + rm -f Tcl_ChannelSetOptionProc.3 Tcl_ChannelSetOptionProc.3$Z + rm -f Tcl_ChannelGetOptionProc.3 Tcl_ChannelGetOptionProc.3$Z + rm -f Tcl_ChannelWatchProc.3 Tcl_ChannelWatchProc.3$Z + rm -f Tcl_ChannelGetHandleProc.3 Tcl_ChannelGetHandleProc.3$Z + rm -f Tcl_ChannelFlushProc.3 Tcl_ChannelFlushProc.3$Z + rm -f Tcl_ChannelHandlerProc.3 Tcl_ChannelHandlerProc.3$Z + rm -f Tcl_IsChannelShared.3 Tcl_IsChannelShared.3$Z + rm -f Tcl_IsChannelRegistered.3 Tcl_IsChannelRegistered.3$Z + rm -f Tcl_CutChannel.3 Tcl_CutChannel.3$Z + rm -f Tcl_SpliceChannel.3 Tcl_SpliceChannel.3$Z + rm -f Tcl_IsChannelExisting.3 Tcl_IsChannelExisting.3$Z + rm -f Tcl_ClearChannelHandlers.3 Tcl_ClearChannelHandlers.3$Z + rm -f Tcl_GetChannelThread.3 Tcl_GetChannelThread.3$Z + rm -f Tcl_ChannelBuffered.3 Tcl_ChannelBuffered.3$Z + ln $S CrtChannel.3$Z Tcl_CreateChannel.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelInstanceData.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelType.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelName.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelHandle.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelMode.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelBufferSize.3$Z + ln $S CrtChannel.3$Z Tcl_SetChannelBufferSize.3$Z + ln $S CrtChannel.3$Z Tcl_NotifyChannel.3$Z + ln $S CrtChannel.3$Z Tcl_BadChannelOption.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelName.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelVersion.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelBlockModeProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelCloseProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelClose2Proc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelInputProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelOutputProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelSeekProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelWideSeekProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelSetOptionProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelGetOptionProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelWatchProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelGetHandleProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelFlushProc.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelHandlerProc.3$Z + ln $S CrtChannel.3$Z Tcl_IsChannelShared.3$Z + ln $S CrtChannel.3$Z Tcl_IsChannelRegistered.3$Z + ln $S CrtChannel.3$Z Tcl_CutChannel.3$Z + ln $S CrtChannel.3$Z Tcl_SpliceChannel.3$Z + ln $S CrtChannel.3$Z Tcl_IsChannelExisting.3$Z + ln $S CrtChannel.3$Z Tcl_ClearChannelHandlers.3$Z + ln $S CrtChannel.3$Z Tcl_GetChannelThread.3$Z + ln $S CrtChannel.3$Z Tcl_ChannelBuffered.3$Z +fi +if test -n "$ZIP" -a -r CrtChnlHdlr.3; then + rm -f CrtChnlHdlr.3$Z + $ZIP CrtChnlHdlr.3 +fi +if test -r CrtChnlHdlr.3$Z; then + rm -f Tcl_CreateChannelHandler.3 Tcl_CreateChannelHandler.3$Z + rm -f Tcl_DeleteChannelHandler.3 Tcl_DeleteChannelHandler.3$Z + ln $S CrtChnlHdlr.3$Z Tcl_CreateChannelHandler.3$Z + ln $S CrtChnlHdlr.3$Z Tcl_DeleteChannelHandler.3$Z +fi +if test -n "$ZIP" -a -r CrtCloseHdlr.3; then + rm -f CrtCloseHdlr.3$Z + $ZIP CrtCloseHdlr.3 +fi +if test -r CrtCloseHdlr.3$Z; then + rm -f Tcl_CreateCloseHandler.3 Tcl_CreateCloseHandler.3$Z + rm -f Tcl_DeleteCloseHandler.3 Tcl_DeleteCloseHandler.3$Z + ln $S CrtCloseHdlr.3$Z Tcl_CreateCloseHandler.3$Z + ln $S CrtCloseHdlr.3$Z Tcl_DeleteCloseHandler.3$Z +fi +if test -n "$ZIP" -a -r CrtCommand.3; then + rm -f CrtCommand.3$Z + $ZIP CrtCommand.3 +fi +if test -r CrtCommand.3$Z; then + rm -f Tcl_CreateCommand.3 Tcl_CreateCommand.3$Z + ln $S CrtCommand.3$Z Tcl_CreateCommand.3$Z +fi +if test -n "$ZIP" -a -r CrtFileHdlr.3; then + rm -f CrtFileHdlr.3$Z + $ZIP CrtFileHdlr.3 +fi +if test -r CrtFileHdlr.3$Z; then + rm -f Tcl_CreateFileHandler.3 Tcl_CreateFileHandler.3$Z + rm -f Tcl_DeleteFileHandler.3 Tcl_DeleteFileHandler.3$Z + ln $S CrtFileHdlr.3$Z Tcl_CreateFileHandler.3$Z + ln $S CrtFileHdlr.3$Z Tcl_DeleteFileHandler.3$Z +fi +if test -n "$ZIP" -a -r CrtInterp.3; then + rm -f CrtInterp.3$Z + $ZIP CrtInterp.3 +fi +if test -r CrtInterp.3$Z; then + rm -f Tcl_CreateInterp.3 Tcl_CreateInterp.3$Z + rm -f Tcl_DeleteInterp.3 Tcl_DeleteInterp.3$Z + rm -f Tcl_InterpDeleted.3 Tcl_InterpDeleted.3$Z + ln $S CrtInterp.3$Z Tcl_CreateInterp.3$Z + ln $S CrtInterp.3$Z Tcl_DeleteInterp.3$Z + ln $S CrtInterp.3$Z Tcl_InterpDeleted.3$Z +fi +if test -n "$ZIP" -a -r CrtMathFnc.3; then + rm -f CrtMathFnc.3$Z + $ZIP CrtMathFnc.3 +fi +if test -r CrtMathFnc.3$Z; then + rm -f Tcl_CreateMathFunc.3 Tcl_CreateMathFunc.3$Z + rm -f Tcl_GetMathFuncInfo.3 Tcl_GetMathFuncInfo.3$Z + rm -f Tcl_ListMathFuncs.3 Tcl_ListMathFuncs.3$Z + ln $S CrtMathFnc.3$Z Tcl_CreateMathFunc.3$Z + ln $S CrtMathFnc.3$Z Tcl_GetMathFuncInfo.3$Z + ln $S CrtMathFnc.3$Z Tcl_ListMathFuncs.3$Z +fi +if test -n "$ZIP" -a -r CrtObjCmd.3; then + rm -f CrtObjCmd.3$Z + $ZIP CrtObjCmd.3 +fi +if test -r CrtObjCmd.3$Z; then + rm -f Tcl_CreateObjCommand.3 Tcl_CreateObjCommand.3$Z + rm -f Tcl_DeleteCommand.3 Tcl_DeleteCommand.3$Z + rm -f Tcl_DeleteCommandFromToken.3 Tcl_DeleteCommandFromToken.3$Z + rm -f Tcl_GetCommandInfo.3 Tcl_GetCommandInfo.3$Z + rm -f Tcl_GetCommandInfoFromToken.3 Tcl_GetCommandInfoFromToken.3$Z + rm -f Tcl_SetCommandInfo.3 Tcl_SetCommandInfo.3$Z + rm -f Tcl_SetCommandInfoFromToken.3 Tcl_SetCommandInfoFromToken.3$Z + rm -f Tcl_GetCommandName.3 Tcl_GetCommandName.3$Z + rm -f Tcl_GetCommandFullName.3 Tcl_GetCommandFullName.3$Z + rm -f Tcl_GetCommandFromObj.3 Tcl_GetCommandFromObj.3$Z + ln $S CrtObjCmd.3$Z Tcl_CreateObjCommand.3$Z + ln $S CrtObjCmd.3$Z Tcl_DeleteCommand.3$Z + ln $S CrtObjCmd.3$Z Tcl_DeleteCommandFromToken.3$Z + ln $S CrtObjCmd.3$Z Tcl_GetCommandInfo.3$Z + ln $S CrtObjCmd.3$Z Tcl_GetCommandInfoFromToken.3$Z + ln $S CrtObjCmd.3$Z Tcl_SetCommandInfo.3$Z + ln $S CrtObjCmd.3$Z Tcl_SetCommandInfoFromToken.3$Z + ln $S CrtObjCmd.3$Z Tcl_GetCommandName.3$Z + ln $S CrtObjCmd.3$Z Tcl_GetCommandFullName.3$Z + ln $S CrtObjCmd.3$Z Tcl_GetCommandFromObj.3$Z +fi +if test -n "$ZIP" -a -r CrtSlave.3; then + rm -f CrtSlave.3$Z + $ZIP CrtSlave.3 +fi +if test -r CrtSlave.3$Z; then + rm -f Tcl_IsSafe.3 Tcl_IsSafe.3$Z + rm -f Tcl_MakeSafe.3 Tcl_MakeSafe.3$Z + rm -f Tcl_CreateSlave.3 Tcl_CreateSlave.3$Z + rm -f Tcl_GetSlave.3 Tcl_GetSlave.3$Z + rm -f Tcl_GetMaster.3 Tcl_GetMaster.3$Z + rm -f Tcl_GetInterpPath.3 Tcl_GetInterpPath.3$Z + rm -f Tcl_CreateAlias.3 Tcl_CreateAlias.3$Z + rm -f Tcl_CreateAliasObj.3 Tcl_CreateAliasObj.3$Z + rm -f Tcl_GetAlias.3 Tcl_GetAlias.3$Z + rm -f Tcl_GetAliasObj.3 Tcl_GetAliasObj.3$Z + rm -f Tcl_ExposeCommand.3 Tcl_ExposeCommand.3$Z + rm -f Tcl_HideCommand.3 Tcl_HideCommand.3$Z + ln $S CrtSlave.3$Z Tcl_IsSafe.3$Z + ln $S CrtSlave.3$Z Tcl_MakeSafe.3$Z + ln $S CrtSlave.3$Z Tcl_CreateSlave.3$Z + ln $S CrtSlave.3$Z Tcl_GetSlave.3$Z + ln $S CrtSlave.3$Z Tcl_GetMaster.3$Z + ln $S CrtSlave.3$Z Tcl_GetInterpPath.3$Z + ln $S CrtSlave.3$Z Tcl_CreateAlias.3$Z + ln $S CrtSlave.3$Z Tcl_CreateAliasObj.3$Z + ln $S CrtSlave.3$Z Tcl_GetAlias.3$Z + ln $S CrtSlave.3$Z Tcl_GetAliasObj.3$Z + ln $S CrtSlave.3$Z Tcl_ExposeCommand.3$Z + ln $S CrtSlave.3$Z Tcl_HideCommand.3$Z +fi +if test -n "$ZIP" -a -r CrtTimerHdlr.3; then + rm -f CrtTimerHdlr.3$Z + $ZIP CrtTimerHdlr.3 +fi +if test -r CrtTimerHdlr.3$Z; then + rm -f Tcl_CreateTimerHandler.3 Tcl_CreateTimerHandler.3$Z + rm -f Tcl_DeleteTimerHandler.3 Tcl_DeleteTimerHandler.3$Z + ln $S CrtTimerHdlr.3$Z Tcl_CreateTimerHandler.3$Z + ln $S CrtTimerHdlr.3$Z Tcl_DeleteTimerHandler.3$Z +fi +if test -n "$ZIP" -a -r CrtTrace.3; then + rm -f CrtTrace.3$Z + $ZIP CrtTrace.3 +fi +if test -r CrtTrace.3$Z; then + rm -f Tcl_CreateTrace.3 Tcl_CreateTrace.3$Z + rm -f Tcl_CreateObjTrace.3 Tcl_CreateObjTrace.3$Z + rm -f Tcl_DeleteTrace.3 Tcl_DeleteTrace.3$Z + ln $S CrtTrace.3$Z Tcl_CreateTrace.3$Z + ln $S CrtTrace.3$Z Tcl_CreateObjTrace.3$Z + ln $S CrtTrace.3$Z Tcl_DeleteTrace.3$Z +fi +if test -n "$ZIP" -a -r DString.3; then + rm -f DString.3$Z + $ZIP DString.3 +fi +if test -r DString.3$Z; then + rm -f Tcl_DStringInit.3 Tcl_DStringInit.3$Z + rm -f Tcl_DStringAppend.3 Tcl_DStringAppend.3$Z + rm -f Tcl_DStringAppendElement.3 Tcl_DStringAppendElement.3$Z + rm -f Tcl_DStringStartSublist.3 Tcl_DStringStartSublist.3$Z + rm -f Tcl_DStringEndSublist.3 Tcl_DStringEndSublist.3$Z + rm -f Tcl_DStringLength.3 Tcl_DStringLength.3$Z + rm -f Tcl_DStringValue.3 Tcl_DStringValue.3$Z + rm -f Tcl_DStringSetLength.3 Tcl_DStringSetLength.3$Z + rm -f Tcl_DStringTrunc.3 Tcl_DStringTrunc.3$Z + rm -f Tcl_DStringFree.3 Tcl_DStringFree.3$Z + rm -f Tcl_DStringResult.3 Tcl_DStringResult.3$Z + rm -f Tcl_DStringGetResult.3 Tcl_DStringGetResult.3$Z + ln $S DString.3$Z Tcl_DStringInit.3$Z + ln $S DString.3$Z Tcl_DStringAppend.3$Z + ln $S DString.3$Z Tcl_DStringAppendElement.3$Z + ln $S DString.3$Z Tcl_DStringStartSublist.3$Z + ln $S DString.3$Z Tcl_DStringEndSublist.3$Z + ln $S DString.3$Z Tcl_DStringLength.3$Z + ln $S DString.3$Z Tcl_DStringValue.3$Z + ln $S DString.3$Z Tcl_DStringSetLength.3$Z + ln $S DString.3$Z Tcl_DStringTrunc.3$Z + ln $S DString.3$Z Tcl_DStringFree.3$Z + ln $S DString.3$Z Tcl_DStringResult.3$Z + ln $S DString.3$Z Tcl_DStringGetResult.3$Z +fi +if test -n "$ZIP" -a -r DetachPids.3; then + rm -f DetachPids.3$Z + $ZIP DetachPids.3 +fi +if test -r DetachPids.3$Z; then + rm -f Tcl_DetachPids.3 Tcl_DetachPids.3$Z + rm -f Tcl_ReapDetachedProcs.3 Tcl_ReapDetachedProcs.3$Z + rm -f Tcl_WaitPid.3 Tcl_WaitPid.3$Z + ln $S DetachPids.3$Z Tcl_DetachPids.3$Z + ln $S DetachPids.3$Z Tcl_ReapDetachedProcs.3$Z + ln $S DetachPids.3$Z Tcl_WaitPid.3$Z +fi +if test -n "$ZIP" -a -r DoOneEvent.3; then + rm -f DoOneEvent.3$Z + $ZIP DoOneEvent.3 +fi +if test -r DoOneEvent.3$Z; then + rm -f Tcl_DoOneEvent.3 Tcl_DoOneEvent.3$Z + ln $S DoOneEvent.3$Z Tcl_DoOneEvent.3$Z +fi +if test -n "$ZIP" -a -r DoWhenIdle.3; then + rm -f DoWhenIdle.3$Z + $ZIP DoWhenIdle.3 +fi +if test -r DoWhenIdle.3$Z; then + rm -f Tcl_DoWhenIdle.3 Tcl_DoWhenIdle.3$Z + rm -f Tcl_CancelIdleCall.3 Tcl_CancelIdleCall.3$Z + ln $S DoWhenIdle.3$Z Tcl_DoWhenIdle.3$Z + ln $S DoWhenIdle.3$Z Tcl_CancelIdleCall.3$Z +fi +if test -n "$ZIP" -a -r DoubleObj.3; then + rm -f DoubleObj.3$Z + $ZIP DoubleObj.3 +fi +if test -r DoubleObj.3$Z; then + rm -f Tcl_NewDoubleObj.3 Tcl_NewDoubleObj.3$Z + rm -f Tcl_SetDoubleObj.3 Tcl_SetDoubleObj.3$Z + rm -f Tcl_GetDoubleFromObj.3 Tcl_GetDoubleFromObj.3$Z + ln $S DoubleObj.3$Z Tcl_NewDoubleObj.3$Z + ln $S DoubleObj.3$Z Tcl_SetDoubleObj.3$Z + ln $S DoubleObj.3$Z Tcl_GetDoubleFromObj.3$Z +fi +if test -n "$ZIP" -a -r DumpActiveMemory.3; then + rm -f DumpActiveMemory.3$Z + $ZIP DumpActiveMemory.3 +fi +if test -r DumpActiveMemory.3$Z; then + rm -f Tcl_DumpActiveMemory.3 Tcl_DumpActiveMemory.3$Z + rm -f Tcl_InitMemory.3 Tcl_InitMemory.3$Z + rm -f Tcl_ValidateAllMemory.3 Tcl_ValidateAllMemory.3$Z + ln $S DumpActiveMemory.3$Z Tcl_DumpActiveMemory.3$Z + ln $S DumpActiveMemory.3$Z Tcl_InitMemory.3$Z + ln $S DumpActiveMemory.3$Z Tcl_ValidateAllMemory.3$Z +fi +if test -n "$ZIP" -a -r Encoding.3; then + rm -f Encoding.3$Z + $ZIP Encoding.3 +fi +if test -r Encoding.3$Z; then + rm -f Tcl_GetEncoding.3 Tcl_GetEncoding.3$Z + rm -f Tcl_FreeEncoding.3 Tcl_FreeEncoding.3$Z + rm -f Tcl_ExternalToUtfDString.3 Tcl_ExternalToUtfDString.3$Z + rm -f Tcl_ExternalToUtf.3 Tcl_ExternalToUtf.3$Z + rm -f Tcl_UtfToExternalDString.3 Tcl_UtfToExternalDString.3$Z + rm -f Tcl_UtfToExternal.3 Tcl_UtfToExternal.3$Z + rm -f Tcl_WinTCharToUtf.3 Tcl_WinTCharToUtf.3$Z + rm -f Tcl_WinUtfToTChar.3 Tcl_WinUtfToTChar.3$Z + rm -f Tcl_GetEncodingName.3 Tcl_GetEncodingName.3$Z + rm -f Tcl_SetSystemEncoding.3 Tcl_SetSystemEncoding.3$Z + rm -f Tcl_GetEncodingNames.3 Tcl_GetEncodingNames.3$Z + rm -f Tcl_CreateEncoding.3 Tcl_CreateEncoding.3$Z + rm -f Tcl_GetDefaultEncodingDir.3 Tcl_GetDefaultEncodingDir.3$Z + rm -f Tcl_SetDefaultEncodingDir.3 Tcl_SetDefaultEncodingDir.3$Z + ln $S Encoding.3$Z Tcl_GetEncoding.3$Z + ln $S Encoding.3$Z Tcl_FreeEncoding.3$Z + ln $S Encoding.3$Z Tcl_ExternalToUtfDString.3$Z + ln $S Encoding.3$Z Tcl_ExternalToUtf.3$Z + ln $S Encoding.3$Z Tcl_UtfToExternalDString.3$Z + ln $S Encoding.3$Z Tcl_UtfToExternal.3$Z + ln $S Encoding.3$Z Tcl_WinTCharToUtf.3$Z + ln $S Encoding.3$Z Tcl_WinUtfToTChar.3$Z + ln $S Encoding.3$Z Tcl_GetEncodingName.3$Z + ln $S Encoding.3$Z Tcl_SetSystemEncoding.3$Z + ln $S Encoding.3$Z Tcl_GetEncodingNames.3$Z + ln $S Encoding.3$Z Tcl_CreateEncoding.3$Z + ln $S Encoding.3$Z Tcl_GetDefaultEncodingDir.3$Z + ln $S Encoding.3$Z Tcl_SetDefaultEncodingDir.3$Z +fi +if test -n "$ZIP" -a -r Environment.3; then + rm -f Environment.3$Z + $ZIP Environment.3 +fi +if test -r Environment.3$Z; then + rm -f Tcl_PutEnv.3 Tcl_PutEnv.3$Z + ln $S Environment.3$Z Tcl_PutEnv.3$Z +fi +if test -n "$ZIP" -a -r Eval.3; then + rm -f Eval.3$Z + $ZIP Eval.3 +fi +if test -r Eval.3$Z; then + rm -f Tcl_EvalObjEx.3 Tcl_EvalObjEx.3$Z + rm -f Tcl_EvalFile.3 Tcl_EvalFile.3$Z + rm -f Tcl_EvalObjv.3 Tcl_EvalObjv.3$Z + rm -f Tcl_Eval.3 Tcl_Eval.3$Z + rm -f Tcl_EvalEx.3 Tcl_EvalEx.3$Z + rm -f Tcl_GlobalEval.3 Tcl_GlobalEval.3$Z + rm -f Tcl_GlobalEvalObj.3 Tcl_GlobalEvalObj.3$Z + rm -f Tcl_VarEval.3 Tcl_VarEval.3$Z + rm -f Tcl_VarEvalVA.3 Tcl_VarEvalVA.3$Z + ln $S Eval.3$Z Tcl_EvalObjEx.3$Z + ln $S Eval.3$Z Tcl_EvalFile.3$Z + ln $S Eval.3$Z Tcl_EvalObjv.3$Z + ln $S Eval.3$Z Tcl_Eval.3$Z + ln $S Eval.3$Z Tcl_EvalEx.3$Z + ln $S Eval.3$Z Tcl_GlobalEval.3$Z + ln $S Eval.3$Z Tcl_GlobalEvalObj.3$Z + ln $S Eval.3$Z Tcl_VarEval.3$Z + ln $S Eval.3$Z Tcl_VarEvalVA.3$Z +fi +if test -n "$ZIP" -a -r Exit.3; then + rm -f Exit.3$Z + $ZIP Exit.3 +fi +if test -r Exit.3$Z; then + rm -f Tcl_Exit.3 Tcl_Exit.3$Z + rm -f Tcl_Finalize.3 Tcl_Finalize.3$Z + rm -f Tcl_CreateExitHandler.3 Tcl_CreateExitHandler.3$Z + rm -f Tcl_DeleteExitHandler.3 Tcl_DeleteExitHandler.3$Z + rm -f Tcl_ExitThread.3 Tcl_ExitThread.3$Z + rm -f Tcl_FinalizeThread.3 Tcl_FinalizeThread.3$Z + rm -f Tcl_CreateThreadExitHandler.3 Tcl_CreateThreadExitHandler.3$Z + rm -f Tcl_DeleteThreadExitHandler.3 Tcl_DeleteThreadExitHandler.3$Z + ln $S Exit.3$Z Tcl_Exit.3$Z + ln $S Exit.3$Z Tcl_Finalize.3$Z + ln $S Exit.3$Z Tcl_CreateExitHandler.3$Z + ln $S Exit.3$Z Tcl_DeleteExitHandler.3$Z + ln $S Exit.3$Z Tcl_ExitThread.3$Z + ln $S Exit.3$Z Tcl_FinalizeThread.3$Z + ln $S Exit.3$Z Tcl_CreateThreadExitHandler.3$Z + ln $S Exit.3$Z Tcl_DeleteThreadExitHandler.3$Z +fi +if test -n "$ZIP" -a -r ExprLong.3; then + rm -f ExprLong.3$Z + $ZIP ExprLong.3 +fi +if test -r ExprLong.3$Z; then + rm -f Tcl_ExprLong.3 Tcl_ExprLong.3$Z + rm -f Tcl_ExprDouble.3 Tcl_ExprDouble.3$Z + rm -f Tcl_ExprBoolean.3 Tcl_ExprBoolean.3$Z + rm -f Tcl_ExprString.3 Tcl_ExprString.3$Z + ln $S ExprLong.3$Z Tcl_ExprLong.3$Z + ln $S ExprLong.3$Z Tcl_ExprDouble.3$Z + ln $S ExprLong.3$Z Tcl_ExprBoolean.3$Z + ln $S ExprLong.3$Z Tcl_ExprString.3$Z +fi +if test -n "$ZIP" -a -r ExprLongObj.3; then + rm -f ExprLongObj.3$Z + $ZIP ExprLongObj.3 +fi +if test -r ExprLongObj.3$Z; then + rm -f Tcl_ExprLongObj.3 Tcl_ExprLongObj.3$Z + rm -f Tcl_ExprDoubleObj.3 Tcl_ExprDoubleObj.3$Z + rm -f Tcl_ExprBooleanObj.3 Tcl_ExprBooleanObj.3$Z + rm -f Tcl_ExprObj.3 Tcl_ExprObj.3$Z + ln $S ExprLongObj.3$Z Tcl_ExprLongObj.3$Z + ln $S ExprLongObj.3$Z Tcl_ExprDoubleObj.3$Z + ln $S ExprLongObj.3$Z Tcl_ExprBooleanObj.3$Z + ln $S ExprLongObj.3$Z Tcl_ExprObj.3$Z +fi +if test -n "$ZIP" -a -r FileSystem.3; then + rm -f FileSystem.3$Z + $ZIP FileSystem.3 +fi +if test -r FileSystem.3$Z; then + rm -f Tcl_FSRegister.3 Tcl_FSRegister.3$Z + rm -f Tcl_FSUnregister.3 Tcl_FSUnregister.3$Z + rm -f Tcl_FSData.3 Tcl_FSData.3$Z + rm -f Tcl_FSMountsChanged.3 Tcl_FSMountsChanged.3$Z + rm -f Tcl_FSGetFileSystemForPath.3 Tcl_FSGetFileSystemForPath.3$Z + rm -f Tcl_FSGetPathType.3 Tcl_FSGetPathType.3$Z + rm -f Tcl_FSCopyFile.3 Tcl_FSCopyFile.3$Z + rm -f Tcl_FSCopyDirectory.3 Tcl_FSCopyDirectory.3$Z + rm -f Tcl_FSCreateDirectory.3 Tcl_FSCreateDirectory.3$Z + rm -f Tcl_FSDeleteFile.3 Tcl_FSDeleteFile.3$Z + rm -f Tcl_FSRemoveDirectory.3 Tcl_FSRemoveDirectory.3$Z + rm -f Tcl_FSRenameFile.3 Tcl_FSRenameFile.3$Z + rm -f Tcl_FSListVolumes.3 Tcl_FSListVolumes.3$Z + rm -f Tcl_FSEvalFile.3 Tcl_FSEvalFile.3$Z + rm -f Tcl_FSLoadFile.3 Tcl_FSLoadFile.3$Z + rm -f Tcl_FSMatchInDirectory.3 Tcl_FSMatchInDirectory.3$Z + rm -f Tcl_FSLink.3 Tcl_FSLink.3$Z + rm -f Tcl_FSLstat.3 Tcl_FSLstat.3$Z + rm -f Tcl_FSUtime.3 Tcl_FSUtime.3$Z + rm -f Tcl_FSFileAttrsGet.3 Tcl_FSFileAttrsGet.3$Z + rm -f Tcl_FSFileAttrsSet.3 Tcl_FSFileAttrsSet.3$Z + rm -f Tcl_FSFileAttrStrings.3 Tcl_FSFileAttrStrings.3$Z + rm -f Tcl_FSStat.3 Tcl_FSStat.3$Z + rm -f Tcl_FSAccess.3 Tcl_FSAccess.3$Z + rm -f Tcl_FSOpenFileChannel.3 Tcl_FSOpenFileChannel.3$Z + rm -f Tcl_FSGetCwd.3 Tcl_FSGetCwd.3$Z + rm -f Tcl_FSChdir.3 Tcl_FSChdir.3$Z + rm -f Tcl_FSPathSeparator.3 Tcl_FSPathSeparator.3$Z + rm -f Tcl_FSJoinPath.3 Tcl_FSJoinPath.3$Z + rm -f Tcl_FSSplitPath.3 Tcl_FSSplitPath.3$Z + rm -f Tcl_FSEqualPaths.3 Tcl_FSEqualPaths.3$Z + rm -f Tcl_FSGetNormalizedPath.3 Tcl_FSGetNormalizedPath.3$Z + rm -f Tcl_FSJoinToPath.3 Tcl_FSJoinToPath.3$Z + rm -f Tcl_FSConvertToPathType.3 Tcl_FSConvertToPathType.3$Z + rm -f Tcl_FSGetInternalRep.3 Tcl_FSGetInternalRep.3$Z + rm -f Tcl_FSGetTranslatedPath.3 Tcl_FSGetTranslatedPath.3$Z + rm -f Tcl_FSGetTranslatedStringPath.3 Tcl_FSGetTranslatedStringPath.3$Z + rm -f Tcl_FSNewNativePath.3 Tcl_FSNewNativePath.3$Z + rm -f Tcl_FSGetNativePath.3 Tcl_FSGetNativePath.3$Z + rm -f Tcl_FSFileSystemInfo.3 Tcl_FSFileSystemInfo.3$Z + rm -f Tcl_AllocStatBuf.3 Tcl_AllocStatBuf.3$Z + ln $S FileSystem.3$Z Tcl_FSRegister.3$Z + ln $S FileSystem.3$Z Tcl_FSUnregister.3$Z + ln $S FileSystem.3$Z Tcl_FSData.3$Z + ln $S FileSystem.3$Z Tcl_FSMountsChanged.3$Z + ln $S FileSystem.3$Z Tcl_FSGetFileSystemForPath.3$Z + ln $S FileSystem.3$Z Tcl_FSGetPathType.3$Z + ln $S FileSystem.3$Z Tcl_FSCopyFile.3$Z + ln $S FileSystem.3$Z Tcl_FSCopyDirectory.3$Z + ln $S FileSystem.3$Z Tcl_FSCreateDirectory.3$Z + ln $S FileSystem.3$Z Tcl_FSDeleteFile.3$Z + ln $S FileSystem.3$Z Tcl_FSRemoveDirectory.3$Z + ln $S FileSystem.3$Z Tcl_FSRenameFile.3$Z + ln $S FileSystem.3$Z Tcl_FSListVolumes.3$Z + ln $S FileSystem.3$Z Tcl_FSEvalFile.3$Z + ln $S FileSystem.3$Z Tcl_FSLoadFile.3$Z + ln $S FileSystem.3$Z Tcl_FSMatchInDirectory.3$Z + ln $S FileSystem.3$Z Tcl_FSLink.3$Z + ln $S FileSystem.3$Z Tcl_FSLstat.3$Z + ln $S FileSystem.3$Z Tcl_FSUtime.3$Z + ln $S FileSystem.3$Z Tcl_FSFileAttrsGet.3$Z + ln $S FileSystem.3$Z Tcl_FSFileAttrsSet.3$Z + ln $S FileSystem.3$Z Tcl_FSFileAttrStrings.3$Z + ln $S FileSystem.3$Z Tcl_FSStat.3$Z + ln $S FileSystem.3$Z Tcl_FSAccess.3$Z + ln $S FileSystem.3$Z Tcl_FSOpenFileChannel.3$Z + ln $S FileSystem.3$Z Tcl_FSGetCwd.3$Z + ln $S FileSystem.3$Z Tcl_FSChdir.3$Z + ln $S FileSystem.3$Z Tcl_FSPathSeparator.3$Z + ln $S FileSystem.3$Z Tcl_FSJoinPath.3$Z + ln $S FileSystem.3$Z Tcl_FSSplitPath.3$Z + ln $S FileSystem.3$Z Tcl_FSEqualPaths.3$Z + ln $S FileSystem.3$Z Tcl_FSGetNormalizedPath.3$Z + ln $S FileSystem.3$Z Tcl_FSJoinToPath.3$Z + ln $S FileSystem.3$Z Tcl_FSConvertToPathType.3$Z + ln $S FileSystem.3$Z Tcl_FSGetInternalRep.3$Z + ln $S FileSystem.3$Z Tcl_FSGetTranslatedPath.3$Z + ln $S FileSystem.3$Z Tcl_FSGetTranslatedStringPath.3$Z + ln $S FileSystem.3$Z Tcl_FSNewNativePath.3$Z + ln $S FileSystem.3$Z Tcl_FSGetNativePath.3$Z + ln $S FileSystem.3$Z Tcl_FSFileSystemInfo.3$Z + ln $S FileSystem.3$Z Tcl_AllocStatBuf.3$Z +fi +if test -n "$ZIP" -a -r FindExec.3; then + rm -f FindExec.3$Z + $ZIP FindExec.3 +fi +if test -r FindExec.3$Z; then + rm -f Tcl_FindExecutable.3 Tcl_FindExecutable.3$Z + rm -f Tcl_GetNameOfExecutable.3 Tcl_GetNameOfExecutable.3$Z + ln $S FindExec.3$Z Tcl_FindExecutable.3$Z + ln $S FindExec.3$Z Tcl_GetNameOfExecutable.3$Z +fi +if test -n "$ZIP" -a -r GetCwd.3; then + rm -f GetCwd.3$Z + $ZIP GetCwd.3 +fi +if test -r GetCwd.3$Z; then + rm -f Tcl_GetCwd.3 Tcl_GetCwd.3$Z + rm -f Tcl_Chdir.3 Tcl_Chdir.3$Z + ln $S GetCwd.3$Z Tcl_GetCwd.3$Z + ln $S GetCwd.3$Z Tcl_Chdir.3$Z +fi +if test -n "$ZIP" -a -r GetHostName.3; then + rm -f GetHostName.3$Z + $ZIP GetHostName.3 +fi +if test -r GetHostName.3$Z; then + rm -f Tcl_GetHostName.3 Tcl_GetHostName.3$Z + ln $S GetHostName.3$Z Tcl_GetHostName.3$Z +fi +if test -n "$ZIP" -a -r GetIndex.3; then + rm -f GetIndex.3$Z + $ZIP GetIndex.3 +fi +if test -r GetIndex.3$Z; then + rm -f Tcl_GetIndexFromObj.3 Tcl_GetIndexFromObj.3$Z + rm -f Tcl_GetIndexFromObjStruct.3 Tcl_GetIndexFromObjStruct.3$Z + ln $S GetIndex.3$Z Tcl_GetIndexFromObj.3$Z + ln $S GetIndex.3$Z Tcl_GetIndexFromObjStruct.3$Z +fi +if test -n "$ZIP" -a -r GetInt.3; then + rm -f GetInt.3$Z + $ZIP GetInt.3 +fi +if test -r GetInt.3$Z; then + rm -f Tcl_GetInt.3 Tcl_GetInt.3$Z + rm -f Tcl_GetDouble.3 Tcl_GetDouble.3$Z + rm -f Tcl_GetBoolean.3 Tcl_GetBoolean.3$Z + ln $S GetInt.3$Z Tcl_GetInt.3$Z + ln $S GetInt.3$Z Tcl_GetDouble.3$Z + ln $S GetInt.3$Z Tcl_GetBoolean.3$Z +fi +if test -n "$ZIP" -a -r GetOpnFl.3; then + rm -f GetOpnFl.3$Z + $ZIP GetOpnFl.3 +fi +if test -r GetOpnFl.3$Z; then + rm -f Tcl_GetOpenFile.3 Tcl_GetOpenFile.3$Z + ln $S GetOpnFl.3$Z Tcl_GetOpenFile.3$Z +fi +if test -n "$ZIP" -a -r GetStdChan.3; then + rm -f GetStdChan.3$Z + $ZIP GetStdChan.3 +fi +if test -r GetStdChan.3$Z; then + rm -f Tcl_GetStdChannel.3 Tcl_GetStdChannel.3$Z + rm -f Tcl_SetStdChannel.3 Tcl_SetStdChannel.3$Z + ln $S GetStdChan.3$Z Tcl_GetStdChannel.3$Z + ln $S GetStdChan.3$Z Tcl_SetStdChannel.3$Z +fi +if test -n "$ZIP" -a -r GetTime.3; then + rm -f GetTime.3$Z + $ZIP GetTime.3 +fi +if test -r GetTime.3$Z; then + rm -f Tcl_GetTime.3 Tcl_GetTime.3$Z + ln $S GetTime.3$Z Tcl_GetTime.3$Z +fi +if test -n "$ZIP" -a -r GetVersion.3; then + rm -f GetVersion.3$Z + $ZIP GetVersion.3 +fi +if test -r GetVersion.3$Z; then + rm -f Tcl_GetVersion.3 Tcl_GetVersion.3$Z + ln $S GetVersion.3$Z Tcl_GetVersion.3$Z +fi +if test -n "$ZIP" -a -r Hash.3; then + rm -f Hash.3$Z + $ZIP Hash.3 +fi +if test -r Hash.3$Z; then + rm -f Tcl_InitHashTable.3 Tcl_InitHashTable.3$Z + rm -f Tcl_InitCustomHashTable.3 Tcl_InitCustomHashTable.3$Z + rm -f Tcl_InitObjHashTable.3 Tcl_InitObjHashTable.3$Z + rm -f Tcl_DeleteHashTable.3 Tcl_DeleteHashTable.3$Z + rm -f Tcl_CreateHashEntry.3 Tcl_CreateHashEntry.3$Z + rm -f Tcl_DeleteHashEntry.3 Tcl_DeleteHashEntry.3$Z + rm -f Tcl_FindHashEntry.3 Tcl_FindHashEntry.3$Z + rm -f Tcl_GetHashValue.3 Tcl_GetHashValue.3$Z + rm -f Tcl_SetHashValue.3 Tcl_SetHashValue.3$Z + rm -f Tcl_GetHashKey.3 Tcl_GetHashKey.3$Z + rm -f Tcl_FirstHashEntry.3 Tcl_FirstHashEntry.3$Z + rm -f Tcl_NextHashEntry.3 Tcl_NextHashEntry.3$Z + rm -f Tcl_HashStats.3 Tcl_HashStats.3$Z + ln $S Hash.3$Z Tcl_InitHashTable.3$Z + ln $S Hash.3$Z Tcl_InitCustomHashTable.3$Z + ln $S Hash.3$Z Tcl_InitObjHashTable.3$Z + ln $S Hash.3$Z Tcl_DeleteHashTable.3$Z + ln $S Hash.3$Z Tcl_CreateHashEntry.3$Z + ln $S Hash.3$Z Tcl_DeleteHashEntry.3$Z + ln $S Hash.3$Z Tcl_FindHashEntry.3$Z + ln $S Hash.3$Z Tcl_GetHashValue.3$Z + ln $S Hash.3$Z Tcl_SetHashValue.3$Z + ln $S Hash.3$Z Tcl_GetHashKey.3$Z + ln $S Hash.3$Z Tcl_FirstHashEntry.3$Z + ln $S Hash.3$Z Tcl_NextHashEntry.3$Z + ln $S Hash.3$Z Tcl_HashStats.3$Z +fi +if test -n "$ZIP" -a -r Init.3; then + rm -f Init.3$Z + $ZIP Init.3 +fi +if test -r Init.3$Z; then + rm -f Tcl_Init.3 Tcl_Init.3$Z + ln $S Init.3$Z Tcl_Init.3$Z +fi +if test -n "$ZIP" -a -r InitStubs.3; then + rm -f InitStubs.3$Z + $ZIP InitStubs.3 +fi +if test -r InitStubs.3$Z; then + rm -f Tcl_InitStubs.3 Tcl_InitStubs.3$Z + ln $S InitStubs.3$Z Tcl_InitStubs.3$Z +fi +if test -n "$ZIP" -a -r IntObj.3; then + rm -f IntObj.3$Z + $ZIP IntObj.3 +fi +if test -r IntObj.3$Z; then + rm -f Tcl_NewIntObj.3 Tcl_NewIntObj.3$Z + rm -f Tcl_NewLongObj.3 Tcl_NewLongObj.3$Z + rm -f Tcl_NewWideIntObj.3 Tcl_NewWideIntObj.3$Z + rm -f Tcl_SetIntObj.3 Tcl_SetIntObj.3$Z + rm -f Tcl_SetLongObj.3 Tcl_SetLongObj.3$Z + rm -f Tcl_SetWideIntObj.3 Tcl_SetWideIntObj.3$Z + rm -f Tcl_GetIntFromObj.3 Tcl_GetIntFromObj.3$Z + rm -f Tcl_GetLongFromObj.3 Tcl_GetLongFromObj.3$Z + rm -f Tcl_GetWideIntFromObj.3 Tcl_GetWideIntFromObj.3$Z + ln $S IntObj.3$Z Tcl_NewIntObj.3$Z + ln $S IntObj.3$Z Tcl_NewLongObj.3$Z + ln $S IntObj.3$Z Tcl_NewWideIntObj.3$Z + ln $S IntObj.3$Z Tcl_SetIntObj.3$Z + ln $S IntObj.3$Z Tcl_SetLongObj.3$Z + ln $S IntObj.3$Z Tcl_SetWideIntObj.3$Z + ln $S IntObj.3$Z Tcl_GetIntFromObj.3$Z + ln $S IntObj.3$Z Tcl_GetLongFromObj.3$Z + ln $S IntObj.3$Z Tcl_GetWideIntFromObj.3$Z +fi +if test -n "$ZIP" -a -r Interp.3; then + rm -f Interp.3$Z + $ZIP Interp.3 +fi +if test -r Interp.3$Z; then + rm -f Tcl_Interp.3 Tcl_Interp.3$Z + ln $S Interp.3$Z Tcl_Interp.3$Z +fi +if test -n "$ZIP" -a -r LinkVar.3; then + rm -f LinkVar.3$Z + $ZIP LinkVar.3 +fi +if test -r LinkVar.3$Z; then + rm -f Tcl_LinkVar.3 Tcl_LinkVar.3$Z + rm -f Tcl_UnlinkVar.3 Tcl_UnlinkVar.3$Z + rm -f Tcl_UpdateLinkedVar.3 Tcl_UpdateLinkedVar.3$Z + ln $S LinkVar.3$Z Tcl_LinkVar.3$Z + ln $S LinkVar.3$Z Tcl_UnlinkVar.3$Z + ln $S LinkVar.3$Z Tcl_UpdateLinkedVar.3$Z +fi +if test -n "$ZIP" -a -r ListObj.3; then + rm -f ListObj.3$Z + $ZIP ListObj.3 +fi +if test -r ListObj.3$Z; then + rm -f Tcl_ListObjAppendList.3 Tcl_ListObjAppendList.3$Z + rm -f Tcl_ListObjAppendElement.3 Tcl_ListObjAppendElement.3$Z + rm -f Tcl_NewListObj.3 Tcl_NewListObj.3$Z + rm -f Tcl_SetListObj.3 Tcl_SetListObj.3$Z + rm -f Tcl_ListObjGetElements.3 Tcl_ListObjGetElements.3$Z + rm -f Tcl_ListObjLength.3 Tcl_ListObjLength.3$Z + rm -f Tcl_ListObjIndex.3 Tcl_ListObjIndex.3$Z + rm -f Tcl_ListObjReplace.3 Tcl_ListObjReplace.3$Z + ln $S ListObj.3$Z Tcl_ListObjAppendList.3$Z + ln $S ListObj.3$Z Tcl_ListObjAppendElement.3$Z + ln $S ListObj.3$Z Tcl_NewListObj.3$Z + ln $S ListObj.3$Z Tcl_SetListObj.3$Z + ln $S ListObj.3$Z Tcl_ListObjGetElements.3$Z + ln $S ListObj.3$Z Tcl_ListObjLength.3$Z + ln $S ListObj.3$Z Tcl_ListObjIndex.3$Z + ln $S ListObj.3$Z Tcl_ListObjReplace.3$Z +fi +if test -n "$ZIP" -a -r Macintosh.3; then + rm -f Macintosh.3$Z + $ZIP Macintosh.3 +fi +if test -r Macintosh.3$Z; then + rm -f Tcl_MacSetEventProc.3 Tcl_MacSetEventProc.3$Z + rm -f Tcl_MacConvertTextResource.3 Tcl_MacConvertTextResource.3$Z + rm -f Tcl_MacEvalResource.3 Tcl_MacEvalResource.3$Z + rm -f Tcl_MacFindResource.3 Tcl_MacFindResource.3$Z + rm -f Tcl_GetOSTypeFromObj.3 Tcl_GetOSTypeFromObj.3$Z + rm -f Tcl_SetOSTypeObj.3 Tcl_SetOSTypeObj.3$Z + rm -f Tcl_NewOSTypeObj.3 Tcl_NewOSTypeObj.3$Z + ln $S Macintosh.3$Z Tcl_MacSetEventProc.3$Z + ln $S Macintosh.3$Z Tcl_MacConvertTextResource.3$Z + ln $S Macintosh.3$Z Tcl_MacEvalResource.3$Z + ln $S Macintosh.3$Z Tcl_MacFindResource.3$Z + ln $S Macintosh.3$Z Tcl_GetOSTypeFromObj.3$Z + ln $S Macintosh.3$Z Tcl_SetOSTypeObj.3$Z + ln $S Macintosh.3$Z Tcl_NewOSTypeObj.3$Z +fi +if test -n "$ZIP" -a -r Notifier.3; then + rm -f Notifier.3$Z + $ZIP Notifier.3 +fi +if test -r Notifier.3$Z; then + rm -f Tcl_CreateEventSource.3 Tcl_CreateEventSource.3$Z + rm -f Tcl_DeleteEventSource.3 Tcl_DeleteEventSource.3$Z + rm -f Tcl_SetMaxBlockTime.3 Tcl_SetMaxBlockTime.3$Z + rm -f Tcl_QueueEvent.3 Tcl_QueueEvent.3$Z + rm -f Tcl_ThreadQueueEvent.3 Tcl_ThreadQueueEvent.3$Z + rm -f Tcl_ThreadAlert.3 Tcl_ThreadAlert.3$Z + rm -f Tcl_GetCurrentThread.3 Tcl_GetCurrentThread.3$Z + rm -f Tcl_DeleteEvents.3 Tcl_DeleteEvents.3$Z + rm -f Tcl_InitNotifier.3 Tcl_InitNotifier.3$Z + rm -f Tcl_FinalizeNotifier.3 Tcl_FinalizeNotifier.3$Z + rm -f Tcl_WaitForEvent.3 Tcl_WaitForEvent.3$Z + rm -f Tcl_AlertNotifier.3 Tcl_AlertNotifier.3$Z + rm -f Tcl_SetTimer.3 Tcl_SetTimer.3$Z + rm -f Tcl_ServiceAll.3 Tcl_ServiceAll.3$Z + rm -f Tcl_ServiceEvent.3 Tcl_ServiceEvent.3$Z + rm -f Tcl_GetServiceMode.3 Tcl_GetServiceMode.3$Z + rm -f Tcl_SetServiceMode.3 Tcl_SetServiceMode.3$Z + ln $S Notifier.3$Z Tcl_CreateEventSource.3$Z + ln $S Notifier.3$Z Tcl_DeleteEventSource.3$Z + ln $S Notifier.3$Z Tcl_SetMaxBlockTime.3$Z + ln $S Notifier.3$Z Tcl_QueueEvent.3$Z + ln $S Notifier.3$Z Tcl_ThreadQueueEvent.3$Z + ln $S Notifier.3$Z Tcl_ThreadAlert.3$Z + ln $S Notifier.3$Z Tcl_GetCurrentThread.3$Z + ln $S Notifier.3$Z Tcl_DeleteEvents.3$Z + ln $S Notifier.3$Z Tcl_InitNotifier.3$Z + ln $S Notifier.3$Z Tcl_FinalizeNotifier.3$Z + ln $S Notifier.3$Z Tcl_WaitForEvent.3$Z + ln $S Notifier.3$Z Tcl_AlertNotifier.3$Z + ln $S Notifier.3$Z Tcl_SetTimer.3$Z + ln $S Notifier.3$Z Tcl_ServiceAll.3$Z + ln $S Notifier.3$Z Tcl_ServiceEvent.3$Z + ln $S Notifier.3$Z Tcl_GetServiceMode.3$Z + ln $S Notifier.3$Z Tcl_SetServiceMode.3$Z +fi +if test -n "$ZIP" -a -r Object.3; then + rm -f Object.3$Z + $ZIP Object.3 +fi +if test -r Object.3$Z; then + rm -f Tcl_NewObj.3 Tcl_NewObj.3$Z + rm -f Tcl_DuplicateObj.3 Tcl_DuplicateObj.3$Z + rm -f Tcl_IncrRefCount.3 Tcl_IncrRefCount.3$Z + rm -f Tcl_DecrRefCount.3 Tcl_DecrRefCount.3$Z + rm -f Tcl_IsShared.3 Tcl_IsShared.3$Z + rm -f Tcl_InvalidateStringRep.3 Tcl_InvalidateStringRep.3$Z + ln $S Object.3$Z Tcl_NewObj.3$Z + ln $S Object.3$Z Tcl_DuplicateObj.3$Z + ln $S Object.3$Z Tcl_IncrRefCount.3$Z + ln $S Object.3$Z Tcl_DecrRefCount.3$Z + ln $S Object.3$Z Tcl_IsShared.3$Z + ln $S Object.3$Z Tcl_InvalidateStringRep.3$Z +fi +if test -n "$ZIP" -a -r ObjectType.3; then + rm -f ObjectType.3$Z + $ZIP ObjectType.3 +fi +if test -r ObjectType.3$Z; then + rm -f Tcl_RegisterObjType.3 Tcl_RegisterObjType.3$Z + rm -f Tcl_GetObjType.3 Tcl_GetObjType.3$Z + rm -f Tcl_AppendAllObjTypes.3 Tcl_AppendAllObjTypes.3$Z + rm -f Tcl_ConvertToType.3 Tcl_ConvertToType.3$Z + ln $S ObjectType.3$Z Tcl_RegisterObjType.3$Z + ln $S ObjectType.3$Z Tcl_GetObjType.3$Z + ln $S ObjectType.3$Z Tcl_AppendAllObjTypes.3$Z + ln $S ObjectType.3$Z Tcl_ConvertToType.3$Z +fi +if test -n "$ZIP" -a -r OpenFileChnl.3; then + rm -f OpenFileChnl.3$Z + $ZIP OpenFileChnl.3 +fi +if test -r OpenFileChnl.3$Z; then + rm -f Tcl_OpenFileChannel.3 Tcl_OpenFileChannel.3$Z + rm -f Tcl_OpenCommandChannel.3 Tcl_OpenCommandChannel.3$Z + rm -f Tcl_MakeFileChannel.3 Tcl_MakeFileChannel.3$Z + rm -f Tcl_GetChannel.3 Tcl_GetChannel.3$Z + rm -f Tcl_GetChannelNames.3 Tcl_GetChannelNames.3$Z + rm -f Tcl_GetChannelNamesEx.3 Tcl_GetChannelNamesEx.3$Z + rm -f Tcl_RegisterChannel.3 Tcl_RegisterChannel.3$Z + rm -f Tcl_UnregisterChannel.3 Tcl_UnregisterChannel.3$Z + rm -f Tcl_DetachChannel.3 Tcl_DetachChannel.3$Z + rm -f Tcl_IsStandardChannel.3 Tcl_IsStandardChannel.3$Z + rm -f Tcl_Close.3 Tcl_Close.3$Z + rm -f Tcl_ReadChars.3 Tcl_ReadChars.3$Z + rm -f Tcl_Read.3 Tcl_Read.3$Z + rm -f Tcl_GetsObj.3 Tcl_GetsObj.3$Z + rm -f Tcl_Gets.3 Tcl_Gets.3$Z + rm -f Tcl_WriteObj.3 Tcl_WriteObj.3$Z + rm -f Tcl_WriteChars.3 Tcl_WriteChars.3$Z + rm -f Tcl_Write.3 Tcl_Write.3$Z + rm -f Tcl_Flush.3 Tcl_Flush.3$Z + rm -f Tcl_Seek.3 Tcl_Seek.3$Z + rm -f Tcl_Tell.3 Tcl_Tell.3$Z + rm -f Tcl_GetChannelOption.3 Tcl_GetChannelOption.3$Z + rm -f Tcl_SetChannelOption.3 Tcl_SetChannelOption.3$Z + rm -f Tcl_Eof.3 Tcl_Eof.3$Z + rm -f Tcl_InputBlocked.3 Tcl_InputBlocked.3$Z + rm -f Tcl_InputBuffered.3 Tcl_InputBuffered.3$Z + rm -f Tcl_OutputBuffered.3 Tcl_OutputBuffered.3$Z + rm -f Tcl_Ungets.3 Tcl_Ungets.3$Z + rm -f Tcl_ReadRaw.3 Tcl_ReadRaw.3$Z + rm -f Tcl_WriteRaw.3 Tcl_WriteRaw.3$Z + ln $S OpenFileChnl.3$Z Tcl_OpenFileChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_OpenCommandChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_MakeFileChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_GetChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_GetChannelNames.3$Z + ln $S OpenFileChnl.3$Z Tcl_GetChannelNamesEx.3$Z + ln $S OpenFileChnl.3$Z Tcl_RegisterChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_UnregisterChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_DetachChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_IsStandardChannel.3$Z + ln $S OpenFileChnl.3$Z Tcl_Close.3$Z + ln $S OpenFileChnl.3$Z Tcl_ReadChars.3$Z + ln $S OpenFileChnl.3$Z Tcl_Read.3$Z + ln $S OpenFileChnl.3$Z Tcl_GetsObj.3$Z + ln $S OpenFileChnl.3$Z Tcl_Gets.3$Z + ln $S OpenFileChnl.3$Z Tcl_WriteObj.3$Z + ln $S OpenFileChnl.3$Z Tcl_WriteChars.3$Z + ln $S OpenFileChnl.3$Z Tcl_Write.3$Z + ln $S OpenFileChnl.3$Z Tcl_Flush.3$Z + ln $S OpenFileChnl.3$Z Tcl_Seek.3$Z + ln $S OpenFileChnl.3$Z Tcl_Tell.3$Z + ln $S OpenFileChnl.3$Z Tcl_GetChannelOption.3$Z + ln $S OpenFileChnl.3$Z Tcl_SetChannelOption.3$Z + ln $S OpenFileChnl.3$Z Tcl_Eof.3$Z + ln $S OpenFileChnl.3$Z Tcl_InputBlocked.3$Z + ln $S OpenFileChnl.3$Z Tcl_InputBuffered.3$Z + ln $S OpenFileChnl.3$Z Tcl_OutputBuffered.3$Z + ln $S OpenFileChnl.3$Z Tcl_Ungets.3$Z + ln $S OpenFileChnl.3$Z Tcl_ReadRaw.3$Z + ln $S OpenFileChnl.3$Z Tcl_WriteRaw.3$Z +fi +if test -n "$ZIP" -a -r OpenTcp.3; then + rm -f OpenTcp.3$Z + $ZIP OpenTcp.3 +fi +if test -r OpenTcp.3$Z; then + rm -f Tcl_OpenTcpClient.3 Tcl_OpenTcpClient.3$Z + rm -f Tcl_MakeTcpClientChannel.3 Tcl_MakeTcpClientChannel.3$Z + rm -f Tcl_OpenTcpServer.3 Tcl_OpenTcpServer.3$Z + ln $S OpenTcp.3$Z Tcl_OpenTcpClient.3$Z + ln $S OpenTcp.3$Z Tcl_MakeTcpClientChannel.3$Z + ln $S OpenTcp.3$Z Tcl_OpenTcpServer.3$Z +fi +if test -n "$ZIP" -a -r Panic.3; then + rm -f Panic.3$Z + $ZIP Panic.3 +fi +if test -r Panic.3$Z; then + rm -f Tcl_Panic.3 Tcl_Panic.3$Z + rm -f Tcl_PanicVA.3 Tcl_PanicVA.3$Z + rm -f Tcl_SetPanicProc.3 Tcl_SetPanicProc.3$Z + if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f panic.3 panic.3$Z; fi + rm -f panicVA.3 panicVA.3$Z + ln $S Panic.3$Z Tcl_Panic.3$Z + ln $S Panic.3$Z Tcl_PanicVA.3$Z + ln $S Panic.3$Z Tcl_SetPanicProc.3$Z + if test "${CASEINSENSITIVEFS:-}" != "1"; then ln $S Panic.3$Z panic.3$Z; fi + ln $S Panic.3$Z panicVA.3$Z +fi +if test -n "$ZIP" -a -r ParseCmd.3; then + rm -f ParseCmd.3$Z + $ZIP ParseCmd.3 +fi +if test -r ParseCmd.3$Z; then + rm -f Tcl_ParseCommand.3 Tcl_ParseCommand.3$Z + rm -f Tcl_ParseExpr.3 Tcl_ParseExpr.3$Z + rm -f Tcl_ParseBraces.3 Tcl_ParseBraces.3$Z + rm -f Tcl_ParseQuotedString.3 Tcl_ParseQuotedString.3$Z + rm -f Tcl_ParseVarName.3 Tcl_ParseVarName.3$Z + rm -f Tcl_ParseVar.3 Tcl_ParseVar.3$Z + rm -f Tcl_FreeParse.3 Tcl_FreeParse.3$Z + rm -f Tcl_EvalTokens.3 Tcl_EvalTokens.3$Z + rm -f Tcl_EvalTokensStandard.3 Tcl_EvalTokensStandard.3$Z + ln $S ParseCmd.3$Z Tcl_ParseCommand.3$Z + ln $S ParseCmd.3$Z Tcl_ParseExpr.3$Z + ln $S ParseCmd.3$Z Tcl_ParseBraces.3$Z + ln $S ParseCmd.3$Z Tcl_ParseQuotedString.3$Z + ln $S ParseCmd.3$Z Tcl_ParseVarName.3$Z + ln $S ParseCmd.3$Z Tcl_ParseVar.3$Z + ln $S ParseCmd.3$Z Tcl_FreeParse.3$Z + ln $S ParseCmd.3$Z Tcl_EvalTokens.3$Z + ln $S ParseCmd.3$Z Tcl_EvalTokensStandard.3$Z +fi +if test -n "$ZIP" -a -r PkgRequire.3; then + rm -f PkgRequire.3$Z + $ZIP PkgRequire.3 +fi +if test -r PkgRequire.3$Z; then + rm -f Tcl_PkgRequire.3 Tcl_PkgRequire.3$Z + rm -f Tcl_PkgRequireEx.3 Tcl_PkgRequireEx.3$Z + rm -f Tcl_PkgPresent.3 Tcl_PkgPresent.3$Z + rm -f Tcl_PkgPresentEx.3 Tcl_PkgPresentEx.3$Z + rm -f Tcl_PkgProvide.3 Tcl_PkgProvide.3$Z + rm -f Tcl_PkgProvideEx.3 Tcl_PkgProvideEx.3$Z + ln $S PkgRequire.3$Z Tcl_PkgRequire.3$Z + ln $S PkgRequire.3$Z Tcl_PkgRequireEx.3$Z + ln $S PkgRequire.3$Z Tcl_PkgPresent.3$Z + ln $S PkgRequire.3$Z Tcl_PkgPresentEx.3$Z + ln $S PkgRequire.3$Z Tcl_PkgProvide.3$Z + ln $S PkgRequire.3$Z Tcl_PkgProvideEx.3$Z +fi +if test -n "$ZIP" -a -r Preserve.3; then + rm -f Preserve.3$Z + $ZIP Preserve.3 +fi +if test -r Preserve.3$Z; then + rm -f Tcl_Preserve.3 Tcl_Preserve.3$Z + rm -f Tcl_Release.3 Tcl_Release.3$Z + rm -f Tcl_EventuallyFree.3 Tcl_EventuallyFree.3$Z + ln $S Preserve.3$Z Tcl_Preserve.3$Z + ln $S Preserve.3$Z Tcl_Release.3$Z + ln $S Preserve.3$Z Tcl_EventuallyFree.3$Z +fi +if test -n "$ZIP" -a -r PrintDbl.3; then + rm -f PrintDbl.3$Z + $ZIP PrintDbl.3 +fi +if test -r PrintDbl.3$Z; then + rm -f Tcl_PrintDouble.3 Tcl_PrintDouble.3$Z + ln $S PrintDbl.3$Z Tcl_PrintDouble.3$Z +fi +if test -n "$ZIP" -a -r RecEvalObj.3; then + rm -f RecEvalObj.3$Z + $ZIP RecEvalObj.3 +fi +if test -r RecEvalObj.3$Z; then + rm -f Tcl_RecordAndEvalObj.3 Tcl_RecordAndEvalObj.3$Z + ln $S RecEvalObj.3$Z Tcl_RecordAndEvalObj.3$Z +fi +if test -n "$ZIP" -a -r RecordEval.3; then + rm -f RecordEval.3$Z + $ZIP RecordEval.3 +fi +if test -r RecordEval.3$Z; then + rm -f Tcl_RecordAndEval.3 Tcl_RecordAndEval.3$Z + ln $S RecordEval.3$Z Tcl_RecordAndEval.3$Z +fi +if test -n "$ZIP" -a -r RegExp.3; then + rm -f RegExp.3$Z + $ZIP RegExp.3 +fi +if test -r RegExp.3$Z; then + rm -f Tcl_RegExpMatch.3 Tcl_RegExpMatch.3$Z + rm -f Tcl_RegExpCompile.3 Tcl_RegExpCompile.3$Z + rm -f Tcl_RegExpExec.3 Tcl_RegExpExec.3$Z + rm -f Tcl_RegExpRange.3 Tcl_RegExpRange.3$Z + rm -f Tcl_GetRegExpFromObj.3 Tcl_GetRegExpFromObj.3$Z + rm -f Tcl_RegExpMatchObj.3 Tcl_RegExpMatchObj.3$Z + rm -f Tcl_RegExpExecObj.3 Tcl_RegExpExecObj.3$Z + rm -f Tcl_RegExpGetInfo.3 Tcl_RegExpGetInfo.3$Z + ln $S RegExp.3$Z Tcl_RegExpMatch.3$Z + ln $S RegExp.3$Z Tcl_RegExpCompile.3$Z + ln $S RegExp.3$Z Tcl_RegExpExec.3$Z + ln $S RegExp.3$Z Tcl_RegExpRange.3$Z + ln $S RegExp.3$Z Tcl_GetRegExpFromObj.3$Z + ln $S RegExp.3$Z Tcl_RegExpMatchObj.3$Z + ln $S RegExp.3$Z Tcl_RegExpExecObj.3$Z + ln $S RegExp.3$Z Tcl_RegExpGetInfo.3$Z +fi +if test -n "$ZIP" -a -r SaveResult.3; then + rm -f SaveResult.3$Z + $ZIP SaveResult.3 +fi +if test -r SaveResult.3$Z; then + rm -f Tcl_SaveResult.3 Tcl_SaveResult.3$Z + rm -f Tcl_RestoreResult.3 Tcl_RestoreResult.3$Z + rm -f Tcl_DiscardResult.3 Tcl_DiscardResult.3$Z + ln $S SaveResult.3$Z Tcl_SaveResult.3$Z + ln $S SaveResult.3$Z Tcl_RestoreResult.3$Z + ln $S SaveResult.3$Z Tcl_DiscardResult.3$Z +fi +if test -n "$ZIP" -a -r SetErrno.3; then + rm -f SetErrno.3$Z + $ZIP SetErrno.3 +fi +if test -r SetErrno.3$Z; then + rm -f Tcl_SetErrno.3 Tcl_SetErrno.3$Z + rm -f Tcl_GetErrno.3 Tcl_GetErrno.3$Z + rm -f Tcl_ErrnoId.3 Tcl_ErrnoId.3$Z + rm -f Tcl_ErrnoMsg.3 Tcl_ErrnoMsg.3$Z + ln $S SetErrno.3$Z Tcl_SetErrno.3$Z + ln $S SetErrno.3$Z Tcl_GetErrno.3$Z + ln $S SetErrno.3$Z Tcl_ErrnoId.3$Z + ln $S SetErrno.3$Z Tcl_ErrnoMsg.3$Z +fi +if test -n "$ZIP" -a -r SetRecLmt.3; then + rm -f SetRecLmt.3$Z + $ZIP SetRecLmt.3 +fi +if test -r SetRecLmt.3$Z; then + rm -f Tcl_SetRecursionLimit.3 Tcl_SetRecursionLimit.3$Z + ln $S SetRecLmt.3$Z Tcl_SetRecursionLimit.3$Z +fi +if test -n "$ZIP" -a -r SetResult.3; then + rm -f SetResult.3$Z + $ZIP SetResult.3 +fi +if test -r SetResult.3$Z; then + rm -f Tcl_SetObjResult.3 Tcl_SetObjResult.3$Z + rm -f Tcl_GetObjResult.3 Tcl_GetObjResult.3$Z + rm -f Tcl_SetResult.3 Tcl_SetResult.3$Z + rm -f Tcl_GetStringResult.3 Tcl_GetStringResult.3$Z + rm -f Tcl_AppendResult.3 Tcl_AppendResult.3$Z + rm -f Tcl_AppendResultVA.3 Tcl_AppendResultVA.3$Z + rm -f Tcl_AppendElement.3 Tcl_AppendElement.3$Z + rm -f Tcl_ResetResult.3 Tcl_ResetResult.3$Z + rm -f Tcl_FreeResult.3 Tcl_FreeResult.3$Z + ln $S SetResult.3$Z Tcl_SetObjResult.3$Z + ln $S SetResult.3$Z Tcl_GetObjResult.3$Z + ln $S SetResult.3$Z Tcl_SetResult.3$Z + ln $S SetResult.3$Z Tcl_GetStringResult.3$Z + ln $S SetResult.3$Z Tcl_AppendResult.3$Z + ln $S SetResult.3$Z Tcl_AppendResultVA.3$Z + ln $S SetResult.3$Z Tcl_AppendElement.3$Z + ln $S SetResult.3$Z Tcl_ResetResult.3$Z + ln $S SetResult.3$Z Tcl_FreeResult.3$Z +fi +if test -n "$ZIP" -a -r SetVar.3; then + rm -f SetVar.3$Z + $ZIP SetVar.3 +fi +if test -r SetVar.3$Z; then + rm -f Tcl_SetVar2Ex.3 Tcl_SetVar2Ex.3$Z + rm -f Tcl_SetVar.3 Tcl_SetVar.3$Z + rm -f Tcl_SetVar2.3 Tcl_SetVar2.3$Z + rm -f Tcl_ObjSetVar2.3 Tcl_ObjSetVar2.3$Z + rm -f Tcl_GetVar2Ex.3 Tcl_GetVar2Ex.3$Z + rm -f Tcl_GetVar.3 Tcl_GetVar.3$Z + rm -f Tcl_GetVar2.3 Tcl_GetVar2.3$Z + rm -f Tcl_ObjGetVar2.3 Tcl_ObjGetVar2.3$Z + rm -f Tcl_UnsetVar.3 Tcl_UnsetVar.3$Z + rm -f Tcl_UnsetVar2.3 Tcl_UnsetVar2.3$Z + ln $S SetVar.3$Z Tcl_SetVar2Ex.3$Z + ln $S SetVar.3$Z Tcl_SetVar.3$Z + ln $S SetVar.3$Z Tcl_SetVar2.3$Z + ln $S SetVar.3$Z Tcl_ObjSetVar2.3$Z + ln $S SetVar.3$Z Tcl_GetVar2Ex.3$Z + ln $S SetVar.3$Z Tcl_GetVar.3$Z + ln $S SetVar.3$Z Tcl_GetVar2.3$Z + ln $S SetVar.3$Z Tcl_ObjGetVar2.3$Z + ln $S SetVar.3$Z Tcl_UnsetVar.3$Z + ln $S SetVar.3$Z Tcl_UnsetVar2.3$Z +fi +if test -n "$ZIP" -a -r Signal.3; then + rm -f Signal.3$Z + $ZIP Signal.3 +fi +if test -r Signal.3$Z; then + rm -f Tcl_SignalId.3 Tcl_SignalId.3$Z + rm -f Tcl_SignalMsg.3 Tcl_SignalMsg.3$Z + ln $S Signal.3$Z Tcl_SignalId.3$Z + ln $S Signal.3$Z Tcl_SignalMsg.3$Z +fi +if test -n "$ZIP" -a -r Sleep.3; then + rm -f Sleep.3$Z + $ZIP Sleep.3 +fi +if test -r Sleep.3$Z; then + rm -f Tcl_Sleep.3 Tcl_Sleep.3$Z + ln $S Sleep.3$Z Tcl_Sleep.3$Z +fi +if test -n "$ZIP" -a -r SourceRCFile.3; then + rm -f SourceRCFile.3$Z + $ZIP SourceRCFile.3 +fi +if test -r SourceRCFile.3$Z; then + rm -f Tcl_SourceRCFile.3 Tcl_SourceRCFile.3$Z + ln $S SourceRCFile.3$Z Tcl_SourceRCFile.3$Z +fi +if test -n "$ZIP" -a -r SplitList.3; then + rm -f SplitList.3$Z + $ZIP SplitList.3 +fi +if test -r SplitList.3$Z; then + rm -f Tcl_SplitList.3 Tcl_SplitList.3$Z + rm -f Tcl_Merge.3 Tcl_Merge.3$Z + rm -f Tcl_ScanElement.3 Tcl_ScanElement.3$Z + rm -f Tcl_ConvertElement.3 Tcl_ConvertElement.3$Z + rm -f Tcl_ScanCountedElement.3 Tcl_ScanCountedElement.3$Z + rm -f Tcl_ConvertCountedElement.3 Tcl_ConvertCountedElement.3$Z + ln $S SplitList.3$Z Tcl_SplitList.3$Z + ln $S SplitList.3$Z Tcl_Merge.3$Z + ln $S SplitList.3$Z Tcl_ScanElement.3$Z + ln $S SplitList.3$Z Tcl_ConvertElement.3$Z + ln $S SplitList.3$Z Tcl_ScanCountedElement.3$Z + ln $S SplitList.3$Z Tcl_ConvertCountedElement.3$Z +fi +if test -n "$ZIP" -a -r SplitPath.3; then + rm -f SplitPath.3$Z + $ZIP SplitPath.3 +fi +if test -r SplitPath.3$Z; then + rm -f Tcl_SplitPath.3 Tcl_SplitPath.3$Z + rm -f Tcl_JoinPath.3 Tcl_JoinPath.3$Z + rm -f Tcl_GetPathType.3 Tcl_GetPathType.3$Z + ln $S SplitPath.3$Z Tcl_SplitPath.3$Z + ln $S SplitPath.3$Z Tcl_JoinPath.3$Z + ln $S SplitPath.3$Z Tcl_GetPathType.3$Z +fi +if test -n "$ZIP" -a -r StaticPkg.3; then + rm -f StaticPkg.3$Z + $ZIP StaticPkg.3 +fi +if test -r StaticPkg.3$Z; then + rm -f Tcl_StaticPackage.3 Tcl_StaticPackage.3$Z + ln $S StaticPkg.3$Z Tcl_StaticPackage.3$Z +fi +if test -n "$ZIP" -a -r StdChannels.3; then + rm -f StdChannels.3$Z + $ZIP StdChannels.3 +fi +if test -r StdChannels.3$Z; then + rm -f Tcl_StandardChannels.3 Tcl_StandardChannels.3$Z + ln $S StdChannels.3$Z Tcl_StandardChannels.3$Z +fi +if test -n "$ZIP" -a -r StrMatch.3; then + rm -f StrMatch.3$Z + $ZIP StrMatch.3 +fi +if test -r StrMatch.3$Z; then + rm -f Tcl_StringMatch.3 Tcl_StringMatch.3$Z + rm -f Tcl_StringCaseMatch.3 Tcl_StringCaseMatch.3$Z + ln $S StrMatch.3$Z Tcl_StringMatch.3$Z + ln $S StrMatch.3$Z Tcl_StringCaseMatch.3$Z +fi +if test -n "$ZIP" -a -r StringObj.3; then + rm -f StringObj.3$Z + $ZIP StringObj.3 +fi +if test -r StringObj.3$Z; then + rm -f Tcl_NewStringObj.3 Tcl_NewStringObj.3$Z + rm -f Tcl_NewUnicodeObj.3 Tcl_NewUnicodeObj.3$Z + rm -f Tcl_SetStringObj.3 Tcl_SetStringObj.3$Z + rm -f Tcl_SetUnicodeObj.3 Tcl_SetUnicodeObj.3$Z + rm -f Tcl_GetStringFromObj.3 Tcl_GetStringFromObj.3$Z + rm -f Tcl_GetString.3 Tcl_GetString.3$Z + rm -f Tcl_GetUnicodeFromObj.3 Tcl_GetUnicodeFromObj.3$Z + rm -f Tcl_GetUnicode.3 Tcl_GetUnicode.3$Z + rm -f Tcl_GetUniChar.3 Tcl_GetUniChar.3$Z + rm -f Tcl_GetCharLength.3 Tcl_GetCharLength.3$Z + rm -f Tcl_GetRange.3 Tcl_GetRange.3$Z + rm -f Tcl_AppendToObj.3 Tcl_AppendToObj.3$Z + rm -f Tcl_AppendUnicodeToObj.3 Tcl_AppendUnicodeToObj.3$Z + rm -f Tcl_AppendStringsToObj.3 Tcl_AppendStringsToObj.3$Z + rm -f Tcl_AppendStringsToObjVA.3 Tcl_AppendStringsToObjVA.3$Z + rm -f Tcl_AppendObjToObj.3 Tcl_AppendObjToObj.3$Z + rm -f Tcl_SetObjLength.3 Tcl_SetObjLength.3$Z + rm -f Tcl_ConcatObj.3 Tcl_ConcatObj.3$Z + rm -f Tcl_AttemptSetObjLength.3 Tcl_AttemptSetObjLength.3$Z + ln $S StringObj.3$Z Tcl_NewStringObj.3$Z + ln $S StringObj.3$Z Tcl_NewUnicodeObj.3$Z + ln $S StringObj.3$Z Tcl_SetStringObj.3$Z + ln $S StringObj.3$Z Tcl_SetUnicodeObj.3$Z + ln $S StringObj.3$Z Tcl_GetStringFromObj.3$Z + ln $S StringObj.3$Z Tcl_GetString.3$Z + ln $S StringObj.3$Z Tcl_GetUnicodeFromObj.3$Z + ln $S StringObj.3$Z Tcl_GetUnicode.3$Z + ln $S StringObj.3$Z Tcl_GetUniChar.3$Z + ln $S StringObj.3$Z Tcl_GetCharLength.3$Z + ln $S StringObj.3$Z Tcl_GetRange.3$Z + ln $S StringObj.3$Z Tcl_AppendToObj.3$Z + ln $S StringObj.3$Z Tcl_AppendUnicodeToObj.3$Z + ln $S StringObj.3$Z Tcl_AppendStringsToObj.3$Z + ln $S StringObj.3$Z Tcl_AppendStringsToObjVA.3$Z + ln $S StringObj.3$Z Tcl_AppendObjToObj.3$Z + ln $S StringObj.3$Z Tcl_SetObjLength.3$Z + ln $S StringObj.3$Z Tcl_ConcatObj.3$Z + ln $S StringObj.3$Z Tcl_AttemptSetObjLength.3$Z +fi +if test -n "$ZIP" -a -r SubstObj.3; then + rm -f SubstObj.3$Z + $ZIP SubstObj.3 +fi +if test -r SubstObj.3$Z; then + rm -f Tcl_SubstObj.3 Tcl_SubstObj.3$Z + ln $S SubstObj.3$Z Tcl_SubstObj.3$Z +fi +if test -n "$ZIP" -a -r TCL_MEM_DEBUG.3; then + rm -f TCL_MEM_DEBUG.3$Z + $ZIP TCL_MEM_DEBUG.3 +fi +if test -n "$ZIP" -a -r Tcl.n; then + rm -f Tcl.n$Z + $ZIP Tcl.n +fi +if test -n "$ZIP" -a -r Tcl_Main.3; then + rm -f Tcl_Main.3$Z + $ZIP Tcl_Main.3 +fi +if test -r Tcl_Main.3$Z; then + rm -f Tcl_SetMainLoop.3 Tcl_SetMainLoop.3$Z + ln $S Tcl_Main.3$Z Tcl_SetMainLoop.3$Z +fi +if test -n "$ZIP" -a -r Thread.3; then + rm -f Thread.3$Z + $ZIP Thread.3 +fi +if test -r Thread.3$Z; then + rm -f Tcl_ConditionNotify.3 Tcl_ConditionNotify.3$Z + rm -f Tcl_ConditionWait.3 Tcl_ConditionWait.3$Z + rm -f Tcl_ConditionFinalize.3 Tcl_ConditionFinalize.3$Z + rm -f Tcl_GetThreadData.3 Tcl_GetThreadData.3$Z + rm -f Tcl_MutexLock.3 Tcl_MutexLock.3$Z + rm -f Tcl_MutexUnlock.3 Tcl_MutexUnlock.3$Z + rm -f Tcl_MutexFinalize.3 Tcl_MutexFinalize.3$Z + rm -f Tcl_CreateThread.3 Tcl_CreateThread.3$Z + rm -f Tcl_JoinThread.3 Tcl_JoinThread.3$Z + ln $S Thread.3$Z Tcl_ConditionNotify.3$Z + ln $S Thread.3$Z Tcl_ConditionWait.3$Z + ln $S Thread.3$Z Tcl_ConditionFinalize.3$Z + ln $S Thread.3$Z Tcl_GetThreadData.3$Z + ln $S Thread.3$Z Tcl_MutexLock.3$Z + ln $S Thread.3$Z Tcl_MutexUnlock.3$Z + ln $S Thread.3$Z Tcl_MutexFinalize.3$Z + ln $S Thread.3$Z Tcl_CreateThread.3$Z + ln $S Thread.3$Z Tcl_JoinThread.3$Z +fi +if test -n "$ZIP" -a -r ToUpper.3; then + rm -f ToUpper.3$Z + $ZIP ToUpper.3 +fi +if test -r ToUpper.3$Z; then + rm -f Tcl_UniCharToUpper.3 Tcl_UniCharToUpper.3$Z + rm -f Tcl_UniCharToLower.3 Tcl_UniCharToLower.3$Z + rm -f Tcl_UniCharToTitle.3 Tcl_UniCharToTitle.3$Z + rm -f Tcl_UtfToUpper.3 Tcl_UtfToUpper.3$Z + rm -f Tcl_UtfToLower.3 Tcl_UtfToLower.3$Z + rm -f Tcl_UtfToTitle.3 Tcl_UtfToTitle.3$Z + ln $S ToUpper.3$Z Tcl_UniCharToUpper.3$Z + ln $S ToUpper.3$Z Tcl_UniCharToLower.3$Z + ln $S ToUpper.3$Z Tcl_UniCharToTitle.3$Z + ln $S ToUpper.3$Z Tcl_UtfToUpper.3$Z + ln $S ToUpper.3$Z Tcl_UtfToLower.3$Z + ln $S ToUpper.3$Z Tcl_UtfToTitle.3$Z +fi +if test -n "$ZIP" -a -r TraceCmd.3; then + rm -f TraceCmd.3$Z + $ZIP TraceCmd.3 +fi +if test -r TraceCmd.3$Z; then + rm -f Tcl_CommandTraceInfo.3 Tcl_CommandTraceInfo.3$Z + rm -f Tcl_TraceCommand.3 Tcl_TraceCommand.3$Z + rm -f Tcl_UntraceCommand.3 Tcl_UntraceCommand.3$Z + ln $S TraceCmd.3$Z Tcl_CommandTraceInfo.3$Z + ln $S TraceCmd.3$Z Tcl_TraceCommand.3$Z + ln $S TraceCmd.3$Z Tcl_UntraceCommand.3$Z +fi +if test -n "$ZIP" -a -r TraceVar.3; then + rm -f TraceVar.3$Z + $ZIP TraceVar.3 +fi +if test -r TraceVar.3$Z; then + rm -f Tcl_TraceVar.3 Tcl_TraceVar.3$Z + rm -f Tcl_TraceVar2.3 Tcl_TraceVar2.3$Z + rm -f Tcl_UntraceVar.3 Tcl_UntraceVar.3$Z + rm -f Tcl_UntraceVar2.3 Tcl_UntraceVar2.3$Z + rm -f Tcl_VarTraceInfo.3 Tcl_VarTraceInfo.3$Z + rm -f Tcl_VarTraceInfo2.3 Tcl_VarTraceInfo2.3$Z + ln $S TraceVar.3$Z Tcl_TraceVar.3$Z + ln $S TraceVar.3$Z Tcl_TraceVar2.3$Z + ln $S TraceVar.3$Z Tcl_UntraceVar.3$Z + ln $S TraceVar.3$Z Tcl_UntraceVar2.3$Z + ln $S TraceVar.3$Z Tcl_VarTraceInfo.3$Z + ln $S TraceVar.3$Z Tcl_VarTraceInfo2.3$Z +fi +if test -n "$ZIP" -a -r Translate.3; then + rm -f Translate.3$Z + $ZIP Translate.3 +fi +if test -r Translate.3$Z; then + rm -f Tcl_TranslateFileName.3 Tcl_TranslateFileName.3$Z + ln $S Translate.3$Z Tcl_TranslateFileName.3$Z +fi +if test -n "$ZIP" -a -r UniCharIsAlpha.3; then + rm -f UniCharIsAlpha.3$Z + $ZIP UniCharIsAlpha.3 +fi +if test -r UniCharIsAlpha.3$Z; then + rm -f Tcl_UniCharIsAlnum.3 Tcl_UniCharIsAlnum.3$Z + rm -f Tcl_UniCharIsAlpha.3 Tcl_UniCharIsAlpha.3$Z + rm -f Tcl_UniCharIsControl.3 Tcl_UniCharIsControl.3$Z + rm -f Tcl_UniCharIsDigit.3 Tcl_UniCharIsDigit.3$Z + rm -f Tcl_UniCharIsGraph.3 Tcl_UniCharIsGraph.3$Z + rm -f Tcl_UniCharIsLower.3 Tcl_UniCharIsLower.3$Z + rm -f Tcl_UniCharIsPrint.3 Tcl_UniCharIsPrint.3$Z + rm -f Tcl_UniCharIsPunct.3 Tcl_UniCharIsPunct.3$Z + rm -f Tcl_UniCharIsSpace.3 Tcl_UniCharIsSpace.3$Z + rm -f Tcl_UniCharIsUpper.3 Tcl_UniCharIsUpper.3$Z + rm -f Tcl_UniCharIsWordChar.3 Tcl_UniCharIsWordChar.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsAlnum.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsAlpha.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsControl.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsDigit.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsGraph.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsLower.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsPrint.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsPunct.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsSpace.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsUpper.3$Z + ln $S UniCharIsAlpha.3$Z Tcl_UniCharIsWordChar.3$Z +fi +if test -n "$ZIP" -a -r UpVar.3; then + rm -f UpVar.3$Z + $ZIP UpVar.3 +fi +if test -r UpVar.3$Z; then + rm -f Tcl_UpVar.3 Tcl_UpVar.3$Z + rm -f Tcl_UpVar2.3 Tcl_UpVar2.3$Z + ln $S UpVar.3$Z Tcl_UpVar.3$Z + ln $S UpVar.3$Z Tcl_UpVar2.3$Z +fi +if test -n "$ZIP" -a -r Utf.3; then + rm -f Utf.3$Z + $ZIP Utf.3 +fi +if test -r Utf.3$Z; then + rm -f Tcl_UniChar.3 Tcl_UniChar.3$Z + rm -f Tcl_UniCharCaseMatch.3 Tcl_UniCharCaseMatch.3$Z + rm -f Tcl_UniCharNcasecmp.3 Tcl_UniCharNcasecmp.3$Z + rm -f Tcl_UniCharToUtf.3 Tcl_UniCharToUtf.3$Z + rm -f Tcl_UtfToUniChar.3 Tcl_UtfToUniChar.3$Z + rm -f Tcl_UniCharToUtfDString.3 Tcl_UniCharToUtfDString.3$Z + rm -f Tcl_UtfToUniCharDString.3 Tcl_UtfToUniCharDString.3$Z + rm -f Tcl_UniCharLen.3 Tcl_UniCharLen.3$Z + rm -f Tcl_UniCharNcmp.3 Tcl_UniCharNcmp.3$Z + rm -f Tcl_UtfCharComplete.3 Tcl_UtfCharComplete.3$Z + rm -f Tcl_NumUtfChars.3 Tcl_NumUtfChars.3$Z + rm -f Tcl_UtfFindFirst.3 Tcl_UtfFindFirst.3$Z + rm -f Tcl_UtfFindLast.3 Tcl_UtfFindLast.3$Z + rm -f Tcl_UtfNext.3 Tcl_UtfNext.3$Z + rm -f Tcl_UtfPrev.3 Tcl_UtfPrev.3$Z + rm -f Tcl_UniCharAtIndex.3 Tcl_UniCharAtIndex.3$Z + rm -f Tcl_UtfAtIndex.3 Tcl_UtfAtIndex.3$Z + rm -f Tcl_UtfBackslash.3 Tcl_UtfBackslash.3$Z + ln $S Utf.3$Z Tcl_UniChar.3$Z + ln $S Utf.3$Z Tcl_UniCharCaseMatch.3$Z + ln $S Utf.3$Z Tcl_UniCharNcasecmp.3$Z + ln $S Utf.3$Z Tcl_UniCharToUtf.3$Z + ln $S Utf.3$Z Tcl_UtfToUniChar.3$Z + ln $S Utf.3$Z Tcl_UniCharToUtfDString.3$Z + ln $S Utf.3$Z Tcl_UtfToUniCharDString.3$Z + ln $S Utf.3$Z Tcl_UniCharLen.3$Z + ln $S Utf.3$Z Tcl_UniCharNcmp.3$Z + ln $S Utf.3$Z Tcl_UtfCharComplete.3$Z + ln $S Utf.3$Z Tcl_NumUtfChars.3$Z + ln $S Utf.3$Z Tcl_UtfFindFirst.3$Z + ln $S Utf.3$Z Tcl_UtfFindLast.3$Z + ln $S Utf.3$Z Tcl_UtfNext.3$Z + ln $S Utf.3$Z Tcl_UtfPrev.3$Z + ln $S Utf.3$Z Tcl_UniCharAtIndex.3$Z + ln $S Utf.3$Z Tcl_UtfAtIndex.3$Z + ln $S Utf.3$Z Tcl_UtfBackslash.3$Z +fi +if test -n "$ZIP" -a -r WrongNumArgs.3; then + rm -f WrongNumArgs.3$Z + $ZIP WrongNumArgs.3 +fi +if test -r WrongNumArgs.3$Z; then + rm -f Tcl_WrongNumArgs.3 Tcl_WrongNumArgs.3$Z + ln $S WrongNumArgs.3$Z Tcl_WrongNumArgs.3$Z +fi +if test -n "$ZIP" -a -r after.n; then + rm -f after.n$Z + $ZIP after.n +fi +if test -n "$ZIP" -a -r append.n; then + rm -f append.n$Z + $ZIP append.n +fi +if test -n "$ZIP" -a -r array.n; then + rm -f array.n$Z + $ZIP array.n +fi +if test -n "$ZIP" -a -r bgerror.n; then + rm -f bgerror.n$Z + $ZIP bgerror.n +fi +if test -n "$ZIP" -a -r binary.n; then + rm -f binary.n$Z + $ZIP binary.n +fi +if test -n "$ZIP" -a -r break.n; then + rm -f break.n$Z + $ZIP break.n +fi +if test -n "$ZIP" -a -r case.n; then + rm -f case.n$Z + $ZIP case.n +fi +if test -n "$ZIP" -a -r catch.n; then + rm -f catch.n$Z + $ZIP catch.n +fi +if test -n "$ZIP" -a -r cd.n; then + rm -f cd.n$Z + $ZIP cd.n +fi +if test -n "$ZIP" -a -r clock.n; then + rm -f clock.n$Z + $ZIP clock.n +fi +if test -n "$ZIP" -a -r close.n; then + rm -f close.n$Z + $ZIP close.n +fi +if test -n "$ZIP" -a -r concat.n; then + rm -f concat.n$Z + $ZIP concat.n +fi +if test -n "$ZIP" -a -r continue.n; then + rm -f continue.n$Z + $ZIP continue.n +fi +if test -n "$ZIP" -a -r dde.n; then + rm -f dde.n$Z + $ZIP dde.n +fi +if test -n "$ZIP" -a -r encoding.n; then + rm -f encoding.n$Z + $ZIP encoding.n +fi +if test -n "$ZIP" -a -r eof.n; then + rm -f eof.n$Z + $ZIP eof.n +fi +if test -n "$ZIP" -a -r error.n; then + rm -f error.n$Z + $ZIP error.n +fi +if test -n "$ZIP" -a -r eval.n; then + rm -f eval.n$Z + $ZIP eval.n +fi +if test -n "$ZIP" -a -r exec.n; then + rm -f exec.n$Z + $ZIP exec.n +fi +if test -n "$ZIP" -a -r exit.n; then + rm -f exit.n$Z + $ZIP exit.n +fi +if test -n "$ZIP" -a -r expr.n; then + rm -f expr.n$Z + $ZIP expr.n +fi +if test -n "$ZIP" -a -r fblocked.n; then + rm -f fblocked.n$Z + $ZIP fblocked.n +fi +if test -n "$ZIP" -a -r fconfigure.n; then + rm -f fconfigure.n$Z + $ZIP fconfigure.n +fi +if test -n "$ZIP" -a -r fcopy.n; then + rm -f fcopy.n$Z + $ZIP fcopy.n +fi +if test -n "$ZIP" -a -r file.n; then + rm -f file.n$Z + $ZIP file.n +fi +if test -n "$ZIP" -a -r fileevent.n; then + rm -f fileevent.n$Z + $ZIP fileevent.n +fi +if test -n "$ZIP" -a -r filename.n; then + rm -f filename.n$Z + $ZIP filename.n +fi +if test -n "$ZIP" -a -r flush.n; then + rm -f flush.n$Z + $ZIP flush.n +fi +if test -n "$ZIP" -a -r for.n; then + rm -f for.n$Z + $ZIP for.n +fi +if test -n "$ZIP" -a -r foreach.n; then + rm -f foreach.n$Z + $ZIP foreach.n +fi +if test -n "$ZIP" -a -r format.n; then + rm -f format.n$Z + $ZIP format.n +fi +if test -n "$ZIP" -a -r gets.n; then + rm -f gets.n$Z + $ZIP gets.n +fi +if test -n "$ZIP" -a -r glob.n; then + rm -f glob.n$Z + $ZIP glob.n +fi +if test -n "$ZIP" -a -r global.n; then + rm -f global.n$Z + $ZIP global.n +fi +if test -n "$ZIP" -a -r history.n; then + rm -f history.n$Z + $ZIP history.n +fi +if test -n "$ZIP" -a -r http.n; then + rm -f http.n$Z + $ZIP http.n +fi +if test -r http.n$Z; then + if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f Http.n Http.n$Z; fi + if test "${CASEINSENSITIVEFS:-}" != "1"; then ln $S http.n$Z Http.n$Z; fi +fi +if test -n "$ZIP" -a -r if.n; then + rm -f if.n$Z + $ZIP if.n +fi +if test -n "$ZIP" -a -r incr.n; then + rm -f incr.n$Z + $ZIP incr.n +fi +if test -n "$ZIP" -a -r info.n; then + rm -f info.n$Z + $ZIP info.n +fi +if test -n "$ZIP" -a -r interp.n; then + rm -f interp.n$Z + $ZIP interp.n +fi +if test -n "$ZIP" -a -r join.n; then + rm -f join.n$Z + $ZIP join.n +fi +if test -n "$ZIP" -a -r lappend.n; then + rm -f lappend.n$Z + $ZIP lappend.n +fi +if test -n "$ZIP" -a -r library.n; then + rm -f library.n$Z + $ZIP library.n +fi +if test -r library.n$Z; then + rm -f auto_execok.n auto_execok.n$Z + rm -f auto_import.n auto_import.n$Z + rm -f auto_load.n auto_load.n$Z + rm -f auto_mkindex.n auto_mkindex.n$Z + rm -f auto_mkindex_old.n auto_mkindex_old.n$Z + rm -f auto_qualify.n auto_qualify.n$Z + rm -f auto_reset.n auto_reset.n$Z + rm -f tcl_findLibrary.n tcl_findLibrary.n$Z + rm -f parray.n parray.n$Z + rm -f tcl_endOfWord.n tcl_endOfWord.n$Z + rm -f tcl_startOfNextWord.n tcl_startOfNextWord.n$Z + rm -f tcl_startOfPreviousWord.n tcl_startOfPreviousWord.n$Z + rm -f tcl_wordBreakAfter.n tcl_wordBreakAfter.n$Z + rm -f tcl_wordBreakBefore.n tcl_wordBreakBefore.n$Z + ln $S library.n$Z auto_execok.n$Z + ln $S library.n$Z auto_import.n$Z + ln $S library.n$Z auto_load.n$Z + ln $S library.n$Z auto_mkindex.n$Z + ln $S library.n$Z auto_mkindex_old.n$Z + ln $S library.n$Z auto_qualify.n$Z + ln $S library.n$Z auto_reset.n$Z + ln $S library.n$Z tcl_findLibrary.n$Z + ln $S library.n$Z parray.n$Z + ln $S library.n$Z tcl_endOfWord.n$Z + ln $S library.n$Z tcl_startOfNextWord.n$Z + ln $S library.n$Z tcl_startOfPreviousWord.n$Z + ln $S library.n$Z tcl_wordBreakAfter.n$Z + ln $S library.n$Z tcl_wordBreakBefore.n$Z +fi +if test -n "$ZIP" -a -r lindex.n; then + rm -f lindex.n$Z + $ZIP lindex.n +fi +if test -n "$ZIP" -a -r linsert.n; then + rm -f linsert.n$Z + $ZIP linsert.n +fi +if test -n "$ZIP" -a -r list.n; then + rm -f list.n$Z + $ZIP list.n +fi +if test -n "$ZIP" -a -r llength.n; then + rm -f llength.n$Z + $ZIP llength.n +fi +if test -n "$ZIP" -a -r load.n; then + rm -f load.n$Z + $ZIP load.n +fi +if test -n "$ZIP" -a -r lrange.n; then + rm -f lrange.n$Z + $ZIP lrange.n +fi +if test -n "$ZIP" -a -r lreplace.n; then + rm -f lreplace.n$Z + $ZIP lreplace.n +fi +if test -n "$ZIP" -a -r lsearch.n; then + rm -f lsearch.n$Z + $ZIP lsearch.n +fi +if test -n "$ZIP" -a -r lset.n; then + rm -f lset.n$Z + $ZIP lset.n +fi +if test -n "$ZIP" -a -r lsort.n; then + rm -f lsort.n$Z + $ZIP lsort.n +fi +if test -n "$ZIP" -a -r memory.n; then + rm -f memory.n$Z + $ZIP memory.n +fi +if test -n "$ZIP" -a -r msgcat.n; then + rm -f msgcat.n$Z + $ZIP msgcat.n +fi +if test -n "$ZIP" -a -r namespace.n; then + rm -f namespace.n$Z + $ZIP namespace.n +fi +if test -n "$ZIP" -a -r open.n; then + rm -f open.n$Z + $ZIP open.n +fi +if test -n "$ZIP" -a -r package.n; then + rm -f package.n$Z + $ZIP package.n +fi +if test -n "$ZIP" -a -r packagens.n; then + rm -f packagens.n$Z + $ZIP packagens.n +fi +if test -r packagens.n$Z; then + rm -f pkg::create.n pkg::create.n$Z + ln $S packagens.n$Z pkg::create.n$Z +fi +if test -n "$ZIP" -a -r pid.n; then + rm -f pid.n$Z + $ZIP pid.n +fi +if test -n "$ZIP" -a -r pkgMkIndex.n; then + rm -f pkgMkIndex.n$Z + $ZIP pkgMkIndex.n +fi +if test -r pkgMkIndex.n$Z; then + rm -f pkg_mkIndex.n pkg_mkIndex.n$Z + ln $S pkgMkIndex.n$Z pkg_mkIndex.n$Z +fi +if test -n "$ZIP" -a -r proc.n; then + rm -f proc.n$Z + $ZIP proc.n +fi +if test -n "$ZIP" -a -r puts.n; then + rm -f puts.n$Z + $ZIP puts.n +fi +if test -n "$ZIP" -a -r pwd.n; then + rm -f pwd.n$Z + $ZIP pwd.n +fi +if test -n "$ZIP" -a -r re_syntax.n; then + rm -f re_syntax.n$Z + $ZIP re_syntax.n +fi +if test -n "$ZIP" -a -r read.n; then + rm -f read.n$Z + $ZIP read.n +fi +if test -n "$ZIP" -a -r regexp.n; then + rm -f regexp.n$Z + $ZIP regexp.n +fi +if test -n "$ZIP" -a -r registry.n; then + rm -f registry.n$Z + $ZIP registry.n +fi +if test -n "$ZIP" -a -r regsub.n; then + rm -f regsub.n$Z + $ZIP regsub.n +fi +if test -n "$ZIP" -a -r rename.n; then + rm -f rename.n$Z + $ZIP rename.n +fi +if test -n "$ZIP" -a -r resource.n; then + rm -f resource.n$Z + $ZIP resource.n +fi +if test -n "$ZIP" -a -r return.n; then + rm -f return.n$Z + $ZIP return.n +fi +if test -n "$ZIP" -a -r safe.n; then + rm -f safe.n$Z + $ZIP safe.n +fi +if test -r safe.n$Z; then + rm -f SafeBase.n SafeBase.n$Z + ln $S safe.n$Z SafeBase.n$Z +fi +if test -n "$ZIP" -a -r scan.n; then + rm -f scan.n$Z + $ZIP scan.n +fi +if test -n "$ZIP" -a -r seek.n; then + rm -f seek.n$Z + $ZIP seek.n +fi +if test -n "$ZIP" -a -r set.n; then + rm -f set.n$Z + $ZIP set.n +fi +if test -n "$ZIP" -a -r socket.n; then + rm -f socket.n$Z + $ZIP socket.n +fi +if test -n "$ZIP" -a -r source.n; then + rm -f source.n$Z + $ZIP source.n +fi +if test -n "$ZIP" -a -r split.n; then + rm -f split.n$Z + $ZIP split.n +fi +if test -n "$ZIP" -a -r string.n; then + rm -f string.n$Z + $ZIP string.n +fi +if test -n "$ZIP" -a -r subst.n; then + rm -f subst.n$Z + $ZIP subst.n +fi +if test -n "$ZIP" -a -r switch.n; then + rm -f switch.n$Z + $ZIP switch.n +fi +if test -n "$ZIP" -a -r tclsh.1; then + rm -f tclsh.1$Z + $ZIP tclsh.1 +fi +if test -n "$ZIP" -a -r tcltest.n; then + rm -f tcltest.n$Z + $ZIP tcltest.n +fi +if test -n "$ZIP" -a -r tclvars.n; then + rm -f tclvars.n$Z + $ZIP tclvars.n +fi +if test -n "$ZIP" -a -r tell.n; then + rm -f tell.n$Z + $ZIP tell.n +fi +if test -n "$ZIP" -a -r time.n; then + rm -f time.n$Z + $ZIP time.n +fi +if test -n "$ZIP" -a -r trace.n; then + rm -f trace.n$Z + $ZIP trace.n +fi +if test -n "$ZIP" -a -r unknown.n; then + rm -f unknown.n$Z + $ZIP unknown.n +fi +if test -n "$ZIP" -a -r unset.n; then + rm -f unset.n$Z + $ZIP unset.n +fi +if test -n "$ZIP" -a -r update.n; then + rm -f update.n$Z + $ZIP update.n +fi +if test -n "$ZIP" -a -r uplevel.n; then + rm -f uplevel.n$Z + $ZIP uplevel.n +fi +if test -n "$ZIP" -a -r upvar.n; then + rm -f upvar.n$Z + $ZIP upvar.n +fi +if test -n "$ZIP" -a -r variable.n; then + rm -f variable.n$Z + $ZIP variable.n +fi +if test -n "$ZIP" -a -r vwait.n; then + rm -f vwait.n$Z + $ZIP vwait.n +fi +if test -n "$ZIP" -a -r while.n; then + rm -f while.n$Z + $ZIP while.n fi exit 0 diff --git a/unix/mkLinks.tcl b/unix/mkLinks.tcl index dd6dc52..166bc88 100644 --- a/unix/mkLinks.tcl +++ b/unix/mkLinks.tcl @@ -22,11 +22,33 @@ puts stdout \ # The script takes one argument, which is the name of the directory # where the manual entries have been installed. +while true; do + case $1 in + -s | --symlinks ) + S=-s + ;; + -z | --compress ) + ZIP=$2 + shift + ;; + *) break + ;; + esac + shift +done + if test $# != 1; then - echo "Usage: mkLinks dir" + echo "Usage: mkLinks dir" exit 1 fi +if test -n "$ZIP"; then + touch TeST + $ZIP TeST + Z=`ls TeST* | sed 's/^[^.]*//'` + rm -f TeST* +fi + cd $1 echo foo > xyzzyTestingAVeryLongFileName.foo x=`echo xyzzyTe*` @@ -72,12 +94,16 @@ foreach file $argv { set tstfi "" } lappend namelist $name$ext - append rmOutput " $tst rm -f $name$ext$tstfi\n" - append lnOutput " $tst ln $tail $name$ext$tstfi\n" + append rmOutput " $tst rm -f $name$ext $name$ext\$Z$tstfi\n" + append lnOutput " $tst ln \$S $tail\$Z $name$ext\$Z$tstfi\n" } } + puts "if test -n \"\$ZIP\" -a -r $tail; then" + puts " rm -f $tail\$Z" + puts " \$ZIP $tail" + puts "fi" if { [llength $namelist] } { - puts "if test -r $tail; then" + puts "if test -r $tail\$Z; then" puts -nonewline $rmOutput puts -nonewline $lnOutput puts "fi" diff --git a/unix/tcl.m4 b/unix/tcl.m4 index f9ee925..56e8223 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -506,6 +506,48 @@ AC_DEFUN(SC_ENABLE_LANGINFO, [ ]) #-------------------------------------------------------------------- +# SC_CONFIG_MANPAGES +# +# Decide whether to use symlinks for linking the manpages and +# whether to compress the manpages after installation. +# +# Arguments: +# none +# +# Results: +# +# Adds the following arguments to configure: +# --enable-man-symlinks +# --enable-man-compression=PROG +# +# Defines the following variable: +# +# MKLINKS_FLAGS - The apropriate flags for mkLinks +# according to the user's selection. +# +#-------------------------------------------------------------------- +AC_DEFUN(SC_CONFIG_MANPAGES, [ + + AC_MSG_CHECKING([whether to use symlinks for manpages]) + AC_ARG_ENABLE(man-symlinks, + [ --enable-man-symlinks use symlinks for the manpages], + test "$enableval" != "no" && MKLINKS_FLAGS="$MKLINKS_FLAGS --symlinks", + enableval="no") + AC_MSG_RESULT([$enableval]) + + AC_MSG_CHECKING([compression for manpages]) + AC_ARG_ENABLE(man-compression, + [ --enable-man-compression=PROG + compress the manpages with PROG], + test "$enableval" = "yes" && echo && AC_MSG_ERROR([missing argument to --enable-man-compression]) + test "$enableval" != "no" && MKLINKS_FLAGS="$MKLINKS_FLAGS --compress $enableval", + enableval="no") + AC_MSG_RESULT([$enableval]) + + AC_SUBST(MKLINKS_FLAGS) +]) + +#-------------------------------------------------------------------- # SC_CONFIG_CFLAGS # # Try to determine the proper flags to pass to the compiler -- cgit v0.12