Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Update to PCRE 7.7
Browse files Browse the repository at this point in the history
svn path=/branches/glib-2-16/; revision=7122
  • Loading branch information
Matthias Clasen committed Jul 1, 2008
1 parent cc76a63 commit 9f08c18
Show file tree
Hide file tree
Showing 12 changed files with 514 additions and 311 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
2008-06-30 Matthias Clasen <mclasen@redhat.com>

* glib/pcre/*: Update to PCRE 7.7

2008-06-30 Matthias Clasen <mclasen@redhat.com>

Backport from trunk:
Expand Down
1 change: 0 additions & 1 deletion glib/pcre/Makefile.am
Expand Up @@ -64,4 +64,3 @@ EXTRA_DIST = \
COPYING \
makefile.msc

test:
45 changes: 20 additions & 25 deletions glib/pcre/makefile.msc
@@ -1,35 +1,30 @@
TOP = ..\..\..
!INCLUDE ..\..\build\win32\make.msc

INCLUDES = \\
-I ..\.. \\
INCLUDES = \
-I ..\.. \
-I ..

DEFINES = \\
-DPCRE_STATIC \\
-DHAVE_CONFIG_H \\
-DHAVE_LONG_LONG_FORMAT \\
-DSUPPORT_UCP \\
-DSUPPORT_UTF8 \\
-DNEWLINE=-1 \\
-DMATCH_LIMIT=10000000 \\
-DMATCH_LIMIT_RECURSION=10000000 \\
-DMAX_NAME_SIZE=32 \\
-DMAX_NAME_COUNT=10000 \\
-DMAX_DUPLENGTH=30000 \\
-DLINK_SIZE=2 \\
-DEBCDIC=0 \\
DEFINES = \
-DPCRE_STATIC \
-DHAVE_CONFIG_H \
-DHAVE_LONG_LONG_FORMAT \
-DSUPPORT_UCP \
-DSUPPORT_UTF8 \
-DNEWLINE=-1 \
-DMATCH_LIMIT=10000000 \
-DMATCH_LIMIT_RECURSION=10000000 \
-DMAX_NAME_SIZE=32 \
-DMAX_NAME_COUNT=10000 \
-DMAX_DUPLENGTH=30000 \
-DLINK_SIZE=2 \
-DEBCDIC=0 \
-DPOSIX_MALLOC_THRESHOLD=10

OBJECTS = \\
`
for f in $all_files; do
echo " $f.obj \\\\"
done
`
OBJECTS = \

all : pcre.lib

pcre.lib : \$(OBJECTS)
lib -out:pcre.lib \$(OBJECTS)
all : pcre.lib

pcre.lib : $(OBJECTS)
lib -out:pcre.lib $(OBJECTS)
6 changes: 3 additions & 3 deletions glib/pcre/pcre.h
Expand Up @@ -42,10 +42,9 @@ POSSIBILITY OF SUCH DAMAGE.
/* The current PCRE version information. */

#define PCRE_MAJOR 7

#define PCRE_MINOR 6
#define PCRE_MINOR 7
#define PCRE_PRERELEASE
#define PCRE_DATE 2008-01-28
#define PCRE_DATE 2008-05-07

/* When an application links to a PCRE DLL in Windows, the symbols that are
imported have to be identified as such. When building PCRE, the appropriate
Expand Down Expand Up @@ -125,6 +124,7 @@ extern "C" {
#define PCRE_NEWLINE_ANYCRLF 0x00500000
#define PCRE_BSR_ANYCRLF 0x00800000
#define PCRE_BSR_UNICODE 0x01000000
#define PCRE_JAVASCRIPT_COMPAT 0x02000000

/* Exec-time and get/set-time error codes */

Expand Down
3 changes: 3 additions & 0 deletions glib/pcre/pcre_chartables.c
@@ -1,3 +1,6 @@
/* This file is autogenerated by ../update-pcre/update.sh during
* the update of the local copy of PCRE.
*/
/*************************************************
* Perl-Compatible Regular Expressions *
*************************************************/
Expand Down

0 comments on commit 9f08c18

Please sign in to comment.