* The LZMA compression module for NSIS is now licensed under the Common Public License version 1.0
* Added license and copyright notice to every source file * The new COPYING file and license section in the Users Manual list the terms of all relevant licenses git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4787 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
737da25610
commit
e497d771b1
127 changed files with 2159 additions and 820 deletions
|
@ -1,35 +1,18 @@
|
|||
/*
|
||||
|
||||
Nullsoft Scriptable Install System (NSIS)
|
||||
makensis.cpp - installer compiler code
|
||||
|
||||
Copyright (C) 1999-2006 Nullsoft, Inc.
|
||||
|
||||
This license applies to everything in the NSIS package, except where otherwise noted.
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
|
||||
This is the zlib/libpng license, which is approved by opensource.org.
|
||||
|
||||
Portions Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler (zlib).
|
||||
Portions Copyright (C) 1996-2002 Julian R Seward (bzip2).
|
||||
Portions Copyright (C) 1999-2003 Igor Pavlov (lzma).
|
||||
|
||||
*/
|
||||
/*
|
||||
* makenssi.cpp
|
||||
*
|
||||
* This file is a part of NSIS.
|
||||
*
|
||||
* Copyright (C) 1999-2006 Nullsoft and Contributors
|
||||
*
|
||||
* Licensed under the zlib/libpng license (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
*
|
||||
* Licence details can be found in the file COPYING.
|
||||
*
|
||||
* This software is provided 'as-is', without any express or implied
|
||||
* warranty.
|
||||
*/
|
||||
|
||||
#include "Platform.h"
|
||||
#include <stdio.h>
|
||||
|
@ -109,19 +92,15 @@ static void init_signals()
|
|||
|
||||
static void print_logo()
|
||||
{
|
||||
fprintf(g_output,"MakeNSIS %s - Copyright 1999-2006 Nullsoft, Inc.\n"
|
||||
"\n"
|
||||
"Portions Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler (zlib).\n"
|
||||
"Portions Copyright (C) 1996-2002 Julian R Seward (bzip2).\n"
|
||||
"Portions Copyright (C) 1999-2003 Igor Pavlov (lzma).\n"
|
||||
"\n"
|
||||
"Contributors: nnop@newmail.ru, Ryan Geiss, Andras Varga, Drew Davidson, Peter Windridge, Dave Laundon, Robert Rainwater, Yaroslav Faybishenko, Jeff Doozan, Amir Szekely, Ximon Eighteen, et al.\n\n",NSIS_VERSION);
|
||||
fprintf(g_output,"MakeNSIS %s - Copyright 1995-2006 Contributors\n"
|
||||
"See the file COPYING for license details.\n"
|
||||
"Credits can be found in the Users Manual.\n\n"
|
||||
fflush(g_output);
|
||||
}
|
||||
|
||||
static void print_license()
|
||||
{
|
||||
fprintf(g_output,"Copyright (C) 1999-2006 Nullsoft, Inc.\n\n"
|
||||
fprintf(g_output,"Copyright (C) 1999-2006 Nullsoft and Contributors\n\n"
|
||||
"This license applies to everything in the NSIS package, except where otherwise\nnoted.\n\n"
|
||||
"This software is provided 'as-is', without any express or implied warranty.\n"
|
||||
"In no event will the authors be held liable for any damages arising from the\n"
|
||||
|
@ -135,7 +114,10 @@ static void print_license()
|
|||
" appreciated but is not required.\n"
|
||||
" 2. Altered source versions must be plainly marked as such, and must not be\n"
|
||||
" misrepresented as being the original software.\n"
|
||||
" 3. This notice may not be removed or altered from any source distribution.\n\n");
|
||||
" 3. This notice may not be removed or altered from any source distribution.\n\n"
|
||||
"In addition to this license, different licenses apply to the included compression\n"
|
||||
"modules. See the file COPYING for details.\n\n"
|
||||
);
|
||||
fflush(g_output);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue