gimp/plug-ins/script-fu/re
Kevin Cozens e95243ed4f Added GIMP_CFLAGS to AM_CFLAGS. This is needed by upcoming UTF-8 support.
2005-01-23  Kevin Cozens  <kcozens@cvs.gimp.org>

	* re/Makefile.am: Added GIMP_CFLAGS to AM_CFLAGS. This is needed by
	upcoming UTF-8 support.
2005-01-24 04:24:42 +00:00
..
COPYRIGHT Initial revision 2004-10-06 21:47:36 +00:00
Makefile.am Added GIMP_CFLAGS to AM_CFLAGS. This is needed by upcoming UTF-8 support. 2005-01-24 04:24:42 +00:00
README Initial revision 2004-10-06 21:47:36 +00:00
README.1st Initial revision 2004-10-06 21:47:36 +00:00
WHATSNEW Initial revision 2004-10-06 21:47:36 +00:00
cclass.h Initial revision 2004-10-06 21:47:36 +00:00
cname.h Initial revision 2004-10-06 21:47:36 +00:00
debug.c Added more files missing from the distribution. re/debug.c re/main.c 2004-10-09 15:21:04 +00:00
debug.ih Initial revision 2004-10-06 21:47:36 +00:00
engine.c Initial revision 2004-10-06 21:47:36 +00:00
engine.ih Initial revision 2004-10-06 21:47:36 +00:00
main.c Added more files missing from the distribution. re/debug.c re/main.c 2004-10-09 15:21:04 +00:00
main.ih Initial revision 2004-10-06 21:47:36 +00:00
mkh Initial revision 2004-10-06 21:47:36 +00:00
re.c Added directory name for location of scheme-private.h in include statement. 2004-10-07 05:54:42 +00:00
re.h Initial revision 2004-10-06 21:47:36 +00:00
re.makefile Initial revision 2004-10-06 21:47:36 +00:00
re.scm Initial revision 2004-10-06 21:47:36 +00:00
regcomp.c Added more files missing from the distribution. re/debug.c re/main.c 2004-10-09 15:21:04 +00:00
regcomp.ih Initial revision 2004-10-06 21:47:36 +00:00
regerror.c Added more files missing from the distribution. re/debug.c re/main.c 2004-10-09 15:21:04 +00:00
regerror.ih Initial revision 2004-10-06 21:47:36 +00:00
regex.001 Initial revision 2004-10-06 21:47:36 +00:00
regex.3 Initial revision 2004-10-06 21:47:36 +00:00
regex.7 Initial revision 2004-10-06 21:47:36 +00:00
regex.h Initial revision 2004-10-06 21:47:36 +00:00
regex2.h Initial revision 2004-10-06 21:47:36 +00:00
regexec.c Added more files missing from the distribution. re/debug.c re/main.c 2004-10-09 15:21:04 +00:00
regfree.c Initial revision 2004-10-06 21:47:36 +00:00
split.c Initial revision 2004-10-06 21:47:36 +00:00
tests Initial revision 2004-10-06 21:47:36 +00:00
utils.h Initial revision 2004-10-06 21:47:36 +00:00

README

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.
--------