diff options
author | Andrei Zmievski <andrei@php.net> | 2005-08-08 23:59:04 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2005-08-08 23:59:04 +0000 |
commit | e623e5352d8c42619a03d76fd999031ad927576d (patch) | |
tree | 7b0576ce8f2b7c3d0b84e457027201ffce56735c /ext/pcre/pcrelib/pcreposix.h | |
parent | 1a7524d7c6115953034048fb3bfa3e204b9c3968 (diff) | |
download | php-git-e623e5352d8c42619a03d76fd999031ad927576d.tar.gz |
Upgrade to PCRE version 6.2.
# Don't worry, upgrade for other branches is coming
Diffstat (limited to 'ext/pcre/pcrelib/pcreposix.h')
-rw-r--r-- | ext/pcre/pcrelib/pcreposix.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcreposix.h b/ext/pcre/pcrelib/pcreposix.h index a8056bd77c..4f1b1abd45 100644 --- a/ext/pcre/pcrelib/pcreposix.h +++ b/ext/pcre/pcrelib/pcreposix.h @@ -9,7 +9,7 @@ Compatible Regular Expression library. It defines the things POSIX says should be there. I hope. - Copyright (c) 1997-2004 University of Cambridge + Copyright (c) 1997-2005 University of Cambridge ----------------------------------------------------------------------------- Redistribution and use in source and binary forms, with or without @@ -57,6 +57,10 @@ extern "C" { #define REG_NOTBOL 0x04 #define REG_NOTEOL 0x08 +/* Additional options, not defined by POSIX, but somebody wanted them. */ + +#define REG_DOTALL 0x10 + /* These are not used by PCRE, but by defining them we make it easier to slot PCRE into existing programs that make POSIX calls. */ |