streams2: Unpipe on dest.emit('close')
[platform/upstream/nodejs.git] / LICENSE
1 Node's license follows:
2
3 ====
4
5 Copyright Joyent, Inc. and other Node contributors. All rights reserved.
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to
8 deal in the Software without restriction, including without limitation the
9 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 sell copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
12
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
15
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 IN THE SOFTWARE.
23
24 ====
25
26 This license applies to all parts of Node that are not externally
27 maintained libraries. The externally maintained libraries used by Node are:
28
29 - V8, located at deps/v8. V8's license follows:
30   """
31     This license applies to all parts of V8 that are not externally
32     maintained libraries.  The externally maintained libraries used by V8
33     are:
34
35       - PCRE test suite, located in
36         test/mjsunit/third_party/regexp-pcre.js.  This is based on the
37         test suite from PCRE-7.3, which is copyrighted by the University
38         of Cambridge and Google, Inc.  The copyright notice and license
39         are embedded in regexp-pcre.js.
40
41       - Layout tests, located in test/mjsunit/third_party.  These are
42         based on layout tests from webkit.org which are copyrighted by
43         Apple Computer, Inc. and released under a 3-clause BSD license.
44
45       - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
46         assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
47         assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
48         assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
49         assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
50         This code is copyrighted by Sun Microsystems Inc. and released
51         under a 3-clause BSD license.
52
53       - Valgrind client API header, located at third_party/valgrind/valgrind.h
54         This is release under the BSD license.
55
56     These libraries have their own licenses; we recommend you read them,
57     as their terms may differ from the terms below.
58
59     Copyright 2006-2012, the V8 project authors. All rights reserved.
60     Redistribution and use in source and binary forms, with or without
61     modification, are permitted provided that the following conditions are
62     met:
63
64         * Redistributions of source code must retain the above copyright
65           notice, this list of conditions and the following disclaimer.
66         * Redistributions in binary form must reproduce the above
67           copyright notice, this list of conditions and the following
68           disclaimer in the documentation and/or other materials provided
69           with the distribution.
70         * Neither the name of Google Inc. nor the names of its
71           contributors may be used to endorse or promote products derived
72           from this software without specific prior written permission.
73
74     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
75     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
76     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
77     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
78     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
79     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
80     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
84     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85   """
86
87 - C-Ares, an asynchronous DNS client, located at deps/cares. C-Ares license
88   follows:
89   """
90     /* Copyright 1998 by the Massachusetts Institute of Technology.
91      *
92      * Permission to use, copy, modify, and distribute this
93      * software and its documentation for any purpose and without
94      * fee is hereby granted, provided that the above copyright
95      * notice appear in all copies and that both that copyright
96      * notice and this permission notice appear in supporting
97      * documentation, and that the name of M.I.T. not be used in
98      * advertising or publicity pertaining to distribution of the
99      * software without specific, written prior permission.
100      * M.I.T. makes no representations about the suitability of
101      * this software for any purpose.  It is provided "as is"
102      * without express or implied warranty.
103   """
104
105 - OpenSSL located at deps/openssl. OpenSSL is cryptographic software written
106   by Eric Young (eay@cryptsoft.com) to provide SSL/TLS encryption. OpenSSL's
107   license follows:
108   """
109     /* ====================================================================
110      * Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
111      *
112      * Redistribution and use in source and binary forms, with or without
113      * modification, are permitted provided that the following conditions
114      * are met:
115      *
116      * 1. Redistributions of source code must retain the above copyright
117      *    notice, this list of conditions and the following disclaimer.
118      *
119      * 2. Redistributions in binary form must reproduce the above copyright
120      *    notice, this list of conditions and the following disclaimer in
121      *    the documentation and/or other materials provided with the
122      *    distribution.
123      *
124      * 3. All advertising materials mentioning features or use of this
125      *    software must display the following acknowledgment:
126      *    "This product includes software developed by the OpenSSL Project
127      *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
128      *
129      * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
130      *    endorse or promote products derived from this software without
131      *    prior written permission. For written permission, please contact
132      *    openssl-core@openssl.org.
133      *
134      * 5. Products derived from this software may not be called "OpenSSL"
135      *    nor may "OpenSSL" appear in their names without prior written
136      *    permission of the OpenSSL Project.
137      *
138      * 6. Redistributions of any form whatsoever must retain the following
139      *    acknowledgment:
140      *    "This product includes software developed by the OpenSSL Project
141      *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
142      *
143      * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
144      * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
145      * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
146      * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
147      * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
148      * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
149      * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
150      * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
151      * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
152      * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
153      * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
154      * OF THE POSSIBILITY OF SUCH DAMAGE.
155      * ====================================================================
156      *
157      * This product includes cryptographic software written by Eric Young
158      * (eay@cryptsoft.com).  This product includes software written by Tim
159      * Hudson (tjh@cryptsoft.com).
160      *
161      */
162   """
163
164 - HTTP Parser, located at deps/http_parser. HTTP Parser's license follows:
165   """
166     http_parser.c is based on src/http/ngx_http_parse.c from NGINX copyright
167     Igor Sysoev.
168
169     Additional changes are licensed under the same terms as NGINX and
170     copyright Joyent, Inc. and other Node contributors. All rights reserved.
171
172     Permission is hereby granted, free of charge, to any person obtaining a copy
173     of this software and associated documentation files (the "Software"), to
174     deal in the Software without restriction, including without limitation the
175     rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
176     sell copies of the Software, and to permit persons to whom the Software is
177     furnished to do so, subject to the following conditions:
178
179     The above copyright notice and this permission notice shall be included in
180     all copies or substantial portions of the Software.
181
182     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
183     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
184     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
185     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
186     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
187     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
188     IN THE SOFTWARE.
189   """
190
191 - Closure Linter is located at tools/closure_linter. Closure's license
192   follows:
193   """
194     # Copyright (c) 2007, Google Inc.
195     # All rights reserved.
196     #
197     # Redistribution and use in source and binary forms, with or without
198     # modification, are permitted provided that the following conditions are
199     # met:
200     #
201     #     * Redistributions of source code must retain the above copyright
202     # notice, this list of conditions and the following disclaimer.
203     #     * Redistributions in binary form must reproduce the above
204     # copyright notice, this list of conditions and the following disclaimer
205     # in the documentation and/or other materials provided with the
206     # distribution.
207     #     * Neither the name of Google Inc. nor the names of its
208     # contributors may be used to endorse or promote products derived from
209     # this software without specific prior written permission.
210     #
211     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
212     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
213     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
214     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
215     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
217     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
218     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
219     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
220     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
221     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
222   """
223
224 - tools/cpplint.py is a C++ linter. Its license follows:
225   """
226     # Copyright (c) 2009 Google Inc. All rights reserved.
227     #
228     # Redistribution and use in source and binary forms, with or without
229     # modification, are permitted provided that the following conditions are
230     # met:
231     #
232     #    * Redistributions of source code must retain the above copyright
233     # notice, this list of conditions and the following disclaimer.
234     #    * Redistributions in binary form must reproduce the above
235     # copyright notice, this list of conditions and the following disclaimer
236     # in the documentation and/or other materials provided with the
237     # distribution.
238     #    * Neither the name of Google Inc. nor the names of its
239     # contributors may be used to endorse or promote products derived from
240     # this software without specific prior written permission.
241     #
242     # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
243     # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
244     # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
245     # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
246     # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
247     # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
248     # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
249     # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
250     # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
251     # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
252     # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
253   """
254
255 - lib/buffer_ieee754.js. Its license follows:
256   """
257     // Copyright (c) 2008, Fair Oaks Labs, Inc.
258     // All rights reserved.
259     //
260     // Redistribution and use in source and binary forms, with or without
261     // modification, are permitted provided that the following conditions are met:
262     //
263     //  * Redistributions of source code must retain the above copyright notice,
264     //    this list of conditions and the following disclaimer.
265     //
266     //  * Redistributions in binary form must reproduce the above copyright notice,
267     //    this list of conditions and the following disclaimer in the documentation
268     //    and/or other materials provided with the distribution.
269     //
270     //  * Neither the name of Fair Oaks Labs, Inc. nor the names of its contributors
271     //    may be used to endorse or promote products derived from this software
272     //    without specific prior written permission.
273     //
274     // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
275     // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
276     // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
277     // ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
278     // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
279     // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
280     // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
281     // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
282     // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
283     // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
284     // POSSIBILITY OF SUCH DAMAGE.
285   """
286
287 - lib/punycode.js is copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
288   and released under the MIT license.
289   """
290     * Punycode.js <http://mths.be/punycode>
291     * Copyright 2011 Mathias Bynens <http://mathiasbynens.be/>
292     * Available under MIT license <http://mths.be/mit>
293   """
294
295 - tools/gyp. GYP is a meta-build system. GYP's license follows:
296   """
297     Copyright (c) 2009 Google Inc. All rights reserved.
298
299     Redistribution and use in source and binary forms, with or without
300     modification, are permitted provided that the following conditions are
301     met:
302
303        * Redistributions of source code must retain the above copyright
304     notice, this list of conditions and the following disclaimer.
305        * Redistributions in binary form must reproduce the above
306     copyright notice, this list of conditions and the following disclaimer
307     in the documentation and/or other materials provided with the
308     distribution.
309        * Neither the name of Google Inc. nor the names of its
310     contributors may be used to endorse or promote products derived from
311     this software without specific prior written permission.
312
313     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
314     "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
315     LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
316     A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
317     OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
318     SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
319     LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
320     DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
321     THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
322     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
323     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
324   """
325
326 - Zlib at deps/zlib. zlib's license follows:
327   """
328     /* zlib.h -- interface of the 'zlib' general purpose compression library
329       version 1.2.4, March 14th, 2010
330
331       Copyright (C) 1995-2010 Jean-loup Gailly and Mark Adler
332
333       This software is provided 'as-is', without any express or implied
334       warranty.  In no event will the authors be held liable for any damages
335       arising from the use of this software.
336
337       Permission is granted to anyone to use this software for any purpose,
338       including commercial applications, and to alter it and redistribute it
339       freely, subject to the following restrictions:
340
341       1. The origin of this software must not be misrepresented; you must not
342          claim that you wrote the original software. If you use this software
343          in a product, an acknowledgment in the product documentation would be
344          appreciated but is not required.
345       2. Altered source versions must be plainly marked as such, and must not be
346          misrepresented as being the original software.
347       3. This notice may not be removed or altered from any source distribution.
348
349       Jean-loup Gailly
350       Mark Adler
351
352     */
353   """
354
355 - npm is a package manager program located at deps/npm.
356   npm's license follows:
357   """
358     Copyright 2009-2012, Isaac Z. Schlueter (the "Original Author")
359     All rights reserved.
360
361     MIT +no-false-attribs License
362
363     Permission is hereby granted, free of charge, to any person
364     obtaining a copy of this software and associated documentation
365     files (the "Software"), to deal in the Software without
366     restriction, including without limitation the rights to use,
367     copy, modify, merge, publish, distribute, sublicense, and/or sell
368     copies of the Software, and to permit persons to whom the
369     Software is furnished to do so, subject to the following
370     conditions:
371
372     The above copyright notice and this permission notice shall be
373     included in all copies or substantial portions of the Software.
374
375     Distributions of all or part of the Software intended to be used
376     by the recipients as they would use the unmodified Software,
377     containing modifications that substantially alter, remove, or
378     disable functionality of the Software, outside of the documented
379     configuration mechanisms provided by the Software, shall be
380     modified such that the Original Author's bug reporting email
381     addresses and urls are either replaced with the contact information
382     of the parties responsible for the changes, or removed entirely.
383
384     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
385     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
386     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
387     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
388     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
389     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
390     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
391     OTHER DEALINGS IN THE SOFTWARE.
392
393
394     Except where noted, this license applies to any and all software
395     programs and associated documentation files created by the
396     Original Author, when distributed with the Software.
397
398     "Node.js" and "node" trademark Joyent, Inc. npm is not officially
399     part of the Node.js project, and is neither owned by nor
400     officially affiliated with Joyent, Inc.
401
402     Packages published in the npm registry are not part of npm
403     itself, are the sole property of their respective maintainers,
404     and are not covered by this license.
405
406     "npm Logo" created by Mathias Pettersson and Brian Hammond,
407     used with permission.
408
409     "Gubblebum Blocky" font
410     Copyright (c) 2007 by Tjarda Koster, http://jelloween.deviantart.com
411     included for use in the npm website and documentation,
412     used with permission.
413
414     This program uses "node-uuid", Copyright (c) 2010 Robert Kieffer,
415     according to the terms of the MIT license.
416
417     This program uses "request", Copyright (c) 2011 Mikeal Rogers,
418     according to the terms of the Apache license.
419
420     This program uses "mkdirp",  Copyright (c) 2010 James Halliday,
421     according to the terms of the MIT/X11 license.
422   """
423
424 - tools/doc/node_modules/marked. Marked is a Markdown parser. Marked's
425   license follows:
426   """
427     Copyright (c) 2011-2012, Christopher Jeffrey (https://github.com/chjj/)
428
429     Permission is hereby granted, free of charge, to any person obtaining a copy
430     of this software and associated documentation files (the "Software"), to deal
431     in the Software without restriction, including without limitation the rights
432     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
433     copies of the Software, and to permit persons to whom the Software is
434     furnished to do so, subject to the following conditions:
435
436     The above copyright notice and this permission notice shall be included in
437     all copies or substantial portions of the Software.
438
439     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
440     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
441     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
442     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
443     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
444     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
445     THE SOFTWARE.
446   """
447
448 - test/gc/node_modules/weak. Node-weak is a node.js addon that provides garbage
449   collector notifications. Node-weak's license follows:
450   """
451     Copyright (c) 2011, Ben Noordhuis <info@bnoordhuis.nl>
452
453     Permission to use, copy, modify, and/or distribute this software for any
454     purpose with or without fee is hereby granted, provided that the above
455     copyright notice and this permission notice appear in all copies.
456
457     THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
458     WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
459     MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
460     ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
461     WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
462     ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
463     OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
464   """
465
466 - src/ngx-queue.h. ngx-queue.h is taken from the nginx source tree. nginx's
467   license follows:
468   """
469     Copyright (C) 2002-2012 Igor Sysoev
470     Copyright (C) 2011,2012 Nginx, Inc.
471
472     Redistribution and use in source and binary forms, with or without
473     modification, are permitted provided that the following conditions
474     are met:
475     1. Redistributions of source code must retain the above copyright
476        notice, this list of conditions and the following disclaimer.
477     2. Redistributions in binary form must reproduce the above copyright
478        notice, this list of conditions and the following disclaimer in the
479        documentation and/or other materials provided with the distribution.
480
481     THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
482     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
483     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
484     ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
485     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
486     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
487     OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
488     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
489     LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
490     OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
491     SUCH DAMAGE.
492   """