From 9fd7d4ef3655caef070ba9b13d44c2a28da49641 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 5 Dec 2009 21:23:57 +0000 Subject: [PATCH] fixed bug #2892444 - missing license file (jnetlib.h), it's all zlib git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6003 212acab6-be3b-0410-9dea-997c60f758d6 --- Contrib/Makensisw/jnetlib/asyncdns.cpp | 2 +- Contrib/Makensisw/jnetlib/asyncdns.h | 2 +- Contrib/Makensisw/jnetlib/connection.cpp | 2 +- Contrib/Makensisw/jnetlib/connection.h | 2 +- Contrib/Makensisw/jnetlib/httpget.cpp | 2 +- Contrib/Makensisw/jnetlib/httpget.h | 2 +- Contrib/Makensisw/jnetlib/netinc.h | 2 +- Contrib/Makensisw/jnetlib/util.cpp | 2 +- Contrib/Makensisw/jnetlib/util.h | 2 +- Contrib/NSISdl/asyncdns.cpp | 2 +- Contrib/NSISdl/asyncdns.h | 2 +- Contrib/NSISdl/connection.cpp | 2 +- Contrib/NSISdl/connection.h | 2 +- Contrib/NSISdl/httpget.cpp | 2 +- Contrib/NSISdl/httpget.h | 2 +- Contrib/NSISdl/netinc.h | 2 +- Contrib/NSISdl/util.cpp | 2 +- Contrib/NSISdl/util.h | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Contrib/Makensisw/jnetlib/asyncdns.cpp b/Contrib/Makensisw/jnetlib/asyncdns.cpp index 4789bdac..a73adc05 100644 --- a/Contrib/Makensisw/jnetlib/asyncdns.cpp +++ b/Contrib/Makensisw/jnetlib/asyncdns.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: asyncdns.cpp - JNL portable asynchronous DNS implementation -** License: see jnetlib.h +** License: zlib */ diff --git a/Contrib/Makensisw/jnetlib/asyncdns.h b/Contrib/Makensisw/jnetlib/asyncdns.h index a8bbb466..69b92979 100644 --- a/Contrib/Makensisw/jnetlib/asyncdns.h +++ b/Contrib/Makensisw/jnetlib/asyncdns.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: asyncdns.h - JNL portable asynchronous DNS interface -** License: see jnetlib.h +** License: zlib ** ** Usage: ** 1. Create JNL_AsyncDNS object, optionally with the number of cache entries. diff --git a/Contrib/Makensisw/jnetlib/connection.cpp b/Contrib/Makensisw/jnetlib/connection.cpp index 38d5f293..29eef953 100644 --- a/Contrib/Makensisw/jnetlib/connection.cpp +++ b/Contrib/Makensisw/jnetlib/connection.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: connection.cpp - JNL TCP connection implementation -** License: see jnetlib.h +** License: zlib */ #include "netinc.h" diff --git a/Contrib/Makensisw/jnetlib/connection.h b/Contrib/Makensisw/jnetlib/connection.h index d77e856c..4a1a4031 100644 --- a/Contrib/Makensisw/jnetlib/connection.h +++ b/Contrib/Makensisw/jnetlib/connection.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: connection.h - JNL TCP connection interface -** License: see jnetlib.h +** License: zlib ** ** Usage: ** 1. Create a JNL_Connection object, optionally specifying a JNL_AsyncDNS diff --git a/Contrib/Makensisw/jnetlib/httpget.cpp b/Contrib/Makensisw/jnetlib/httpget.cpp index a23202ce..232a5dc4 100644 --- a/Contrib/Makensisw/jnetlib/httpget.cpp +++ b/Contrib/Makensisw/jnetlib/httpget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: httpget.cpp - JNL HTTP GET implementation -** License: see jnetlib.h +** License: zlib */ #include "netinc.h" diff --git a/Contrib/Makensisw/jnetlib/httpget.h b/Contrib/Makensisw/jnetlib/httpget.h index ba0790f1..9fb3f43c 100644 --- a/Contrib/Makensisw/jnetlib/httpget.h +++ b/Contrib/Makensisw/jnetlib/httpget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: httpget.h - JNL interface for doing HTTP GETs. -** License: see jnetlib.h +** License: zlib ** ** Usage: ** 1. Create a JNL_HTTPGet object, optionally specifying a JNL_AsyncDNS diff --git a/Contrib/Makensisw/jnetlib/netinc.h b/Contrib/Makensisw/jnetlib/netinc.h index b4d96fda..57262a45 100644 --- a/Contrib/Makensisw/jnetlib/netinc.h +++ b/Contrib/Makensisw/jnetlib/netinc.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: netinc.h - network includes and portability defines (used internally) -** License: see jnetlib.h +** License: zlib */ #ifndef _NETINC_H_ diff --git a/Contrib/Makensisw/jnetlib/util.cpp b/Contrib/Makensisw/jnetlib/util.cpp index 350bb161..2cd60de0 100644 --- a/Contrib/Makensisw/jnetlib/util.cpp +++ b/Contrib/Makensisw/jnetlib/util.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: util.cpp - JNL implementation of basic network utilities -** License: see jnetlib.h +** License: zlib */ #include "netinc.h" diff --git a/Contrib/Makensisw/jnetlib/util.h b/Contrib/Makensisw/jnetlib/util.h index d271fd6c..da5c14e4 100644 --- a/Contrib/Makensisw/jnetlib/util.h +++ b/Contrib/Makensisw/jnetlib/util.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: util.h - JNL interface for basic network utilities -** License: see jnetlib.h +** License: zlib ** ** routines you may be interested in: ** JNL::open_socketlib(); diff --git a/Contrib/NSISdl/asyncdns.cpp b/Contrib/NSISdl/asyncdns.cpp index da3e4d3c..1f75a17e 100644 --- a/Contrib/NSISdl/asyncdns.cpp +++ b/Contrib/NSISdl/asyncdns.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: asyncdns.cpp - JNL portable asynchronous DNS implementation -** License: see jnetlib.h +** License: see License.txt */ diff --git a/Contrib/NSISdl/asyncdns.h b/Contrib/NSISdl/asyncdns.h index f99d3ef7..d6bf1be7 100644 --- a/Contrib/NSISdl/asyncdns.h +++ b/Contrib/NSISdl/asyncdns.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: asyncdns.h - JNL portable asynchronous DNS interface -** License: see jnetlib.h +** License: see License.txt ** ** Usage: ** 1. Create JNL_AsyncDNS object, optionally with the number of cache entries. diff --git a/Contrib/NSISdl/connection.cpp b/Contrib/NSISdl/connection.cpp index b5426544..55e16835 100644 --- a/Contrib/NSISdl/connection.cpp +++ b/Contrib/NSISdl/connection.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: connection.cpp - JNL TCP connection implementation -** License: see jnetlib.h +** License: see License.txt */ #include "netinc.h" diff --git a/Contrib/NSISdl/connection.h b/Contrib/NSISdl/connection.h index d77e856c..e043e352 100644 --- a/Contrib/NSISdl/connection.h +++ b/Contrib/NSISdl/connection.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: connection.h - JNL TCP connection interface -** License: see jnetlib.h +** License: see License.txt ** ** Usage: ** 1. Create a JNL_Connection object, optionally specifying a JNL_AsyncDNS diff --git a/Contrib/NSISdl/httpget.cpp b/Contrib/NSISdl/httpget.cpp index 8761e80f..10a8a0a6 100644 --- a/Contrib/NSISdl/httpget.cpp +++ b/Contrib/NSISdl/httpget.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: httpget.cpp - JNL HTTP GET implementation -** License: see jnetlib.h +** License: see License.txt */ #include "netinc.h" diff --git a/Contrib/NSISdl/httpget.h b/Contrib/NSISdl/httpget.h index c87e1811..02e168b8 100644 --- a/Contrib/NSISdl/httpget.h +++ b/Contrib/NSISdl/httpget.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: httpget.h - JNL interface for doing HTTP GETs. -** License: see jnetlib.h +** License: see License.txt ** ** Usage: ** 1. Create a JNL_HTTPGet object, optionally specifying a JNL_AsyncDNS diff --git a/Contrib/NSISdl/netinc.h b/Contrib/NSISdl/netinc.h index ed8bd002..3eb2c863 100644 --- a/Contrib/NSISdl/netinc.h +++ b/Contrib/NSISdl/netinc.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: netinc.h - network includes and portability defines (used internally) -** License: see jnetlib.h +** License: see License.txt */ #ifndef _NETINC_H_ diff --git a/Contrib/NSISdl/util.cpp b/Contrib/NSISdl/util.cpp index e81b6496..70c329f2 100644 --- a/Contrib/NSISdl/util.cpp +++ b/Contrib/NSISdl/util.cpp @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: util.cpp - JNL implementation of basic network utilities -** License: see jnetlib.h +** License: see License.txt */ #include "netinc.h" diff --git a/Contrib/NSISdl/util.h b/Contrib/NSISdl/util.h index 6be0704c..962c591f 100644 --- a/Contrib/NSISdl/util.h +++ b/Contrib/NSISdl/util.h @@ -3,7 +3,7 @@ ** Copyright (C) 2000-2001 Nullsoft, Inc. ** Author: Justin Frankel ** File: util.h - JNL interface for basic network utilities -** License: see jnetlib.h +** License: see License.txt ** ** routines you may be interested in: ** JNL::open_socketlib();