Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to install NS2 using cygwin, on Windows 7. I could install cygwin and required packages. After unzipping ns2.32 and when tried ./install I'm getting following error. Any pointers to fix the error is greatly appreciated.

/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c: In function ‘T               clpGetClicks’:
/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c:100:21: error:                storage size of ‘tz’ isn’t known
/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c:100:21: warning               : unused variable ‘tz’
/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c: In function ‘T               cl_GetTime’:
/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c:253:21: error:                storage size of ‘tz’ isn’t known
/cygdrive/d/cygwin/ns-allinone-2.32/tcl8.4.15/unix/tclUnixTime.c:253:21: warning               : unused variable ‘tz’
Makefile:1082: recipe for target `tclUnixTime.o' failed
make: *** [tclUnixTime.o] Error 1
tcl8.4.15 make failed! Exiting ...
For problems with Tcl/Tk see http://www.scriptics.com
share|improve this question
That exact version of Tcl isn't fully supported under Cygwin due to the complex mixture of Windows and Unix natures involved; 8.4.20 (when it comes) will be though (Jan Nijtmans has done a lot of work to fix it, and even more work to allow it to work while not breaking other supported platforms). – Donal Fellows Jan 26 at 21:45
This is not a programming question, it's off topic. Please, read the guidelines here: stackoverflow.com/faq – walther Mar 9 at 22:35

closed as off topic by M42, raven, Neolisk, walther, Soner Gönül Mar 9 at 22:46

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

I use this incantation to install Tcl on Cygwin, perhaps it will help.

wget downloads.sf.net/tcl/tcl8.5.13-src.tar.gz
tar xf tcl8.5.13-src.tar.gz
cd tcl8.5.13/win
./configure
make install-binaries install-libraries

ref

share|improve this answer
Thanks for the reply. I will try that.. – Uday Jan 29 at 13:12

Based on Donal's comment, since tcl-8.4.15 is incompatible with cygwin, I see these options:

  • Use a Virtual Machine instead.

This is probably the easiest solution, unless you have a specific reason for installing cywgin.

  • Use a different version of ns2

I have installed older version of ns2 over cywin, but I don't remember which one. Also, there are claims of installing ns-2.35 on cygwin, but I haven't tested myself.

  • Try to compile ns2 with a different version of tcl

This is not recommended, since the various packages like tcl, otcl, tclcl, etc are generally only for specific version. In addition, different version of ns2 compile only using specific versions of tcl

Please comment if you need any clarifications, and post back to tell us what worked for you.

share|improve this answer
Thanks for all the information. No progress as of now. I'll post as soon as I get the solution for it.. – Uday Jan 29 at 13:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.