From: Holger V. <hol...@un...> - 2008-08-30 09:21:50
|
Paolo, currently building ngspice for Windows fails during ./configure with a failure message that TCL_MODULE has never been defined. It is however needed in several makefile.am. In configure.in you have placed the code for tcl library detection into a case statement inside the branch which is selected if Windows is not chosen. case $with_windows in yes ) some code * ) ########################################################################## # # tcl libraries test # ########################################################################## AM_CONDITIONAL(TCL_MODULE, false) other code esac esac is in line 528. Is it intended to have --with-tcl to be not accessible from Windows? If yes, at least the AM_CONDITIONAL(TCL_MODULE, false) should be moved to a place in front of the case loop. Regards Holger |