summaryrefslogtreecommitdiff
path: root/ext/pcre/config.m4
Commit message (Collapse)AuthorAgeFilesLines
* Please welcome the new build system.Sascha Schumann2002-03-071-9/+3
| | | | | | | | | | If you encounter any problems, please make sure to email sas@php.net directly. An introduction can be found on http://schumann.cx/buildv5.txt
* Unified the configure messages.foobar2001-11-301-3/+3
|
* Move -DSUPPORT_UTF8 flag into the appropriate Makefile so as not to polluteAndrei Zmievski2001-05-181-1/+0
| | | | | the global namespace.
* Nuke more quotesSascha Schumann2001-05-121-2/+2
|
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-2/+2
| | | | | # Heads up people! I tested this before committing but you never know..
* Preprocessor stuff should go into CPPFLAGS.Sascha Schumann2001-02-211-1/+1
|
* Enable UTF8 support (incomplete) by default.Andrei Zmievski2001-02-201-0/+1
|
* Use the new AC_ADD_LIBRARY_WITH_PATH option shared-libaddSascha Schumann2000-05-021-5/+1
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-59/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Expanded checking for pcre.h and libpcre.a.Andrei Zmievski2000-03-071-6/+15
|
* Get rid of config.h.stub. Note that you should embed a comment aboutSascha Schumann1999-12-301-4/+4
| | | | | | | what the respective define does into the AC_DEFINE macro. I.e. AC_DEFINE(HAVE_FOO, 1, [Whether you have FOO])
* Integration of -ng changes. Changes:Sascha Schumann1999-12-301-4/+4
| | | | | | | | | | | | - added support for externally built modules, - improved support for in-tree shared modules, - fixed diversion bugs, - configure displays some informative messages, - faster static build (libtool isn't used anymore for compiling non-PIC objects), - dependencies comparable to automake's without requiring GNU make or GCC, - working make clean for non-GNU makes.
* Define USE_BCOPY, if memmove is not found (i.e. SunOS 4). Fix for #2480Sascha Schumann1999-10-241-0/+2
|
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-041-3/+4
| | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature
* * create Makefiles for ext, pcrelib, sapi/*Sascha Schumann1999-09-291-0/+2
| | | | | * copy files for Apache from $(srcdir)
* Small clarification.Andrey Hristov1999-09-231-1/+2
|
* improve short help messagesSascha Schumann1999-09-161-3/+4
|
* - Updated bundled PCRE library to version 2.08Andrey Hristov1999-09-141-11/+42
| | | | | | | | - Made it possible to specify external location of the PCRE library - Reworked PCRE extension to use updated PCRE library API Hopefully now everything behaves just like Perl..
* *** empty log message ***Andrey Hristov1999-07-121-1/+1
|
* *** empty log message ***Andrey Hristov1999-06-011-1/+1
|
* * Get Apache module to compile again with the regex stuff.Zeev Suraski1999-05-281-2/+2
| | | | | * Get Apache to propertly work with POST, and some SAPI fixes
* -Modified PCRE library slightly to do what needs to be doneAndrey Hristov1999-05-281-29/+11
| | | | | | | -Updated preg_replace() code to handle stuff properly -Removed ability to specify external PCRE library source to link against (since our bundled version is patched now)
* We don't need those there.Andrey Hristov1999-05-271-2/+0
|
* Really fix the configuration now so that it's possible to compile bothAndrey Hristov1999-05-271-8/+13
| | | | | | against the bundled PCRE library and the one external to the source tree. Crossing my fingers while Zeev compiles this. :)
* - fix CGI build (at least)Sascha Schumann1999-05-271-8/+6
|
* -Added PCRE library sourceAndrey Hristov1999-05-261-13/+38
| | | | | -Updated configuration process
* Initial check-in of PCRE (Perl Compatible Regular Expressions) extension.Andrey Hristov1999-05-211-0/+18
PCRE library can be found at ftp://ftp.cus.cam.ac.uk/pub/software/programs/pcre/ config.m4 will be updated to be more robust later on. perl_match() takes a regular expression, the source string, and the array for subpattern matches. perl_replace() takes a regular expression, the search string, and the replacement string. Regular expression is specified using delimiters and options. Example: perl_match("/<[a-z]*>/i", $text, $tags); More stuff is coming soon.