summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'devices/gdevpng.c')
-rw-r--r--devices/gdevpng.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/devices/gdevpng.c b/devices/gdevpng.c
index 554c664c..e9e776b5 100644
--- a/devices/gdevpng.c
+++ b/devices/gdevpng.c
@@ -632,6 +632,10 @@ do_png_print_page(gx_device_png * pdev, gp_file * file, bool monod)
num_palette = 0;
}
/* add comment */
+#ifdef CLUSTER
+ strncpy(software_key, "GPL Ghostscript", sizeof(software_key));
+ strncpy(software_text, "GPL Ghostscript", sizeof(software_text));
+#else
strncpy(software_key, "Software", sizeof(software_key));
{
int major = (int)(gs_revision / 1000);
@@ -640,6 +644,7 @@ do_png_print_page(gx_device_png * pdev, gp_file * file, bool monod)
gs_snprintf(software_text, sizeof(software_text), "%s %d.%02d.%d", gs_product, major, minor, patch);
}
+#endif
text_png.compression = -1; /* uncompressed */
text_png.key = software_key;
text_png.text = software_text;