1 /*
2 
3   license.h - WordNet license and copyright notice
4 
5 */
6 
7 /* $Id: license.h,v 1.13 2003/06/05 15:29:17 wn Exp $ */
8 
9 #ifdef unix
10 
11 static char *license = "\
12 This software and database is being provided to you, the LICENSEE, by  \n\
13 Princeton University under the following license.  By obtaining, using  \n\
14 and/or copying this software and database, you agree that you have  \n\
15 read, understood, and will comply with these terms and conditions.:  \n\
16   \n\
17 Permission to use, copy, modify and distribute this software and  \n\
18 database and its documentation for any purpose and without fee or  \n\
19 royalty is hereby granted, provided that you agree to comply with  \n\
20 the following copyright notice and statements, including the disclaimer,  \n\
21 and that the same appear on ALL copies of the software, database and  \n\
22 documentation, including modifications that you make for internal  \n\
23 use or for distribution.  \n\
24   \n\
25 WordNet 2.0 Copyright 2003 by Princeton University.  All rights reserved.  \n\
26   \n\
27 THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON  \n\
28 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR  \n\
29 IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON  \n\
30 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-  \n\
31 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE  \n\
32 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT  \n\
33 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR  \n\
34 OTHER RIGHTS.  \n\
35   \n\
36 The name of Princeton University or Princeton may not be used in  \n\
37 advertising or publicity pertaining to distribution of the software  \n\
38 and/or database.  Title to copyright in this software, database and  \n\
39 any associated documentation shall at all times remain with  \n\
40 Princeton University and LICENSEE agrees to preserve same.  \n"
41 ;
42 #else
43 
44 static char *license[] = {
45 "This software and database is being provided to you, the LICENSEE, by  \n",
46 "Princeton University under the following license.  By obtaining, using  \n",
47 "and/or copying this software and database, you agree that you have  \n",
48 "read, understood, and will comply with these terms and conditions.:  \n  \n",
49 "Permission to use, copy, modify and distribute this software and  \n",
50 "database and its documentation for any purpose and without fee or  \n",
51 "royalty is hereby granted, provided that you agree to comply with  \n",
52 "the following copyright notice and statements, including the disclaimer,  \n",
53 "and that the same appear on ALL copies of the software, database and  \n",
54 "documentation, including modifications that you make for internal  \n",
55 "use or for distribution.  \n  \n",
56 "WordNet 2.0 Copyright 2003 by Princeton University.  All rights reserved.  \n  \n",
57 "THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON  \n",
58 "UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR  \n",
59 "IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON  \n",
60 "UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-  \n",
61 "ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE  \n",
62 "OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT  \n",
63 "INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR  \n",
64 "OTHER RIGHTS.  \n  \n",
65 "The name of Princeton University or Princeton may not be used in  \n",
66 "advertising or publicity pertaining to distribution of the software  \n",
67 "and/or database.  Title to copyright in this software, database and  \n",
68 "any associated documentation shall at all times remain with  \n",
69 "Princeton University and LICENSEE agrees to preserve same.  \n", NULL};
70 
71 #endif
72 
73 static char dblicense[] = "\
74   1 This software and database is being provided to you, the LICENSEE, by  \n\
75   2 Princeton University under the following license.  By obtaining, using  \n\
76   3 and/or copying this software and database, you agree that you have  \n\
77   4 read, understood, and will comply with these terms and conditions.:  \n\
78   5   \n\
79   6 Permission to use, copy, modify and distribute this software and  \n\
80   7 database and its documentation for any purpose and without fee or  \n\
81   8 royalty is hereby granted, provided that you agree to comply with  \n\
82   9 the following copyright notice and statements, including the disclaimer,  \n\
83   10 and that the same appear on ALL copies of the software, database and  \n\
84   11 documentation, including modifications that you make for internal  \n\
85   12 use or for distribution.  \n\
86   13   \n\
87   14 WordNet 2.0 Copyright 2003 by Princeton University.  All rights reserved.  \n\
88   15   \n\
89   16 THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON  \n\
90   17 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR  \n\
91   18 IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PRINCETON  \n\
92   19 UNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES OF MERCHANT-  \n\
93   20 ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE  \n\
94   21 OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT  \n\
95   22 INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR  \n\
96   23 OTHER RIGHTS.  \n\
97   24   \n\
98   25 The name of Princeton University or Princeton may not be used in  \n\
99   26 advertising or publicity pertaining to distribution of the software  \n\
100   27 and/or database.  Title to copyright in this software, database and  \n\
101   28 any associated documentation shall at all times remain with  \n\
102   29 Princeton University and LICENSEE agrees to preserve same.  \n"
103 ;
104 
105 #define DBLICENSE_SIZE 	(sizeof(dblicense))
106 
107 /*
108   Revision log:
109 
110   $Log: license.h,v $
111   Revision 1.13  2003/06/05 15:29:17  wn
112   updated for 2.0
113 
114   Revision 1.12  2001/11/27 19:45:33  wn
115   updated for 1.7.1
116 
117   Revision 1.11  2001/02/16 18:44:35  wn
118   updated for 1.7
119 
120   Revision 1.10  1997/08/28 17:15:20  wn
121   fixed typos
122 
123  * Revision 1.9  1997/08/28  16:39:27  wn
124  * updated for 1.6
125  *
126  * Revision 1.8  1995/02/07  16:11:06  wn
127  * moved dblicense to outside ifdef
128  *
129  * Revision 1.7  1995/01/20  20:10:28  wn
130  * added stuff to help find size of license and dbfiles
131  *
132  * Revision 1.6  1994/12/22  17:34:50  wn
133  * updated for 1.5
134  *
135  * Revision 1.5  1993/07/01  16:34:27  wn
136  * upgraded text to 1.4, 1993
137  *
138  * Revision 1.4  92/11/19  11:00:35  wn
139  * updates for Mac and windows port
140  *
141  * Revision 1.3  92/09/08  14:36:22  wn
142  * update to 1.3 release
143  *
144  * Revision 1.2  92/03/26  11:16:48  wn
145  * added WordNet version number
146  *
147  * Revision 1.1  91/11/26  15:09:30  wn
148  * Initial revision
149  *
150  * Revision 1.1  91/09/11  14:43:27  wn
151  * Initial revision
152  *
153 */
154