Diff for /embedaddon/pcre/config.h.generic between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:05:51 version 1.1.1.2, 2012/02/21 23:50:25
Line 31  them both to 0; an emulation function will be used. */ Line 31  them both to 0; an emulation function will be used. */
    character codes, define this macro as 1. On systems that can use     character codes, define this macro as 1. On systems that can use
    "configure", this can be done via --enable-ebcdic. PCRE will then assume     "configure", this can be done via --enable-ebcdic. PCRE will then assume
    that all input strings are in EBCDIC. If you do not define this macro, PCRE     that all input strings are in EBCDIC. If you do not define this macro, PCRE
   will assume input strings are ASCII or UTF-8 Unicode. It is not possible to   will assume input strings are ASCII or UTF-8/16 Unicode. It is not possible
   build a version of PCRE that supports both EBCDIC and UTF-8. */   to build a version of PCRE that supports both EBCDIC and UTF-8/16. */
 /* #undef EBCDIC */  /* #undef EBCDIC */
   
 /* Define to 1 if you have the `bcopy' function. */  /* Define to 1 if you have the `bcopy' function. */
Line 250  them both to 0; an emulation function will be used. */ Line 250  them both to 0; an emulation function will be used. */
 #define PACKAGE_NAME "PCRE"  #define PACKAGE_NAME "PCRE"
   
 /* Define to the full name and version of this package. */  /* Define to the full name and version of this package. */
#define PACKAGE_STRING "PCRE 8.21"#define PACKAGE_STRING "PCRE 8.30"
   
 /* Define to the one symbol short name of this package. */  /* Define to the one symbol short name of this package. */
 #define PACKAGE_TARNAME "pcre"  #define PACKAGE_TARNAME "pcre"
Line 259  them both to 0; an emulation function will be used. */ Line 259  them both to 0; an emulation function will be used. */
 #define PACKAGE_URL ""  #define PACKAGE_URL ""
   
 /* Define to the version of this package. */  /* Define to the version of this package. */
#define PACKAGE_VERSION "8.21"#define PACKAGE_VERSION "8.30"
   
 /* The value of PCREGREP_BUFSIZE determines the size of buffer used by  /* The value of PCREGREP_BUFSIZE determines the size of buffer used by
    pcregrep to hold parts of the file it is searching. On systems that support     pcregrep to hold parts of the file it is searching. On systems that support
Line 317  them both to 0; an emulation function will be used. */ Line 317  them both to 0; an emulation function will be used. */
    handle .gz files. */     handle .gz files. */
 /* #undef SUPPORT_LIBZ */  /* #undef SUPPORT_LIBZ */
   
   /* Define to enable the 16 bit PCRE library. */
   /* #undef SUPPORT_PCRE16 */
   
   /* Define to enable the 8 bit PCRE library. */
   #ifndef SUPPORT_PCRE8
   #define SUPPORT_PCRE8 /**/
   #endif
   
 /* Define to enable JIT support in pcregrep. */  /* Define to enable JIT support in pcregrep. */
 /* #undef SUPPORT_PCREGREP_JIT */  /* #undef SUPPORT_PCREGREP_JIT */
   
 /* Define to enable support for Unicode properties. */  /* Define to enable support for Unicode properties. */
 /* #undef SUPPORT_UCP */  /* #undef SUPPORT_UCP */
   
/* Define to enable support for the UTF-8 Unicode encoding. This will work/* Define to enable support for the UTF-8/16 Unicode encoding. This will work
    even in an EBCDIC environment, but it is incompatible with the EBCDIC     even in an EBCDIC environment, but it is incompatible with the EBCDIC
   macro. That is, PCRE can support *either* EBCDIC code *or* ASCII/UTF-8, but   macro. That is, PCRE can support *either* EBCDIC code *or* ASCII/UTF-8/16,
   not both at once. */   but not both at once. */
/* #undef SUPPORT_UTF8 *//* #undef SUPPORT_UTF */
   
 /* Version number of package */  /* Version number of package */
 #ifndef VERSION  #ifndef VERSION
#define VERSION "8.21"#define VERSION "8.30"
 #endif  #endif
   
 /* Define to empty if `const' does not conform to ANSI C. */  /* Define to empty if `const' does not conform to ANSI C. */

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>