[llvm-commits] CVS: llvm-www/demo/index.cgi

Reid Spencer reid at x10sys.com
Wed Aug 9 15:33:33 PDT 2006



Changes in directory llvm-www/demo:

index.cgi updated: 1.61 -> 1.62
---
Log message:

Remove temporary hack!


---
Diffs of the changes:  (+4 -4)

 index.cgi |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.61 llvm-www/demo/index.cgi:1.62
--- llvm-www/demo/index.cgi:1.61	Wed Aug  9 17:31:44 2006
+++ llvm-www/demo/index.cgi	Wed Aug  9 17:33:19 2006
@@ -5,13 +5,13 @@
 # doing remote web JO99C compilations.  (It could still be used for that
 # purpose, though the two scripts have diverged somewhat.)
 #
-# Last modified $Date: 2006/08/09 22:31:44 $
+# Last modified $Date: 2006/08/09 22:33:19 $
 #
 
 use strict;
 use CGI;
 use POSIX;
-# use Mail::Send;
+use Mail::Send;
 
 $| = 1;
 
@@ -105,8 +105,8 @@
 
 sub mailto {
     my ( $recipient, $body ) = @_;
-    my $msg = "Nada";
-#      new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
+    my $msg =
+      new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
     my $fh = $msg->open();
     print $fh $body;
     $fh->close();






More information about the llvm-commits mailing list