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

« back to all changes in this revision

Viewing changes to ext/pcre/pcrelib/pcre.h

  • 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:
5
5
/* This is the public header file for the PCRE library, to be #included by
6
6
applications that call the PCRE functions.
7
7
 
8
 
           Copyright (c) 1997-2009 University of Cambridge
 
8
           Copyright (c) 1997-2010 University of Cambridge
9
9
 
10
10
-----------------------------------------------------------------------------
11
11
Redistribution and use in source and binary forms, with or without
42
42
/* The current PCRE version information. */
43
43
 
44
44
#define PCRE_MAJOR          8
45
 
#define PCRE_MINOR          02
 
45
#define PCRE_MINOR          10
46
46
#define PCRE_PRERELEASE     
47
 
#define PCRE_DATE           2010-03-19
 
47
#define PCRE_DATE           2010-06-25
48
48
 
49
49
/* When an application links to a PCRE DLL in Windows, the symbols that are
50
50
imported have to be identified as such. When building PCRE, the appropriate
131
131
#define PCRE_NO_START_OPTIMISE  0x04000000
132
132
#define PCRE_PARTIAL_HARD       0x08000000
133
133
#define PCRE_NOTEMPTY_ATSTART   0x10000000
 
134
#define PCRE_UCP                0x20000000
134
135
 
135
136
/* Exec-time and get/set-time error codes */
136
137
 
200
201
#define PCRE_EXTRA_CALLOUT_DATA           0x0004
201
202
#define PCRE_EXTRA_TABLES                 0x0008
202
203
#define PCRE_EXTRA_MATCH_LIMIT_RECURSION  0x0010
 
204
#define PCRE_EXTRA_MARK                   0x0020
203
205
 
204
206
/* Types */
205
207
 
225
227
  void *callout_data;             /* Data passed back in callouts */
226
228
  const unsigned char *tables;    /* Pointer to character tables */
227
229
  unsigned long int match_limit_recursion; /* Max recursive calls to match() */
 
230
  unsigned char **mark;           /* For passing back a mark pointer */
228
231
} pcre_extra;
229
232
 
230
233
/* The structure for passing out data via the pcre_callout_function. We use a