diff options
author | rmax <rmax> | 2004-11-18 02:07:06 (GMT) |
---|---|---|
committer | rmax <rmax> | 2004-11-18 02:07:06 (GMT) |
commit | 2d4840bee21532d087aa38573c03536887eae72b (patch) | |
tree | 86ee8a7a88a748b30a8223ce88428550f56682e7 /unix | |
parent | b70f7a0c3c837a92e17bb6ec8214cb77b4d2a670 (diff) | |
download | tcl-2d4840bee21532d087aa38573c03536887eae72b.zip tcl-2d4840bee21532d087aa38573c03536887eae72b.tar.gz tcl-2d4840bee21532d087aa38573c03536887eae72b.tar.bz2 |
2004-11-18 Reinhard Max <max@suse.de>
* unix/tcl.m4 (SC_CONFIG_MANPAGES): Applied an improved version of
* unix/configure.in: patch #996085, that introduces
* unix/Makefile.in: --enable-man-suffix.
* unix/installManPage: added
* unix/mkLinks.tcl: removed
* unix/mkLinks: removed
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 63 | ||||
-rwxr-xr-x | unix/configure | 755 | ||||
-rw-r--r-- | unix/configure.in | 4 | ||||
-rwxr-xr-x | unix/installManPage | 51 | ||||
-rw-r--r-- | unix/mkLinks | 1857 | ||||
-rw-r--r-- | unix/mkLinks.tcl | 119 | ||||
-rw-r--r-- | unix/tcl.m4 | 42 |
7 files changed, 498 insertions, 2393 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index d4c92d8..6c1485a 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.121.2.7 2004/11/16 23:39:51 andreas_kupries Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.121.2.8 2004/11/18 02:07:09 rmax Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -257,9 +257,9 @@ 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 +# Flags to be passed to installManPage to control whether the manpages # should be compressed and linked with softlinks -MKLINKS_FLAGS = @MKLINKS_FLAGS@ +MAN_FLAGS = @MAN_FLAGS@ #---------------------------------------------------------------- # The information below is usually usable as is. The configure @@ -682,8 +682,8 @@ install-libraries: libraries done; install-doc: doc - @if test ! -x $(UNIX_DIR)/mkLinks; then \ - chmod +x $(UNIX_DIR)/mkLinks; \ + @if test ! -x $(UNIX_DIR)/installManPage; then \ + chmod +x $(UNIX_DIR)/installManPage; \ fi @for i in $(MAN_INSTALL_DIR) $(MAN1_INSTALL_DIR) $(MAN3_INSTALL_DIR) $(MANN_INSTALL_DIR) ; \ do \ @@ -694,36 +694,20 @@ install-doc: doc else true; \ fi; \ done; - @echo "Installing top-level (.1) docs"; - @cd $(TOP_DIR)/doc; for i in *.1; \ - do \ - rm -f $(MAN1_INSTALL_DIR)/$$i; \ - sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ - $$i > $(MAN1_INSTALL_DIR)/$$i; \ - chmod 444 $(MAN1_INSTALL_DIR)/$$i; \ - done; - @echo "Cross-linking top-level (.1) docs"; - @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN1_INSTALL_DIR) - @echo "Installing C API (.3) docs"; - @cd $(TOP_DIR)/doc; for i in *.3; \ - do \ - rm -f $(MAN3_INSTALL_DIR)/$$i; \ - sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ - $$i > $(MAN3_INSTALL_DIR)/$$i; \ - chmod 444 $(MAN3_INSTALL_DIR)/$$i; \ - done; - @echo "Cross-linking C API (.3) docs"; - @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MAN3_INSTALL_DIR) - @echo "Installing command (.n) docs"; - @cd $(TOP_DIR)/doc; for i in *.n; \ - do \ - rm -f $(MANN_INSTALL_DIR)/$$i; \ - sed -e '/man\.macros/r man.macros' -e '/man\.macros/d' \ - $$i > $(MANN_INSTALL_DIR)/$$i; \ - chmod 444 $(MANN_INSTALL_DIR)/$$i; \ - done; - @echo "Cross-linking command (.n) docs"; - @$(UNIX_DIR)/mkLinks $(MKLINKS_FLAGS) $(MANN_INSTALL_DIR) + @echo "Installing and cross-linking top-level (.1) docs"; + @cd $(TOP_DIR)/doc; for i in *.1; do \ + $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN1_INSTALL_DIR); \ + done + + @echo "Installing and cross-linking C API (.3) docs"; + @cd $(TOP_DIR)/doc; for i in *.3; do \ + $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MAN3_INSTALL_DIR); \ + done + + @echo "Installing and cross-linking command (.n) docs"; + @cd $(TOP_DIR)/doc; for i in *.n; do \ + $(UNIX_DIR)/installManPage $(MAN_FLAGS) $$i $(MANN_INSTALL_DIR); \ + done Makefile: $(UNIX_DIR)/Makefile.in $(DLTEST_DIR)/Makefile.in $(SHELL) config.status @@ -1198,11 +1182,6 @@ rpm: all /bin/rpm mv RPMS/i386/*.rpm . rm -rf RPMS THIS.TCL.SPEC -mklinks: - $(TCL_EXE) $(UNIX_DIR)/mkLinks.tcl \ - $(UNIX_DIR)/../doc/*.[13n] > $(UNIX_DIR)/mkLinks - chmod +x $(UNIX_DIR)/mkLinks - # # Target to create a proper Tcl distribution from information in the # master source directory. DISTDIR must be defined to indicate where @@ -1214,7 +1193,7 @@ DISTNAME = tcl${VERSION}${PATCH_LEVEL} ZIPNAME = tcl${MAJOR_VERSION}${MINOR_VERSION}${PATCH_LEVEL}-src.zip DISTDIR = $(DISTROOT)/$(DISTNAME) -dist: mklinks +dist: rm -rf $(DISTDIR) mkdir -p $(DISTDIR)/unix cp -p $(UNIX_DIR)/*.c $(UNIX_DIR)/*.h $(DISTDIR)/unix @@ -1224,7 +1203,7 @@ dist: mklinks $(UNIX_DIR)/tcl.m4 $(UNIX_DIR)/aclocal.m4 \ $(UNIX_DIR)/tclConfig.sh.in $(UNIX_DIR)/install-sh \ $(UNIX_DIR)/README $(UNIX_DIR)/ldAix $(UNIX_DIR)/tcl.spec \ - $(UNIX_DIR)/mkLinks \ + $(UNIX_DIR)/installManPage \ $(DISTDIR)/unix chmod 775 $(DISTDIR)/unix/configure $(DISTDIR)/unix/configure.in chmod 775 $(DISTDIR)/unix/ldAix diff --git a/unix/configure b/unix/configure index 1a66b50..c25db6d 100755 --- a/unix/configure +++ b/unix/configure @@ -17,6 +17,10 @@ ac_help="$ac_help --enable-man-compression=PROG compress the manpages with PROG" ac_help="$ac_help + --enable-man-suffix=STRING + use STRING as a suffix to manpage file names + (default: tcl)" +ac_help="$ac_help --enable-threads build with threads" ac_help="$ac_help --enable-shared build and link with shared libraries [--enable-shared]" @@ -571,24 +575,47 @@ TCL_SRC_DIR=`cd $srcdir/..; pwd` echo $ac_n "checking whether to use symlinks for manpages""... $ac_c" 1>&6 -echo "configure:575: checking whether to use symlinks for manpages" >&5 +echo "configure:579: 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" + test "$enableval" != "no" && MAN_FLAGS="$MAN_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:587: checking compression for manpages" >&5 + echo $ac_n "checking whether to compress the manpages""... $ac_c" 1>&6 +echo "configure:591: checking whether to compress the 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" + test "$enableval" = "yes" && { echo "configure: error: missing argument to --enable-man-compression" 1>&2; exit 1; } + test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --compress $enableval" +else + enableval="no" +fi + + echo "$ac_t""$enableval" 1>&6 + if test "$enableval" != "no"; then + echo $ac_n "checking for compressed file suffix""... $ac_c" 1>&6 +echo "configure:604: checking for compressed file suffix" >&5 + touch TeST + $enableval TeST + Z=`ls TeST* | sed 's/^....//'` + rm -f TeST* + MAN_FLAGS="$MAN_FLAGS --extension $Z" + echo "$ac_t""$Z" 1>&6 + fi + + echo $ac_n "checking whether to add a package name suffix for the manpages""... $ac_c" 1>&6 +echo "configure:614: checking whether to add a package name suffix for the manpages" >&5 + # Check whether --enable-man-suffix or --disable-man-suffix was given. +if test "${enable_man_suffix+set}" = set; then + enableval="$enable_man_suffix" + test "$enableval" = "yes" && enableval="tcl" + test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --suffix $enableval" else enableval="no" fi @@ -611,7 +638,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:615: 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 @@ -641,7 +668,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:645: checking for $ac_word" >&5 +echo "configure:672: 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 @@ -692,7 +719,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:696: checking for $ac_word" >&5 +echo "configure:723: 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 @@ -724,7 +751,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:728: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:755: 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. @@ -735,12 +762,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 739 "configure" +#line 766 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:771: \"$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 @@ -766,12 +793,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:770: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:797: 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:775: checking whether we are using GNU C" >&5 +echo "configure:802: 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 @@ -780,7 +807,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:784: \"$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:811: \"$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 @@ -799,7 +826,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:803: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:830: 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 @@ -837,7 +864,7 @@ fi echo $ac_n "checking for building with threads""... $ac_c" 1>&6 -echo "configure:841: checking for building with threads" >&5 +echo "configure:868: 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" @@ -873,7 +900,7 @@ EOF EOF echo $ac_n "checking for pthread_mutex_init in -lpthread""... $ac_c" 1>&6 -echo "configure:877: checking for pthread_mutex_init in -lpthread" >&5 +echo "configure:904: 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 @@ -881,7 +908,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthread $LIBS" cat > conftest.$ac_ext <<EOF -#line 885 "configure" +#line 912 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -892,7 +919,7 @@ int main() { pthread_mutex_init() ; return 0; } EOF -if { (eval echo configure:896: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:923: \"$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 @@ -920,7 +947,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:924: checking for __pthread_mutex_init in -lpthread" >&5 +echo "configure:951: 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 @@ -928,7 +955,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthread $LIBS" cat > conftest.$ac_ext <<EOF -#line 932 "configure" +#line 959 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -939,7 +966,7 @@ int main() { __pthread_mutex_init() ; return 0; } EOF -if { (eval echo configure:943: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:970: \"$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 @@ -967,7 +994,7 @@ fi THREADS_LIBS=" -lpthread" else echo $ac_n "checking for pthread_mutex_init in -lpthreads""... $ac_c" 1>&6 -echo "configure:971: checking for pthread_mutex_init in -lpthreads" >&5 +echo "configure:998: 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 @@ -975,7 +1002,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthreads $LIBS" cat > conftest.$ac_ext <<EOF -#line 979 "configure" +#line 1006 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -986,7 +1013,7 @@ int main() { pthread_mutex_init() ; return 0; } EOF -if { (eval echo configure:990: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1017: \"$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 @@ -1012,7 +1039,7 @@ fi THREADS_LIBS=" -lpthreads" else echo $ac_n "checking for pthread_mutex_init in -lc""... $ac_c" 1>&6 -echo "configure:1016: checking for pthread_mutex_init in -lc" >&5 +echo "configure:1043: 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 @@ -1020,7 +1047,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc $LIBS" cat > conftest.$ac_ext <<EOF -#line 1024 "configure" +#line 1051 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -1031,7 +1058,7 @@ int main() { pthread_mutex_init() ; return 0; } EOF -if { (eval echo configure:1035: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1062: \"$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 @@ -1054,7 +1081,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:1058: checking for pthread_mutex_init in -lc_r" >&5 +echo "configure:1085: 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 @@ -1062,7 +1089,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc_r $LIBS" cat > conftest.$ac_ext <<EOF -#line 1066 "configure" +#line 1093 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -1073,7 +1100,7 @@ int main() { pthread_mutex_init() ; return 0; } EOF -if { (eval echo configure:1077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1104: \"$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 @@ -1113,12 +1140,12 @@ fi for ac_func in pthread_attr_setstacksize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1117: checking for $ac_func" >&5 +echo "configure:1144: 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 <<EOF -#line 1122 "configure" +#line 1149 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -1141,7 +1168,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:1145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1172: \"$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 @@ -1168,12 +1195,12 @@ done for ac_func in pthread_atfork do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1172: checking for $ac_func" >&5 +echo "configure:1199: 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 <<EOF -#line 1177 "configure" +#line 1204 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -1196,7 +1223,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:1200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1227: \"$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 @@ -1224,12 +1251,12 @@ done for ac_func in readdir_r do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:1228: checking for $ac_func" >&5 +echo "configure:1255: 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 <<EOF -#line 1233 "configure" +#line 1260 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -1252,7 +1279,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:1256: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1283: \"$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 @@ -1291,18 +1318,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:1295: checking if the compiler understands -pipe" >&5 +echo "configure:1322: checking if the compiler understands -pipe" >&5 OLDCC="$CC" CC="$CC -pipe" cat > conftest.$ac_ext <<EOF -#line 1299 "configure" +#line 1326 "configure" #include "confdefs.h" int main() { ; return 0; } EOF -if { (eval echo configure:1306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1333: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -1321,7 +1348,7 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1325: checking how to run the C preprocessor" >&5 +echo "configure:1352: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -1336,13 +1363,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext <<EOF -#line 1340 "configure" +#line 1367 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1346: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1373: \"$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 : @@ -1353,13 +1380,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext <<EOF -#line 1357 "configure" +#line 1384 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1363: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1390: \"$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 : @@ -1370,13 +1397,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext <<EOF -#line 1374 "configure" +#line 1401 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1380: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1407: \"$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 : @@ -1409,12 +1436,12 @@ echo "$ac_t""$CPP" 1>&6 #-------------------------------------------------------------------- echo $ac_n "checking for sin""... $ac_c" 1>&6 -echo "configure:1413: checking for sin" >&5 +echo "configure:1440: 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 <<EOF -#line 1418 "configure" +#line 1445 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sin(); below. */ @@ -1437,7 +1464,7 @@ sin(); ; return 0; } EOF -if { (eval echo configure:1441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1468: \"$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 @@ -1458,7 +1485,7 @@ MATH_LIBS="-lm" fi echo $ac_n "checking for main in -lieee""... $ac_c" 1>&6 -echo "configure:1462: checking for main in -lieee" >&5 +echo "configure:1489: 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 @@ -1466,14 +1493,14 @@ else ac_save_LIBS="$LIBS" LIBS="-lieee $LIBS" cat > conftest.$ac_ext <<EOF -#line 1470 "configure" +#line 1497 "configure" #include "confdefs.h" int main() { main() ; return 0; } EOF -if { (eval echo configure:1477: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1504: \"$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 @@ -1500,7 +1527,7 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for main in -linet""... $ac_c" 1>&6 -echo "configure:1504: checking for main in -linet" >&5 +echo "configure:1531: 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 @@ -1508,14 +1535,14 @@ else ac_save_LIBS="$LIBS" LIBS="-linet $LIBS" cat > conftest.$ac_ext <<EOF -#line 1512 "configure" +#line 1539 "configure" #include "confdefs.h" int main() { main() ; return 0; } EOF -if { (eval echo configure:1519: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1546: \"$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 @@ -1537,17 +1564,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:1541: checking for net/errno.h" >&5 +echo "configure:1568: 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 -#line 1546 "configure" +#line 1573 "configure" #include "confdefs.h" #include <net/errno.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1551: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1578: \"$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* @@ -1592,12 +1619,12 @@ fi tcl_checkBoth=0 echo $ac_n "checking for connect""... $ac_c" 1>&6 -echo "configure:1596: checking for connect" >&5 +echo "configure:1623: 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 <<EOF -#line 1601 "configure" +#line 1628 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect(); below. */ @@ -1620,7 +1647,7 @@ connect(); ; return 0; } EOF -if { (eval echo configure:1624: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1651: \"$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 @@ -1642,12 +1669,12 @@ fi if test "$tcl_checkSocket" = 1; then echo $ac_n "checking for setsockopt""... $ac_c" 1>&6 -echo "configure:1646: checking for setsockopt" >&5 +echo "configure:1673: 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 <<EOF -#line 1651 "configure" +#line 1678 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setsockopt(); below. */ @@ -1670,7 +1697,7 @@ setsockopt(); ; return 0; } EOF -if { (eval echo configure:1674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1701: \"$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 @@ -1688,7 +1715,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:1692: checking for setsockopt in -lsocket" >&5 +echo "configure:1719: 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 @@ -1696,7 +1723,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <<EOF -#line 1700 "configure" +#line 1727 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -1707,7 +1734,7 @@ int main() { setsockopt() ; return 0; } EOF -if { (eval echo configure:1711: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1738: \"$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 @@ -1735,12 +1762,12 @@ fi tk_oldLibs=$LIBS LIBS="$LIBS -lsocket -lnsl" echo $ac_n "checking for accept""... $ac_c" 1>&6 -echo "configure:1739: checking for accept" >&5 +echo "configure:1766: 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 <<EOF -#line 1744 "configure" +#line 1771 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char accept(); below. */ @@ -1763,7 +1790,7 @@ accept(); ; return 0; } EOF -if { (eval echo configure:1767: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1794: \"$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 @@ -1785,12 +1812,12 @@ fi fi echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 -echo "configure:1789: checking for gethostbyname" >&5 +echo "configure:1816: 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 <<EOF -#line 1794 "configure" +#line 1821 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname(); below. */ @@ -1813,7 +1840,7 @@ gethostbyname(); ; return 0; } EOF -if { (eval echo configure:1817: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1844: \"$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 @@ -1831,7 +1858,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:1835: checking for gethostbyname in -lnsl" >&5 +echo "configure:1862: 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 @@ -1839,7 +1866,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $LIBS" cat > conftest.$ac_ext <<EOF -#line 1843 "configure" +#line 1870 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -1850,7 +1877,7 @@ int main() { gethostbyname() ; return 0; } EOF -if { (eval echo configure:1854: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1881: \"$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 @@ -1887,7 +1914,7 @@ LIBS="$LIBS$THREADS_LIBS" echo $ac_n "checking how to build libraries""... $ac_c" 1>&6 -echo "configure:1891: checking how to build libraries" >&5 +echo "configure:1918: 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" @@ -1926,7 +1953,7 @@ EOF # 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:1930: checking for $ac_word" >&5 +echo "configure:1957: 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 @@ -1958,7 +1985,7 @@ fi # Step 0.a: Enable 64 bit support? echo $ac_n "checking if 64bit support is requested""... $ac_c" 1>&6 -echo "configure:1962: checking if 64bit support is requested" >&5 +echo "configure:1989: 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" @@ -1978,7 +2005,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:1982: checking if 64bit Sparc VIS support is requested" >&5 +echo "configure:2009: 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" @@ -2002,7 +2029,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:2006: checking system version (for dynamic loading)" >&5 +echo "configure:2033: 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 @@ -2028,7 +2055,7 @@ echo "configure:2006: 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:2032: checking for dlopen in -ldl" >&5 +echo "configure:2059: 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 @@ -2036,7 +2063,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext <<EOF -#line 2040 "configure" +#line 2067 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2047,7 +2074,7 @@ int main() { dlopen() ; return 0; } EOF -if { (eval echo configure:2051: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2078: \"$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 @@ -2095,7 +2122,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:2099: checking for $ac_word" >&5 +echo "configure:2126: 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 @@ -2236,7 +2263,7 @@ fi # known GMT value. echo $ac_n "checking for gettimeofday in -lbsd""... $ac_c" 1>&6 -echo "configure:2240: checking for gettimeofday in -lbsd" >&5 +echo "configure:2267: 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 @@ -2244,7 +2271,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lbsd $LIBS" cat > conftest.$ac_ext <<EOF -#line 2248 "configure" +#line 2275 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2255,7 +2282,7 @@ int main() { gettimeofday() ; return 0; } EOF -if { (eval echo configure:2259: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2286: \"$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 @@ -2298,7 +2325,7 @@ EOF # is always linked to, for compatibility. #----------------------------------------------------------- echo $ac_n "checking for inet_ntoa in -lbind""... $ac_c" 1>&6 -echo "configure:2302: checking for inet_ntoa in -lbind" >&5 +echo "configure:2329: checking for inet_ntoa in -lbind" >&5 ac_lib_var=`echo bind'_'inet_ntoa | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2306,7 +2333,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lbind $LIBS" cat > conftest.$ac_ext <<EOF -#line 2310 "configure" +#line 2337 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2317,7 +2344,7 @@ int main() { inet_ntoa() ; return 0; } EOF -if { (eval echo configure:2321: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2348: \"$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 @@ -2383,7 +2410,7 @@ EOF SHLIB_SUFFIX=".sl" echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6 -echo "configure:2387: checking for shl_load in -ldld" >&5 +echo "configure:2414: 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 @@ -2391,7 +2418,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <<EOF -#line 2395 "configure" +#line 2422 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2402,7 +2429,7 @@ int main() { shl_load() ; return 0; } EOF -if { (eval echo configure:2406: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2433: \"$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 @@ -2471,7 +2498,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:2475: checking for shl_load in -ldld" >&5 +echo "configure:2502: 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 @@ -2479,7 +2506,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <<EOF -#line 2483 "configure" +#line 2510 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2490,7 +2517,7 @@ int main() { shl_load() ; return 0; } EOF -if { (eval echo configure:2494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2521: \"$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 @@ -2614,17 +2641,17 @@ fi else ac_safe=`echo "dld.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dld.h""... $ac_c" 1>&6 -echo "configure:2618: checking for dld.h" >&5 +echo "configure:2645: 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 -#line 2623 "configure" +#line 2650 "configure" #include "confdefs.h" #include <dld.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2628: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2655: \"$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* @@ -2688,17 +2715,17 @@ EOF else ac_safe=`echo "dld.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dld.h""... $ac_c" 1>&6 -echo "configure:2692: checking for dld.h" >&5 +echo "configure:2719: 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 -#line 2697 "configure" +#line 2724 "configure" #include "confdefs.h" #include <dld.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2702: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2729: \"$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* @@ -2754,17 +2781,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:2758: checking for dlfcn.h" >&5 +echo "configure:2785: 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 -#line 2763 "configure" +#line 2790 "configure" #include "confdefs.h" #include <dlfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2768: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2795: \"$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* @@ -2791,9 +2818,9 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' LD_SEARCH_FLAGS='-rpath ${LIB_RUNTIME_DIR}' echo $ac_n "checking for ELF""... $ac_c" 1>&6 -echo "configure:2795: checking for ELF" >&5 +echo "configure:2822: checking for ELF" >&5 cat > conftest.$ac_ext <<EOF -#line 2797 "configure" +#line 2824 "configure" #include "confdefs.h" #ifdef __ELF__ @@ -2845,9 +2872,9 @@ fi CC_SEARCH_FLAGS="" LD_SEARCH_FLAGS="" echo $ac_n "checking for ELF""... $ac_c" 1>&6 -echo "configure:2849: checking for ELF" >&5 +echo "configure:2876: checking for ELF" >&5 cat > conftest.$ac_ext <<EOF -#line 2851 "configure" +#line 2878 "configure" #include "confdefs.h" #ifdef __ELF__ @@ -3193,17 +3220,17 @@ EOF # that don't grok the -Bexport option. Test that it does. hold_ldflags=$LDFLAGS echo $ac_n "checking for ld accepts -Bexport flag""... $ac_c" 1>&6 -echo "configure:3197: checking for ld accepts -Bexport flag" >&5 +echo "configure:3224: checking for ld accepts -Bexport flag" >&5 LDFLAGS="$LDFLAGS -Wl,-Bexport" cat > conftest.$ac_ext <<EOF -#line 3200 "configure" +#line 3227 "configure" #include "confdefs.h" int main() { int i; ; return 0; } EOF -if { (eval echo configure:3207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3234: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* found=yes else @@ -3244,9 +3271,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:3248: checking sys/exec.h" >&5 +echo "configure:3275: checking sys/exec.h" >&5 cat > conftest.$ac_ext <<EOF -#line 3250 "configure" +#line 3277 "configure" #include "confdefs.h" #include <sys/exec.h> int main() { @@ -3264,7 +3291,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:3268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3295: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -3282,9 +3309,9 @@ EOF else echo $ac_n "checking a.out.h""... $ac_c" 1>&6 -echo "configure:3286: checking a.out.h" >&5 +echo "configure:3313: checking a.out.h" >&5 cat > conftest.$ac_ext <<EOF -#line 3288 "configure" +#line 3315 "configure" #include "confdefs.h" #include <a.out.h> int main() { @@ -3302,7 +3329,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:3306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3333: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -3320,9 +3347,9 @@ EOF else echo $ac_n "checking sys/exec_aout.h""... $ac_c" 1>&6 -echo "configure:3324: checking sys/exec_aout.h" >&5 +echo "configure:3351: checking sys/exec_aout.h" >&5 cat > conftest.$ac_ext <<EOF -#line 3326 "configure" +#line 3353 "configure" #include "confdefs.h" #include <sys/exec_aout.h> int main() { @@ -3340,7 +3367,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:3344: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_ok=usable else @@ -3491,7 +3518,7 @@ fi echo $ac_n "checking for build with symbols""... $ac_c" 1>&6 -echo "configure:3495: checking for build with symbols" >&5 +echo "configure:3522: 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" @@ -3552,21 +3579,21 @@ TCL_DBGX=${DBGX} echo $ac_n "checking for required early compiler flags""... $ac_c" 1>&6 -echo "configure:3556: checking for required early compiler flags" >&5 +echo "configure:3583: 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 <<EOF -#line 3563 "configure" +#line 3590 "configure" #include "confdefs.h" #include <stdlib.h> int main() { char *p = (char *)strtoll; char *q = (char *)strtoull; ; return 0; } EOF -if { (eval echo configure:3570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__isoc99_source=no else @@ -3574,7 +3601,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 3578 "configure" +#line 3605 "configure" #include "confdefs.h" #define _ISOC99_SOURCE 1 #include <stdlib.h> @@ -3582,7 +3609,7 @@ int main() { char *p = (char *)strtoll; char *q = (char *)strtoull; ; return 0; } EOF -if { (eval echo configure:3586: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3613: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__isoc99_source=yes else @@ -3608,14 +3635,14 @@ EOF echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3612 "configure" +#line 3639 "configure" #include "confdefs.h" #include <sys/stat.h> int main() { struct stat64 buf; int i = stat64("/", &buf); ; return 0; } EOF -if { (eval echo configure:3619: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3646: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__largefile64_source=no else @@ -3623,7 +3650,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 3627 "configure" +#line 3654 "configure" #include "confdefs.h" #define _LARGEFILE64_SOURCE 1 #include <sys/stat.h> @@ -3631,7 +3658,7 @@ int main() { struct stat64 buf; int i = stat64("/", &buf); ; return 0; } EOF -if { (eval echo configure:3635: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3662: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_flag__largefile64_source=yes else @@ -3660,7 +3687,7 @@ EOF echo $ac_n "checking for 64-bit integer type""... $ac_c" 1>&6 -echo "configure:3664: checking for 64-bit integer type" >&5 +echo "configure:3691: 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 @@ -3668,14 +3695,14 @@ else tcl_cv_type_64bit=none # See if the compiler knows natively about __int64 cat > conftest.$ac_ext <<EOF -#line 3672 "configure" +#line 3699 "configure" #include "confdefs.h" int main() { __int64 value = (__int64) 0; ; return 0; } EOF -if { (eval echo configure:3679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3706: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_type_64bit=__int64 else @@ -3689,7 +3716,7 @@ rm -f conftest* # type that is our current guess for a 64-bit type inside this check # program, so it should be modified only carefully... cat > conftest.$ac_ext <<EOF -#line 3693 "configure" +#line 3720 "configure" #include "confdefs.h" int main() { @@ -3698,7 +3725,7 @@ switch (0) { } ; return 0; } EOF -if { (eval echo configure:3702: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3729: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_64bit=${tcl_type_64bit} else @@ -3723,13 +3750,13 @@ EOF # Now check for auxiliary declarations echo $ac_n "checking for struct dirent64""... $ac_c" 1>&6 -echo "configure:3727: checking for struct dirent64" >&5 +echo "configure:3754: 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 <<EOF -#line 3733 "configure" +#line 3760 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/dirent.h> @@ -3737,7 +3764,7 @@ int main() { struct dirent64 p; ; return 0; } EOF -if { (eval echo configure:3741: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_struct_dirent64=yes else @@ -3758,13 +3785,13 @@ EOF echo "$ac_t""${tcl_cv_struct_dirent64}" 1>&6 echo $ac_n "checking for struct stat64""... $ac_c" 1>&6 -echo "configure:3762: checking for struct stat64" >&5 +echo "configure:3789: 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 <<EOF -#line 3768 "configure" +#line 3795 "configure" #include "confdefs.h" #include <sys/stat.h> int main() { @@ -3772,7 +3799,7 @@ struct stat64 p; ; return 0; } EOF -if { (eval echo configure:3776: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_struct_stat64=yes else @@ -3793,13 +3820,13 @@ EOF echo "$ac_t""${tcl_cv_struct_stat64}" 1>&6 echo $ac_n "checking for off64_t""... $ac_c" 1>&6 -echo "configure:3797: checking for off64_t" >&5 +echo "configure:3824: 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 <<EOF -#line 3803 "configure" +#line 3830 "configure" #include "confdefs.h" #include <sys/types.h> int main() { @@ -3807,7 +3834,7 @@ off64_t offset; ; return 0; } EOF -if { (eval echo configure:3811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3838: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_off64_t=yes else @@ -3834,14 +3861,14 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:3838: checking whether byte ordering is bigendian" >&5 +echo "configure:3865: 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 <<EOF -#line 3845 "configure" +#line 3872 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -3852,11 +3879,11 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:3856: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3883: \"$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 <<EOF -#line 3860 "configure" +#line 3887 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -3867,7 +3894,7 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:3871: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -3887,7 +3914,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 <<EOF -#line 3891 "configure" +#line 3918 "configure" #include "confdefs.h" main () { /* Are we little or big endian? From Harbison&Steele. */ @@ -3900,7 +3927,7 @@ main () { exit (u.c[sizeof (long) - 1] == 1); } EOF -if { (eval echo configure:3904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:3931: \"$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 @@ -3933,12 +3960,12 @@ fi for ac_func in getcwd do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3937: checking for $ac_func" >&5 +echo "configure:3964: 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 <<EOF -#line 3942 "configure" +#line 3969 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -3961,7 +3988,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:3965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3992: \"$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 @@ -3995,12 +4022,12 @@ done for ac_func in opendir strstr do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3999: checking for $ac_func" >&5 +echo "configure:4026: 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 <<EOF -#line 4004 "configure" +#line 4031 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -4023,7 +4050,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:4027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4054: \"$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 @@ -4053,12 +4080,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:4057: checking for $ac_func" >&5 +echo "configure:4084: 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 <<EOF -#line 4062 "configure" +#line 4089 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -4081,7 +4108,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:4085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4112: \"$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 @@ -4108,12 +4135,12 @@ done echo $ac_n "checking for strerror""... $ac_c" 1>&6 -echo "configure:4112: checking for strerror" >&5 +echo "configure:4139: 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 <<EOF -#line 4117 "configure" +#line 4144 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strerror(); below. */ @@ -4136,7 +4163,7 @@ strerror(); ; return 0; } EOF -if { (eval echo configure:4140: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4167: \"$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 @@ -4160,12 +4187,12 @@ EOF fi echo $ac_n "checking for getwd""... $ac_c" 1>&6 -echo "configure:4164: checking for getwd" >&5 +echo "configure:4191: 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 <<EOF -#line 4169 "configure" +#line 4196 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getwd(); below. */ @@ -4188,7 +4215,7 @@ getwd(); ; return 0; } EOF -if { (eval echo configure:4192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4219: \"$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 @@ -4212,12 +4239,12 @@ EOF fi echo $ac_n "checking for wait3""... $ac_c" 1>&6 -echo "configure:4216: checking for wait3" >&5 +echo "configure:4243: 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 <<EOF -#line 4221 "configure" +#line 4248 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char wait3(); below. */ @@ -4240,7 +4267,7 @@ wait3(); ; return 0; } EOF -if { (eval echo configure:4244: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4271: \"$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 @@ -4264,12 +4291,12 @@ EOF fi echo $ac_n "checking for uname""... $ac_c" 1>&6 -echo "configure:4268: checking for uname" >&5 +echo "configure:4295: 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 <<EOF -#line 4273 "configure" +#line 4300 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char uname(); below. */ @@ -4292,7 +4319,7 @@ uname(); ; return 0; } EOF -if { (eval echo configure:4296: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4323: \"$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 @@ -4316,12 +4343,12 @@ EOF fi echo $ac_n "checking for realpath""... $ac_c" 1>&6 -echo "configure:4320: checking for realpath" >&5 +echo "configure:4347: 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 <<EOF -#line 4325 "configure" +#line 4352 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char realpath(); below. */ @@ -4344,7 +4371,7 @@ realpath(); ; return 0; } EOF -if { (eval echo configure:4348: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4375: \"$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 @@ -4379,9 +4406,9 @@ fi echo $ac_n "checking dirent.h""... $ac_c" 1>&6 -echo "configure:4383: checking dirent.h" >&5 +echo "configure:4410: checking dirent.h" >&5 cat > conftest.$ac_ext <<EOF -#line 4385 "configure" +#line 4412 "configure" #include "confdefs.h" #include <sys/types.h> #include <dirent.h> @@ -4407,7 +4434,7 @@ closedir(d); ; return 0; } EOF -if { (eval echo configure:4411: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* tcl_ok=yes else @@ -4428,17 +4455,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:4432: checking for errno.h" >&5 +echo "configure:4459: 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 -#line 4437 "configure" +#line 4464 "configure" #include "confdefs.h" #include <errno.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4442: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4469: \"$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* @@ -4465,17 +4492,17 @@ fi ac_safe=`echo "float.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for float.h""... $ac_c" 1>&6 -echo "configure:4469: checking for float.h" >&5 +echo "configure:4496: 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 -#line 4474 "configure" +#line 4501 "configure" #include "confdefs.h" #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4479: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4506: \"$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* @@ -4502,17 +4529,17 @@ fi ac_safe=`echo "values.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for values.h""... $ac_c" 1>&6 -echo "configure:4506: checking for values.h" >&5 +echo "configure:4533: 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 -#line 4511 "configure" +#line 4538 "configure" #include "confdefs.h" #include <values.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4516: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4543: \"$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* @@ -4539,17 +4566,17 @@ fi ac_safe=`echo "limits.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for limits.h""... $ac_c" 1>&6 -echo "configure:4543: checking for limits.h" >&5 +echo "configure:4570: 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 -#line 4548 "configure" +#line 4575 "configure" #include "confdefs.h" #include <limits.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4553: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4580: \"$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* @@ -4579,17 +4606,17 @@ fi ac_safe=`echo "stdlib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stdlib.h""... $ac_c" 1>&6 -echo "configure:4583: checking for stdlib.h" >&5 +echo "configure:4610: 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 -#line 4588 "configure" +#line 4615 "configure" #include "confdefs.h" #include <stdlib.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4593: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4620: \"$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* @@ -4612,7 +4639,7 @@ tcl_ok=0 fi cat > conftest.$ac_ext <<EOF -#line 4616 "configure" +#line 4643 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -4626,7 +4653,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 4630 "configure" +#line 4657 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -4640,7 +4667,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 4644 "configure" +#line 4671 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -4661,17 +4688,17 @@ EOF fi ac_safe=`echo "string.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for string.h""... $ac_c" 1>&6 -echo "configure:4665: checking for string.h" >&5 +echo "configure:4692: 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 -#line 4670 "configure" +#line 4697 "configure" #include "confdefs.h" #include <string.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4675: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4702: \"$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* @@ -4694,7 +4721,7 @@ tcl_ok=0 fi cat > conftest.$ac_ext <<EOF -#line 4698 "configure" +#line 4725 "configure" #include "confdefs.h" #include <string.h> EOF @@ -4708,7 +4735,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 4712 "configure" +#line 4739 "configure" #include "confdefs.h" #include <string.h> EOF @@ -4734,17 +4761,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:4738: checking for sys/wait.h" >&5 +echo "configure:4765: 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 -#line 4743 "configure" +#line 4770 "configure" #include "confdefs.h" #include <sys/wait.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4748: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4775: \"$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* @@ -4771,17 +4798,17 @@ fi ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:4775: checking for dlfcn.h" >&5 +echo "configure:4802: 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 -#line 4780 "configure" +#line 4807 "configure" #include "confdefs.h" #include <dlfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4785: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4812: \"$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* @@ -4813,17 +4840,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4817: checking for $ac_hdr" >&5 +echo "configure:4844: 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 -#line 4822 "configure" +#line 4849 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4827: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4854: \"$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* @@ -4863,17 +4890,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4867: checking for $ac_hdr" >&5 +echo "configure:4894: 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 -#line 4872 "configure" +#line 4899 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4877: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4904: \"$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* @@ -4900,7 +4927,7 @@ fi done echo $ac_n "checking termios vs. termio vs. sgtty""... $ac_c" 1>&6 -echo "configure:4904: checking termios vs. termio vs. sgtty" >&5 +echo "configure:4931: 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 @@ -4909,7 +4936,7 @@ else tcl_cv_api_serial=no else cat > conftest.$ac_ext <<EOF -#line 4913 "configure" +#line 4940 "configure" #include "confdefs.h" #include <termios.h> @@ -4924,7 +4951,7 @@ int main() { return 1; } EOF -if { (eval echo configure:4928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4955: \"$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 @@ -4941,7 +4968,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext <<EOF -#line 4945 "configure" +#line 4972 "configure" #include "confdefs.h" #include <termio.h> @@ -4955,7 +4982,7 @@ int main() { return 1; } EOF -if { (eval echo configure:4959: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4986: \"$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 @@ -4973,7 +5000,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext <<EOF -#line 4977 "configure" +#line 5004 "configure" #include "confdefs.h" #include <sgtty.h> @@ -4988,7 +5015,7 @@ int main() { return 1; } EOF -if { (eval echo configure:4992: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5019: \"$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 @@ -5006,7 +5033,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext <<EOF -#line 5010 "configure" +#line 5037 "configure" #include "confdefs.h" #include <termios.h> @@ -5023,7 +5050,7 @@ int main() { return 1; } EOF -if { (eval echo configure:5027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5054: \"$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 @@ -5041,7 +5068,7 @@ fi tcl_cv_api_serial=no else cat > conftest.$ac_ext <<EOF -#line 5045 "configure" +#line 5072 "configure" #include "confdefs.h" #include <termio.h> @@ -5057,7 +5084,7 @@ int main() { return 1; } EOF -if { (eval echo configure:5061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5088: \"$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 @@ -5075,7 +5102,7 @@ fi tcl_cv_api_serial=none else cat > conftest.$ac_ext <<EOF -#line 5079 "configure" +#line 5106 "configure" #include "confdefs.h" #include <sgtty.h> @@ -5092,7 +5119,7 @@ int main() { return 1; } EOF -if { (eval echo configure:5096: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5123: \"$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 @@ -5135,19 +5162,19 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking for fd_set in sys/types""... $ac_c" 1>&6 -echo "configure:5139: checking for fd_set in sys/types" >&5 +echo "configure:5166: 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 <<EOF -#line 5144 "configure" +#line 5171 "configure" #include "confdefs.h" #include <sys/types.h> int main() { fd_set readMask, writeMask; ; return 0; } EOF -if { (eval echo configure:5151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5178: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_type_fd_set=yes else @@ -5163,12 +5190,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:5167: checking for fd_mask in sys/select" >&5 +echo "configure:5194: 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 -#line 5172 "configure" +#line 5199 "configure" #include "confdefs.h" #include <sys/select.h> EOF @@ -5205,12 +5232,12 @@ fi #------------------------------------------------------------------------------ echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:5209: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:5236: 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 <<EOF -#line 5214 "configure" +#line 5241 "configure" #include "confdefs.h" #include <sys/types.h> #include <time.h> @@ -5218,7 +5245,7 @@ int main() { struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:5222: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5249: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -5243,17 +5270,17 @@ fi do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:5247: checking for $ac_hdr" >&5 +echo "configure:5274: 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 -#line 5252 "configure" +#line 5279 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5257: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5284: \"$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* @@ -5280,12 +5307,12 @@ fi done echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:5284: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:5311: 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 <<EOF -#line 5289 "configure" +#line 5316 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -5294,7 +5321,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:5298: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5325: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -5315,12 +5342,12 @@ EOF fi echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6 -echo "configure:5319: checking for tm_zone in struct tm" >&5 +echo "configure:5346: 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 <<EOF -#line 5324 "configure" +#line 5351 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_cv_struct_tm> @@ -5328,7 +5355,7 @@ int main() { struct tm tm; tm.tm_zone; ; return 0; } EOF -if { (eval echo configure:5332: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5359: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm_zone=yes else @@ -5348,12 +5375,12 @@ EOF else echo $ac_n "checking for tzname""... $ac_c" 1>&6 -echo "configure:5352: checking for tzname" >&5 +echo "configure:5379: 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 <<EOF -#line 5357 "configure" +#line 5384 "configure" #include "confdefs.h" #include <time.h> #ifndef tzname /* For SGI. */ @@ -5363,7 +5390,7 @@ int main() { atoi(*tzname); ; return 0; } EOF -if { (eval echo configure:5367: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5394: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_var_tzname=yes else @@ -5388,12 +5415,12 @@ fi for ac_func in gmtime_r localtime_r do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5392: checking for $ac_func" >&5 +echo "configure:5419: 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 <<EOF -#line 5397 "configure" +#line 5424 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5416,7 +5443,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5447: \"$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 @@ -5442,19 +5469,19 @@ done echo $ac_n "checking tm_tzadj in struct tm""... $ac_c" 1>&6 -echo "configure:5446: checking tm_tzadj in struct tm" >&5 +echo "configure:5473: 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 <<EOF -#line 5451 "configure" +#line 5478 "configure" #include "confdefs.h" #include <time.h> int main() { struct tm tm; tm.tm_tzadj; ; return 0; } EOF -if { (eval echo configure:5458: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5485: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_member_tm_tzadj=yes else @@ -5475,19 +5502,19 @@ EOF fi echo $ac_n "checking tm_gmtoff in struct tm""... $ac_c" 1>&6 -echo "configure:5479: checking tm_gmtoff in struct tm" >&5 +echo "configure:5506: 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 <<EOF -#line 5484 "configure" +#line 5511 "configure" #include "confdefs.h" #include <time.h> int main() { struct tm tm; tm.tm_gmtoff; ; return 0; } EOF -if { (eval echo configure:5491: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5518: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_member_tm_gmtoff=yes else @@ -5512,12 +5539,12 @@ EOF # (like convex) have timezone functions, etc. # echo $ac_n "checking long timezone variable""... $ac_c" 1>&6 -echo "configure:5516: checking long timezone variable" >&5 +echo "configure:5543: 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 <<EOF -#line 5521 "configure" +#line 5548 "configure" #include "confdefs.h" #include <time.h> int main() { @@ -5526,7 +5553,7 @@ extern long timezone; exit (0); ; return 0; } EOF -if { (eval echo configure:5530: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5557: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_timezone_long=yes else @@ -5549,12 +5576,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:5553: checking time_t timezone variable" >&5 +echo "configure:5580: 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 <<EOF -#line 5558 "configure" +#line 5585 "configure" #include "confdefs.h" #include <time.h> int main() { @@ -5563,7 +5590,7 @@ extern time_t timezone; exit (0); ; return 0; } EOF -if { (eval echo configure:5567: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5594: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_timezone_time=yes else @@ -5590,12 +5617,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:5594: checking for st_blksize in struct stat" >&5 +echo "configure:5621: 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 <<EOF -#line 5599 "configure" +#line 5626 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/stat.h> @@ -5603,7 +5630,7 @@ int main() { struct stat s; s.st_blksize; ; return 0; } EOF -if { (eval echo configure:5607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5634: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_st_blksize=yes else @@ -5624,12 +5651,12 @@ EOF fi echo $ac_n "checking for fstatfs""... $ac_c" 1>&6 -echo "configure:5628: checking for fstatfs" >&5 +echo "configure:5655: 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 <<EOF -#line 5633 "configure" +#line 5660 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fstatfs(); below. */ @@ -5652,7 +5679,7 @@ fstatfs(); ; return 0; } EOF -if { (eval echo configure:5656: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5683: \"$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 @@ -5681,7 +5708,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:5685: checking for 8-bit clean memcmp" >&5 +echo "configure:5712: 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 @@ -5689,7 +5716,7 @@ else ac_cv_func_memcmp_clean=no else cat > conftest.$ac_ext <<EOF -#line 5693 "configure" +#line 5720 "configure" #include "confdefs.h" main() @@ -5699,7 +5726,7 @@ main() } EOF -if { (eval echo configure:5703: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5730: \"$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 @@ -5723,12 +5750,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:5727: checking for memmove" >&5 +echo "configure:5754: 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 <<EOF -#line 5732 "configure" +#line 5759 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char memmove(); below. */ @@ -5751,7 +5778,7 @@ memmove(); ; return 0; } EOF -if { (eval echo configure:5755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5782: \"$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 @@ -5784,12 +5811,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking proper strstr implementation""... $ac_c" 1>&6 -echo "configure:5788: checking proper strstr implementation" >&5 +echo "configure:5815: checking proper strstr implementation" >&5 if test "$cross_compiling" = yes; then tcl_ok=no else cat > conftest.$ac_ext <<EOF -#line 5793 "configure" +#line 5820 "configure" #include "confdefs.h" extern int strstr(); @@ -5799,7 +5826,7 @@ int main() } EOF -if { (eval echo configure:5803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5830: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_ok=yes else @@ -5825,12 +5852,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strtoul""... $ac_c" 1>&6 -echo "configure:5829: checking for strtoul" >&5 +echo "configure:5856: 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 <<EOF -#line 5834 "configure" +#line 5861 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strtoul(); below. */ @@ -5853,7 +5880,7 @@ strtoul(); ; return 0; } EOF -if { (eval echo configure:5857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5884: \"$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 @@ -5877,7 +5904,7 @@ if test "$cross_compiling" = yes; then tcl_ok=0 else cat > conftest.$ac_ext <<EOF -#line 5881 "configure" +#line 5908 "configure" #include "confdefs.h" extern int strtoul(); @@ -5893,7 +5920,7 @@ int main() exit(0); } EOF -if { (eval echo configure:5897: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5924: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -5916,12 +5943,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strtod""... $ac_c" 1>&6 -echo "configure:5920: checking for strtod" >&5 +echo "configure:5947: 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 <<EOF -#line 5925 "configure" +#line 5952 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strtod(); below. */ @@ -5944,7 +5971,7 @@ strtod(); ; return 0; } EOF -if { (eval echo configure:5948: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5975: \"$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 @@ -5968,7 +5995,7 @@ if test "$cross_compiling" = yes; then tcl_ok=0 else cat > conftest.$ac_ext <<EOF -#line 5972 "configure" +#line 5999 "configure" #include "confdefs.h" extern double strtod(); @@ -5984,7 +6011,7 @@ int main() exit(0); } EOF -if { (eval echo configure:5988: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6015: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -6010,12 +6037,12 @@ fi echo $ac_n "checking for strtod""... $ac_c" 1>&6 -echo "configure:6014: checking for strtod" >&5 +echo "configure:6041: 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 <<EOF -#line 6019 "configure" +#line 6046 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strtod(); below. */ @@ -6038,7 +6065,7 @@ strtod(); ; return 0; } EOF -if { (eval echo configure:6042: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6069: \"$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 @@ -6060,7 +6087,7 @@ fi if test "$tcl_strtod" = 1; then echo $ac_n "checking for Solaris2.4/Tru64 strtod bugs""... $ac_c" 1>&6 -echo "configure:6064: checking for Solaris2.4/Tru64 strtod bugs" >&5 +echo "configure:6091: checking for Solaris2.4/Tru64 strtod bugs" >&5 if eval "test \"`echo '$''{'tcl_cv_strtod_buggy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6069,7 +6096,7 @@ else tcl_cv_strtod_buggy=0 else cat > conftest.$ac_ext <<EOF -#line 6073 "configure" +#line 6100 "configure" #include "confdefs.h" extern double strtod(); @@ -6092,7 +6119,7 @@ else exit(0); } EOF -if { (eval echo configure:6096: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6123: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_strtod_buggy=1 else @@ -6125,12 +6152,12 @@ EOF #-------------------------------------------------------------------- echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:6129: checking for ANSI C header files" >&5 +echo "configure:6156: 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 <<EOF -#line 6134 "configure" +#line 6161 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -6138,7 +6165,7 @@ else #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6142: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6169: \"$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* @@ -6155,7 +6182,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 -#line 6159 "configure" +#line 6186 "configure" #include "confdefs.h" #include <string.h> EOF @@ -6173,7 +6200,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 -#line 6177 "configure" +#line 6204 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -6194,7 +6221,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <<EOF -#line 6198 "configure" +#line 6225 "configure" #include "confdefs.h" #include <ctype.h> #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -6205,7 +6232,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:6209: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6236: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -6229,12 +6256,12 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:6233: checking for mode_t" >&5 +echo "configure:6260: 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 <<EOF -#line 6238 "configure" +#line 6265 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -6262,12 +6289,12 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:6266: checking for pid_t" >&5 +echo "configure:6293: 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 <<EOF -#line 6271 "configure" +#line 6298 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -6295,12 +6322,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:6299: checking for size_t" >&5 +echo "configure:6326: 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 <<EOF -#line 6304 "configure" +#line 6331 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -6328,12 +6355,12 @@ EOF fi echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:6332: checking for uid_t in sys/types.h" >&5 +echo "configure:6359: 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 -#line 6337 "configure" +#line 6364 "configure" #include "confdefs.h" #include <sys/types.h> EOF @@ -6363,12 +6390,12 @@ fi echo $ac_n "checking for socklen_t""... $ac_c" 1>&6 -echo "configure:6367: checking for socklen_t" >&5 +echo "configure:6394: checking for socklen_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6372 "configure" +#line 6399 "configure" #include "confdefs.h" #include <sys/types.h> @@ -6407,12 +6434,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for opendir""... $ac_c" 1>&6 -echo "configure:6411: checking for opendir" >&5 +echo "configure:6438: 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 <<EOF -#line 6416 "configure" +#line 6443 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char opendir(); below. */ @@ -6435,7 +6462,7 @@ opendir(); ; return 0; } EOF -if { (eval echo configure:6439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6466: \"$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 @@ -6468,12 +6495,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking union wait""... $ac_c" 1>&6 -echo "configure:6472: checking union wait" >&5 +echo "configure:6499: 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 <<EOF -#line 6477 "configure" +#line 6504 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/wait.h> @@ -6485,7 +6512,7 @@ WIFEXITED(x); /* Generates compiler error if WIFEXITED ; return 0; } EOF -if { (eval echo configure:6489: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* tcl_cv_union_wait=yes else @@ -6512,12 +6539,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for strncasecmp""... $ac_c" 1>&6 -echo "configure:6516: checking for strncasecmp" >&5 +echo "configure:6543: 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 <<EOF -#line 6521 "configure" +#line 6548 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strncasecmp(); below. */ @@ -6540,7 +6567,7 @@ strncasecmp(); ; return 0; } EOF -if { (eval echo configure:6544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6571: \"$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 @@ -6562,7 +6589,7 @@ fi if test "$tcl_ok" = 0; then echo $ac_n "checking for strncasecmp in -lsocket""... $ac_c" 1>&6 -echo "configure:6566: checking for strncasecmp in -lsocket" >&5 +echo "configure:6593: 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 @@ -6570,7 +6597,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <<EOF -#line 6574 "configure" +#line 6601 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6581,7 +6608,7 @@ int main() { strncasecmp() ; return 0; } EOF -if { (eval echo configure:6585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6612: \"$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 @@ -6605,7 +6632,7 @@ fi fi if test "$tcl_ok" = 0; then echo $ac_n "checking for strncasecmp in -linet""... $ac_c" 1>&6 -echo "configure:6609: checking for strncasecmp in -linet" >&5 +echo "configure:6636: 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 @@ -6613,7 +6640,7 @@ else ac_save_LIBS="$LIBS" LIBS="-linet $LIBS" cat > conftest.$ac_ext <<EOF -#line 6617 "configure" +#line 6644 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6624,7 +6651,7 @@ int main() { strncasecmp() ; return 0; } EOF -if { (eval echo configure:6628: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6655: \"$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 @@ -6662,12 +6689,12 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for BSDgettimeofday""... $ac_c" 1>&6 -echo "configure:6666: checking for BSDgettimeofday" >&5 +echo "configure:6693: 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 <<EOF -#line 6671 "configure" +#line 6698 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char BSDgettimeofday(); below. */ @@ -6690,7 +6717,7 @@ BSDgettimeofday(); ; return 0; } EOF -if { (eval echo configure:6694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6721: \"$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 @@ -6712,12 +6739,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gettimeofday""... $ac_c" 1>&6 -echo "configure:6716: checking for gettimeofday" >&5 +echo "configure:6743: 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 <<EOF -#line 6721 "configure" +#line 6748 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gettimeofday(); below. */ @@ -6740,7 +6767,7 @@ gettimeofday(); ; return 0; } EOF -if { (eval echo configure:6744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6771: \"$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 @@ -6767,12 +6794,12 @@ fi fi echo $ac_n "checking for gettimeofday declaration""... $ac_c" 1>&6 -echo "configure:6771: checking for gettimeofday declaration" >&5 +echo "configure:6798: 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 -#line 6776 "configure" +#line 6803 "configure" #include "confdefs.h" #include <sys/time.h> EOF @@ -6803,14 +6830,14 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking whether char is unsigned""... $ac_c" 1>&6 -echo "configure:6807: checking whether char is unsigned" >&5 +echo "configure:6834: 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 <<EOF -#line 6814 "configure" +#line 6841 "configure" #include "confdefs.h" #ifdef __CHAR_UNSIGNED__ yes @@ -6832,7 +6859,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 <<EOF -#line 6836 "configure" +#line 6863 "configure" #include "confdefs.h" /* volatile prevents gcc2 from optimizing the test away on sparcs. */ #if !defined(__STDC__) || __STDC__ != 1 @@ -6842,7 +6869,7 @@ main() { volatile char c = 255; exit(c < 0); } EOF -if { (eval echo configure:6846: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6873: \"$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 @@ -6866,12 +6893,12 @@ EOF fi echo $ac_n "checking signed char declarations""... $ac_c" 1>&6 -echo "configure:6870: checking signed char declarations" >&5 +echo "configure:6897: 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 <<EOF -#line 6875 "configure" +#line 6902 "configure" #include "confdefs.h" int main() { @@ -6881,7 +6908,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:6885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6912: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* tcl_cv_char_signed=yes else @@ -6906,7 +6933,7 @@ fi #-------------------------------------------------------------------- echo $ac_n "checking for a putenv() that copies the buffer""... $ac_c" 1>&6 -echo "configure:6910: checking for a putenv() that copies the buffer" >&5 +echo "configure:6937: checking for a putenv() that copies the buffer" >&5 if eval "test \"`echo '$''{'tcl_cv_putenv_copy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6914,7 +6941,7 @@ else tcl_cv_putenv_copy=no else cat > conftest.$ac_ext <<EOF -#line 6918 "configure" +#line 6945 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6936,7 +6963,7 @@ else } EOF -if { (eval echo configure:6940: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then tcl_cv_putenv_copy=no else @@ -6978,17 +7005,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:6982: checking for langinfo.h" >&5 +echo "configure:7009: 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 -#line 6987 "configure" +#line 7014 "configure" #include "confdefs.h" #include <langinfo.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6992: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7019: \"$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* @@ -7013,17 +7040,17 @@ fi fi fi echo $ac_n "checking whether to use nl_langinfo""... $ac_c" 1>&6 -echo "configure:7017: checking whether to use nl_langinfo" >&5 +echo "configure:7044: checking whether to use nl_langinfo" >&5 if test "$langinfo_ok" = "yes"; then cat > conftest.$ac_ext <<EOF -#line 7020 "configure" +#line 7047 "configure" #include "confdefs.h" #include <langinfo.h> int main() { nl_langinfo(CODESET); ; return 0; } EOF -if { (eval echo configure:7027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7054: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* langinfo_ok=yes else @@ -7058,17 +7085,17 @@ EOF do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:7062: checking for $ac_hdr" >&5 +echo "configure:7089: 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 -#line 7067 "configure" +#line 7094 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7072: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7099: \"$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* @@ -7098,17 +7125,17 @@ done do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:7102: checking for $ac_hdr" >&5 +echo "configure:7129: 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 -#line 7107 "configure" +#line 7134 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7112: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7139: \"$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* @@ -7135,7 +7162,7 @@ fi done echo $ac_n "checking FIONBIO vs. O_NONBLOCK for nonblocking I/O""... $ac_c" 1>&6 -echo "configure:7139: checking FIONBIO vs. O_NONBLOCK for nonblocking I/O" >&5 +echo "configure:7166: 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 @@ -7198,7 +7225,7 @@ eval "TCL_LIB_FILE=libtcl${LIB_SUFFIX}" echo $ac_n "checking how to package libraries""... $ac_c" 1>&6 -echo "configure:7202: checking how to package libraries" >&5 +echo "configure:7229: checking how to package libraries" >&5 # Check whether --enable-framework or --disable-framework was given. if test "${enable_framework+set}" = set; then enableval="$enable_framework" @@ -7501,7 +7528,7 @@ s%@includedir@%$includedir%g s%@oldincludedir@%$oldincludedir%g s%@infodir@%$infodir%g s%@mandir@%$mandir%g -s%@MKLINKS_FLAGS@%$MKLINKS_FLAGS%g +s%@MAN_FLAGS@%$MAN_FLAGS%g s%@CC@%$CC%g s%@TCL_THREADS@%$TCL_THREADS%g s%@CPP@%$CPP%g diff --git a/unix/configure.in b/unix/configure.in index 0d8d074..6c4df56 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.106.2.9 2004/10/28 16:42:12 dgp Exp $ +# RCS: @(#) $Id: configure.in,v 1.106.2.10 2004/11/18 02:07:09 rmax Exp $ AC_INIT(../generic/tcl.h) AC_PREREQ(2.13) @@ -31,7 +31,7 @@ TCL_SRC_DIR=`cd $srcdir/..; pwd` #------------------------------------------------------------------------ # Compress and/or soft link the manpages? #------------------------------------------------------------------------ -SC_CONFIG_MANPAGES +SC_CONFIG_MANPAGES([tcl]) #------------------------------------------------------------------------ # Standard compiler checks diff --git a/unix/installManPage b/unix/installManPage new file mode 100755 index 0000000..16cf005 --- /dev/null +++ b/unix/installManPage @@ -0,0 +1,51 @@ +#!/bin/sh + +ZIP=: +while true; do + case $1 in + -s | --symlinks ) S="-s ";; + -z | --compress ) ZIP=$2; shift ;; + -e | --extension ) Z=$2; shift ;; + -s | --suffix ) SUFFIX=$2; shift ;; + *) break ;; + esac + shift +done +if test "$#" != 2; then + echo "Usage: installManPages <options> file dir" + exit 1 +fi + +MANPAGE=$1 +DIR=$2 +test -z "$S" && S="$DIR/" + +# Backslashes are trippled in the sed script, because it is in backticks +# which don't pass backslashes literally. +NAMES=`sed -n ' + /^\\.SH NAME/{ # Look for a line, that starts with .SH NAME + s/^.*$// # Delete the content of this line from the buffer + n # Read next line + s/,\|\\\ //g # Remove all commas + s/ \\\-.*// # Delete from \- to the end of line + p # print the result + q + }' $MANPAGE` + +SECTION=`echo $MANPAGE | sed 's/.*\(.\)$/\1/'` +SRCDIR=`dirname $MANPAGE` +FIRST="" +for f in $NAMES; do + f=$f.$SECTION$SUFFIX + if test -z "$FIRST" ; then + FIRST=$f + rm -f $DIR/$FIRST $DIR/$FIRST.* + sed -e "/man\.macros/r $SRCDIR/man.macros" -e "/man\.macros/d" \ + $MANPAGE > $DIR/$FIRST + chmod 444 $DIR/$FIRST + $ZIP $DIR/$FIRST + else + rm -f $DIR/$f $DIR/$f.* + ln $S$FIRST$Z $DIR/$f$Z + fi +done diff --git a/unix/mkLinks b/unix/mkLinks deleted file mode 100644 index a41ea06..0000000 --- a/unix/mkLinks +++ /dev/null @@ -1,1857 +0,0 @@ -#!/bin/sh -# This script is invoked when installing manual entries. It generates -# additional links to manual entries, corresponding to the procedure -# and command names described by the manual entry. For example, the -# Tcl manual entry Hash.3 describes procedures Tcl_InitHashTable, -# Tcl_CreateHashEntry, and many more. This script will make hard -# links so that Tcl_InitHashTable.3, Tcl_CreateHashEntry.3, and so -# on all refer to Hash.3 in the installed directory. -# -# Because of the length of command and procedure names, this mechanism -# only works on machines that support file names longer than 14 characters. -# This script checks to see if long file names are supported, and it -# doesn't make any links if they are not. -# -# The script takes one argument, which is the name of the directory -# where the manual entries have been installed. - -ZIP=true -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 <options> dir" - exit 1 -fi - -if test "x$ZIP" != "xtrue"; then - touch TeST - $ZIP TeST - Z=`ls TeST* | sed 's/^[^.]*//'` - rm -f TeST* -fi - -cd $1 -echo foo > xyzzyTestingAVeryLongFileName.foo -x=`echo xyzzyTe*` -echo foo > xyzzyTestingaverylongfilename.foo -y=`echo xyzzyTestingav*` -rm xyzzyTe* -if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then - exit -fi -if test "$y" != "xyzzyTestingaverylongfilename.foo"; then - CASEINSENSITIVEFS=1 -fi - -if test -r Access.3; then - rm -f Access.3.* - $ZIP Access.3 - rm -f Tcl_Access.3 Tcl_Access.3.* - rm -f Tcl_Stat.3 Tcl_Stat.3.* - ln $S Access.3$Z Tcl_Access.3$Z - ln $S Access.3$Z Tcl_Stat.3$Z -fi -if test -r AddErrInfo.3; then - rm -f AddErrInfo.3.* - $ZIP AddErrInfo.3 - rm -f Tcl_AddObjErrorInfo.3 Tcl_AddObjErrorInfo.3.* - rm -f Tcl_AddErrorInfo.3 Tcl_AddErrorInfo.3.* - rm -f Tcl_SetObjErrorCode.3 Tcl_SetObjErrorCode.3.* - rm -f Tcl_SetErrorCode.3 Tcl_SetErrorCode.3.* - rm -f Tcl_SetErrorCodeVA.3 Tcl_SetErrorCodeVA.3.* - rm -f Tcl_PosixError.3 Tcl_PosixError.3.* - rm -f Tcl_LogCommandInfo.3 Tcl_LogCommandInfo.3.* - 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 -r Alloc.3; then - rm -f Alloc.3.* - $ZIP Alloc.3 - rm -f Tcl_Alloc.3 Tcl_Alloc.3.* - rm -f Tcl_Free.3 Tcl_Free.3.* - rm -f Tcl_Realloc.3 Tcl_Realloc.3.* - rm -f Tcl_AttemptAlloc.3 Tcl_AttemptAlloc.3.* - rm -f Tcl_AttemptRealloc.3 Tcl_AttemptRealloc.3.* - rm -f ckalloc.3 ckalloc.3.* - rm -f ckfree.3 ckfree.3.* - rm -f ckrealloc.3 ckrealloc.3.* - rm -f attemptckalloc.3 attemptckalloc.3.* - rm -f attemptckrealloc.3 attemptckrealloc.3.* - 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 -r AllowExc.3; then - rm -f AllowExc.3.* - $ZIP AllowExc.3 - rm -f Tcl_AllowExceptions.3 Tcl_AllowExceptions.3.* - ln $S AllowExc.3$Z Tcl_AllowExceptions.3$Z -fi -if test -r AppInit.3; then - rm -f AppInit.3.* - $ZIP AppInit.3 - rm -f Tcl_AppInit.3 Tcl_AppInit.3.* - ln $S AppInit.3$Z Tcl_AppInit.3$Z -fi -if test -r AssocData.3; then - rm -f AssocData.3.* - $ZIP AssocData.3 - rm -f Tcl_GetAssocData.3 Tcl_GetAssocData.3.* - rm -f Tcl_SetAssocData.3 Tcl_SetAssocData.3.* - rm -f Tcl_DeleteAssocData.3 Tcl_DeleteAssocData.3.* - 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 -r Async.3; then - rm -f Async.3.* - $ZIP Async.3 - rm -f Tcl_AsyncCreate.3 Tcl_AsyncCreate.3.* - rm -f Tcl_AsyncMark.3 Tcl_AsyncMark.3.* - rm -f Tcl_AsyncInvoke.3 Tcl_AsyncInvoke.3.* - rm -f Tcl_AsyncDelete.3 Tcl_AsyncDelete.3.* - rm -f Tcl_AsyncReady.3 Tcl_AsyncReady.3.* - 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 -r BackgdErr.3; then - rm -f BackgdErr.3.* - $ZIP BackgdErr.3 - rm -f Tcl_BackgroundError.3 Tcl_BackgroundError.3.* - ln $S BackgdErr.3$Z Tcl_BackgroundError.3$Z -fi -if test -r Backslash.3; then - rm -f Backslash.3.* - $ZIP Backslash.3 - rm -f Tcl_Backslash.3 Tcl_Backslash.3.* - ln $S Backslash.3$Z Tcl_Backslash.3$Z -fi -if test -r BoolObj.3; then - rm -f BoolObj.3.* - $ZIP BoolObj.3 - rm -f Tcl_NewBooleanObj.3 Tcl_NewBooleanObj.3.* - rm -f Tcl_SetBooleanObj.3 Tcl_SetBooleanObj.3.* - rm -f Tcl_GetBooleanFromObj.3 Tcl_GetBooleanFromObj.3.* - 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 -r ByteArrObj.3; then - rm -f ByteArrObj.3.* - $ZIP ByteArrObj.3 - rm -f Tcl_NewByteArrayObj.3 Tcl_NewByteArrayObj.3.* - rm -f Tcl_SetByteArrayObj.3 Tcl_SetByteArrayObj.3.* - rm -f Tcl_GetByteArrayFromObj.3 Tcl_GetByteArrayFromObj.3.* - rm -f Tcl_SetByteArrayLength.3 Tcl_SetByteArrayLength.3.* - 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 -r CallDel.3; then - rm -f CallDel.3.* - $ZIP CallDel.3 - rm -f Tcl_CallWhenDeleted.3 Tcl_CallWhenDeleted.3.* - rm -f Tcl_DontCallWhenDeleted.3 Tcl_DontCallWhenDeleted.3.* - ln $S CallDel.3$Z Tcl_CallWhenDeleted.3$Z - ln $S CallDel.3$Z Tcl_DontCallWhenDeleted.3$Z -fi -if test -r ChnlStack.3; then - rm -f ChnlStack.3.* - $ZIP ChnlStack.3 - rm -f Tcl_StackChannel.3 Tcl_StackChannel.3.* - rm -f Tcl_UnstackChannel.3 Tcl_UnstackChannel.3.* - rm -f Tcl_GetStackedChannel.3 Tcl_GetStackedChannel.3.* - rm -f Tcl_GetTopChannel.3 Tcl_GetTopChannel.3.* - 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 -r CmdCmplt.3; then - rm -f CmdCmplt.3.* - $ZIP CmdCmplt.3 - rm -f Tcl_CommandComplete.3 Tcl_CommandComplete.3.* - ln $S CmdCmplt.3$Z Tcl_CommandComplete.3$Z -fi -if test -r Concat.3; then - rm -f Concat.3.* - $ZIP Concat.3 - rm -f Tcl_Concat.3 Tcl_Concat.3.* - ln $S Concat.3$Z Tcl_Concat.3$Z -fi -if test -r CrtChannel.3; then - rm -f CrtChannel.3.* - $ZIP CrtChannel.3 - rm -f Tcl_CreateChannel.3 Tcl_CreateChannel.3.* - rm -f Tcl_GetChannelInstanceData.3 Tcl_GetChannelInstanceData.3.* - rm -f Tcl_GetChannelType.3 Tcl_GetChannelType.3.* - rm -f Tcl_GetChannelName.3 Tcl_GetChannelName.3.* - rm -f Tcl_GetChannelHandle.3 Tcl_GetChannelHandle.3.* - rm -f Tcl_GetChannelMode.3 Tcl_GetChannelMode.3.* - rm -f Tcl_GetChannelBufferSize.3 Tcl_GetChannelBufferSize.3.* - rm -f Tcl_SetChannelBufferSize.3 Tcl_SetChannelBufferSize.3.* - rm -f Tcl_NotifyChannel.3 Tcl_NotifyChannel.3.* - rm -f Tcl_BadChannelOption.3 Tcl_BadChannelOption.3.* - rm -f Tcl_ChannelName.3 Tcl_ChannelName.3.* - rm -f Tcl_ChannelVersion.3 Tcl_ChannelVersion.3.* - rm -f Tcl_ChannelBlockModeProc.3 Tcl_ChannelBlockModeProc.3.* - rm -f Tcl_ChannelCloseProc.3 Tcl_ChannelCloseProc.3.* - rm -f Tcl_ChannelClose2Proc.3 Tcl_ChannelClose2Proc.3.* - rm -f Tcl_ChannelInputProc.3 Tcl_ChannelInputProc.3.* - rm -f Tcl_ChannelOutputProc.3 Tcl_ChannelOutputProc.3.* - rm -f Tcl_ChannelSeekProc.3 Tcl_ChannelSeekProc.3.* - rm -f Tcl_ChannelWideSeekProc.3 Tcl_ChannelWideSeekProc.3.* - rm -f Tcl_ChannelSetOptionProc.3 Tcl_ChannelSetOptionProc.3.* - rm -f Tcl_ChannelGetOptionProc.3 Tcl_ChannelGetOptionProc.3.* - rm -f Tcl_ChannelWatchProc.3 Tcl_ChannelWatchProc.3.* - rm -f Tcl_ChannelGetHandleProc.3 Tcl_ChannelGetHandleProc.3.* - rm -f Tcl_ChannelFlushProc.3 Tcl_ChannelFlushProc.3.* - rm -f Tcl_ChannelHandlerProc.3 Tcl_ChannelHandlerProc.3.* - rm -f Tcl_IsChannelShared.3 Tcl_IsChannelShared.3.* - rm -f Tcl_IsChannelRegistered.3 Tcl_IsChannelRegistered.3.* - rm -f Tcl_CutChannel.3 Tcl_CutChannel.3.* - rm -f Tcl_SpliceChannel.3 Tcl_SpliceChannel.3.* - rm -f Tcl_IsChannelExisting.3 Tcl_IsChannelExisting.3.* - rm -f Tcl_ClearChannelHandlers.3 Tcl_ClearChannelHandlers.3.* - rm -f Tcl_GetChannelThread.3 Tcl_GetChannelThread.3.* - rm -f Tcl_ChannelBuffered.3 Tcl_ChannelBuffered.3.* - 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 -r CrtChnlHdlr.3; then - rm -f CrtChnlHdlr.3.* - $ZIP CrtChnlHdlr.3 - rm -f Tcl_CreateChannelHandler.3 Tcl_CreateChannelHandler.3.* - rm -f Tcl_DeleteChannelHandler.3 Tcl_DeleteChannelHandler.3.* - ln $S CrtChnlHdlr.3$Z Tcl_CreateChannelHandler.3$Z - ln $S CrtChnlHdlr.3$Z Tcl_DeleteChannelHandler.3$Z -fi -if test -r CrtCloseHdlr.3; then - rm -f CrtCloseHdlr.3.* - $ZIP CrtCloseHdlr.3 - rm -f Tcl_CreateCloseHandler.3 Tcl_CreateCloseHandler.3.* - rm -f Tcl_DeleteCloseHandler.3 Tcl_DeleteCloseHandler.3.* - ln $S CrtCloseHdlr.3$Z Tcl_CreateCloseHandler.3$Z - ln $S CrtCloseHdlr.3$Z Tcl_DeleteCloseHandler.3$Z -fi -if test -r CrtCommand.3; then - rm -f CrtCommand.3.* - $ZIP CrtCommand.3 - rm -f Tcl_CreateCommand.3 Tcl_CreateCommand.3.* - ln $S CrtCommand.3$Z Tcl_CreateCommand.3$Z -fi -if test -r CrtFileHdlr.3; then - rm -f CrtFileHdlr.3.* - $ZIP CrtFileHdlr.3 - rm -f Tcl_CreateFileHandler.3 Tcl_CreateFileHandler.3.* - rm -f Tcl_DeleteFileHandler.3 Tcl_DeleteFileHandler.3.* - ln $S CrtFileHdlr.3$Z Tcl_CreateFileHandler.3$Z - ln $S CrtFileHdlr.3$Z Tcl_DeleteFileHandler.3$Z -fi -if test -r CrtInterp.3; then - rm -f CrtInterp.3.* - $ZIP CrtInterp.3 - rm -f Tcl_CreateInterp.3 Tcl_CreateInterp.3.* - rm -f Tcl_DeleteInterp.3 Tcl_DeleteInterp.3.* - rm -f Tcl_InterpDeleted.3 Tcl_InterpDeleted.3.* - 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 -r CrtMathFnc.3; then - rm -f CrtMathFnc.3.* - $ZIP CrtMathFnc.3 - rm -f Tcl_CreateMathFunc.3 Tcl_CreateMathFunc.3.* - rm -f Tcl_GetMathFuncInfo.3 Tcl_GetMathFuncInfo.3.* - rm -f Tcl_ListMathFuncs.3 Tcl_ListMathFuncs.3.* - 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 -r CrtObjCmd.3; then - rm -f CrtObjCmd.3.* - $ZIP CrtObjCmd.3 - rm -f Tcl_CreateObjCommand.3 Tcl_CreateObjCommand.3.* - rm -f Tcl_DeleteCommand.3 Tcl_DeleteCommand.3.* - rm -f Tcl_DeleteCommandFromToken.3 Tcl_DeleteCommandFromToken.3.* - rm -f Tcl_GetCommandInfo.3 Tcl_GetCommandInfo.3.* - rm -f Tcl_GetCommandInfoFromToken.3 Tcl_GetCommandInfoFromToken.3.* - rm -f Tcl_SetCommandInfo.3 Tcl_SetCommandInfo.3.* - rm -f Tcl_SetCommandInfoFromToken.3 Tcl_SetCommandInfoFromToken.3.* - rm -f Tcl_GetCommandName.3 Tcl_GetCommandName.3.* - rm -f Tcl_GetCommandFullName.3 Tcl_GetCommandFullName.3.* - rm -f Tcl_GetCommandFromObj.3 Tcl_GetCommandFromObj.3.* - 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 -r CrtSlave.3; then - rm -f CrtSlave.3.* - $ZIP CrtSlave.3 - rm -f Tcl_IsSafe.3 Tcl_IsSafe.3.* - rm -f Tcl_MakeSafe.3 Tcl_MakeSafe.3.* - rm -f Tcl_CreateSlave.3 Tcl_CreateSlave.3.* - rm -f Tcl_GetSlave.3 Tcl_GetSlave.3.* - rm -f Tcl_GetMaster.3 Tcl_GetMaster.3.* - rm -f Tcl_GetInterpPath.3 Tcl_GetInterpPath.3.* - rm -f Tcl_CreateAlias.3 Tcl_CreateAlias.3.* - rm -f Tcl_CreateAliasObj.3 Tcl_CreateAliasObj.3.* - rm -f Tcl_GetAlias.3 Tcl_GetAlias.3.* - rm -f Tcl_GetAliasObj.3 Tcl_GetAliasObj.3.* - rm -f Tcl_ExposeCommand.3 Tcl_ExposeCommand.3.* - rm -f Tcl_HideCommand.3 Tcl_HideCommand.3.* - 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 -r CrtTimerHdlr.3; then - rm -f CrtTimerHdlr.3.* - $ZIP CrtTimerHdlr.3 - rm -f Tcl_CreateTimerHandler.3 Tcl_CreateTimerHandler.3.* - rm -f Tcl_DeleteTimerHandler.3 Tcl_DeleteTimerHandler.3.* - ln $S CrtTimerHdlr.3$Z Tcl_CreateTimerHandler.3$Z - ln $S CrtTimerHdlr.3$Z Tcl_DeleteTimerHandler.3$Z -fi -if test -r CrtTrace.3; then - rm -f CrtTrace.3.* - $ZIP CrtTrace.3 - rm -f Tcl_CreateTrace.3 Tcl_CreateTrace.3.* - rm -f Tcl_CreateObjTrace.3 Tcl_CreateObjTrace.3.* - rm -f Tcl_DeleteTrace.3 Tcl_DeleteTrace.3.* - 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 -r DString.3; then - rm -f DString.3.* - $ZIP DString.3 - rm -f Tcl_DStringInit.3 Tcl_DStringInit.3.* - rm -f Tcl_DStringAppend.3 Tcl_DStringAppend.3.* - rm -f Tcl_DStringAppendElement.3 Tcl_DStringAppendElement.3.* - rm -f Tcl_DStringStartSublist.3 Tcl_DStringStartSublist.3.* - rm -f Tcl_DStringEndSublist.3 Tcl_DStringEndSublist.3.* - rm -f Tcl_DStringLength.3 Tcl_DStringLength.3.* - rm -f Tcl_DStringValue.3 Tcl_DStringValue.3.* - rm -f Tcl_DStringSetLength.3 Tcl_DStringSetLength.3.* - rm -f Tcl_DStringTrunc.3 Tcl_DStringTrunc.3.* - rm -f Tcl_DStringFree.3 Tcl_DStringFree.3.* - rm -f Tcl_DStringResult.3 Tcl_DStringResult.3.* - rm -f Tcl_DStringGetResult.3 Tcl_DStringGetResult.3.* - 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 -r DetachPids.3; then - rm -f DetachPids.3.* - $ZIP DetachPids.3 - rm -f Tcl_DetachPids.3 Tcl_DetachPids.3.* - rm -f Tcl_ReapDetachedProcs.3 Tcl_ReapDetachedProcs.3.* - rm -f Tcl_WaitPid.3 Tcl_WaitPid.3.* - 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 -r DoOneEvent.3; then - rm -f DoOneEvent.3.* - $ZIP DoOneEvent.3 - rm -f Tcl_DoOneEvent.3 Tcl_DoOneEvent.3.* - ln $S DoOneEvent.3$Z Tcl_DoOneEvent.3$Z -fi -if test -r DoWhenIdle.3; then - rm -f DoWhenIdle.3.* - $ZIP DoWhenIdle.3 - rm -f Tcl_DoWhenIdle.3 Tcl_DoWhenIdle.3.* - rm -f Tcl_CancelIdleCall.3 Tcl_CancelIdleCall.3.* - ln $S DoWhenIdle.3$Z Tcl_DoWhenIdle.3$Z - ln $S DoWhenIdle.3$Z Tcl_CancelIdleCall.3$Z -fi -if test -r DoubleObj.3; then - rm -f DoubleObj.3.* - $ZIP DoubleObj.3 - rm -f Tcl_NewDoubleObj.3 Tcl_NewDoubleObj.3.* - rm -f Tcl_SetDoubleObj.3 Tcl_SetDoubleObj.3.* - rm -f Tcl_GetDoubleFromObj.3 Tcl_GetDoubleFromObj.3.* - 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 -r DumpActiveMemory.3; then - rm -f DumpActiveMemory.3.* - $ZIP DumpActiveMemory.3 - rm -f Tcl_DumpActiveMemory.3 Tcl_DumpActiveMemory.3.* - rm -f Tcl_InitMemory.3 Tcl_InitMemory.3.* - rm -f Tcl_ValidateAllMemory.3 Tcl_ValidateAllMemory.3.* - 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 -r Encoding.3; then - rm -f Encoding.3.* - $ZIP Encoding.3 - rm -f Tcl_GetEncoding.3 Tcl_GetEncoding.3.* - rm -f Tcl_FreeEncoding.3 Tcl_FreeEncoding.3.* - rm -f Tcl_ExternalToUtfDString.3 Tcl_ExternalToUtfDString.3.* - rm -f Tcl_ExternalToUtf.3 Tcl_ExternalToUtf.3.* - rm -f Tcl_UtfToExternalDString.3 Tcl_UtfToExternalDString.3.* - rm -f Tcl_UtfToExternal.3 Tcl_UtfToExternal.3.* - rm -f Tcl_WinTCharToUtf.3 Tcl_WinTCharToUtf.3.* - rm -f Tcl_WinUtfToTChar.3 Tcl_WinUtfToTChar.3.* - rm -f Tcl_GetEncodingName.3 Tcl_GetEncodingName.3.* - rm -f Tcl_SetSystemEncoding.3 Tcl_SetSystemEncoding.3.* - rm -f Tcl_GetEncodingNames.3 Tcl_GetEncodingNames.3.* - rm -f Tcl_CreateEncoding.3 Tcl_CreateEncoding.3.* - rm -f Tcl_GetDefaultEncodingDir.3 Tcl_GetDefaultEncodingDir.3.* - rm -f Tcl_SetDefaultEncodingDir.3 Tcl_SetDefaultEncodingDir.3.* - 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 -r Environment.3; then - rm -f Environment.3.* - $ZIP Environment.3 - rm -f Tcl_PutEnv.3 Tcl_PutEnv.3.* - ln $S Environment.3$Z Tcl_PutEnv.3$Z -fi -if test -r Eval.3; then - rm -f Eval.3.* - $ZIP Eval.3 - rm -f Tcl_EvalObjEx.3 Tcl_EvalObjEx.3.* - rm -f Tcl_EvalFile.3 Tcl_EvalFile.3.* - rm -f Tcl_EvalObjv.3 Tcl_EvalObjv.3.* - rm -f Tcl_Eval.3 Tcl_Eval.3.* - rm -f Tcl_EvalEx.3 Tcl_EvalEx.3.* - rm -f Tcl_GlobalEval.3 Tcl_GlobalEval.3.* - rm -f Tcl_GlobalEvalObj.3 Tcl_GlobalEvalObj.3.* - rm -f Tcl_VarEval.3 Tcl_VarEval.3.* - rm -f Tcl_VarEvalVA.3 Tcl_VarEvalVA.3.* - 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 -r Exit.3; then - rm -f Exit.3.* - $ZIP Exit.3 - rm -f Tcl_Exit.3 Tcl_Exit.3.* - rm -f Tcl_Finalize.3 Tcl_Finalize.3.* - rm -f Tcl_CreateExitHandler.3 Tcl_CreateExitHandler.3.* - rm -f Tcl_DeleteExitHandler.3 Tcl_DeleteExitHandler.3.* - rm -f Tcl_ExitThread.3 Tcl_ExitThread.3.* - rm -f Tcl_FinalizeThread.3 Tcl_FinalizeThread.3.* - rm -f Tcl_CreateThreadExitHandler.3 Tcl_CreateThreadExitHandler.3.* - rm -f Tcl_DeleteThreadExitHandler.3 Tcl_DeleteThreadExitHandler.3.* - 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 -r ExprLong.3; then - rm -f ExprLong.3.* - $ZIP ExprLong.3 - rm -f Tcl_ExprLong.3 Tcl_ExprLong.3.* - rm -f Tcl_ExprDouble.3 Tcl_ExprDouble.3.* - rm -f Tcl_ExprBoolean.3 Tcl_ExprBoolean.3.* - rm -f Tcl_ExprString.3 Tcl_ExprString.3.* - 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 -r ExprLongObj.3; then - rm -f ExprLongObj.3.* - $ZIP ExprLongObj.3 - rm -f Tcl_ExprLongObj.3 Tcl_ExprLongObj.3.* - rm -f Tcl_ExprDoubleObj.3 Tcl_ExprDoubleObj.3.* - rm -f Tcl_ExprBooleanObj.3 Tcl_ExprBooleanObj.3.* - rm -f Tcl_ExprObj.3 Tcl_ExprObj.3.* - 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 -r FileSystem.3; then - rm -f FileSystem.3.* - $ZIP FileSystem.3 - rm -f Tcl_FSRegister.3 Tcl_FSRegister.3.* - rm -f Tcl_FSUnregister.3 Tcl_FSUnregister.3.* - rm -f Tcl_FSData.3 Tcl_FSData.3.* - rm -f Tcl_FSMountsChanged.3 Tcl_FSMountsChanged.3.* - rm -f Tcl_FSGetFileSystemForPath.3 Tcl_FSGetFileSystemForPath.3.* - rm -f Tcl_FSGetPathType.3 Tcl_FSGetPathType.3.* - rm -f Tcl_FSCopyFile.3 Tcl_FSCopyFile.3.* - rm -f Tcl_FSCopyDirectory.3 Tcl_FSCopyDirectory.3.* - rm -f Tcl_FSCreateDirectory.3 Tcl_FSCreateDirectory.3.* - rm -f Tcl_FSDeleteFile.3 Tcl_FSDeleteFile.3.* - rm -f Tcl_FSRemoveDirectory.3 Tcl_FSRemoveDirectory.3.* - rm -f Tcl_FSRenameFile.3 Tcl_FSRenameFile.3.* - rm -f Tcl_FSListVolumes.3 Tcl_FSListVolumes.3.* - rm -f Tcl_FSEvalFile.3 Tcl_FSEvalFile.3.* - rm -f Tcl_FSLoadFile.3 Tcl_FSLoadFile.3.* - rm -f Tcl_FSMatchInDirectory.3 Tcl_FSMatchInDirectory.3.* - rm -f Tcl_FSLink.3 Tcl_FSLink.3.* - rm -f Tcl_FSLstat.3 Tcl_FSLstat.3.* - rm -f Tcl_FSUtime.3 Tcl_FSUtime.3.* - rm -f Tcl_FSFileAttrsGet.3 Tcl_FSFileAttrsGet.3.* - rm -f Tcl_FSFileAttrsSet.3 Tcl_FSFileAttrsSet.3.* - rm -f Tcl_FSFileAttrStrings.3 Tcl_FSFileAttrStrings.3.* - rm -f Tcl_FSStat.3 Tcl_FSStat.3.* - rm -f Tcl_FSAccess.3 Tcl_FSAccess.3.* - rm -f Tcl_FSOpenFileChannel.3 Tcl_FSOpenFileChannel.3.* - rm -f Tcl_FSGetCwd.3 Tcl_FSGetCwd.3.* - rm -f Tcl_FSChdir.3 Tcl_FSChdir.3.* - rm -f Tcl_FSPathSeparator.3 Tcl_FSPathSeparator.3.* - rm -f Tcl_FSJoinPath.3 Tcl_FSJoinPath.3.* - rm -f Tcl_FSSplitPath.3 Tcl_FSSplitPath.3.* - rm -f Tcl_FSEqualPaths.3 Tcl_FSEqualPaths.3.* - rm -f Tcl_FSGetNormalizedPath.3 Tcl_FSGetNormalizedPath.3.* - rm -f Tcl_FSJoinToPath.3 Tcl_FSJoinToPath.3.* - rm -f Tcl_FSConvertToPathType.3 Tcl_FSConvertToPathType.3.* - rm -f Tcl_FSGetInternalRep.3 Tcl_FSGetInternalRep.3.* - rm -f Tcl_FSGetTranslatedPath.3 Tcl_FSGetTranslatedPath.3.* - rm -f Tcl_FSGetTranslatedStringPath.3 Tcl_FSGetTranslatedStringPath.3.* - rm -f Tcl_FSNewNativePath.3 Tcl_FSNewNativePath.3.* - rm -f Tcl_FSGetNativePath.3 Tcl_FSGetNativePath.3.* - rm -f Tcl_FSFileSystemInfo.3 Tcl_FSFileSystemInfo.3.* - rm -f Tcl_AllocStatBuf.3 Tcl_AllocStatBuf.3.* - 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 -r FindExec.3; then - rm -f FindExec.3.* - $ZIP FindExec.3 - rm -f Tcl_FindExecutable.3 Tcl_FindExecutable.3.* - rm -f Tcl_GetNameOfExecutable.3 Tcl_GetNameOfExecutable.3.* - ln $S FindExec.3$Z Tcl_FindExecutable.3$Z - ln $S FindExec.3$Z Tcl_GetNameOfExecutable.3$Z -fi -if test -r GetCwd.3; then - rm -f GetCwd.3.* - $ZIP GetCwd.3 - rm -f Tcl_GetCwd.3 Tcl_GetCwd.3.* - rm -f Tcl_Chdir.3 Tcl_Chdir.3.* - ln $S GetCwd.3$Z Tcl_GetCwd.3$Z - ln $S GetCwd.3$Z Tcl_Chdir.3$Z -fi -if test -r GetHostName.3; then - rm -f GetHostName.3.* - $ZIP GetHostName.3 - rm -f Tcl_GetHostName.3 Tcl_GetHostName.3.* - ln $S GetHostName.3$Z Tcl_GetHostName.3$Z -fi -if test -r GetIndex.3; then - rm -f GetIndex.3.* - $ZIP GetIndex.3 - rm -f Tcl_GetIndexFromObj.3 Tcl_GetIndexFromObj.3.* - rm -f Tcl_GetIndexFromObjStruct.3 Tcl_GetIndexFromObjStruct.3.* - ln $S GetIndex.3$Z Tcl_GetIndexFromObj.3$Z - ln $S GetIndex.3$Z Tcl_GetIndexFromObjStruct.3$Z -fi -if test -r GetInt.3; then - rm -f GetInt.3.* - $ZIP GetInt.3 - rm -f Tcl_GetInt.3 Tcl_GetInt.3.* - rm -f Tcl_GetDouble.3 Tcl_GetDouble.3.* - rm -f Tcl_GetBoolean.3 Tcl_GetBoolean.3.* - 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 -r GetOpnFl.3; then - rm -f GetOpnFl.3.* - $ZIP GetOpnFl.3 - rm -f Tcl_GetOpenFile.3 Tcl_GetOpenFile.3.* - ln $S GetOpnFl.3$Z Tcl_GetOpenFile.3$Z -fi -if test -r GetStdChan.3; then - rm -f GetStdChan.3.* - $ZIP GetStdChan.3 - rm -f Tcl_GetStdChannel.3 Tcl_GetStdChannel.3.* - rm -f Tcl_SetStdChannel.3 Tcl_SetStdChannel.3.* - ln $S GetStdChan.3$Z Tcl_GetStdChannel.3$Z - ln $S GetStdChan.3$Z Tcl_SetStdChannel.3$Z -fi -if test -r GetTime.3; then - rm -f GetTime.3.* - $ZIP GetTime.3 - rm -f Tcl_GetTime.3 Tcl_GetTime.3.* - ln $S GetTime.3$Z Tcl_GetTime.3$Z -fi -if test -r GetVersion.3; then - rm -f GetVersion.3.* - $ZIP GetVersion.3 - rm -f Tcl_GetVersion.3 Tcl_GetVersion.3.* - ln $S GetVersion.3$Z Tcl_GetVersion.3$Z -fi -if test -r Hash.3; then - rm -f Hash.3.* - $ZIP Hash.3 - rm -f Tcl_InitHashTable.3 Tcl_InitHashTable.3.* - rm -f Tcl_InitCustomHashTable.3 Tcl_InitCustomHashTable.3.* - rm -f Tcl_InitObjHashTable.3 Tcl_InitObjHashTable.3.* - rm -f Tcl_DeleteHashTable.3 Tcl_DeleteHashTable.3.* - rm -f Tcl_CreateHashEntry.3 Tcl_CreateHashEntry.3.* - rm -f Tcl_DeleteHashEntry.3 Tcl_DeleteHashEntry.3.* - rm -f Tcl_FindHashEntry.3 Tcl_FindHashEntry.3.* - rm -f Tcl_GetHashValue.3 Tcl_GetHashValue.3.* - rm -f Tcl_SetHashValue.3 Tcl_SetHashValue.3.* - rm -f Tcl_GetHashKey.3 Tcl_GetHashKey.3.* - rm -f Tcl_FirstHashEntry.3 Tcl_FirstHashEntry.3.* - rm -f Tcl_NextHashEntry.3 Tcl_NextHashEntry.3.* - rm -f Tcl_HashStats.3 Tcl_HashStats.3.* - 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 -r Init.3; then - rm -f Init.3.* - $ZIP Init.3 - rm -f Tcl_Init.3 Tcl_Init.3.* - ln $S Init.3$Z Tcl_Init.3$Z -fi -if test -r InitStubs.3; then - rm -f InitStubs.3.* - $ZIP InitStubs.3 - rm -f Tcl_InitStubs.3 Tcl_InitStubs.3.* - ln $S InitStubs.3$Z Tcl_InitStubs.3$Z -fi -if test -r IntObj.3; then - rm -f IntObj.3.* - $ZIP IntObj.3 - rm -f Tcl_NewIntObj.3 Tcl_NewIntObj.3.* - rm -f Tcl_NewLongObj.3 Tcl_NewLongObj.3.* - rm -f Tcl_NewWideIntObj.3 Tcl_NewWideIntObj.3.* - rm -f Tcl_SetIntObj.3 Tcl_SetIntObj.3.* - rm -f Tcl_SetLongObj.3 Tcl_SetLongObj.3.* - rm -f Tcl_SetWideIntObj.3 Tcl_SetWideIntObj.3.* - rm -f Tcl_GetIntFromObj.3 Tcl_GetIntFromObj.3.* - rm -f Tcl_GetLongFromObj.3 Tcl_GetLongFromObj.3.* - rm -f Tcl_GetWideIntFromObj.3 Tcl_GetWideIntFromObj.3.* - 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 -r Interp.3; then - rm -f Interp.3.* - $ZIP Interp.3 - rm -f Tcl_Interp.3 Tcl_Interp.3.* - ln $S Interp.3$Z Tcl_Interp.3$Z -fi -if test -r LinkVar.3; then - rm -f LinkVar.3.* - $ZIP LinkVar.3 - rm -f Tcl_LinkVar.3 Tcl_LinkVar.3.* - rm -f Tcl_UnlinkVar.3 Tcl_UnlinkVar.3.* - rm -f Tcl_UpdateLinkedVar.3 Tcl_UpdateLinkedVar.3.* - 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 -r ListObj.3; then - rm -f ListObj.3.* - $ZIP ListObj.3 - rm -f Tcl_ListObjAppendList.3 Tcl_ListObjAppendList.3.* - rm -f Tcl_ListObjAppendElement.3 Tcl_ListObjAppendElement.3.* - rm -f Tcl_NewListObj.3 Tcl_NewListObj.3.* - rm -f Tcl_SetListObj.3 Tcl_SetListObj.3.* - rm -f Tcl_ListObjGetElements.3 Tcl_ListObjGetElements.3.* - rm -f Tcl_ListObjLength.3 Tcl_ListObjLength.3.* - rm -f Tcl_ListObjIndex.3 Tcl_ListObjIndex.3.* - rm -f Tcl_ListObjReplace.3 Tcl_ListObjReplace.3.* - 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 -r Macintosh.3; then - rm -f Macintosh.3.* - $ZIP Macintosh.3 - rm -f Tcl_MacSetEventProc.3 Tcl_MacSetEventProc.3.* - rm -f Tcl_MacConvertTextResource.3 Tcl_MacConvertTextResource.3.* - rm -f Tcl_MacEvalResource.3 Tcl_MacEvalResource.3.* - rm -f Tcl_MacFindResource.3 Tcl_MacFindResource.3.* - rm -f Tcl_GetOSTypeFromObj.3 Tcl_GetOSTypeFromObj.3.* - rm -f Tcl_SetOSTypeObj.3 Tcl_SetOSTypeObj.3.* - rm -f Tcl_NewOSTypeObj.3 Tcl_NewOSTypeObj.3.* - 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 -r Notifier.3; then - rm -f Notifier.3.* - $ZIP Notifier.3 - rm -f Tcl_CreateEventSource.3 Tcl_CreateEventSource.3.* - rm -f Tcl_DeleteEventSource.3 Tcl_DeleteEventSource.3.* - rm -f Tcl_SetMaxBlockTime.3 Tcl_SetMaxBlockTime.3.* - rm -f Tcl_QueueEvent.3 Tcl_QueueEvent.3.* - rm -f Tcl_ThreadQueueEvent.3 Tcl_ThreadQueueEvent.3.* - rm -f Tcl_ThreadAlert.3 Tcl_ThreadAlert.3.* - rm -f Tcl_GetCurrentThread.3 Tcl_GetCurrentThread.3.* - rm -f Tcl_DeleteEvents.3 Tcl_DeleteEvents.3.* - rm -f Tcl_InitNotifier.3 Tcl_InitNotifier.3.* - rm -f Tcl_FinalizeNotifier.3 Tcl_FinalizeNotifier.3.* - rm -f Tcl_WaitForEvent.3 Tcl_WaitForEvent.3.* - rm -f Tcl_AlertNotifier.3 Tcl_AlertNotifier.3.* - rm -f Tcl_SetTimer.3 Tcl_SetTimer.3.* - rm -f Tcl_ServiceAll.3 Tcl_ServiceAll.3.* - rm -f Tcl_ServiceEvent.3 Tcl_ServiceEvent.3.* - rm -f Tcl_GetServiceMode.3 Tcl_GetServiceMode.3.* - rm -f Tcl_SetServiceMode.3 Tcl_SetServiceMode.3.* - 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 -r Object.3; then - rm -f Object.3.* - $ZIP Object.3 - rm -f Tcl_NewObj.3 Tcl_NewObj.3.* - rm -f Tcl_DuplicateObj.3 Tcl_DuplicateObj.3.* - rm -f Tcl_IncrRefCount.3 Tcl_IncrRefCount.3.* - rm -f Tcl_DecrRefCount.3 Tcl_DecrRefCount.3.* - rm -f Tcl_IsShared.3 Tcl_IsShared.3.* - rm -f Tcl_InvalidateStringRep.3 Tcl_InvalidateStringRep.3.* - 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 -r ObjectType.3; then - rm -f ObjectType.3.* - $ZIP ObjectType.3 - rm -f Tcl_RegisterObjType.3 Tcl_RegisterObjType.3.* - rm -f Tcl_GetObjType.3 Tcl_GetObjType.3.* - rm -f Tcl_AppendAllObjTypes.3 Tcl_AppendAllObjTypes.3.* - rm -f Tcl_ConvertToType.3 Tcl_ConvertToType.3.* - 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 -r OpenFileChnl.3; then - rm -f OpenFileChnl.3.* - $ZIP OpenFileChnl.3 - rm -f Tcl_OpenFileChannel.3 Tcl_OpenFileChannel.3.* - rm -f Tcl_OpenCommandChannel.3 Tcl_OpenCommandChannel.3.* - rm -f Tcl_MakeFileChannel.3 Tcl_MakeFileChannel.3.* - rm -f Tcl_GetChannel.3 Tcl_GetChannel.3.* - rm -f Tcl_GetChannelNames.3 Tcl_GetChannelNames.3.* - rm -f Tcl_GetChannelNamesEx.3 Tcl_GetChannelNamesEx.3.* - rm -f Tcl_RegisterChannel.3 Tcl_RegisterChannel.3.* - rm -f Tcl_UnregisterChannel.3 Tcl_UnregisterChannel.3.* - rm -f Tcl_DetachChannel.3 Tcl_DetachChannel.3.* - rm -f Tcl_IsStandardChannel.3 Tcl_IsStandardChannel.3.* - rm -f Tcl_Close.3 Tcl_Close.3.* - rm -f Tcl_ReadChars.3 Tcl_ReadChars.3.* - rm -f Tcl_Read.3 Tcl_Read.3.* - rm -f Tcl_GetsObj.3 Tcl_GetsObj.3.* - rm -f Tcl_Gets.3 Tcl_Gets.3.* - rm -f Tcl_WriteObj.3 Tcl_WriteObj.3.* - rm -f Tcl_WriteChars.3 Tcl_WriteChars.3.* - rm -f Tcl_Write.3 Tcl_Write.3.* - rm -f Tcl_Flush.3 Tcl_Flush.3.* - rm -f Tcl_Seek.3 Tcl_Seek.3.* - rm -f Tcl_Tell.3 Tcl_Tell.3.* - rm -f Tcl_GetChannelOption.3 Tcl_GetChannelOption.3.* - rm -f Tcl_SetChannelOption.3 Tcl_SetChannelOption.3.* - rm -f Tcl_Eof.3 Tcl_Eof.3.* - rm -f Tcl_InputBlocked.3 Tcl_InputBlocked.3.* - rm -f Tcl_InputBuffered.3 Tcl_InputBuffered.3.* - rm -f Tcl_OutputBuffered.3 Tcl_OutputBuffered.3.* - rm -f Tcl_Ungets.3 Tcl_Ungets.3.* - rm -f Tcl_ReadRaw.3 Tcl_ReadRaw.3.* - rm -f Tcl_WriteRaw.3 Tcl_WriteRaw.3.* - 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 -r OpenTcp.3; then - rm -f OpenTcp.3.* - $ZIP OpenTcp.3 - rm -f Tcl_OpenTcpClient.3 Tcl_OpenTcpClient.3.* - rm -f Tcl_MakeTcpClientChannel.3 Tcl_MakeTcpClientChannel.3.* - rm -f Tcl_OpenTcpServer.3 Tcl_OpenTcpServer.3.* - 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 -r Panic.3; then - rm -f Panic.3.* - $ZIP Panic.3 - rm -f Tcl_Panic.3 Tcl_Panic.3.* - rm -f Tcl_PanicVA.3 Tcl_PanicVA.3.* - rm -f Tcl_SetPanicProc.3 Tcl_SetPanicProc.3.* - if test "${CASEINSENSITIVEFS:-}" != "1"; then rm -f panic.3 panic.3.* ; fi - rm -f panicVA.3 panicVA.3.* - 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 -r ParseCmd.3; then - rm -f ParseCmd.3.* - $ZIP ParseCmd.3 - rm -f Tcl_ParseCommand.3 Tcl_ParseCommand.3.* - rm -f Tcl_ParseExpr.3 Tcl_ParseExpr.3.* - rm -f Tcl_ParseBraces.3 Tcl_ParseBraces.3.* - rm -f Tcl_ParseQuotedString.3 Tcl_ParseQuotedString.3.* - rm -f Tcl_ParseVarName.3 Tcl_ParseVarName.3.* - rm -f Tcl_ParseVar.3 Tcl_ParseVar.3.* - rm -f Tcl_FreeParse.3 Tcl_FreeParse.3.* - rm -f Tcl_EvalTokens.3 Tcl_EvalTokens.3.* - rm -f Tcl_EvalTokensStandard.3 Tcl_EvalTokensStandard.3.* - 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 -r PkgRequire.3; then - rm -f PkgRequire.3.* - $ZIP PkgRequire.3 - rm -f Tcl_PkgRequire.3 Tcl_PkgRequire.3.* - rm -f Tcl_PkgRequireEx.3 Tcl_PkgRequireEx.3.* - rm -f Tcl_PkgPresent.3 Tcl_PkgPresent.3.* - rm -f Tcl_PkgPresentEx.3 Tcl_PkgPresentEx.3.* - rm -f Tcl_PkgProvide.3 Tcl_PkgProvide.3.* - rm -f Tcl_PkgProvideEx.3 Tcl_PkgProvideEx.3.* - 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 -r Preserve.3; then - rm -f Preserve.3.* - $ZIP Preserve.3 - rm -f Tcl_Preserve.3 Tcl_Preserve.3.* - rm -f Tcl_Release.3 Tcl_Release.3.* - rm -f Tcl_EventuallyFree.3 Tcl_EventuallyFree.3.* - 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 -r PrintDbl.3; then - rm -f PrintDbl.3.* - $ZIP PrintDbl.3 - rm -f Tcl_PrintDouble.3 Tcl_PrintDouble.3.* - ln $S PrintDbl.3$Z Tcl_PrintDouble.3$Z -fi -if test -r RecEvalObj.3; then - rm -f RecEvalObj.3.* - $ZIP RecEvalObj.3 - rm -f Tcl_RecordAndEvalObj.3 Tcl_RecordAndEvalObj.3.* - ln $S RecEvalObj.3$Z Tcl_RecordAndEvalObj.3$Z -fi -if test -r RecordEval.3; then - rm -f RecordEval.3.* - $ZIP RecordEval.3 - rm -f Tcl_RecordAndEval.3 Tcl_RecordAndEval.3.* - ln $S RecordEval.3$Z Tcl_RecordAndEval.3$Z -fi -if test -r RegExp.3; then - rm -f RegExp.3.* - $ZIP RegExp.3 - rm -f Tcl_RegExpMatch.3 Tcl_RegExpMatch.3.* - rm -f Tcl_RegExpCompile.3 Tcl_RegExpCompile.3.* - rm -f Tcl_RegExpExec.3 Tcl_RegExpExec.3.* - rm -f Tcl_RegExpRange.3 Tcl_RegExpRange.3.* - rm -f Tcl_GetRegExpFromObj.3 Tcl_GetRegExpFromObj.3.* - rm -f Tcl_RegExpMatchObj.3 Tcl_RegExpMatchObj.3.* - rm -f Tcl_RegExpExecObj.3 Tcl_RegExpExecObj.3.* - rm -f Tcl_RegExpGetInfo.3 Tcl_RegExpGetInfo.3.* - 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 -r SaveResult.3; then - rm -f SaveResult.3.* - $ZIP SaveResult.3 - rm -f Tcl_SaveResult.3 Tcl_SaveResult.3.* - rm -f Tcl_RestoreResult.3 Tcl_RestoreResult.3.* - rm -f Tcl_DiscardResult.3 Tcl_DiscardResult.3.* - 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 -r SetErrno.3; then - rm -f SetErrno.3.* - $ZIP SetErrno.3 - rm -f Tcl_SetErrno.3 Tcl_SetErrno.3.* - rm -f Tcl_GetErrno.3 Tcl_GetErrno.3.* - rm -f Tcl_ErrnoId.3 Tcl_ErrnoId.3.* - rm -f Tcl_ErrnoMsg.3 Tcl_ErrnoMsg.3.* - 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 -r SetRecLmt.3; then - rm -f SetRecLmt.3.* - $ZIP SetRecLmt.3 - rm -f Tcl_SetRecursionLimit.3 Tcl_SetRecursionLimit.3.* - ln $S SetRecLmt.3$Z Tcl_SetRecursionLimit.3$Z -fi -if test -r SetResult.3; then - rm -f SetResult.3.* - $ZIP SetResult.3 - rm -f Tcl_SetObjResult.3 Tcl_SetObjResult.3.* - rm -f Tcl_GetObjResult.3 Tcl_GetObjResult.3.* - rm -f Tcl_SetResult.3 Tcl_SetResult.3.* - rm -f Tcl_GetStringResult.3 Tcl_GetStringResult.3.* - rm -f Tcl_AppendResult.3 Tcl_AppendResult.3.* - rm -f Tcl_AppendResultVA.3 Tcl_AppendResultVA.3.* - rm -f Tcl_AppendElement.3 Tcl_AppendElement.3.* - rm -f Tcl_ResetResult.3 Tcl_ResetResult.3.* - rm -f Tcl_FreeResult.3 Tcl_FreeResult.3.* - 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 -r SetVar.3; then - rm -f SetVar.3.* - $ZIP SetVar.3 - rm -f Tcl_SetVar2Ex.3 Tcl_SetVar2Ex.3.* - rm -f Tcl_SetVar.3 Tcl_SetVar.3.* - rm -f Tcl_SetVar2.3 Tcl_SetVar2.3.* - rm -f Tcl_ObjSetVar2.3 Tcl_ObjSetVar2.3.* - rm -f Tcl_GetVar2Ex.3 Tcl_GetVar2Ex.3.* - rm -f Tcl_GetVar.3 Tcl_GetVar.3.* - rm -f Tcl_GetVar2.3 Tcl_GetVar2.3.* - rm -f Tcl_ObjGetVar2.3 Tcl_ObjGetVar2.3.* - rm -f Tcl_UnsetVar.3 Tcl_UnsetVar.3.* - rm -f Tcl_UnsetVar2.3 Tcl_UnsetVar2.3.* - 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 -r Signal.3; then - rm -f Signal.3.* - $ZIP Signal.3 - rm -f Tcl_SignalId.3 Tcl_SignalId.3.* - rm -f Tcl_SignalMsg.3 Tcl_SignalMsg.3.* - ln $S Signal.3$Z Tcl_SignalId.3$Z - ln $S Signal.3$Z Tcl_SignalMsg.3$Z -fi -if test -r Sleep.3; then - rm -f Sleep.3.* - $ZIP Sleep.3 - rm -f Tcl_Sleep.3 Tcl_Sleep.3.* - ln $S Sleep.3$Z Tcl_Sleep.3$Z -fi -if test -r SourceRCFile.3; then - rm -f SourceRCFile.3.* - $ZIP SourceRCFile.3 - rm -f Tcl_SourceRCFile.3 Tcl_SourceRCFile.3.* - ln $S SourceRCFile.3$Z Tcl_SourceRCFile.3$Z -fi -if test -r SplitList.3; then - rm -f SplitList.3.* - $ZIP SplitList.3 - rm -f Tcl_SplitList.3 Tcl_SplitList.3.* - rm -f Tcl_Merge.3 Tcl_Merge.3.* - rm -f Tcl_ScanElement.3 Tcl_ScanElement.3.* - rm -f Tcl_ConvertElement.3 Tcl_ConvertElement.3.* - rm -f Tcl_ScanCountedElement.3 Tcl_ScanCountedElement.3.* - rm -f Tcl_ConvertCountedElement.3 Tcl_ConvertCountedElement.3.* - 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 -r SplitPath.3; then - rm -f SplitPath.3.* - $ZIP SplitPath.3 - rm -f Tcl_SplitPath.3 Tcl_SplitPath.3.* - rm -f Tcl_JoinPath.3 Tcl_JoinPath.3.* - rm -f Tcl_GetPathType.3 Tcl_GetPathType.3.* - 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 -r StaticPkg.3; then - rm -f StaticPkg.3.* - $ZIP StaticPkg.3 - rm -f Tcl_StaticPackage.3 Tcl_StaticPackage.3.* - ln $S StaticPkg.3$Z Tcl_StaticPackage.3$Z -fi -if test -r StdChannels.3; then - rm -f StdChannels.3.* - $ZIP StdChannels.3 - rm -f Tcl_StandardChannels.3 Tcl_StandardChannels.3.* - ln $S StdChannels.3$Z Tcl_StandardChannels.3$Z -fi -if test -r StrMatch.3; then - rm -f StrMatch.3.* - $ZIP StrMatch.3 - rm -f Tcl_StringMatch.3 Tcl_StringMatch.3.* - rm -f Tcl_StringCaseMatch.3 Tcl_StringCaseMatch.3.* - ln $S StrMatch.3$Z Tcl_StringMatch.3$Z - ln $S StrMatch.3$Z Tcl_StringCaseMatch.3$Z -fi -if test -r StringObj.3; then - rm -f StringObj.3.* - $ZIP StringObj.3 - rm -f Tcl_NewStringObj.3 Tcl_NewStringObj.3.* - rm -f Tcl_NewUnicodeObj.3 Tcl_NewUnicodeObj.3.* - rm -f Tcl_SetStringObj.3 Tcl_SetStringObj.3.* - rm -f Tcl_SetUnicodeObj.3 Tcl_SetUnicodeObj.3.* - rm -f Tcl_GetStringFromObj.3 Tcl_GetStringFromObj.3.* - rm -f Tcl_GetString.3 Tcl_GetString.3.* - rm -f Tcl_GetUnicodeFromObj.3 Tcl_GetUnicodeFromObj.3.* - rm -f Tcl_GetUnicode.3 Tcl_GetUnicode.3.* - rm -f Tcl_GetUniChar.3 Tcl_GetUniChar.3.* - rm -f Tcl_GetCharLength.3 Tcl_GetCharLength.3.* - rm -f Tcl_GetRange.3 Tcl_GetRange.3.* - rm -f Tcl_AppendToObj.3 Tcl_AppendToObj.3.* - rm -f Tcl_AppendUnicodeToObj.3 Tcl_AppendUnicodeToObj.3.* - rm -f Tcl_AppendStringsToObj.3 Tcl_AppendStringsToObj.3.* - rm -f Tcl_AppendStringsToObjVA.3 Tcl_AppendStringsToObjVA.3.* - rm -f Tcl_AppendObjToObj.3 Tcl_AppendObjToObj.3.* - rm -f Tcl_SetObjLength.3 Tcl_SetObjLength.3.* - rm -f Tcl_ConcatObj.3 Tcl_ConcatObj.3.* - rm -f Tcl_AttemptSetObjLength.3 Tcl_AttemptSetObjLength.3.* - 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 -r SubstObj.3; then - rm -f SubstObj.3.* - $ZIP SubstObj.3 - rm -f Tcl_SubstObj.3 Tcl_SubstObj.3.* - ln $S SubstObj.3$Z Tcl_SubstObj.3$Z -fi -if test -r TCL_MEM_DEBUG.3; then - rm -f TCL_MEM_DEBUG.3.* - $ZIP TCL_MEM_DEBUG.3 -fi -if test -r Tcl.n; then - rm -f Tcl.n.* - $ZIP Tcl.n -fi -if test -r Tcl_Main.3; then - rm -f Tcl_Main.3.* - $ZIP Tcl_Main.3 - rm -f Tcl_SetMainLoop.3 Tcl_SetMainLoop.3.* - ln $S Tcl_Main.3$Z Tcl_SetMainLoop.3$Z -fi -if test -r Thread.3; then - rm -f Thread.3.* - $ZIP Thread.3 - rm -f Tcl_ConditionNotify.3 Tcl_ConditionNotify.3.* - rm -f Tcl_ConditionWait.3 Tcl_ConditionWait.3.* - rm -f Tcl_ConditionFinalize.3 Tcl_ConditionFinalize.3.* - rm -f Tcl_GetThreadData.3 Tcl_GetThreadData.3.* - rm -f Tcl_MutexLock.3 Tcl_MutexLock.3.* - rm -f Tcl_MutexUnlock.3 Tcl_MutexUnlock.3.* - rm -f Tcl_MutexFinalize.3 Tcl_MutexFinalize.3.* - rm -f Tcl_CreateThread.3 Tcl_CreateThread.3.* - rm -f Tcl_JoinThread.3 Tcl_JoinThread.3.* - 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 -r ToUpper.3; then - rm -f ToUpper.3.* - $ZIP ToUpper.3 - rm -f Tcl_UniCharToUpper.3 Tcl_UniCharToUpper.3.* - rm -f Tcl_UniCharToLower.3 Tcl_UniCharToLower.3.* - rm -f Tcl_UniCharToTitle.3 Tcl_UniCharToTitle.3.* - rm -f Tcl_UtfToUpper.3 Tcl_UtfToUpper.3.* - rm -f Tcl_UtfToLower.3 Tcl_UtfToLower.3.* - rm -f Tcl_UtfToTitle.3 Tcl_UtfToTitle.3.* - 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 -r TraceCmd.3; then - rm -f TraceCmd.3.* - $ZIP TraceCmd.3 - rm -f Tcl_CommandTraceInfo.3 Tcl_CommandTraceInfo.3.* - rm -f Tcl_TraceCommand.3 Tcl_TraceCommand.3.* - rm -f Tcl_UntraceCommand.3 Tcl_UntraceCommand.3.* - 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 -r TraceVar.3; then - rm -f TraceVar.3.* - $ZIP TraceVar.3 - rm -f Tcl_TraceVar.3 Tcl_TraceVar.3.* - rm -f Tcl_TraceVar2.3 Tcl_TraceVar2.3.* - rm -f Tcl_UntraceVar.3 Tcl_UntraceVar.3.* - rm -f Tcl_UntraceVar2.3 Tcl_UntraceVar2.3.* - rm -f Tcl_VarTraceInfo.3 Tcl_VarTraceInfo.3.* - rm -f Tcl_VarTraceInfo2.3 Tcl_VarTraceInfo2.3.* - 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 -r Translate.3; then - rm -f Translate.3.* - $ZIP Translate.3 - rm -f Tcl_TranslateFileName.3 Tcl_TranslateFileName.3.* - ln $S Translate.3$Z Tcl_TranslateFileName.3$Z -fi -if test -r UniCharIsAlpha.3; then - rm -f UniCharIsAlpha.3.* - $ZIP UniCharIsAlpha.3 - rm -f Tcl_UniCharIsAlnum.3 Tcl_UniCharIsAlnum.3.* - rm -f Tcl_UniCharIsAlpha.3 Tcl_UniCharIsAlpha.3.* - rm -f Tcl_UniCharIsControl.3 Tcl_UniCharIsControl.3.* - rm -f Tcl_UniCharIsDigit.3 Tcl_UniCharIsDigit.3.* - rm -f Tcl_UniCharIsGraph.3 Tcl_UniCharIsGraph.3.* - rm -f Tcl_UniCharIsLower.3 Tcl_UniCharIsLower.3.* - rm -f Tcl_UniCharIsPrint.3 Tcl_UniCharIsPrint.3.* - rm -f Tcl_UniCharIsPunct.3 Tcl_UniCharIsPunct.3.* - rm -f Tcl_UniCharIsSpace.3 Tcl_UniCharIsSpace.3.* - rm -f Tcl_UniCharIsUpper.3 Tcl_UniCharIsUpper.3.* - rm -f Tcl_UniCharIsWordChar.3 Tcl_UniCharIsWordChar.3.* - 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 -r UpVar.3; then - rm -f UpVar.3.* - $ZIP UpVar.3 - rm -f Tcl_UpVar.3 Tcl_UpVar.3.* - rm -f Tcl_UpVar2.3 Tcl_UpVar2.3.* - ln $S UpVar.3$Z Tcl_UpVar.3$Z - ln $S UpVar.3$Z Tcl_UpVar2.3$Z -fi -if test -r Utf.3; then - rm -f Utf.3.* - $ZIP Utf.3 - rm -f Tcl_UniChar.3 Tcl_UniChar.3.* - rm -f Tcl_UniCharCaseMatch.3 Tcl_UniCharCaseMatch.3.* - rm -f Tcl_UniCharNcasecmp.3 Tcl_UniCharNcasecmp.3.* - rm -f Tcl_UniCharToUtf.3 Tcl_UniCharToUtf.3.* - rm -f Tcl_UtfToUniChar.3 Tcl_UtfToUniChar.3.* - rm -f Tcl_UniCharToUtfDString.3 Tcl_UniCharToUtfDString.3.* - rm -f Tcl_UtfToUniCharDString.3 Tcl_UtfToUniCharDString.3.* - rm -f Tcl_UniCharLen.3 Tcl_UniCharLen.3.* - rm -f Tcl_UniCharNcmp.3 Tcl_UniCharNcmp.3.* - rm -f Tcl_UtfCharComplete.3 Tcl_UtfCharComplete.3.* - rm -f Tcl_NumUtfChars.3 Tcl_NumUtfChars.3.* - rm -f Tcl_UtfFindFirst.3 Tcl_UtfFindFirst.3.* - rm -f Tcl_UtfFindLast.3 Tcl_UtfFindLast.3.* - rm -f Tcl_UtfNext.3 Tcl_UtfNext.3.* - rm -f Tcl_UtfPrev.3 Tcl_UtfPrev.3.* - rm -f Tcl_UniCharAtIndex.3 Tcl_UniCharAtIndex.3.* - rm -f Tcl_UtfAtIndex.3 Tcl_UtfAtIndex.3.* - rm -f Tcl_UtfBackslash.3 Tcl_UtfBackslash.3.* - 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 -r WrongNumArgs.3; then - rm -f WrongNumArgs.3.* - $ZIP WrongNumArgs.3 - rm -f Tcl_WrongNumArgs.3 Tcl_WrongNumArgs.3.* - ln $S WrongNumArgs.3$Z Tcl_WrongNumArgs.3$Z -fi -if test -r after.n; then - rm -f after.n.* - $ZIP after.n -fi -if test -r append.n; then - rm -f append.n.* - $ZIP append.n -fi -if test -r array.n; then - rm -f array.n.* - $ZIP array.n -fi -if test -r bgerror.n; then - rm -f bgerror.n.* - $ZIP bgerror.n -fi -if test -r binary.n; then - rm -f binary.n.* - $ZIP binary.n -fi -if test -r break.n; then - rm -f break.n.* - $ZIP break.n -fi -if test -r case.n; then - rm -f case.n.* - $ZIP case.n -fi -if test -r catch.n; then - rm -f catch.n.* - $ZIP catch.n -fi -if test -r cd.n; then - rm -f cd.n.* - $ZIP cd.n -fi -if test -r clock.n; then - rm -f clock.n.* - $ZIP clock.n -fi -if test -r close.n; then - rm -f close.n.* - $ZIP close.n -fi -if test -r concat.n; then - rm -f concat.n.* - $ZIP concat.n -fi -if test -r continue.n; then - rm -f continue.n.* - $ZIP continue.n -fi -if test -r dde.n; then - rm -f dde.n.* - $ZIP dde.n -fi -if test -r encoding.n; then - rm -f encoding.n.* - $ZIP encoding.n -fi -if test -r eof.n; then - rm -f eof.n.* - $ZIP eof.n -fi -if test -r error.n; then - rm -f error.n.* - $ZIP error.n -fi -if test -r eval.n; then - rm -f eval.n.* - $ZIP eval.n -fi -if test -r exec.n; then - rm -f exec.n.* - $ZIP exec.n -fi -if test -r exit.n; then - rm -f exit.n.* - $ZIP exit.n -fi -if test -r expr.n; then - rm -f expr.n.* - $ZIP expr.n -fi -if test -r fblocked.n; then - rm -f fblocked.n.* - $ZIP fblocked.n -fi -if test -r fconfigure.n; then - rm -f fconfigure.n.* - $ZIP fconfigure.n -fi -if test -r fcopy.n; then - rm -f fcopy.n.* - $ZIP fcopy.n -fi -if test -r file.n; then - rm -f file.n.* - $ZIP file.n -fi -if test -r fileevent.n; then - rm -f fileevent.n.* - $ZIP fileevent.n -fi -if test -r filename.n; then - rm -f filename.n.* - $ZIP filename.n -fi -if test -r flush.n; then - rm -f flush.n.* - $ZIP flush.n -fi -if test -r for.n; then - rm -f for.n.* - $ZIP for.n -fi -if test -r foreach.n; then - rm -f foreach.n.* - $ZIP foreach.n -fi -if test -r format.n; then - rm -f format.n.* - $ZIP format.n -fi -if test -r gets.n; then - rm -f gets.n.* - $ZIP gets.n -fi -if test -r glob.n; then - rm -f glob.n.* - $ZIP glob.n -fi -if test -r global.n; then - rm -f global.n.* - $ZIP global.n -fi -if test -r history.n; then - rm -f history.n.* - $ZIP history.n -fi -if test -r http.n; then - rm -f http.n.* - $ZIP http.n -fi -if test -r if.n; then - rm -f if.n.* - $ZIP if.n -fi -if test -r incr.n; then - rm -f incr.n.* - $ZIP incr.n -fi -if test -r info.n; then - rm -f info.n.* - $ZIP info.n -fi -if test -r interp.n; then - rm -f interp.n.* - $ZIP interp.n -fi -if test -r join.n; then - rm -f join.n.* - $ZIP join.n -fi -if test -r lappend.n; then - rm -f lappend.n.* - $ZIP lappend.n -fi -if test -r library.n; then - rm -f library.n.* - $ZIP library.n - rm -f auto_execok.n auto_execok.n.* - rm -f auto_import.n auto_import.n.* - rm -f auto_load.n auto_load.n.* - rm -f auto_mkindex.n auto_mkindex.n.* - rm -f auto_mkindex_old.n auto_mkindex_old.n.* - rm -f auto_qualify.n auto_qualify.n.* - rm -f auto_reset.n auto_reset.n.* - rm -f tcl_findLibrary.n tcl_findLibrary.n.* - rm -f parray.n parray.n.* - rm -f tcl_endOfWord.n tcl_endOfWord.n.* - rm -f tcl_startOfNextWord.n tcl_startOfNextWord.n.* - rm -f tcl_startOfPreviousWord.n tcl_startOfPreviousWord.n.* - rm -f tcl_wordBreakAfter.n tcl_wordBreakAfter.n.* - rm -f tcl_wordBreakBefore.n tcl_wordBreakBefore.n.* - 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 -r lindex.n; then - rm -f lindex.n.* - $ZIP lindex.n -fi -if test -r linsert.n; then - rm -f linsert.n.* - $ZIP linsert.n -fi -if test -r list.n; then - rm -f list.n.* - $ZIP list.n -fi -if test -r llength.n; then - rm -f llength.n.* - $ZIP llength.n -fi -if test -r load.n; then - rm -f load.n.* - $ZIP load.n -fi -if test -r lrange.n; then - rm -f lrange.n.* - $ZIP lrange.n -fi -if test -r lreplace.n; then - rm -f lreplace.n.* - $ZIP lreplace.n -fi -if test -r lsearch.n; then - rm -f lsearch.n.* - $ZIP lsearch.n -fi -if test -r lset.n; then - rm -f lset.n.* - $ZIP lset.n -fi -if test -r lsort.n; then - rm -f lsort.n.* - $ZIP lsort.n -fi -if test -r memory.n; then - rm -f memory.n.* - $ZIP memory.n -fi -if test -r msgcat.n; then - rm -f msgcat.n.* - $ZIP msgcat.n -fi -if test -r namespace.n; then - rm -f namespace.n.* - $ZIP namespace.n -fi -if test -r open.n; then - rm -f open.n.* - $ZIP open.n -fi -if test -r package.n; then - rm -f package.n.* - $ZIP package.n -fi -if test -r packagens.n; then - rm -f packagens.n.* - $ZIP packagens.n - rm -f pkg::create.n pkg::create.n.* - ln $S packagens.n$Z pkg::create.n$Z -fi -if test -r pid.n; then - rm -f pid.n.* - $ZIP pid.n -fi -if test -r pkgMkIndex.n; then - rm -f pkgMkIndex.n.* - $ZIP pkgMkIndex.n - rm -f pkg_mkIndex.n pkg_mkIndex.n.* - ln $S pkgMkIndex.n$Z pkg_mkIndex.n$Z -fi -if test -r proc.n; then - rm -f proc.n.* - $ZIP proc.n -fi -if test -r puts.n; then - rm -f puts.n.* - $ZIP puts.n -fi -if test -r pwd.n; then - rm -f pwd.n.* - $ZIP pwd.n -fi -if test -r re_syntax.n; then - rm -f re_syntax.n.* - $ZIP re_syntax.n -fi -if test -r read.n; then - rm -f read.n.* - $ZIP read.n -fi -if test -r regexp.n; then - rm -f regexp.n.* - $ZIP regexp.n -fi -if test -r registry.n; then - rm -f registry.n.* - $ZIP registry.n -fi -if test -r regsub.n; then - rm -f regsub.n.* - $ZIP regsub.n -fi -if test -r rename.n; then - rm -f rename.n.* - $ZIP rename.n -fi -if test -r resource.n; then - rm -f resource.n.* - $ZIP resource.n -fi -if test -r return.n; then - rm -f return.n.* - $ZIP return.n -fi -if test -r safe.n; then - rm -f safe.n.* - $ZIP safe.n - rm -f SafeBase.n SafeBase.n.* - ln $S safe.n$Z SafeBase.n$Z -fi -if test -r scan.n; then - rm -f scan.n.* - $ZIP scan.n -fi -if test -r seek.n; then - rm -f seek.n.* - $ZIP seek.n -fi -if test -r set.n; then - rm -f set.n.* - $ZIP set.n -fi -if test -r socket.n; then - rm -f socket.n.* - $ZIP socket.n -fi -if test -r source.n; then - rm -f source.n.* - $ZIP source.n -fi -if test -r split.n; then - rm -f split.n.* - $ZIP split.n -fi -if test -r string.n; then - rm -f string.n.* - $ZIP string.n -fi -if test -r subst.n; then - rm -f subst.n.* - $ZIP subst.n -fi -if test -r switch.n; then - rm -f switch.n.* - $ZIP switch.n -fi -if test -r tclsh.1; then - rm -f tclsh.1.* - $ZIP tclsh.1 -fi -if test -r tcltest.n; then - rm -f tcltest.n.* - $ZIP tcltest.n -fi -if test -r tclvars.n; then - rm -f tclvars.n.* - $ZIP tclvars.n -fi -if test -r tell.n; then - rm -f tell.n.* - $ZIP tell.n -fi -if test -r time.n; then - rm -f time.n.* - $ZIP time.n -fi -if test -r trace.n; then - rm -f trace.n.* - $ZIP trace.n -fi -if test -r unknown.n; then - rm -f unknown.n.* - $ZIP unknown.n -fi -if test -r unset.n; then - rm -f unset.n.* - $ZIP unset.n -fi -if test -r update.n; then - rm -f update.n.* - $ZIP update.n -fi -if test -r uplevel.n; then - rm -f uplevel.n.* - $ZIP uplevel.n -fi -if test -r upvar.n; then - rm -f upvar.n.* - $ZIP upvar.n -fi -if test -r variable.n; then - rm -f variable.n.* - $ZIP variable.n -fi -if test -r vwait.n; then - rm -f vwait.n.* - $ZIP vwait.n -fi -if test -r while.n; then - rm -f while.n.* - $ZIP while.n -fi -exit 0 diff --git a/unix/mkLinks.tcl b/unix/mkLinks.tcl deleted file mode 100644 index b0a4a6a..0000000 --- a/unix/mkLinks.tcl +++ /dev/null @@ -1,119 +0,0 @@ -#!/bin/sh -# mkLinks.tcl -- -# This generates the mkLinks script -# \ -exec tclsh "$0" ${1+"$@"} - -puts stdout \ -{#!/bin/sh -# This script is invoked when installing manual entries. It generates -# additional links to manual entries, corresponding to the procedure -# and command names described by the manual entry. For example, the -# Tcl manual entry Hash.3 describes procedures Tcl_InitHashTable, -# Tcl_CreateHashEntry, and many more. This script will make hard -# links so that Tcl_InitHashTable.3, Tcl_CreateHashEntry.3, and so -# on all refer to Hash.3 in the installed directory. -# -# Because of the length of command and procedure names, this mechanism -# only works on machines that support file names longer than 14 characters. -# This script checks to see if long file names are supported, and it -# doesn't make any links if they are not. -# -# The script takes one argument, which is the name of the directory -# where the manual entries have been installed. - -ZIP=true -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 <options> dir" - exit 1 -fi - -if test "x$ZIP" != "xtrue"; then - touch TeST - $ZIP TeST - Z=`ls TeST* | sed 's/^[^.]*//'` - rm -f TeST* -fi - -cd $1 -echo foo > xyzzyTestingAVeryLongFileName.foo -x=`echo xyzzyTe*` -echo foo > xyzzyTestingaverylongfilename.foo -y=`echo xyzzyTestingav*` -rm xyzzyTe* -if test "$x" != "xyzzyTestingAVeryLongFileName.foo"; then - exit -fi -if test "$y" != "xyzzyTestingaverylongfilename.foo"; then - CASEINSENSITIVEFS=1 -fi -} - -set case_insensitive_test { if test "${CASEINSENSITIVEFS:-}" != "1"; then} -set case_insensitive_test_fi {; fi} - -foreach file $argv { - set in [open $file] - set tail [file tail $file] - set ext [file extension $file] - set state begin - while {[gets $in line] >= 0} { - switch $state { - begin { - if {[regexp "^.SH NAME" $line]} { - set state name - } - } - name { - regsub {\\-.*} $line {} line - set rmOutput "" - set lnOutput "" - set namelist {} - foreach name [split $line ,] { - regsub -all {(\\)? } $name "" name - if {![string match $name*$ext $tail]} { - if {[string match -nocase $name*$ext $tail]} { - set tst $case_insensitive_test - set tstfi $case_insensitive_test_fi - } else { - set tst "" - set tstfi "" - } - lappend namelist $name$ext - append rmOutput " $tst rm -f $name$ext $name$ext.* $tstfi\n" - append lnOutput " $tst ln \$S $tail\$Z $name$ext\$Z $tstfi\n" - } - } - puts "if test -r $tail; then" - puts " rm -f $tail.*" - puts " \$ZIP $tail" - if { [llength $namelist] } { - puts -nonewline $rmOutput - puts -nonewline $lnOutput - } - puts "fi" - set state end - } - end { - break - } - } - } - close $in -} -puts "exit 0" diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 8b125b0..a1bdc5b 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -601,8 +601,12 @@ 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. +# Decide whether to use symlinks for linking the manpages, +# whether to compress the manpages after installation, and +# whether to add a package name suffix to the installed +# manpages to avoidfile name clashes. +# If compression is enabled also find out what file name suffix +# the given compression program is using. # # Arguments: # none @@ -612,11 +616,12 @@ AC_DEFUN(SC_ENABLE_LANGINFO, [ # Adds the following arguments to configure: # --enable-man-symlinks # --enable-man-compression=PROG +# --enable-man-suffix[=STRING] # # Defines the following variable: # -# MKLINKS_FLAGS - The apropriate flags for mkLinks -# according to the user's selection. +# MAN_FLAGS - The apropriate flags for installManPage +# according to the user's selection. # #-------------------------------------------------------------------- AC_DEFUN(SC_CONFIG_MANPAGES, [ @@ -624,20 +629,39 @@ 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", + test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --symlinks", enableval="no") AC_MSG_RESULT([$enableval]) - AC_MSG_CHECKING([compression for manpages]) + AC_MSG_CHECKING([whether to compress the 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", + test "$enableval" = "yes" && AC_MSG_ERROR([missing argument to --enable-man-compression]) + test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --compress $enableval", + enableval="no") + AC_MSG_RESULT([$enableval]) + if test "$enableval" != "no"; then + AC_MSG_CHECKING([for compressed file suffix]) + touch TeST + $enableval TeST + Z=`ls TeST* | sed 's/^....//'` + rm -f TeST* + MAN_FLAGS="$MAN_FLAGS --extension $Z" + AC_MSG_RESULT([$Z]) + fi + + AC_MSG_CHECKING([whether to add a package name suffix for the manpages]) + AC_ARG_ENABLE(man-suffix, + [ --enable-man-suffix=STRING + use STRING as a suffix to manpage file names + (default: $1)], + test "$enableval" = "yes" && enableval="$1" + test "$enableval" != "no" && MAN_FLAGS="$MAN_FLAGS --suffix $enableval", enableval="no") AC_MSG_RESULT([$enableval]) - AC_SUBST(MKLINKS_FLAGS) + AC_SUBST(MAN_FLAGS) ]) #-------------------------------------------------------------------- |