1Redistribution terms Automated Testing Framework 2=========================================================================== 3 4 5License 6******* 7 8Copyright (c) 2007, 2008, 2009, 2010, 2011, 2012 The NetBSD Foundation, Inc. 9All rights reserved. 10 11Redistribution and use in source and binary forms, with or without 12modification, are permitted provided that the following conditions are met: 13 141. Redistributions of source code must retain the above copyright notice, 15 this list of conditions and the following disclaimer. 16 172. Redistributions in binary form must reproduce the above copyright 18 notice, this list of conditions and the following disclaimer in the 19 documentation and/or other materials provided with the distribution. 20 21THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 22``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 23TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 24PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 25BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 26CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 27SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 28INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 29CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 30ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 31POSSIBILITY OF SUCH DAMAGE. 32 33 34Copyright 2011, 2012 Google Inc. 35All rights reserved. 36 37Redistribution and use in source and binary forms, with or without 38modification, are permitted provided that the following conditions are met: 39 40* Redistributions of source code must retain the above copyright 41 notice, this list of conditions and the following disclaimer. 42 43* Redistributions in binary form must reproduce the above copyright 44 notice, this list of conditions and the following disclaimer in the 45 documentation and/or other materials provided with the distribution. 46 47* Neither the name of Google Inc. nor the names of its contributors 48 may be used to endorse or promote products derived from this software 49 without specific prior written permission. 50 51THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 52AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 53IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 54ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 55LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 56CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 57SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 58INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 59CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 60ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 61POSSIBILITY OF SUCH DAMAGE. 62 63 64Relicensed code 65*************** 66 67The following code snippets have been taken from other projects. Even 68though they were not originally licensed under the terms above, the 69original authors have agreed to relicense their work so that this project 70can be distributed under a single license. This section is put here just to 71clarify this fact. 72 73* configure.ac, Makefile.am: The original versions were derived from the 74 ones in the XML Catalog Manager project, version 2.2. 75 76 Author: Julio Merino <jmmv@users.sourceforge.net> 77 78* atf-c/ui.c: The format_paragraph and format_text functions were 79 derived form the ones in the Monotone project, revision 80 3a0982da308228d796df35f98d787c5cff2bb5b6. 81 82 Author: Julio Merino <jmmv@NetBSD.org> 83 84* atf-c++/detail/io.hpp, atf-c++/detail/io.cpp, atf-c++/detail/io_test.cpp: 85 These files were derived from the file_handle, systembuf, pipe and pistream 86 classes and tests found in the Boost.Process library. 87 88 Author: Julio Merino <jmmv84@gmail.com> 89 90* admin/check-style.sh, admin/check-style-common.awk, 91 admin/check-style-cpp.awk, admin/check-style-shell.awk: These files, 92 except the first one, were first implemented in the Buildtool project. 93 They were later adapted to be part of Boost.Process and, during that 94 process, the shell script was created. 95 96 Author: Julio Merino <jmmv84@gmail.com> 97 98 99=========================================================================== 100vim: filetype=text:textwidth=75:expandtab:shiftwidth=2:softtabstop=2 101