# New Ticket Created by Andy Dougherty
# Please include the string: [perl #17034]
# in the subject line of all future correspondence about this issue.
# <URL: http://rt.perl.org/rt2/Ticket/Display.html?id=17034 >
Here are today's patches I needed to get parrot building. Again, I had to
guess about some of the MANIFEST changes. Those of you with commit
priveleges, *please* try to keep MANIFEST in sync.
The multiarray.pmc patch is, I hope, self-explanatory (use /**/ for
comments instead of //).
diff -r -u parrot-cvs/MANIFEST parrot-andy/MANIFEST
--- parrot-cvs/MANIFEST Thu Sep 5 09:32:55 2002
+++ parrot-andy/MANIFEST Thu Sep 5 09:51:54 2002
@@ -58,11 +58,13 @@
config/gen/config_h/config_h.in
config/gen/config_pm.pl
config/gen/config_pm/Config_pm.in
+config/gen/libparrot_def.pl
+config/gen/libparrot_def/libparrot_def.in
config/gen/makefiles.pl
config/gen/makefiles/classes.in
config/gen/makefiles/docs.in
-config/gen/makefiles/jako.in
config/gen/makefiles/imcc.in
+config/gen/makefiles/jako.in
config/gen/makefiles/languages.in
config/gen/makefiles/miniperl.in
config/gen/makefiles/perl6.in
@@ -379,11 +381,14 @@
languages/perl6/examples/mandel.p6
languages/perl6/examples/qsort.p6
languages/perl6/mkdistro.sh
+languages/perl6/overview.pod
languages/perl6/pconfig.pl
languages/perl6/perl6
languages/perl6/perl6re/Perl6RE.bnf
languages/perl6/perl6re/Perl6RE.pm
languages/perl6/prd-perl6.pl
+languages/perl6/t/builtins/array.t
+languages/perl6/t/builtins/string.t
languages/perl6/t/compiler/1.t
languages/perl6/t/compiler/2.t
languages/perl6/t/compiler/3.t
@@ -394,7 +399,6 @@
languages/perl6/t/compiler/8.t
languages/perl6/t/compiler/9.t
languages/perl6/t/compiler/a.t
-#languages/perl6/t/compiler/builtins.t
languages/perl6/t/compiler/qsort.t
languages/perl6/t/harness
languages/perl6/t/parser/Makefile
@@ -435,6 +439,7 @@
languages/perl6/t/parser/speed_3.exp
languages/perl6/t/parser/speed_3.pl
languages/perl6/t/rx/basic.t
+languages/perl6/t/rx/call.t
languages/perl6/t/rx/special.t
languages/python/python.bnf
languages/python/python.prd
diff -r -u parrot-cvs/classes/multiarray.pmc parrot-andy/classes/multiarray.pmc
--- parrot-cvs/classes/multiarray.pmc Wed Sep 4 21:02:57 2002
+++ parrot-andy/classes/multiarray.pmc Thu Sep 5 10:17:54 2002
@@ -269,7 +269,7 @@
* it should work anyway. TODO: verify its validity
*/
- dead_val = buffer_ptr->virtual_addr; // save our begin value
+ dead_val = buffer_ptr->virtual_addr; /*save our begin value*/
while(buffer_ptr->virtual_addr != offs && (buffer_ptr != NULL)) {
/* my_val = (offs - (buffer_ptr->sparse_offset)); */
@@ -354,7 +354,7 @@
*/
} else {
- init_marray(INTERP, SELF, NULL); //no size
+ init_marray(INTERP, SELF, NULL); /*no size*/
}
}
--
Andy Dougherty [EMAIL PROTECTED]
Dept. of Physics
Lafayette College, Easton PA 18042