You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tcl.apache.org by mx...@apache.org on 2019/01/15 18:17:14 UTC

[tcl-rivet] branch master updated (714e7cb -> 2e2f6b7)

This is an automated email from the ASF dual-hosted git repository.

mxmanghi pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tcl-rivet.git.


    from 714e7cb  regenerated from rivet.xml.in
     new 4f071db  Useless typecast of size_t into int removed
     new 2e2f6b7  adding automatic reference to current version in configure command example

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 doc/xml/installation.xml        | 4 ++--
 src/mod_rivet_ng/TclWebapache.c | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)


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


[tcl-rivet] 02/02: adding automatic reference to current version in configure command example

Posted by mx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mxmanghi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tcl-rivet.git

commit 2e2f6b7072fc4294bb89b7acbb2fada452e962d4
Author: Massimo Manghi <mx...@apache.org>
AuthorDate: Tue Jan 15 18:38:00 2019 +0100

    adding automatic reference to current version in configure command example
---
 doc/xml/installation.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/xml/installation.xml b/doc/xml/installation.xml
index 861a2a5..a60d81c 100644
--- a/doc/xml/installation.xml
+++ b/doc/xml/installation.xml
@@ -2,7 +2,7 @@
     <title>Apache Rivet &version; Installation</title>
     <procedure>
         <para> 
-            Rivet &version; runs with the Apache 2.2.x and 2.4.x HTTP web servers. 
+            Rivet &version; runs with the Apache 2.4.x HTTP web server. 
             It is known to build and run on various Linux distributions 
             (Debian &amp; Ubuntu, Redhat, SuSE and CentOS), FreeBSD and OpenBSD. For some
             of these Unix-like operative systems 
@@ -259,7 +259,7 @@ tar -xvf rivet-&fullversion;.tar.gz</programlisting>
 	    </para>
 <programlisting>./configure --with-tcl=/usr/lib/tcl8.6/ --with-tclsh=/usr/bin/tclsh8.6 \
 	    --with-apxs=/usr/local/apache2/bin/apxs --with-apache=/usr/local/apache2 \
-	    --with-rivetlib-target-dir=/usr/local/apache2/rivet3.0</programlisting>
+	    --with-rivetlib-target-dir=/usr/local/apache2/rivet&version;</programlisting>
 	  </step>
 	  <step>
 	    <title>Run make</title>


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


[tcl-rivet] 01/02: Useless typecast of size_t into int removed

Posted by mx...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

mxmanghi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tcl-rivet.git

commit 4f071db3cb6b775028f0d10e02c5dba8dd9215b5
Author: Massimo Manghi <mx...@apache.org>
AuthorDate: Tue Jan 15 10:50:30 2019 +0100

    Useless typecast of size_t into int removed
---
 src/mod_rivet_ng/TclWebapache.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/mod_rivet_ng/TclWebapache.c b/src/mod_rivet_ng/TclWebapache.c
index 12d2573..2446072 100644
--- a/src/mod_rivet_ng/TclWebapache.c
+++ b/src/mod_rivet_ng/TclWebapache.c
@@ -96,7 +96,7 @@ TclWeb_InitRequest(rivet_thread_private* private, Tcl_Interp *interp)
 {
     request_rec*        r   = private->r;
     TclWebRequest*      req = private->req;
-    int content_type_len = strlen(r->content_type);
+    size_t content_type_len = strlen(r->content_type);
 
     req->interp             = interp;
     req->req                = r;


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