aboutsummaryrefslogtreecommitdiff
path: root/lib/version.c
blob: d4dd04850e8b274a81ec0be44b25565661e8b6c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* This file is part of Mailfromd.
   Copyright (C) 2007-2008, 2010-2011, 2015-2016 Sergey Poznyakoff

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program.  If not, see <http://www.gnu.org/licenses/>. */

#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include <stdio.h>
#include <gettext.h>
#define _(String) gettext(String)

const char mailfromd_version_etc_copyright[] =
  /* Do *not* mark this string for translation.  %s is a copyright
     symbol suitable for this locale, and %d is the copyright
     year.  */
  "Copyright %s 2005, 2006, 2007, 2008, 2009, 2010 Sergey Poznyakoff";

void
mailfromd_version(const char *progname, FILE *stream)
{
#ifdef GIT_DESCRIBE
	fprintf (stream, "%s (%s) %s [%s]\n",
		 progname, PACKAGE, PACKAGE_VERSION, GIT_DESCRIBE);
#else
	fprintf (stream, "%s (%s) %s\n", progname, PACKAGE, PACKAGE_VERSION);
#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.  */
	fprintf (stream, mailfromd_version_etc_copyright, _("(C)"));

	fputs (_("\
\n\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\
This is free software: you are free to change and redistribute it.\n\
There is NO WARRANTY, to the extent permitted by law.\n\
\n\
"),
	       stream);
	
	/* TRANSLATORS: %s denotes an author name.  */
	fprintf (stream, _("Written by %s.\n"), "Sergey Poznyakoff");
}
	

Return to:

Send suggestions and report system problems to the System administrator.