5

GPL プログラムの場合、プログラムの冒頭に追加できる小さな通知があります: ( http://www.gnu.org/licenses/gpl-3.0.en.html )

<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year>  <name of author>

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 of the License, 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/>.

しかし、LGPL のページには同等のものが提供されていません: http://www.gnu.org/licenses/lgpl.html

では、LGPL プログラムの GPL 通知に相当するものは何ですか?

4

1 に答える 1

6

http://www.gnu.org/licenses/gpl-howto.htmlによると

このステートメントは、すべてのソース ファイルの先頭近く、著作権表示の近くに配置する必要があります。Lesser GPL を使用する場合は、「General」の前に「Lesser」という単語を 3 つの場所すべてに挿入してください。GNU AGPL を使用する場合は、3 か所すべての「General」の前に「Affero」という単語を挿入します。

ここで、「この声明」は、元の質問に投稿された GPL の小さな通知です。

于 2012-12-30T20:10:52.607 に答える