|
From: Mats B. <ma...@pr...> - 2006-07-18 14:17:30
|
I've got one potential Coccinella user that is trying to build tile on freebsd, can you help him?
/Mats
---------------------------------------------------------------------------------
I've started by trying to get tile installed. I am able to get
configure to work:
++++++++++++++++++++++++++++++ +++++++++++++
hydra[/usr/local/src/tile-0.7.6]# ./configure
--with-tcl=/usr/local/lib/tcl8 .4/ --with-tk=/usr/local/lib/tk8.4 /
++++++++++++++++++++++++++++++ +++++++++++++
but `make' is failing:
++++++++++++++++++++++++++++++ +++++++++++++
[...]
./generic/tkstate.c: At top level:
./generic/tkstate.c:50: error: storage size of `StateSpecObjType' isn't
known
*** Error code 1
++++++++++++++++++++++++++++++ +++++++++++++
Looking at the relevant lines in source generic/tkstate.c which is
causing make to fail:
++++++++++++++++++++++++++++++ +++++++++++++
[...]
static
struct Tcl_ObjType StateSpecObjType =
{
"StateSpec",
StateSpecFreeIntRep,
StateSpecDupIntRep,
StateSpecUpdateString,
StateSpecSetFromAny
};
[...]
++++++++++++++++++++++++++++++ +++++++++++++
I'm not really that familiar with Tcl/Tk infrastructure so I'm not sure
where to go from here...
|