This is the mail archive of the insight@sourceware.cygnus.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

insight and cygwin build failure


David,

This is just a bug in the Makefile for libgui/library.  It should be
looking for ittclsh.exe in itcl/itcl/win, not itcl/itcl/unix.  

The following patch will work for now, though it is not the right
solution, we need to do some more configury to make this depend on platform...

Jim

Index: libgui/library/Makefile.in
===================================================================
RCS file: /cvs/cvsfiles/devo/libgui/library/Makefile.in,v
retrieving revision 1.33
diff -p -r1.33 Makefile.in
*** Makefile.in 1999/03/15 10:13:25     1.33
--- Makefile.in 1999/08/13 19:30:53
*************** gui_DATA = tclIndex pkgIndex.tcl $(TCL) 
*** 150,156 ****
  
  WISH = wish
  @CROSS_COMPILING_TRUE@ITCL_SH = itclsh
! @CROSS_COMPILING_FALSE@ITCL_SH = $$here/../../itcl/itcl/unix/itclsh$(EXEEXT)
  
  ETAGS_ARGS = --lang=none --regex='/[ \t]*\(proc\|method\|itcl_class\)[ \t]+\([^ \t]+\)/\1/' $(TCL) --lang=auto
  mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
--- 150,156 ----
  
  WISH = wish
  @CROSS_COMPILING_TRUE@ITCL_SH = itclsh
! @CROSS_COMPILING_FALSE@ITCL_SH = $$here/../../itcl/itcl/win/itclsh$(EXEEXT)
  
  ETAGS_ARGS = --lang=none --regex='/[ \t]*\(proc\|method\|itcl_class\)[ \t]+\([^ \t]+\)/\1/' $(TCL) --lang=auto
  mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs

-- 
++==++==++==++==++==++==++==++==++==++==++==++==++==++==++==++==++==++==++
Jim Ingham                                              jingham@cygnus.com
Cygnus Solutions Inc.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]