8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 21:23:04 +01:00
firebird-mirror/extern/regex
2009-02-02 11:16:05 +00:00
..
fake Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
aclocal.m4 Updated libtool-related files 2009-02-02 11:16:05 +00:00
autogen.sh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
cclass.h Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
cname.h Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
config.guess Updated libtool-related files 2009-02-02 11:16:05 +00:00
config.sub Updated libtool-related files 2009-02-02 11:16:05 +00:00
configure Updated libtool-related files 2009-02-02 11:16:05 +00:00
configure.in Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
COPYRIGHT Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
debug.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
debug.ih Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
engine.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
engine.ih Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
INSTALL Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
install-sh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
ltmain.sh Updated libtool-related files 2009-02-02 11:16:05 +00:00
main.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
Makefile.am Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
Makefile.in Updated libtool-related files 2009-02-02 11:16:05 +00:00
Makefile.orig Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
missing Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
mkh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
mkinstalldirs Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
README Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regcomp.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regcomp.ih Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regerror.c Don't confuse MSVC8 with deprecated 'errcode' as formal parameter 2009-02-01 22:16:24 +00:00
regerror.ih Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regex2.h Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regex.h Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regexec.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
regfree.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
rxspencer.3 Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
rxspencer.7 Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
split.c Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
test1.sh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
test2.sh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
test3.sh Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
tests Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
utils.h Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00
WHATSNEW Merge INTL branch into HEAD 2005-05-27 22:45:31 +00:00

This is a copy of Henry Spencer's regular expression library, with
modifications to the build system:

autoconf/automake/libtool support has been added to allow building a
shared library on many platforms (in theory).  In other cases, a
static library will be built.

The names of installed files have been changed to avoid conflict with
other regex libraries.

Related URLs:

http://www.arglist.com/regex/
ftp://ftp.zoo.toronto.edu/pub/ for the original regex.shar.

Installation
============

Ignore the notes in the original README below and try something like:

./configure
make
make check
make install

See the INSTALL file for more details.

Usage
=====

Library:  -lrxspencer
Header: #include <rxspencer/regex.h>
Man Pages: rxspencer(3), rxspencer(7)

Gary Houston,  ghouston@arglist.com

---- original README follows --------
alpha3.8 release.
Tue Aug 10 15:51:48 EDT 1999
henry@spsystems.net  (formerly 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.
--------