libxlsxwriter/LICENSE.txt in fast_excel-0.4.1 vs libxlsxwriter/LICENSE.txt in fast_excel-0.5.0

- old
+ new

@@ -2,11 +2,11 @@ @page license License Libxlsxwriter is released under a FreeBSD license: - Copyright 2014-2019, John McNamara <jmcnamara@cpan.org> + Copyright 2014-2022, John McNamara <jmcnamara@cpan.org> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -32,12 +32,14 @@ The views and conclusions contained in the software and documentation are those of the authors and should not be interpreted as representing official policies, either expressed or implied, of the FreeBSD Project. -Libxlsxwriter includes `queue.h` and `tree.h` from FreeBSD, the `minizip` -component of `zlib` and `tmpfileplus` which have the following licenses: +Libxlsxwriter includes the `queue.h` and `tree.h` macros from FreeBSD. It also +includes and, unless overridden, uses the optional libraries `minizip`, +`tmpfileplus` and `md5`. It also includes the `emyg_dtoa` library but doesn't +use it by default. These components have the following licenses: Queue.h from FreeBSD: Copyright (c) 1991, 1993 @@ -132,19 +134,75 @@ @ref gsg_minizip. [Tmpfileplus](http://www.di-mgt.com.au/c_function_to_create_temp_file.html) has the following license: - This Source Code Form is subject to the terms of the Mozilla Public - License, v. 2.0. If a copy of the MPL was not distributed with this - file, You can obtain one at http://mozilla.org/MPL/2.0/. + This Source Code Form is subject to the terms of the Mozilla Public + License, v. 2.0. If a copy of the MPL was not distributed with this + file, You can obtain one at http://mozilla.org/MPL/2.0/. - Copyright (c) 2012-16 David Ireland, DI Management Services Pty Ltd - <http://www.di-mgt.com.au/contact/>. + Copyright (c) 2012-16 David Ireland, DI Management Services Pty Ltd + <http://www.di-mgt.com.au/contact/>. See the [Mozilla Public License, v. 2.0](http://mozilla.org/MPL/2.0/). Note, it is possible to compile libxlsxwriter using the standard library `tmpfile()` function instead of `tmpfileplus`, see @ref gsg_tmpdir. + +The [Milo Yip DTOA library](https://github.com/miloyip/dtoa-benchmark) for +converting doubles to strings. It has the following license: + + Copyright (C) 2015 Doug Currie + based on dtoa_milo.h + Copyright (C) 2014 Milo Yip + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +This Milo Yip DTOA library (emyg_dtoa) is used to avoid issues where the +standard sprintf() dtoa function changes output based on locale settings. It +is also 40-50% faster than the standard dtoa for raw numeric data. The use of +this library is optional. If you wish to use it you can pass +`USE_DTOA_LIBRARY=1` to make when compiling. + +[Openwall MD5](https://openwall.info/wiki/people/solar/software/public-domain-source-code/md5) +has the following licence: + + This software was written by Alexander Peslyak in 2001. No copyright is + claimed, and the software is hereby placed in the public domain. + In case this attempt to disclaim copyright and place the software in the + public domain is deemed null and void, then the software is + Copyright (c) 2001 Alexander Peslyak and it is hereby released to the + general public under the following terms: + + Redistribution and use in source and binary forms, with or without + modification, are permitted. + + There's ABSOLUTELY NO WARRANTY, express or implied. + + (This is a heavily cut-down "BSD license".) + +Note, the MD5 library is used to avoid including duplicate image files in the +xlsx file. If you don't want to use this code, and the additional licence, you +can use OpenSSL's MD5 functions instead by passing `USE_OPENSSL_MD5=1` to +make. If this functionality isn't required it is possible to compile +libxlsxwriter without image deduplication by passing `USE_NO_MD5=1` to make. + +See also @ref gsg_md5. Next: @ref changes */