On 9 May 2002 16:33:07 -0000, [EMAIL PROTECTED] wrote: >brianp 02/05/09 09:33:07 > > Modified: . Makefile.in configure.in > Added: strmatch Makefile.in apr_strmatch.c > include apr_strmatch.h > Log: > Added apr_strmatch API > > Revision Changes Path > 1.62 +1 -1 apr-util/Makefile.in
[...] > * Precompile a pattern for matching using the Boyer-Moore-Horspool algorithm > * @param p The pool from which to allocate the pattern > * @param s The pattern string > * @param case_sensitive Whether the matching should be case-sensitive > * @return a pointer to the compiled pattern, or NULL if compilation fails > */ > APU_DECLARE(const apr_strmatch_pattern *) > apr_strmatch_precompile(apr_pool_t *p, const char *s, > int case_sensitive); make_exports.awk doesn't parse this so apr_strmatch_precompile is missing from the exports list. I can see why you did this (normal format exceeds 80 cols) but unless we can teach make_exports.awk to handle split lines we'll just have to break the 80 col rule :( -- ______________________________________________________________________________ | Brian Havard | "He is not the messiah! | | [EMAIL PROTECTED] | He's a very naughty boy!" - Life of Brian | ------------------------------------------------------------------------------
