summaryrefslogtreecommitdiff
path: root/gl/version-etc.c
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-06-09 06:24:41 +0200
committerSimon Josefsson <simon@josefsson.org>2009-06-09 06:24:41 +0200
commit459707aadf418bf3534a390faa1a39e7cd0825eb (patch)
treef59717fe1344d6f532e0d907e75316d782780317 /gl/version-etc.c
parent73b63a43c22cf260589744c85487d2d0af245c7d (diff)
downloadgnutls-459707aadf418bf3534a390faa1a39e7cd0825eb.tar.gz
Update gnulib files.
Diffstat (limited to 'gl/version-etc.c')
-rw-r--r--gl/version-etc.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/gl/version-etc.c b/gl/version-etc.c
index 2258c2e21d..c3b028926b 100644
--- a/gl/version-etc.c
+++ b/gl/version-etc.c
@@ -59,6 +59,15 @@ version_etc_va (FILE *stream,
else
fprintf (stream, "%s %s\n", package, version);
+#ifdef PACKAGE_PACKAGER
+# ifdef PACKAGE_PACKAGER_VERSION
+ fprintf (stream, _("Packaged by %s (%s)\n"), PACKAGE_PACKAGER,
+ PACKAGE_PACKAGER_VERSION);
+# else
+ fprintf (stream, _("Packaged by %s\n"), PACKAGE_PACKAGER);
+# endif
+#endif
+
/* TRANSLATORS: Translate "(C)" to the copyright symbol
(C-in-a-circle), if this symbol is available in the user's
locale. Otherwise, do not translate "(C)"; leave it as-is. */
@@ -179,6 +188,10 @@ emit_bug_reporting_address (void)
"Report translation bugs to <...>\n" with the address for translation
bugs (typically your translation team's web or email address). */
printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
+#ifdef PACKAGE_PACKAGER_BUG_REPORTS
+ printf (_("Report %s bugs to <%s>.\n"), PACKAGE_PACKAGER,
+ PACKAGE_PACKAGER_BUG_REPORTS);
+#endif
printf (_("%s home page: <http://www.gnu.org/software/%s/>.\n"),
PACKAGE_NAME, PACKAGE);
fputs (_("General help using GNU software: <http://www.gnu.org/gethelp/>.\n"),