]> asedeno.scripts.mit.edu Git - PuTTY.git/blobdiff - unix/gtkmain.c
Include 'build info' in all --version text and About boxes.
[PuTTY.git] / unix / gtkmain.c
index a7b4a4e918681002b50771dd4423a4c93a6ccd84..c681b93d825d174e726a6ead9e679e0001f0ca0b 100644 (file)
@@ -287,10 +287,13 @@ static void help(FILE *fp) {
 }
 
 static void version(FILE *fp) {
-    if(fprintf(fp, "%s: %s\n", appname, ver) < 0 || fflush(fp) < 0) {
+    char *buildinfo_text = buildinfo("\n");
+    if(fprintf(fp, "%s: %s\n%s\n", appname, ver, buildinfo_text) < 0 ||
+       fflush(fp) < 0) {
        perror("output error");
        exit(1);
     }
+    sfree(buildinfo_text);
 }
 
 static struct gui_data *the_inst;