Thread

  1. TCL/TK configure problems

    Stan Brown <stanb@awod.com> — 1999-01-10T00:41:21Z

    	could soemeone explain to me how the tcl/tk configure stuff is suposed
    	to worl?
    
    	I built 6.4.2 on my HP-UX machine a week or so agao, and had to do some
    	_really_ strange things to get it working. Tonite I tried to build on
    	FreeBSD (sort of a reference paltform, no?), and still had the folowint
    	error, during configure:
    
    checking for tkConfig.sh... no
    configure: warning: TK support disabled; Tk configuration script missing
    
    	I used teh --with-tcl and --with tk configure flags, so what's going on
    	here?
    
    -- 
    Stan Brown     stanb@netcom.com                                    843-745-3154
    Westvaco
    Charleston SC.
    -- 
    Windows 98: n.
    	useless extension to a minor patch release for 32-bit extensions and
    	a graphical shell for a 16-bit patch to an 8-bit operating system
    	originally coded for a 4-bit microprocessor, written by a 2-bit 
    	company that can't stand for 1 bit of competition.
    -
    (c) 1999 Stan Brown.  Redistribution via the Microsoft Network is prohibited.
    
    
  2. Re: TCL/TK configure problems

    Karl Eichwalder <ke@suse.de> — 1999-01-10T09:34:50Z

    "Stan Brown" <stanb@awod.com> writes:
    
    |   checking for tkConfig.sh... no
    |   configure: warning: TK support disabled; Tk configuration script missing
    |   
    |   	I used teh --with-tcl and --with tk configure flags, so what's going on
    |   	here?
    
    The configure script wrongly thinks, tcl and tk are to be found at the
    same loaction.  On SuSE Linux I've to use the following *ugly* hack:
    
    --- pgsql/src/configure.in~	Fri Oct 30 03:146 1998
    +++ pgsql/src/configure.in	Fri Oct 30 14:52:34 1998
    @@ -790,7 +790,7 @@
     	AC_MSG_CHECKING(for tkConfig.sh)
     	TK_CONFIG_SH=
     	# library_dirs are set in the check for TCL
    -	for dir in $library_dirs
    +	for dir in /usr/X11R6/lib
     	do
     		if test -d "$dir" -a -r "$dir/tkConfig.sh"
     		then
    
    -- 
    Karl Eichwalder
    
    
  3. Re: [HACKERS] Re: TCL/TK configure problems

    Bruce Momjian <maillist@candle.pha.pa.us> — 1999-01-10T10:03:14Z

    > "Stan Brown" <stanb@awod.com> writes:
    > 
    > |   checking for tkConfig.sh... no
    > |   configure: warning: TK support disabled; Tk configuration script missing
    > |   
    > |   	I used teh --with-tcl and --with tk configure flags, so what's going on
    > |   	here?
    > 
    > The configure script wrongly thinks, tcl and tk are to be found at the
    > same loaction.  On SuSE Linux I've to use the following *ugly* hack:
    
    Or you could add configure --with-libs=DIR.
    
    -- 
      Bruce Momjian                        |  http://www.op.net/~candle
      maillist@candle.pha.pa.us            |  (610) 853-3000
      +  If your life is a hard drive,     |  830 Blythe Avenue
      +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026