|
From: Jeff H. <je...@ac...> - 2013-09-25 14:43:49
|
That's just finding tcl … do you have Tk (and it's dev headers) installed? On 2013-09-25, at 1:41 AM, Luís de Sousa <lui...@gm...> wrote: > Hi Jeff thanks for the reply. I have two tclConfig.sh files in my system, but configure isn't able to use neither (see below). > > Any other hints are welcome. Thanks, > > Luís > > $ sudo find /usr -name "tclConfig.sh" > /usr/lib/tclConfig.sh > /usr/lib/tcl8.5/tclConfig.sh > > $ ./configure --with-tcl=/usr/lib > checking for correct TEA configuration... ok (TEA 3.7) > checking for Tcl configuration... found /usr/lib/tclConfig.sh > checking for existence of /usr/lib/tclConfig.sh... loading > checking for Tk configuration... configure: error: Can't find Tk configuration definitions > > $ ./configure --with-tcl=/usr/lib/tcl8.5 > checking for correct TEA configuration... ok (TEA 3.7) > checking for Tcl configuration... found /usr/lib/tcl8.5/tclConfig.sh > checking for existence of /usr/lib/tcl8.5/tclConfig.sh... loading > checking for Tk configuration... configure: error: Can't find Tk configuration definitions > > > > On 25 September 2013 05:02, Jeff Hobbs <je...@ac...> wrote: > Hi Luís, > > On 2013-09-24, at 2:54 AM, Luís de Sousa <lui...@gm...> wrote: > > I'm trying to install Tktable 2.10 on Ubuntu 12.04. When I run config I'm getting this error message: > > > > $ ./configure > > checking for correct TEA configuration... ok (TEA 3.7) > > checking for Tcl configuration... found /usr/lib/tclConfig.sh > > checking for existence of /usr/lib/tclConfig.sh... loading > > checking for Tk configuration... configure: error: Can't find Tk configuration definitions > > > > The tclConfig.sh script is indeed there, but by some reason the configurer is not happy about it. What can I do to understand what's wrong? > > The tclConfig.sh should include some paths and pointers to the actual Tk headers. If these are not at the local specified, you'll get the above complaint. Try use --with-tcl=/path/to/tcl/stuff and --with-tk=/path/to/tk/stuff. ./configure --help will provide more options. > > Jeff > |