summaryrefslogtreecommitdiff
path: root/win32/makedef.pl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-07-12 01:55:15 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-07-12 01:55:15 +0000
commitc5be433b5c5658093bc9cae4434721a0b63e7a85 (patch)
treeb5e25d83702fd5b6ebb6108c8cdf104a09f97040 /win32/makedef.pl
parented7ab888f26e9b2a3bcf98806b630e993179f8b4 (diff)
downloadperl-c5be433b5c5658093bc9cae4434721a0b63e7a85.tar.gz
yet more cleanups of the PERL_OBJECT, MULTIPLICITY and USE_THREADS
builds; passing the implicit context is unified among the three flavors; PERL_IMPLICIT_CONTEXT is auto-enabled under all three flavors (see the top of perl.h) for testing; all varargs functions foo() have a va_list-taking variant vfoo() for generating the context-free versions; the PERL_OBJECT build should now be hyper-compatible with CPAN extensions (C++ is totally out of the picture) result has only been tested on Windows TODO: write docs on the THX rationale and idiomatic usage of the Perl API p4raw-id: //depot/perl@3667
Diffstat (limited to 'win32/makedef.pl')
-rw-r--r--win32/makedef.pl10
1 files changed, 7 insertions, 3 deletions
diff --git a/win32/makedef.pl b/win32/makedef.pl
index dc0869a5c7..96b540b6d4 100644
--- a/win32/makedef.pl
+++ b/win32/makedef.pl
@@ -37,7 +37,6 @@ if ($define{PERL_OBJECT}) {
# output_symbol("perl_parse");
# output_symbol("perl_run");
# output_symbol("RunPerl");
- output_symbol("GetPerlInterpreter");
# exit(0);
}
else {
@@ -188,13 +187,16 @@ Perl_unlock_condpair
Perl_magic_mutexfree
)];
}
-unless ($define{'USE_THREADS'} or $define{'PERL_IMPLICIT_CONTEXT'})
- {
+unless ($define{'USE_THREADS'} or $define{'PERL_IMPLICIT_CONTEXT'}
+ or $define{'PERL_OBJECT'})
+{
skip_symbols [qw(
Perl_croak_nocontext
Perl_die_nocontext
+ Perl_deb_nocontext
Perl_form_nocontext
Perl_warn_nocontext
+ Perl_warner_nocontext
Perl_newSVpvf_nocontext
Perl_sv_catpvf_nocontext
Perl_sv_setpvf_nocontext
@@ -507,4 +509,6 @@ Perl_init_os_extras
Perl_getTHR
Perl_setTHR
RunPerl
+GetPerlInterpreter
+SetPerlInterpreter