annotate admin/notes/copyright @ 75465:34448acdaf7e

Initial version.
author Glenn Morris <rgm@gnu.org>
date Sun, 28 Jan 2007 02:51:26 +0000
parents
children f7861c313ea4
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75465
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
1 NOTES ON COPYRIGHTS AND LICENSES
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
2
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
3 Some terminology:
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
4
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
5 A "copyright notice" consists of one or a few lines of this format:
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
6 "Copyright (C) 2006, 2007 Free Software Foundation, Inc."
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
7
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
8 A "license notice" is a statement of permissions, and is usually much
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
9 longer, eg the text "GNU Emacs is free software...".
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
10
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
11
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
12 Every non-trivial file distributed through the Emacs CVS should be
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
13 self-explanatory in terms of copyright and license. This includes
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
14 files that are not distributed in Emacs releases (for example, the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
15 admin/ directory), because the whole Emacs CVS is publicly
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
16 available.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
17
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
18 The definition of triviality is a little vague, but a rule of thumb is
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
19 that any file with less than 15 lines of actual content is trivial. If
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
20 a file is auto-generated (eg ldefs-boot.el) from another one in the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
21 CVS, then it does not really matter about adding a copyright statement
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
22 to the generated file.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
23
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
24 The years in the copyright notice should be updated every year (see
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
25 file "years" in this directory). The PS versions of refcards etc
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
26 should display copyright notices (an exception to the rule about
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
27 "generated" files), but these can just display the latest year. The
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
28 full list of years should be kept in comments in the source file. If
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
29 these are distributed in CVS, check in a regenerated version when the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
30 tex files are updated.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
31
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
32 Copyright changes should be propagated to any associated repositories
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
33 (eg Gnus, MH-E), but I think in every case this happens automatically
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
34 (?).
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
35
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
36 All README (and other such text files) that are non-trivial and were
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
37 added by Emacs developers need copyright and copying permission
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
38 statements (see eg INSTALL in the top-level directory).
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
39
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
40 All images files that allow for comments should have copyright and
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
41 license statements. Whether or not this is possible, the information
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
42 should be recorded in a README file in each directory with images.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
43
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
44 When installing a file with an "unusual" license (after checking first
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
45 it is ok), put a copy of the copyright and license in the file (if
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
46 possible. It's ok if this makes the file incompatible with its
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
47 original format, if it can still be used by Emacs), or in a README
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
48 file in the relevant directory.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
49
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
50 The vast majority of files are copyright FSF and distributed under the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
51 GPL. A few files (mainly related to language and charset support) are
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
52 copyright AIST alone, or both AIST and FSF. (Contact Kenichi Handa
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
53 with questions about legal issues in such files.) In all these cases,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
54 the copyright years in each file should be updated each year.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
55
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
56 There are some exceptions to the points in the previous paragraph, and
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
57 these are listed below for reference, together with any files where
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
58 the copyright needs to be updated in "unusual" ways.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
59
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
60 If you find any other such cases, please consult to check they are ok,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
61 and note them in this file. This includes missing copyright notices,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
62 and "odd" copyright holders. In most cases, individual authors should
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
63 not appear in copyright statements. Either the copyright has been
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
64 assigned (check copyright.list) to the FSF (in which case the original
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
65 author should be removed and the year(s) transferred to the FSF); or
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
66 else it is possible the file should not be in Emacs at all (please
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
67 report!).
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
68
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
69 [For reference, most of these points were established via email with
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
70 rms, 2007/1, "Copyright years".]
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
71
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
72
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
73 <top-level>/install-sh
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
74 lispintro/install-sh
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
75 - this file is copyright MIT, which is OK. Leave the copyright alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
76
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
77 etc/edt-user.doc
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
78 - update BOTH notices in this file
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
79
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
80 leim/CXTERM-DIC/4Corner.tit, ARRAY30.tit, [CCDOSPY.tit], ECDICT.tit,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
81 ETZY.tit, [PY-b5.tit], Punct-b5.tit, Punct.tit, QJ-b5.tit, QJ.tit,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
82 [SW.tit, TONEPY.tit,] ZOZY.tit
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
83 - leave the copyrights alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
84
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
85 leim/MISC-DIC/CTLau-b5.html, CTLau.html, cangjie-table.b5, cangjie-table.cns,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
86 [pinyin.map, ziranma.cin]
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
87 - leave the copyright alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
88
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
89 leim/SKK-DIC/SKK-JISYO.L
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
90 ja-dic/ja-dic.el
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
91 (the latter is auto-generated from the former). Leave the copyright alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
92
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
93 lib-src/etags.c
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
94 - this has a copyright Ken Arnold. We are still deciding what should
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
95 be done here (see below).
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
96
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
97 lib-src/getopt1.c, getopt_int.h
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
98 - these are from the GNU C library. Leave the copyrights alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
99
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
100 lispref/doclicense.texi
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
101 man/doclicense.texi
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
102 - leave the copyright alone in this imported file.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
103
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
104 lisp/net/tramp.el
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
105 - there are also copyrights in the body of the file. Update these too.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
106
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
107 msdos/is_exec.c, sigaction.c
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
108 - these files are copyright DJ Delorie. Leave the copyrights alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
109
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
110 src/gmalloc.c
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
111 - contains numerous copyrights from the GNU C library. Leave them alone.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
112
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
113
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
114 *** These are copyright issues still to be addressed:
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
115
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
116
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
117 All README (and other such files) that are non-trivial and were added
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
118 by Emacs developers need copyright statements and copying permissions
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
119 to be added.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
120
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
121
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
122 All images files that allow for comments should have copyright and
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
123 license statements added. Whether or not this is possible, the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
124 information should be recorded in a README file in each directory with
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
125 images.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
126
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
127
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
128 admin/check-doc-strings
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
129 Author is Martin Buchholz, but no assignment from him on file, and
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
130 rms has no way to reach him.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
131 admin/make-announcement - no copyright
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
132 admin/nt/makedist.bat - no copyright
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
133 etc/ms-kermit - no copyright, but ms-7bkermit has one
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
134 etc/e/eterm-color.ti - no copyright
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
135 rms: "I think that is not copyrightable under the merger doctrine
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
136 because the entries are all forced. At least that is the case in the
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
137 US; I am not sure whether we can rely on that in general."
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
138
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
139 For the above files, mail sent froam rms to Matthew (Martin?) Norwood
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
140 asking what to do (via Eben Moglen), 2007/1/22 ("Copyright years").
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
141
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
142
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
143 etc/gnus-refcard.tex
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
144 I (rgm) think the "Gnus Bugfixing Girls + Boys" copyright should
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
145 probably be removed, but it may be ok (waiting for rms)
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
146
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
147
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
148 etc/orgcard.tex - no Rooke in copyright.list
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
149 rms will talk with Org mode author about this.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
150
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
151
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
152 etc/sk-refcard.ps, pl-refcard.ps, cs-refcard.ps
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
153 These refcards need to be regenerated (by those with suitable TeX
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
154 setups) to get updated copyrights.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
155
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
156
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
157 leim/CXTERM-DIC/CCDOSPY.tit, PY-b5.tit, SW.tit, TONEPY.tit
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
158 leim/MISC-DIC/pinyin.map, ziranma.cin
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
159 The copyright and license is stated in the README file, but we may as
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
160 well copy them into the files themselves (possibly at the expense of
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
161 making them incompatible with their original formats, but they will
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
162 still be usable by Emacs). [Kenichi Handa]
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
163
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
164
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
165 lib-src/etags.c - no 'k.* arnold' in copyright.list'
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
166 rms: "That is ok, in principle. I used free code released by Ken
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
167 Arnold as the starting point. However, it may be that we need to get
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
168 and insert whatever his license was for his code."
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
169
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
170
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
171 lwlib/lwlib-int.h, lwlib.h - no copyright
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
172 lwlib/Makefile.in, lwlib-utils.c, lwlib.c - copyright Lucid
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
173 lwlib/lwlib-Xaw.c - copyright Chuck Thompson
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
174 lwlib/lwlib.c - copyright Lucid, but FSF copyright was added in 2002 -
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
175 was that correct?
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
176 rms: "I asked Matthew Norwood about these, I believe."
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
177
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
178
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
179 msdos/
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
180 - do we need to add COPYING.LIB (because COPYING.DJ refers to it)?
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
181
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
182
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
183 oldXMenu/
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
184 - should there be any FSF copyrights at all in here? Some were added
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
185 in 2005, without licence notices. Was this right?
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
186 oldXMenu/Makefile.in, Makefile, Imakefile, descrip.mms, insque.c
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
187 - issues described in mail to rms, 2006/12/17.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
188 rms: "I have asked for lawyer's advice about these."
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
189
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
190
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
191 src/acldef.h, chpdef.h, gnu.h, ndir.h
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
192 src/m/mips4.h, news-r6.h, news-risc.h, pmax.h
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
193 src/s/aix3-2.h, bsd386.h, hpux8.h, hpux9.h, irix4-0.h, irix5-0.h,
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
194 isc2-2.h, netbsd.h, osf1.h, sol2-3.h, sunos4-0.h, umips.h, usg5-4-2.h
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
195 - all these (not obviously trivial) files are missing copyrights.
34448acdaf7e Initial version.
Glenn Morris <rgm@gnu.org>
parents:
diff changeset
196 rms: "I should talk about these with Matthew Norwood."