Hi Harald,
I tried to find that tclConfig.sh file:
# find / -iname tclConfig.sh
/usr/lib/tcl8.6/tclConfig.sh
/usr/lib/x86_64-linux-gnu/tcl8.6/tclConfig.sh
The first one just points to the second.
# cat /usr/lib/tcl8.6/tclConfig.sh
#! /bin/sh
. /usr/lib/`dpkg-architecture -qDEB_HOST_MULTIARCH`/tcl8.6/tclConfig.sh
As per the instructions, I edited the file 'unix/CONFIG' as:
unix# grep -v '^#' CONFIG
CC=gcc; export CC
../configure --enable-threads \
--with-tcl=/usr/lib/x86_64-linux-gnu/tcl8.6/
Did the `make`, returns successfully, although the last line says:
"Zip entry offsets appear off by 98360 bytes - correcting..."
When `make install`, the same error:
unix# make install
/bin/bash: ../tclconfig/install-sh: No such file or directory
make: *** [Makefile:460: install-lib-binaries] Error 127
Should this `../tclconfig/install-sh` be created by the `make install`?
Where?
Tcl_package_Thread_source_code-48e507d6c9# find . -name tclconfig
Tcl_package_Thread_source_code-48e507d6c9# find . -name install-sh
Nothing shows up.
Luis