php-src/regex
2002-10-24 13:15:49 +00:00
..
cclass.h Fix -Wall warnings 1999-12-28 20:50:34 +00:00
cname.h Fix -Wall warnings 1999-12-28 20:50:34 +00:00
COPYRIGHT PHP 4.0 1999-04-07 21:05:13 +00:00
debug.c PHP 4.0 1999-04-07 21:05:13 +00:00
debug.ih Win32 patches 1999-04-07 21:19:35 +00:00
engine.c - Fixing warnings in regex 1999-11-14 20:13:54 +00:00
engine.ih *** empty log message *** 1999-06-23 15:04:21 +00:00
main.c PHP 4.0 1999-04-07 21:05:13 +00:00
main.ih Win32 patches 1999-04-07 21:19:35 +00:00
mkh PHP 4.0 1999-04-07 21:05:13 +00:00
README PHP 4.0 1999-04-07 21:05:13 +00:00
regcomp.c Fix -Wall warnings 1999-12-28 20:50:34 +00:00
regcomp.ih Fix -Wall warnings 1999-12-28 20:50:34 +00:00
regerror.c Fix -Wall warnings 1999-12-28 20:50:34 +00:00
regerror.ih *** empty log message *** 1999-06-23 15:04:21 +00:00
regex2.h upgrade regex library to alpha3.8 1999-11-12 20:27:52 +00:00
regex_extra.h centralize #include "build-defs.h" and drop (sometimes inconsistent) other 2002-10-24 13:15:49 +00:00
regex.3 PHP 4.0 1999-04-07 21:05:13 +00:00
regex.7 PHP 4.0 1999-04-07 21:05:13 +00:00
regex.dsp PHP 4.0 1999-04-07 21:05:13 +00:00
regex.dsw PHP 4.0 1999-04-07 21:05:13 +00:00
regex.h upgrade regex library to alpha3.8 1999-11-12 20:27:52 +00:00
regex.mak PHP 4.0 1999-04-07 21:05:13 +00:00
regexec.c upgrade regex library to alpha3.8 1999-11-12 20:27:52 +00:00
regfree.c PHP 4.0 1999-04-07 21:05:13 +00:00
split.c PHP 4.0 1999-04-07 21:05:13 +00:00
tests PHP 4.0 1999-04-07 21:05:13 +00:00
utils.h Improve regex library selection. It lets user specify whether they want 1999-11-13 16:51:33 +00:00
WHATSNEW PHP 4.0 1999-04-07 21:05:13 +00:00

alpha3.4 release.
Thu Mar 17 23:17:18 EST 1994
henry@zoo.toronto.edu

See WHATSNEW for change listing.

installation notes:
--------
Read the comments at the beginning of Makefile before running.

Utils.h contains some things that just might have to be modified on
some systems, as well as a nested include (ugh) of <assert.h>.

The "fake" directory contains quick-and-dirty fakes for some header
files and routines that old systems may not have.  Note also that
-DUSEBCOPY will make utils.h substitute bcopy() for memmove().

After that, "make r" will build regcomp.o, regexec.o, regfree.o,
and regerror.o (the actual routines), bundle them together into a test
program, and run regression tests on them.  No output is good output.

"make lib" builds just the .o files for the actual routines (when
you're happy with testing and have adjusted CFLAGS for production),
and puts them together into libregex.a.  You can pick up either the
library or *.o ("make lib" makes sure there are no other .o files left
around to confuse things).

Main.c, debug.c, split.c are used for regression testing but are not part
of the RE routines themselves.

Regex.h goes in /usr/include.  All other .h files are internal only.
--------