"Me" in this document usually refers to David Walter Seikel, the main author. Unless otherwise stated, all of this is covered by the following BSD style license. Most of the rest is either BSD, MIT, or public domain. To avoid viral contamination, only LGPL varieties of GPL code will be linked. See below for details. -------------------------------------------------------------------------------- Copyright notice for SledjHamr: Copyright (C) 2011 David Walter Seikel and various contributors (see AUTHORS) All rights reserved. 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. THIS SOFTWARE IS PROVIDED "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS 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. -------------------------------------------------------------------------------- The Enlightenment Foundation Libraries are mostly BSD, and copyright by the various people mentioned in their respective AUTHORS files, except - Edje's epp - GPL 2. Eina - LGPL 2.1. Embryo - partly BSD, partly something similar to BSD. See the various COPYING and AUTHORS files for details. Epp is a separate tool used to process .edc source files, but otherwise not a part of the SledjHamr system. The only .edc file is the LuaSL test harness. So the viral nature of GPL does not apply. Note that eina is the only GPL thing that is linked, and it's LGPL, so linking to non GPL stuff is fine. -------------------------------------------------------------------------------- The lemon parser includes this - The author of this program disclaims copyright. -------------------------------------------------------------------------------- LuaJIT includes this - =============================================================================== LuaJIT -- a Just-In-Time Compiler for Lua. http://luajit.org/ Copyright (C) 2005-2011 Mike Pall. All rights reserved. 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. [ MIT license: http://www.opensource.org/licenses/mit-license.php ] =============================================================================== [ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ] Copyright (C) 1994-2011 Lua.org, PUC-Rio. 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. =============================================================================== [ LuaJIT includes code from dlmalloc, which has this license statement: ] This is a version (aka dlmalloc) of malloc/free/realloc written by Doug Lea and released to the public domain, as explained at http://creativecommons.org/licenses/publicdomain =============================================================================== -------------------------------------------------------------------------------- Note that luaproc has been extensively rewritten by me, but large parts of it still exist in the original form, and the rewritten bits tended to stick with the original design. Luaproc is covered by this copyright notice and license - Copyright 2008 Alexandre Skyrme, Noemi Rodriguez, Roberto Ierusalimschy 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. -------------------------------------------------------------------------------- All things below this line are temporary things, some of them already removed. They are listed coz they are still in the source repo, even though not in the current latest version. Thus they are being distributed, even if not by default. None of them are counted as "linked" for licensing purposes, as they are no longer used. Those things that actually care about linking in their licenses where never linked, merely used as examples for research. -------------------------------------------------------------------------------- The MLP scripts used for testing are BSD, Copyright (c) 2006, by Miffy Fluffy. -------------------------------------------------------------------------------- The flex and btyacc source files, plus the C source files that wrap them in LuaSL, where originally based on flex and bison examples provided on the Wikipedia page - http://en.wikipedia.org/wiki/GNU_bison This is covered by "Creative Commons Attribution-ShareAlike 3.0 Unported License". The attribution portion is covered by the URL above, as per the Wikipedia Terms of Use. There is no longer any parts of that code left I think. -------------------------------------------------------------------------------- There used to be flex and bison source files for a LSL parser, taken from from the SL viewer under GPL 2 and copyright at some unknown date (due to missing copyright notice in those specific files) by Linden Research, Inc. Those files have gone away, as I wrote my own, and most of it was useless to me anyway. Never actually used them, so GPL terms do not apply. The flex source file actually used is written by me, bison is not used at all. --------------------------------------------------------------------------------