This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[win32] yet another patch
[perl5.git] / vms / writemain.pl
index eb059f8..a502d61 100644 (file)
@@ -36,12 +36,13 @@ print OUT <<'EOH';
 static void
 xs_init()
 {
-    dXSUB_SYS;
 EOH
 
 if (@ARGV) {
+  $names = join(' ',@ARGV);
+  $names =~ tr/"//d;  # Plan9 doesn't remove "" on command line
   # Allow for multiple names in one quoted group
-  @exts = split(/\s+/, join(' ',@ARGV));
+  @exts = split(/\s+/,$names);
 }
 
 if (@exts) {
@@ -51,6 +52,8 @@ if (@exts) {
     $subname =~ s/::/__/g;
     print OUT "extern void     boot_${subname} _((CV* cv));\n"
   }
+  # May not actually be a declaration, so put after other declarations
+  print OUT "  dXSUB_SYS;\n";
   foreach $ext (@exts) {
     my($subname) = $ext;
     $subname =~ s/::/__/g;