./configure makeTo install tcl3270 in the default install directory (/usr/local/bin), type:
make install
To use a different version of tcl, pass the --with-tcl option to configure, e.g:
./configure --with-tcl=8.3This will cause the configure script to look in for a library called libtcl83.a (passing the -ltcl83 option to the C compiler). It will look for the header files in /usr/local/include/tcl8.3 and the tcl library in /usr/local/lib.
If you have the tcl header files or libraries installed in directories other than those selected by default, you must pass these options to configure in environment variables. To specify a different header file directory, put a -I option in the CPPFLAGS environment variable. To specify a different library directory, put a -L option in the LDFLAGS environment variable. For example (using bash, ksh, or sh):
CPPFLAGS=-I/auto/unsupported/tcl LDFLAGS=-L/auto/unsupported/lib ./configureUsing csh, it's similar:
(setenv CPPFLAGS -I/auto/unsupported/tcl; setenv LDFLAGS -L/auto/unsupported/lib; ./configure)tcl3270 has not been tested with earlier versions of tcl.