OpenPKG CVS Repository
http://cvs.openpkg.org/
____________________________________________________________________________
Server: cvs.openpkg.org Name: Thomas Lotterer
Root: /e/openpkg/cvs Email: [EMAIL PROTECTED]
Module: openpkg-src Date: 10-Mar-2004 11:53:53
Branch: HEAD Handle: 2004031010535300
Modified files:
openpkg-src/fsl fsl.spec
Log:
quick and dirty rename of reg(comp|error|exec|free) symbols to avoid
accidental provision of embedded antique POSIX regex library. Petidomo
was a victim as it expects working [:alnum:] and [:space:] constructs
which do not work with the fsl regex but do with OS regex
Summary:
Revision Changes Path
1.63 +6 -2 openpkg-src/fsl/fsl.spec
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: openpkg-src/fsl/fsl.spec
============================================================================
$ cvs diff -u -r1.62 -r1.63 fsl.spec
--- openpkg-src/fsl/fsl.spec 7 Feb 2004 17:54:54 -0000 1.62
+++ openpkg-src/fsl/fsl.spec 10 Mar 2004 10:53:53 -0000 1.63
@@ -34,7 +34,7 @@
Group: System
License: MIT-style
Version: 1.4.0
-Release: 20040207
+Release: 20040310
# package options
%option with_fsl_debuglogcode no
@@ -73,7 +73,11 @@
%setup -q
%{l_shtool} subst -e 's;^\(all: .*\) pcre_test *$;\1;' lib_pcre/Makefile.in
%{l_shtool} subst \
- -e 's;pcre;fsl_pcre;g' \
+ -e 's;\(pcre\);fsl_\1;g' \
+ -e 's;\(regcomp\);fsl_\1;g' \
+ -e 's;\(regerror\);fsl_\1;g' \
+ -e 's;\(regexec\);fsl_\1;g' \
+ -e 's;\(regfree\);fsl_\1;g' \
-e '/#include/s;fsl_pcre;pcre;g' \
*.[ch] \
lib_pcre/*.[ch]
@@ .
______________________________________________________________________
The OpenPKG Project www.openpkg.org
CVS Repository Commit List [EMAIL PROTECTED]