Make text appear in GUI console, Zip install works.

Move TW zip install code to C++ so that it can use the
ui->functions.
Bring in mincrypt code to fix a crash during signature
checking.
diff --git a/gui/console.cpp b/gui/console.cpp
index 6d53ed1..b7713c7 100644
--- a/gui/console.cpp
+++ b/gui/console.cpp
@@ -38,6 +38,8 @@
     vsnprintf(buf, 512, fmt, ap);
     va_end(ap);
 
+	fputs(buf, stdout);
+
     char *start, *next;
 
 	if (buf[0] == '\n' && strlen(buf) < 2) {
@@ -75,6 +77,8 @@
     vsnprintf(buf, 512, fmt, ap);
     va_end(ap);
 
+	fputs(buf, stdout);
+
     // Pop the last line, and we can continue
     if (!gConsole.empty())   gConsole.pop_back();