diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-08 21:04:48 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-03-08 21:04:48 +0000 |
commit | db5cf5a9c391da96933df0f1e349efb8c51e35f9 (patch) | |
tree | 86611b4d36797a8b5f61a7f3e9f26263e7f400eb /embed.pl | |
parent | 1d5472a96cdafb6d0b947d16fd3e5f3ddac8a37b (diff) | |
download | perl-db5cf5a9c391da96933df0f1e349efb8c51e35f9.tar.gz |
remove bogus symbols from global.sym
p4raw-id: //depot/perl@3095
Diffstat (limited to 'embed.pl')
-rwxr-xr-x | embed.pl | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -405,6 +405,11 @@ print EM <<'END'; #endif /* PERL_OBJECT */ +/* compatibility stubs */ + +#define sv_setptrobj(rv,ptr,name) sv_setref_iv(rv,name,(IV)ptr) +#define sv_setptrref(rv,ptr) sv_setref_iv(rv,Nullch,(IV)ptr) + END close(EM); @@ -541,7 +546,7 @@ END print EM <<'END'; -#ifdef PERL_POLLUTE /* unsupported in 5.006 */ +#ifdef PERL_POLLUTE /* disabled by default in 5.006 */ END @@ -551,7 +556,7 @@ for $sym (sort @extvars) { print EM <<'END'; -#endif /* MIN_PERL_DEFINE */ +#endif /* PERL_POLLUTE */ END |