[Tcl Java] Re: [Tcl Java] Re: [Tcl Java] Re: [Tcl Java] Tcl Java problems with make test

2000-05-17 Thread Larry W. Virden


From: Mo DeJong [EMAIL PROTECTED]

 Boy that is strange. The ./configure test just runs
 
 "package require Tcl 8.3.1"
 
 and makes sure that does not return an error. What do you get
 if you just go into the Tcl build dir, run ./tclsh and type
 the above package command?
 
 Mo Dejong
 Red Hat Inc.

$ ./tclsh
% package require Tcl 8.3.1
version conflict for package "Tcl": have 8.3, need 8.3.1
% info patchlevel
8.3.1

-- 
Larry W. Virden mailto:[EMAIL PROTECTED]
URL: http://www.purl.org/NET/lvirden/
Unless explicitly stated to the contrary, nothing in this posting should 
be construed as representing my employer's opinions.
--


The TclJava mailing list is sponsored by Scriptics Corporation.
To subscribe:send mail to [EMAIL PROTECTED]  
 with the word SUBSCRIBE as the subject.
To unsubscribe:  send mail to [EMAIL PROTECTED] 
 with the word UNSUBSCRIBE as the subject.
To send to the list, send email to '[EMAIL PROTECTED]'. 
An archive is available at http://www.mail-archive.com/tcljava@scriptics.com




[Tcl Java] Re: [Tcl Java] Re: [Tcl Java] Re: [Tcl Java] Re: [Tcl Java] Tcl Java problems with make test

2000-05-17 Thread Mo DeJong

On Wed, 17 May 2000, Larry W. Virden wrote:

 
 From: Mo DeJong [EMAIL PROTECTED]
 
  Boy that is strange. The ./configure test just runs
  
  "package require Tcl 8.3.1"
  
  and makes sure that does not return an error. What do you get
  if you just go into the Tcl build dir, run ./tclsh and type
  the above package command?
  
  Mo Dejong
  Red Hat Inc.
 
 $ ./tclsh
 % package require Tcl 8.3.1
 version conflict for package "Tcl": have 8.3, need 8.3.1
 % info patchlevel
 8.3.1

Have you ever been writing some Tcl code and you find something that
just does not work and think "I can't be the first person to run into
this"? This is a bug in Tcl, I have filed a bug report on it, but
I guess it is not going to get fixed until 8.4.

I "fixed" this problem by moving the version number in the
configure.in back to 8.3. You will need to update from the CVS
tommorow to get these changes. You could also just apply this patch
to unix/configure.in.

Index: configure.in
===
RCS file: /home/cvs/external/tcljava/unix/configure.in,v
retrieving revision 1.32
diff -u -r1.32 configure.in
--- configure.in2000/05/13 23:49:30 1.32
+++ configure.in2000/05/17 20:51:10
@@ -1329,7 +1329,7 @@
   fi
 
   echo '
-if {[[catch {package require Tcl 8.3.1} err]]} {
+if {[[catch {package require Tcl 8.3} err]]} {
   puts stderr $err
   exit -1
 }

later
Mo Dejong
Red Hat Inc.


The TclJava mailing list is sponsored by Scriptics Corporation.
To subscribe:send mail to [EMAIL PROTECTED]  
 with the word SUBSCRIBE as the subject.
To unsubscribe:  send mail to [EMAIL PROTECTED] 
 with the word UNSUBSCRIBE as the subject.
To send to the list, send email to '[EMAIL PROTECTED]'. 
An archive is available at http://www.mail-archive.com/tcljava@scriptics.com