From: Tirath R. <ti...@tp...> - 2006-01-12 02:43:32
|
On 12/01/2006, at 12:50 AM, Rick Kufrin wrote: > configure:22048: result: failed > > ... so I think that what might be going on here is that your system > currently lacks the Tcl development packages and only has the > prebuilt Tcl > libraries and shells. I'm not familiar with Debian but a Google > search > resulted in a package called "tcl-devel" that looks promising. Ah yes, you're right that was the problem... the Debian package tcl8.4-dev was installed, but for some reason the tcl.h and other header files were installed in /usr/include/tcl8.4, which means even specifying a ./configure --tclinclude=/usr/include/tcl8.4 would fail since the configure script automatically adds a "/include" to whatever tclinclude is specified! As a kludgy (but tolerable I hope) solution, I set and exported C_INCLUDE_PATH="/usr/include/tcl8.4". I guess now that the tools are all built I should be able to get rid of it... but I'll leave it in my .bashrc for now, I can't see any problems arising because of this, correct me if I'm wrong. Anyway, all is well now! Thanks for your help Rick! cheers, -tirath |