+ -
当前位置:首页 → 问答吧 → BSD许可证怎样发布

BSD许可证怎样发布

时间:2011-07-21

来源:互联网

公司开发一款商业用软件,会使用一个基于BSD协议发布的Lib,按照BSD协议的要求,需要在产品中发布BSD的许可证。
类似于以下的说明:
Copyright (c) 2000-2003 Intel Corporation 
All rights reserved. 

Redistribution and use in source and binary forms, with or without 
modification, are permitted provided that the following conditions are met: 

* Redistributions of source code must retain the above copyright notice, 
  this list of conditions and the following disclaimer. 
* Redistributions in binary form must reproduce the above copyright notice, 
  this list of conditions and the following disclaimer in the documentation 
  and/or other materials provided with the distribution. 
* Neither name of Intel Corporation nor the names of its contributors 
  may be used to endorse or promote products derived from this software 
  without specific prior written permission.
 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL OR 
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

由于没有相关的经验,不知道应该怎样发布以上的信息。以下疑问请高手给予解答。
1、该声明是体现在SourceCode里,还是需要额外做成一个文本文件,作为产品的一部分单独声明?
2、我们做的是嵌入式产品,在最终产品面向市场时,在用户手册或产品说明书中是否
需要加入BSD协议的声明?

因为我们是国外的客户,非常看重版权的问题,绝对不能使用未经授权的产品,同时也不希望因为版权问题产生不必要的纠纷,所以急需知道BSD许可证的发布方式。
请各位高手不吝赐教。

作者: liuzelei1   发布时间: 2011-07-21

* Redistributions of source code must retain the above copyright notice, 
  this list of conditions and the following disclaimer. 
* Redistributions in binary form must reproduce the above copyright notice, 
  this list of conditions and the following disclaimer in the documentation 
  and/or other materials provided with the distribution. 
* Neither name of Intel Corporation nor the names of its contributors 
  may be used to endorse or promote products derived from this software 
  without specific prior written permission.

其实License本身已经说得很清楚了。
1. 在源代码中保留版权声明。
2. 在二进制文件中显示版权声明。
例如:
Windows程序的Help->About对话框
Linux程序的--version选项中显示版权信息等。
3. 。。。

作者: mymtom   发布时间: 2011-07-24

按楼上的做吧,其实在国内,不声明许可证也没事……

作者: jackyjkchen   发布时间: 2011-07-24