5 |
/* This is the public header file for the PCRE library, to be #included by |
/* This is the public header file for the PCRE library, to be #included by |
6 |
applications that call the PCRE functions. |
applications that call the PCRE functions. |
7 |
|
|
8 |
Copyright (c) 1997-2006 University of Cambridge |
Copyright (c) 1997-2007 University of Cambridge |
9 |
|
|
10 |
----------------------------------------------------------------------------- |
----------------------------------------------------------------------------- |
11 |
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
41 |
|
|
42 |
/* The current PCRE version information. */ |
/* The current PCRE version information. */ |
43 |
|
|
|
/* NOTES FOR FUTURE MAINTAINERS: Do not use numbers with leading zeros, because |
|
|
they may be treated as octal constants. The PCRE_PRERELEASE feature is for |
|
|
identifying release candidates. It might be defined as -RC2, for example. In |
|
|
real releases, it should be defined empty. Do not change the alignment of these |
|
|
statments. The code in ./configure greps out the version numbers by using "cut" |
|
|
to get values from column 29 onwards. These are substituted into pcre-config |
|
|
and libpcre.pc. The values are not put into configure.ac and substituted here |
|
|
(which would simplify this issue) because that makes life harder for those who |
|
|
cannot run ./configure. As it now stands, this file need not be edited in that |
|
|
circumstance. */ |
|
|
|
|
44 |
#define PCRE_MAJOR @PCRE_MAJOR@ |
#define PCRE_MAJOR @PCRE_MAJOR@ |
45 |
#define PCRE_MINOR @PCRE_MINOR@ |
#define PCRE_MINOR @PCRE_MINOR@ |
46 |
#define PCRE_PRERELEASE @PCRE_PRERELEASE@ |
#define PCRE_PRERELEASE @PCRE_PRERELEASE@ |