You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rivet-dev@tcl.apache.org by ka...@apache.org on 2004/11/28 17:44:04 UTC

cvs commit: tcl-rivet/src make.tcl mod_rivet.c

karl        2004/11/28 08:44:04

  Modified:    src      make.tcl mod_rivet.c
  Log:
  In the Rivet server conf, there is no interpreter to pass to Tcl_GetBoolean.
  
  Revision  Changes    Path
  1.62      +2 -2      tcl-rivet/src/make.tcl
  
  Index: make.tcl
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/src/make.tcl,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -u -r1.61 -r1.62
  --- make.tcl	17 Sep 2004 22:58:33 -0000	1.61
  +++ make.tcl	28 Nov 2004 16:44:04 -0000	1.62
  @@ -1,6 +1,6 @@
   #!/bin/sh
   # the next line restarts using tclsh \
  -	exec tclsh "$0" "$@"
  +	exec tclsh8.4 "$0" "$@"
   
   # This file is responsible for the top-level "make" style processing.
   # It uses the 'aardvark' make-like system, located in the buildscripts
  
  
  
  1.78      +2 -2      tcl-rivet/src/mod_rivet.c
  
  Index: mod_rivet.c
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/src/mod_rivet.c,v
  retrieving revision 1.77
  retrieving revision 1.78
  diff -u -r1.77 -r1.78
  --- mod_rivet.c	4 Nov 2004 16:45:05 -0000	1.77
  +++ mod_rivet.c	28 Nov 2004 16:44:04 -0000	1.78
  @@ -921,9 +921,9 @@
       } else if( STREQU( var, "UploadMaxSize" ) ) {
   	rsc->upload_max = strtol( val, NULL, 10 );
       } else if( STREQU( var, "UploadFilesToVar" ) ) {
  -	Tcl_GetBoolean (interp, var, &rsc->upload_files_to_var);
  +	Tcl_GetBoolean (NULL, var, &rsc->upload_files_to_var);
       } else if( STREQU( var, "SeparateVirtualInterps" ) ) {
  -	Tcl_GetBoolean (interp, var, &rsc->separate_virtual_interps);
  +	Tcl_GetBoolean (NULL, var, &rsc->separate_virtual_interps);
       } else {
   	string = Rivet_SetScript( cmd->pool, rsc, var, val);
       }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: rivet-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: rivet-cvs-help@tcl.apache.org