summaryrefslogtreecommitdiff
path: root/embed.pl
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-03-08 21:04:48 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-03-08 21:04:48 +0000
commitdb5cf5a9c391da96933df0f1e349efb8c51e35f9 (patch)
tree86611b4d36797a8b5f61a7f3e9f26263e7f400eb /embed.pl
parent1d5472a96cdafb6d0b947d16fd3e5f3ddac8a37b (diff)
downloadperl-db5cf5a9c391da96933df0f1e349efb8c51e35f9.tar.gz
remove bogus symbols from global.sym
p4raw-id: //depot/perl@3095
Diffstat (limited to 'embed.pl')
-rwxr-xr-xembed.pl9
1 files changed, 7 insertions, 2 deletions
diff --git a/embed.pl b/embed.pl
index 7d3039ecf7..89e15066ae 100755
--- a/embed.pl
+++ b/embed.pl
@@ -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