~clint-fewbar/ubuntu/precise/php5/php5-5.4-merge

« back to all changes in this revision

Viewing changes to ext/phar/phar_object.c

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-02-22 09:46:37 UTC
  • mfrom: (1.1.20) (0.3.18 sid)
  • Revision ID: package-import@ubuntu.com-20110222094637-nlu2tvb7oqgaarl0
Tags: 5.3.5-1ubuntu1
* Merge from debian/unstable. Remaining changes:
 - debian/control:
    * Dropped firebird2.1-dev, libc-client-dev, libmcrypt-dev as it is in universe.
    * Dropped libmysqlclient15-dev, build against mysql 5.1.
    * Dropped libcurl-dev not in the archive.
    * Suggest php5-suhosin rather than recommends.
    * Dropped php5-imap, php5-interbase, php5-mcrypt since we have versions 
      already in universe.
    * Dropped libonig-dev and libqgdbm since its in universe. (will be re-added in lucid+1)
    * Dropped locales-all.
  - modulelist: Drop imap, interbase, sybase, and mcrypt.
  - debian/rules:
    * Dropped building of mcrypt, imap, and interbase.
    * Install apport hook for php5.
    * stop mysql instance on clean just in case we failed in tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
  +----------------------------------------------------------------------+
18
18
*/
19
19
 
20
 
/* $Id: phar_object.c 298642 2010-04-27 08:23:25Z bjori $ */
 
20
/* $Id: phar_object.c 303709 2010-09-23 04:41:14Z aharvey $ */
21
21
 
22
22
#include "phar_internal.h"
23
23
#include "func_interceptors.h"
1251
1251
 
1252
1252
/* {{{ proto void Phar::__construct(string fname [, int flags [, string alias]])
1253
1253
 * Construct a Phar archive object
1254
 
 * {{{ proto void PharData::__construct(string fname [[, int flags [, string alias]], int file format = Phar::TAR])
 
1254
 *
 
1255
 * proto void PharData::__construct(string fname [[, int flags [, string alias]], int file format = Phar::TAR])
1255
1256
 * Construct a PharData archive object
 
1257
 *
 
1258
 * This function is used as the constructor for both the Phar and PharData
 
1259
 * classes, hence the two prototypes above.
1256
1260
 */
1257
1261
PHP_METHOD(Phar, __construct)
1258
1262
{