Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / lib / DtHelp / il / ilversion.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: ilversion.c /main/3 1995/10/23 16:02:54 rswiston $ */
24 /*  /ilc/ilversion.c : Contains the IL version string
25     (which should really be dynamically generated).
26 */
27
28 #include "ilint.h"
29
30 /*
31    Image Library version <external>[ <baselevel>], for <OS> <OS version> '<library name>'
32    WARNING: FIXED FORMAT EXPECTED BY /ilc/iltiffwrite.c !!!
33    See notes below "ilVersionName".
34 */
35
36 #ifdef __hpux 
37     IL_PRIVATE 
38    char _ilVersionString[] = "HP IL BETA v 23.  bl08";
39 /*                                nnnnn vvvvvv bbbb       see below
40                                   xxxxxxxxxxxxxxxxx       total size = 17 chars
41
42         The above version string *must* maintain the syntax and position of all fields
43         before the ";".  The strings have the following format; each string is 5 chars:
44             nnnnn       A 5 char fixed string equal to "HP IL ".
45             vvvvvv      A 6 char string in the format "v!!.??", where !! is the two-digit
46                         major version number (" n" if less than 10), and ?? is the minor
47                         version number ("n " if less than 10).  Examples: "v10.12",
48                         "v 9.6 ".
49             bbbbb       A 4 char string in the format "bl??", where ?? is the baselevel
50                         number (e.g. "bl01", "bl56").
51
52 */
53
54 #else
55
56     IL_PRIVATE
57    char _ilVersionString[] = "@(#)HP IL v 2.1  bl06; Image Library for Domain/OS SR10.X 'il'";
58 /*                                nnnnn vvvvvv bbbb       see above
59                                   xxxxxxxxxxxxxxxxx       total size = 17 chars
60 */
61
62 #endif
63