diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-19 18:57:11 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-11-19 18:57:11 +0000 |
commit | 570c6a0d6baa43ddc6723315bcb20bc76fb8e44f (patch) | |
tree | 2874434069d9d3ce5537762c9879807e767695b7 /perlvars.h | |
parent | e6b2e7559f25acecc651c2f0d304b65728937d82 (diff) | |
download | perl-570c6a0d6baa43ddc6723315bcb20bc76fb8e44f.tar.gz |
Retract #13088: it seems that unless dump.c is extensively
reorganized as to what symbols it shows, when, and to whom,
we are stuck with having the dump.o symbols in the libperl
and thusly in the main Perl binary.
p4raw-id: //depot/perl@13100
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perlvars.h b/perlvars.h index 09d6394674..606f7a5243 100644 --- a/perlvars.h +++ b/perlvars.h @@ -41,6 +41,7 @@ PERLVAR(Gsharedsv_space, PerlInterpreter*) /* The shared sv space */ PERLVAR(Gsharedsv_space_mutex, perl_mutex) /* Mutex protecting the shared sv space */ #endif -/* Force inclusion of runops */ +/* Force inclusion of both runops options */ PERLVARI(Grunops_std, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_standard)) +PERLVARI(Grunops_dbg, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_debug)) |