diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-09 05:20:31 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-07-09 05:20:31 +0000 |
commit | d06ea78cdb5afedf2e1a85ff54e3bfc5c519b3c5 (patch) | |
tree | 22312ea50e4a3a4106ee988018c50871c1267077 /regexec.c | |
parent | 3f9aafa052abab5917516312e3f78b01a9ea73c3 (diff) | |
download | perl-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.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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*/ |