4406N/A +----------------------------------------------------------------------+
4406N/A | Xdebug |
4406N/A +----------------------------------------------------------------------+
4406N/A | Copyright (c) 2002-2015 Derick Rethans |
4406N/A +----------------------------------------------------------------------+
4406N/A | This source file is subject to version 1.0 of the Xdebug license, |
4406N/A | that is bundled with this package in the file LICENSE, and is |
4406N/A | available at through the world-wide-web at |
4406N/A | http://xdebug.derickrethans.nl/license.php |
4406N/A | If you did not receive a copy of the Xdebug license and are unable |
4406N/A | to obtain it through the world-wide-web, please send a note to |
4406N/A | xdebug@derickrethans.nl so we can mail you a copy immediately. |
4406N/A +----------------------------------------------------------------------+
4406N/A
4406N/A
4406N/Afile LICENSE
4406N/A------------
4406N/A--------------------------------------------------------------------
4406N/A The Xdebug License, version 1.01
4406N/A (Based on "The PHP License", version 3.0)
4406N/A Copyright (c) 2003-2012 Derick Rethans. All rights reserved.
4406N/A--------------------------------------------------------------------
4406N/A
4406N/ARedistribution and use in source and binary forms, with or without
4406N/Amodification, is permitted provided that the following conditions
4406N/Aare met:
4406N/A
4406N/A 1. Redistributions of source code must retain the above copyright
4406N/A notice, this list of conditions and the following disclaimer.
4406N/A
4406N/A 2. Redistributions in binary form must reproduce the above copyright
4406N/A notice, this list of conditions and the following disclaimer in
4406N/A the documentation and/or other materials provided with the
4406N/A distribution.
4406N/A
4406N/A 3. The name "Xdebug" must not be used to endorse or promote products
4406N/A derived from this software without prior written permission. For
4406N/A written permission, please contact derick@xdebug.org.
4406N/A
4406N/A 4. Products derived from this software may not be called "Xdebug", nor
4406N/A may "Xdebug" appear in their name, without prior written permission
4406N/A from derick@xdebug.org.
4406N/A
4406N/A 5. Derick Rethans may publish revised and/or new versions of the
4406N/A license from time to time. Each version will be given a
4406N/A distinguishing version number. Once covered code has been
4406N/A published under a particular version of the license, you may
4406N/A always continue to use it under the terms of that version. You
4406N/A may also choose to use such covered code under the terms of any
4406N/A subsequent version of the license published by Derick Rethans. No
4406N/A one other than Derick Rethans has the right to modify the terms
4406N/A applicable to covered code created under this License.
4406N/A
4406N/A 6. Redistributions of any form whatsoever must retain the following
4406N/A acknowledgment: "This product includes Xdebug, freely available
4406N/A from <http://xdebug.org/>".
4406N/A
4406N/ATHIS SOFTWARE IS PROVIDED BY DERICK RETHANS ``AS IS'' AND ANY
4406N/AEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4406N/AIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
4406N/APURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP DEVELOPMENT TEAM OR
4406N/AITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
4406N/ASPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
4406N/ALIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
4406N/ADATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
4406N/ATHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4406N/A(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
4406N/AOF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4406N/A
4406N/A--------------------------------------------------------------------
4406N/A
4406N/AThis software consists of voluntary contributions made by some
4406N/Aindividuals on behalf of Derick Rethans.
4406N/A
4406N/ADerick Rethans can be contacted via e-mail at derick@xdebug.org.
4406N/A
4406N/AFor more information Xdebug, please see <http://xdebug.org>.
4406N/A
4406N/A
4406N/Afiles
4406N/Axdebug_hash.c
4406N/Axdebug_hash.h
4406N/Axdebug_llist.c
4406N/Axdebug_llist.h
4406N/A------------------
4406N/A/* The contents of this file are subject to the Vulcan Logic Public
4406N/A * License Version 1.1 (the "License"); you may not use this file
4406N/A * except in compliance with the License. You may obtain a copy of
4406N/A * the License at http://www.vl-srm.net/vlpl/
4406N/A *
4406N/A * Software distributed under the License is distributed on an "AS
4406N/A * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
4406N/A * implied. See the License for the specific language governing
4406N/A * rights and limitations under the License.
4406N/A *
4406N/A * The Original Code is vl-srm.net code.
4406N/A *
4406N/A * The Initial Developer of the Original Code is the Vulcan Logic
4406N/A * Group. Portions created by Vulcan Logic Group are Copyright (C)
4406N/A * 2000, 2001, 2002 Vulcan Logic Group. All Rights Reserved.
4406N/A *
4406N/A * Author(s): Sterling Hughes <sterling@php.net>
4406N/A */
4406N/A
4406N/A
4406N/AVulcan Logic Public License from :
4406N/Ahttps://launchpad.net/ubuntu/trusty/+source/xdebug/+copyright
4406N/A-------------------------------------------------------------
4406N/AVulcan Logic Public Licence
4406N/A(Based upon the Apache Software License)
4406N/A
4406N/AVersion 1.1
4406N/ACopyright (c) 2002 Vulcan Logic. All rights reserved.
4406N/A
4406N/ARedistribution and use in source and binary forms, with or without
4406N/Amodification, are permitted provided that the following conditions are met:
4406N/A
4406N/A1. Redistributions of source code must retain the above copyright notice,
4406N/A this list of conditions and the following disclaimer.
4406N/A
4406N/A2. Redistributions in binary form must reproduce the above copyright notice,
4406N/A this list of conditions and the following disclaimer in the documentation
4406N/A and/or other materials provided with the distribution.
4406N/A
4406N/A3. The end-user documentation included with the redistribution, if any, must
4406N/A include the following acknowledgment:
4406N/A
4406N/A "This product includes software developed by Vulcan Logic
4406N/A (http://www.vl-srm.net/)."
4406N/A
4406N/A Alternately, this acknowledgment may appear in the software itself,
4406N/A if and wherever such third-party acknowledgments normally appear.
4406N/A
4406N/A4. The names "Vulcan Logic" and "SRM" must not be used to endorse or promote
4406N/A products derived from this software without prior written permission.
4406N/A For written permission, please contact group@vl-srm.net.
4406N/A
4406N/A5. Products derived from this software may not be called "SRM", nor may
4406N/A "SRM" appear in their name, without prior written permission of the
4406N/A Vulcan Logic Group.
4406N/A
4406N/ATHIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
4406N/AINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
4406N/AFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
4406N/AAPACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
4406N/AINDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
4406N/A(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
4406N/ALOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
4406N/AON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
4406N/A(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
4406N/ATHIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4406N/A
4406N/Afile xdebug_compat.c
4406N/A--------------------
4406N/A/*
4406N/A +----------------------------------------------------------------------+
4406N/A | Xdebug |
4406N/A +----------------------------------------------------------------------+
4406N/A | Copyright (c) 2002-2015 Derick Rethans <derick@xdebug.org> |
4406N/A | (c) 1997-2004 Jim Winstead <jimw@trainedmonkey.com> |
4406N/A | (c) 1998-2004 Andi Gutmans <andi@zend.com> and |
4406N/A | Zeev Suraski <zeev@zend.com> |
4406N/A +----------------------------------------------------------------------+
4406N/A | This source file is subject to the following Modified BSD license: |
4406N/A | |
4406N/A | Redistribution and use in source and binary forms, with or without |
4406N/A | modification, are permitted provided that the following conditions |
4406N/A | are met: |
4406N/A | |
4406N/A | 1. Redistributions of source code must retain the above copyright |
4406N/A | notice, this list of conditions and the following disclaimer. |
4406N/A | |
4406N/A | 2. Redistributions in binary form must reproduce the above |
4406N/A | copyright notice, this list of conditions and the following |
4406N/A | disclaimer in the documentation and/or other materials provided |
4406N/A | with the distribution. |
4406N/A | |
4406N/A | 3. The name of the author may not be used to endorse or promote |
4406N/A | products derived from this software without specific prior |
4406N/A | written permission. |
4406N/A | |
4406N/A | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
4406N/A | IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
4406N/A | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
4406N/A | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY |
4406N/A | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
4406N/A | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE |
4406N/A | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
4406N/A | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER |
4406N/A | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
4406N/A | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN |
4406N/A | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
4406N/A +----------------------------------------------------------------------+
4406N/A */