Rene Zaumseil | 4 Jul 09:23
Picon

Re: Tcl/Tk 8.6a1 RELEASED

Hi,

I could successfull build tclkits under linux and solaris. For windows I need 
to patch the following locations.

1. Tk static build failed with missing symbols.

I need to build and install tcl with --enable-shared and then with 
--disable-shared and copied the tcl library:

	cp <builddir>/lib/libtclstub86.a <builddir>/lib/libtclstub86s.a 

and patched the tk-8.6/win/Makefile.in line 599:

	$(CC) $(CFLAGS) $(WISH_OBJS) $(TCL_LIB_FILE) $(TK_LIB_FILE) $(LIBS) \

to

	$(CC) $(CFLAGS) $(WISH_OBJS) $(TCL_LIB_FILE) $(TK_LIB_FILE) 
$(TCL_STUB_LIB_FILE) $(LIBS) \

Anyone occuring the same experience in building a static wish?
I build with msys under WindowsXP.

2. To build extensions with use of internal header files I need to patch line 
25 from tcl-8.6/generic/tclPort.h from

#   include "../win/tclWinPort.h"

to

#   include "tclWinPort.h"

It is the same as for unix. Is it intentionally so or just a old typo error?

Regards

rene

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08

Gmane