diff options
-rw-r--r-- | www/tcl-cgi/distinfo | 4 | ||||
-rw-r--r-- | www/tcl-cgi/patches/patch-aa | 14 |
2 files changed, 10 insertions, 8 deletions
diff --git a/www/tcl-cgi/distinfo b/www/tcl-cgi/distinfo index ee021d44ea2..1ae82c8d983 100644 --- a/www/tcl-cgi/distinfo +++ b/www/tcl-cgi/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2002/11/20 15:57:36 bouyer Exp $ +$NetBSD: distinfo,v 1.4 2004/09/11 02:47:33 minskim Exp $ SHA1 (tcl-cgi-1.3.0/cgi.tcl.tar.gz) = bbfbbbf4ce48da97ee33418a8e7790778ba84afa Size (tcl-cgi-1.3.0/cgi.tcl.tar.gz) = 114514 bytes -SHA1 (patch-aa) = 940e1052c71fe8faa56e842244b01aa267edab91 +SHA1 (patch-aa) = b37271c4b1d9357509ad0b95dbd432e4f1420fd9 SHA1 (patch-ab) = cab2501a9067f279f08717948a1753619da8729d diff --git a/www/tcl-cgi/patches/patch-aa b/www/tcl-cgi/patches/patch-aa index cacd1649f9a..7099e9dbdf0 100644 --- a/www/tcl-cgi/patches/patch-aa +++ b/www/tcl-cgi/patches/patch-aa @@ -1,17 +1,19 @@ -$NetBSD: patch-aa,v 1.4 2002/11/20 15:57:37 bouyer Exp $ ---- cgi.tcl.in.orig Wed Aug 30 11:07:29 2000 -+++ cgi.tcl.in Wed Aug 30 11:08:26 2000 -@@ -2040,7 +2040,7 @@ +$NetBSD: patch-aa,v 1.5 2004/09/11 02:47:33 minskim Exp $ + +--- cgi.tcl.in.orig 2000-06-14 15:16:13.000000000 -0500 ++++ cgi.tcl.in +@@ -2040,8 +2040,8 @@ proc cgi_mail_end {} { flush $_cgi(mailfid) - if {[file executable /usr/lib/sendmail]} { -+ if {[file executable /usr/sbin/sendmail]} { - exec /usr/lib/sendmail -t -odb < $_cgi(mailfile) ++ if {[file executable /usr/sbin/sendmail]} { + exec /usr/sbin/sendmail -t -odb < $_cgi(mailfile) # Explanation: # -t means: pick up recipient from body -@@ -2056,6 +2056,9 @@ + # -odb means: deliver in background +@@ -2056,6 +2056,9 @@ proc cgi_mail_end {} { set s [socket $_cgi(mail_relay) 25] gets $s answer if {[lindex $answer 0] != 220} {error $answer} |