1 /*
2 **
3 ** versionp.h
4 **
5 ** Copyright (C) 1995, 1996, 1997 Johannes Plass
6 ** Copyright (C) 2004 Jose E. Marchesi
7 **
8 ** This program is free software; you can redistribute it and/or modify
9 ** it under the terms of the GNU General Public License as published by
10 ** the Free Software Foundation; either version 3 of the License, or
11 ** (at your option) any later version.
12 **
13 ** This program is distributed in the hope that it will be useful,
14 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
15 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 ** GNU General Public License for more details.
17 **
18 ** You should have received a copy of the GNU General Public License
19 ** along with GNU gv; see the file COPYING.  If not, write to
20 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 ** Boston, MA 02111-1307, USA.
22 **
23 ** Author:   Johannes Plass (plass@thep.physik.uni-mainz.de)
24 **           Department of Physicss
25 **           Johannes Gutenberg-University
26 **           Mainz, Germany
27 **
28 **           Jose E. Marchesi (jemarch@gnu.org)
29 **           GNU Project
30 **
31 */
32 
33 #ifndef _GV_VERSIONP_H_
34 #define _GV_VERSIONP_H_
35 
36 #include "version.h"
37 
38 #define  VERSION_SHELL_TITLE	"gv Copyright Information"
39 #define  VERSION_TOPLEVEL	toplevel       			/* the Application Shell   */
40 #define  VERSION_APPLIC_CONTEXT	app_con  			/* the Application Context */
41 
42 char *versionIdentification[] = {
43         "gv 3.7.4",
44         "March 2013",
45 	0
46 };
47 
48 /*
49    declare it writable due to problems with sscanf() in main_versionIsCompatible()
50    on HP/UX 9.07
51    [suggested by Christian Illinger (illinger@lepsi.in2p3.fr)]
52 */
53 char versionResource[] = "gv 3.6.7.90";
54 char versionCompatibility[] = "gv 3.6.7.90";
55 
56 char * copyright = "\
57  gv -- An X11 user interface for Ghostscript. \n\
58  \n\
59  Copyright (C) 1992-1997  Johannes Plass, Timothy O. Theisen  \n\
60  Copyright (C) 2004,2005,2006,2007 Jose E. Marchesi \n\
61  Copyright (C) 2007,2008,2009,2010 Markus Steinborn \n\
62  \n\
63  This program is free software; you can redistribute it and/or modify \n\
64  it under the terms of the GNU General Public License as published by \n\
65  the Free Software Foundation; either version 3 of the License, or \n\
66  (at your option) any later version. \n\
67  \n\
68  This program is distributed in the hope that it will be useful, \n\
69  but WITHOUT ANY WARRANTY; without even the implied warranty of \n\
70  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the \n\
71  GNU General Public License for more details. \n\
72  \n\
73  You should have received a copy of the GNU General Public License\n\
74  along with GNU gv; see the file COPYING.  If not, see\n\
75  <http://www.gnu.org/licenses/>.";
76 
77 char *author[] = {
78 "\
79    GNU Maintainer:      Markus Steinborn (gnugv_maintainer@yahoo.de)\n\
80    Original Author:     Johannes Plass\n\
81 \n\
82    %s\n\
83 \n\
84    See the `AUTHORS' file for a complete contributors list\
85 ",
86 "\
87  Please send error reports to:  bug-gv@gnu.org \n\
88 ",
89 0
90 };
91 
92 #endif /* _GV_VERSIONP_H_ */
93