Changeset 266 for trunk/ext

Show
Ignore:
Timestamp:
07/10/2007 16:41:32 (17 months ago)
Author:
indeyets
Message:

preparing for the first PECL-release

Location:
trunk/ext/php
Files:
1 added
2 removed
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/ext/php/CHANGELOG

    r261 r266  
    11--- %YAML:1.0 
     2- version: 0.9 
     3  date: 2007-07-11 
     4  status: beta 
     5  changes: 
     6    - this is the first release in PECL 
     7    - added several unit-tests 
     8    - fixed a bunch of vartype-errors 
     9    - added support for sexagesimal numbers 
     10 
    211- version: 0.3 
    312  date: 2007-07-04 
  • trunk/ext/php/php_syck.h

    r257 r266  
    11/* 
    22  +----------------------------------------------------------------------+ 
    3   | PHP Version 4                                                        | 
     3  | PHP Version 5                                                        | 
    44  +----------------------------------------------------------------------+ 
    5   | Copyright (c) 1997-2002 The PHP Group                                | 
     5  | Copyright (c) 1997-2007 The PHP Group                                | 
    66  +----------------------------------------------------------------------+ 
    7   | This source file is subject to version 2.02 of the PHP license,      | 
     7  | This source file is subject to version 3.01 of the PHP license,      | 
    88  | that is bundled with this package in the file LICENSE, and is        | 
    9   | available at through the world-wide-web at                           | 
    10   | http://www.php.net/license/2_02.txt.                                 | 
     9  | available through the world-wide-web at the following url:           | 
     10  | http://www.php.net/license/3_01.txt                                  | 
    1111  | If you did not receive a copy of the PHP license and are unable to   | 
    1212  | obtain it through the world-wide-web, please send a note to          | 
    1313  | license@php.net so we can mail you a copy immediately.               | 
    1414  +----------------------------------------------------------------------+ 
    15   | Author:                                                              | 
     15  | Authors: Why the lucky stiff                                         | 
     16  |          Alexey Zakhlestin <indeyets@gmail.com>                      | 
    1617  +----------------------------------------------------------------------+ 
    1718 
  • trunk/ext/php/phpext.c

    r265 r266  
    1 /** 
    2  * phpext.c 
    3  * 
    4  * $Author$ 
    5  * $Date$ 
    6  * 
    7  * Copyright (C) 2003 why the lucky stiff 
    8  * Copyright © 2007 Alexey Zakhlestin <indeyets@gmail.com> 
    9  * 
    10 **/ 
     1/* 
     2  +----------------------------------------------------------------------+ 
     3  | PHP Version 5                                                        | 
     4  +----------------------------------------------------------------------+ 
     5  | Copyright (c) 1997-2007 The PHP Group                                | 
     6  +----------------------------------------------------------------------+ 
     7  | This source file is subject to version 3.01 of the PHP license,      | 
     8  | that is bundled with this package in the file LICENSE, and is        | 
     9  | available through the world-wide-web at the following url:           | 
     10  | http://www.php.net/license/3_01.txt                                  | 
     11  | If you did not receive a copy of the PHP license and are unable to   | 
     12  | obtain it through the world-wide-web, please send a note to          | 
     13  | license@php.net so we can mail you a copy immediately.               | 
     14  +----------------------------------------------------------------------+ 
     15  | Authors: Why the lucky stiff                                         | 
     16  |          Alexey Zakhlestin <indeyets@gmail.com>                      | 
     17  +----------------------------------------------------------------------+ 
     18 
     19  $Id$  
     20*/ 
    1121#ifdef HAVE_CONFIG_H 
    1222# include "config.h" 
     
    2131#include "php_syck.h" 
    2232 
    23 #define PHP_SYCK_VERSION "0.3" 
     33#define PHP_SYCK_VERSION "@PACKAGE_VERSION@" 
    2434 
    2535/** 
  • trunk/ext/php/phpunit-tests/TestLoad.php

    r264 r266  
    11<?php 
    2 dl('syck.so'); 
     2 
     3if (!extension_loaded('syck')) 
     4    dl('syck.so'); 
     5 
    36require_once "PHPUnit/Framework/TestCase.php"; 
    47