dbohdan 2015-03-16: As of version 0.23 you can compile tcc4tcl on Linux thus:
#!/bin/sh set -e version=0.23 release="tcc4tcl-$version" url="http://rkeene.org/devel/tcc4tcl/${release}.tar.gz" curl "$url" -o "${release}.tar.gz" # -O may not be unavailable. tar zxvf "$release.tar.gz" cd $release ./configure makeAMG: When I try the above procedure, @PACKAGE_VERSION@ in the *.in files is converted to @@VERS@@. This token appears in configure.ac and tcc4tcl.tcl. Is it supposed to be replaced with something else? What is responsible for doing that?dbohdan: The procedure was wrong. Try it again with the updated script.dbohdan: Updated the script once more to hammer Roy Keene's server less.