문제

MIT 라이선스 아래에서 라이센스가 부여 된 내 프로젝트에 오픈 소스 라이브러리를 포함하지만, 속성이 필요한 BSD 라이센스 코드가 포함되어 있지 않지만 (프로젝트 내부에서 올바르게 기인 한 것으로 올바르게 기인 함)이 포함 된 것입니다.해당 라이브러리를 사용하십시오.일반적으로 이것은 문제가 아닙니다 (나는 라이센스에 관계없이 모두를 크레딧 할 것입니다). 모바일 플랫폼에서는 이러한 라이센스를 표시 / 번들하는 데 많은 부동산 또는 효율적인 방법이 아닙니다.

도움이 되었습니까?

해결책

BSD는 앱을 aspplication의 GUI 에서 작성자 을 크레딧하도록 요구하지는 않습니다.

사실 4-clause 라이센스 (원래 "BSD 라이센스") 만이 응용 프로그램의 소스 코드 및 이진 코드 외부의 속성이 필요합니다.

다음과 같이 상태가 있습니다.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
   notice, this list of conditions and the following disclaimer.
2. 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.
3. All advertising materials mentioning features or use of this software
   must display the following acknowledgement:
   This product includes software developed by the <organization>.
4. Neither the name of the <organization> 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 <COPYRIGHT HOLDER> ''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 <COPYRIGHT HOLDER> 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.
.

개정 된 3 절 라이센스가 절단 # 3 절을 삭제했습니다.

나중에 (FreeBSD) 2-Clause 라이센스도 제거 절 # 4 절을 제거했습니다.

라이브러리가 BSD 라이센스를 사용하는 경우 GUI의 어딘가에 속성이 필요합니다.

이 경우 응용 프로그램에 colophon 페이지를 추가하는 것이 해결책 일 수 있습니다.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 softwareengineering.stackexchange
scroll top