> --- httpd/httpd/trunk/include/ap_regex.h (original)
> +++ httpd/httpd/trunk/include/ap_regex.h Wed Jul 23 20:27:32 2014
> @@ -79,6 +79,12 @@ extern "C" {
>
>  #define AP_REG_MATCH "MATCH_" /**< suggested prefix for ap_regname */
>
> +/* Arguments for ap_pcre_version_string */
> +enum {
> +  AP_REG_PCRE_COMPILED = 0, /** PCRE version used during program compilation 
> */
> +  AP_REG_PCRE_LOADED        /** PCRE version loaded at runtime */
> +};
> +
>  /* Error values: */
>  enum {
>    AP_REG_ASSERT = 1,  /** internal error ? */
> @@ -103,6 +109,15 @@ typedef struct {
>  /* The functions */
>
>  /**
> + * Return PCRE version string.
> + * @param which Either AP_REG_PCRE_COMPILED (PCRE version used
> + *              during program compilation) or AP_REG_PCRE_LOADED
> + *              (PCRE version used at runtime)
> + * @return The PCRE version string
> + */
> +AP_DECLARE(const char *) ap_pcre_version_string(int which);
> +
> +/**
>   * Compile a regular expression.
>   * @param preg Returned compiled regex
>   * @param regex The regular expression string

This added a new API, so we need MMN minor bump?

Reply via email to