I modified the foreign library packages as follows to make it work on my machine.  In a previous email, someone said it worked best (at least for cello) with tcl 8.5 so we might as well make that explicit on unix.<br><br>(define-foreign-library Tcl<br>
    (:darwin (:framework "Tcl"))<br>  (:windows (:or "Tcl85.dll"))<br>  (:unix (:or "<a href="http://libtcl8.5.so">libtcl8.5.so</a>" "libtcl.so"))<br>  (t (:default "libtcl")))<br>
<br>(define-foreign-library Tk<br>    (:darwin (:framework "Tk"))<br>  (:windows (:or "Tk85.dll"))<br>  (:unix (:or "<a href="http://libtk8.5.so">libtk8.5.so</a>" "libtk.so"))<br>  (t (:default "libtk")))<br>
<br>(define-foreign-library Tile<br>    ;(:darwin (:framework "Tk"))<br>    (:windows (:or "tile078.dll"))<br>  (:unix (:or "<a href="http://libtk8.5.so">libtk8.5.so</a>" "libtk.so"))<br>
  (t (:default "libtk")))<br>