|
|
9e325d |
/*-
|
|
|
9e325d |
* $Id: LICENSE,v 12.9 2008/02/07 17:12:17 mark Exp $
|
|
|
9e325d |
*/
|
|
|
9e325d |
|
|
|
9e325d |
The following is the license that applies to this copy of the Berkeley DB
|
|
|
9e325d |
software. For a license to use the Berkeley DB software under conditions
|
|
|
9e325d |
other than those described here, or to purchase support for this software,
|
|
|
9e325d |
please contact Oracle at berkeleydb-info_us@oracle.com.
|
|
|
9e325d |
|
|
|
9e325d |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
9e325d |
/*
|
|
|
9e325d |
* Copyright (c) 1990,2008 Oracle. All rights reserved.
|
|
|
9e325d |
*
|
|
|
9e325d |
* Redistribution and use in source and binary forms, with or without
|
|
|
9e325d |
* modification, are permitted provided that the following conditions
|
|
|
9e325d |
* are met:
|
|
|
9e325d |
* 1. Redistributions of source code must retain the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer.
|
|
|
9e325d |
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer in the
|
|
|
9e325d |
* documentation and/or other materials provided with the distribution.
|
|
|
9e325d |
* 3. Redistributions in any form must be accompanied by information on
|
|
|
9e325d |
* how to obtain complete source code for the DB software and any
|
|
|
9e325d |
* accompanying software that uses the DB software. The source code
|
|
|
9e325d |
* must either be included in the distribution or be available for no
|
|
|
9e325d |
* more than the cost of distribution plus a nominal fee, and must be
|
|
|
9e325d |
* freely redistributable under reasonable conditions. For an
|
|
|
9e325d |
* executable file, complete source code means the source code for all
|
|
|
9e325d |
* modules it contains. It does not include source code for modules or
|
|
|
9e325d |
* files that typically accompany the major components of the operating
|
|
|
9e325d |
* system on which the executable file runs.
|
|
|
9e325d |
*
|
|
|
9e325d |
* THIS SOFTWARE IS PROVIDED BY ORACLE ``AS IS'' AND ANY EXPRESS OR
|
|
|
9e325d |
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
9e325d |
* WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
|
|
|
9e325d |
* NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL ORACLE BE LIABLE
|
|
|
9e325d |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
9e325d |
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
9e325d |
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
|
9e325d |
* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
9e325d |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
|
|
|
9e325d |
* OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
|
|
|
9e325d |
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
9e325d |
*/
|
|
|
9e325d |
/*
|
|
|
9e325d |
* Copyright (c) 1990, 1993, 1994, 1995
|
|
|
9e325d |
* The Regents of the University of California. All rights reserved.
|
|
|
9e325d |
*
|
|
|
9e325d |
* Redistribution and use in source and binary forms, with or without
|
|
|
9e325d |
* modification, are permitted provided that the following conditions
|
|
|
9e325d |
* are met:
|
|
|
9e325d |
* 1. Redistributions of source code must retain the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer.
|
|
|
9e325d |
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer in the
|
|
|
9e325d |
* documentation and/or other materials provided with the distribution.
|
|
|
9e325d |
* 3. Neither the name of the University nor the names of its contributors
|
|
|
9e325d |
* may be used to endorse or promote products derived from this software
|
|
|
9e325d |
* without specific prior written permission.
|
|
|
9e325d |
*
|
|
|
9e325d |
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
9e325d |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
9e325d |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
9e325d |
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
9e325d |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
9e325d |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
9e325d |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
9e325d |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
9e325d |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
9e325d |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
9e325d |
* SUCH DAMAGE.
|
|
|
9e325d |
*/
|
|
|
9e325d |
/*
|
|
|
9e325d |
* Copyright (c) 1995, 1996
|
|
|
9e325d |
* The President and Fellows of Harvard University. All rights reserved.
|
|
|
9e325d |
*
|
|
|
9e325d |
* Redistribution and use in source and binary forms, with or without
|
|
|
9e325d |
* modification, are permitted provided that the following conditions
|
|
|
9e325d |
* are met:
|
|
|
9e325d |
* 1. Redistributions of source code must retain the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer.
|
|
|
9e325d |
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer in the
|
|
|
9e325d |
* documentation and/or other materials provided with the distribution.
|
|
|
9e325d |
* 3. Neither the name of the University nor the names of its contributors
|
|
|
9e325d |
* may be used to endorse or promote products derived from this software
|
|
|
9e325d |
* without specific prior written permission.
|
|
|
9e325d |
*
|
|
|
9e325d |
* THIS SOFTWARE IS PROVIDED BY HARVARD AND ITS CONTRIBUTORS ``AS IS'' AND
|
|
|
9e325d |
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
9e325d |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
9e325d |
* ARE DISCLAIMED. IN NO EVENT SHALL HARVARD OR ITS CONTRIBUTORS BE LIABLE
|
|
|
9e325d |
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
9e325d |
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
9e325d |
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
9e325d |
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
9e325d |
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
9e325d |
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
9e325d |
* SUCH DAMAGE.
|
|
|
9e325d |
*/
|
|
|
9e325d |
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
|
|
|
9e325d |
/***
|
|
|
9e325d |
* ASM: a very small and fast Java bytecode manipulation framework
|
|
|
9e325d |
* Copyright (c) 2000-2005 INRIA, France Telecom
|
|
|
9e325d |
* All rights reserved.
|
|
|
9e325d |
*
|
|
|
9e325d |
* Redistribution and use in source and binary forms, with or without
|
|
|
9e325d |
* modification, are permitted provided that the following conditions
|
|
|
9e325d |
* are met:
|
|
|
9e325d |
* 1. Redistributions of source code must retain the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer.
|
|
|
9e325d |
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
9e325d |
* notice, this list of conditions and the following disclaimer in the
|
|
|
9e325d |
* documentation and/or other materials provided with the distribution.
|
|
|
9e325d |
* 3. Neither the name of the copyright holders nor the names of its
|
|
|
9e325d |
* contributors may be used to endorse or promote products derived from
|
|
|
9e325d |
* this software without specific prior written permission.
|
|
|
9e325d |
*
|
|
|
9e325d |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
9e325d |
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
9e325d |
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
9e325d |
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
9e325d |
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
9e325d |
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
9e325d |
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
9e325d |
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
9e325d |
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
9e325d |
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
|
|
|
9e325d |
* THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
9e325d |
*/
|