summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-07-09 05:20:31 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-07-09 05:20:31 +0000
commitd06ea78cdb5afedf2e1a85ff54e3bfc5c519b3c5 (patch)
tree22312ea50e4a3a4106ee988018c50871c1267077 /regexec.c
parent3f9aafa052abab5917516312e3f78b01a9ea73c3 (diff)
downloadperl-d06ea78cdb5afedf2e1a85ff54e3bfc5c519b3c5.tar.gz
applied patch from Ilya, tweaked some to get clean static build of
the ext/re stuff (untested on win32) p4raw-id: //depot/perl@1393
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/regexec.c b/regexec.c
index 505bc28ee8..deb61aa7dc 100644
--- a/regexec.c
+++ b/regexec.c
@@ -20,9 +20,12 @@
*/
#ifdef IN_XSUB_RE
+/* We *really* need to overwrite these symbols: */
# define Perl_regexec_flags my_regexec
# define Perl_regdump my_regdump
# define Perl_regprop my_regprop
+/* *These* symbols are masked to allow static link. */
+# define Perl_pregexec my_pregexec
#endif
/*SUPPRESS 112*/