~ubuntu-branches/ubuntu/lucid/php5/lucid

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-03-16 09:09:50 UTC
  • mfrom: (1.1.18 upstream) (0.3.10 sid)
  • Revision ID: james.westby@ubuntu.com-20100316090950-e36m0pzranoixifd
Tags: 5.3.2-1ubuntu1
* Merge from debian unstable: 
  - 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, and mcrypt.
  - debian/rules:
    * Dropped building of mcrypt, imap, and interbase.
    * Install apport hook for php5.
  - Dropped debian/patches/libedit_is_editline.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
extern "C" {
51
51
#endif
52
52
 
53
 
/* Options, mostly defined by POSIX, but with a couple of extras. */
 
53
/* Options, mostly defined by POSIX, but with some extras. */
54
54
 
55
 
#define REG_ICASE     0x0001
56
 
#define REG_NEWLINE   0x0002
57
 
#define REG_NOTBOL    0x0004
58
 
#define REG_NOTEOL    0x0008
59
 
#define REG_DOTALL    0x0010   /* NOT defined by POSIX. */
60
 
#define REG_NOSUB     0x0020
61
 
#define REG_UTF8      0x0040   /* NOT defined by POSIX. */
 
55
#define REG_ICASE     0x0001   /* Maps to PCRE_CASELESS */
 
56
#define REG_NEWLINE   0x0002   /* Maps to PCRE_MULTILINE */
 
57
#define REG_NOTBOL    0x0004   /* Maps to PCRE_NOTBOL */
 
58
#define REG_NOTEOL    0x0008   /* Maps to PCRE_NOTEOL */
 
59
#define REG_DOTALL    0x0010   /* NOT defined by POSIX; maps to PCRE_DOTALL */
 
60
#define REG_NOSUB     0x0020   /* Maps to PCRE_NO_AUTO_CAPTURE */
 
61
#define REG_UTF8      0x0040   /* NOT defined by POSIX; maps to PCRE_UTF8 */
62
62
#define REG_STARTEND  0x0080   /* BSD feature: pass subject string by so,eo */
63
 
#define REG_NOTEMPTY  0x0100   /* NOT defined by POSIX. */
 
63
#define REG_NOTEMPTY  0x0100   /* NOT defined by POSIX; maps to PCRE_NOTEMPTY */
 
64
#define REG_UNGREEDY  0x0200   /* NOT defined by POSIX; maps to PCRE_UNGREEDY */
64
65
 
65
66
/* This is not used by PCRE, but by defining it we make it easier
66
67
to slot PCRE into existing programs that make POSIX calls. */