One more problem building new Insight
Fedin Pavel <[email protected]> Fri, 24 May 2013 15:15:28 +0400
| Newsgroups | gmane.comp.debugging.insight |
|---|---|
| Message-ID | <001601ce586f$ff6d9970$fe48cc50$%[email protected]> |
Hello!
Updated gdb's configure script cannot find TCL private includes:
--- cut ---
Checking for Tcl configuration... (cached) found
/e/Projects/insight/src/tcl/win/tclConfig.sh
Checking for Tk configuration... (cached) found
/e/Projects/insight/src/tk/win/tkConfig.sh
Checking for existence of /e/Projects/insight/src/tcl/win/tclConfig.sh...
loading
Checking for Tcl private headers... configure: error: could not find private
Tcl headers
--- cut ---
Analysis shows that the script looks for these includes in
${TCL_INCLUDE_SPEC}/tcl-private/generic. TCL_INCLUDE_SPEC is provided by
tclConfig.sh, and is equal to $prefix/include.
But why is it looking for private includes there ? They are part of source
code and are not expected to be there. Shouldn't this be
${TCL_SRC_DIR}/tcl-private/generic instead ?
Kind regards.