[svn:parrot] r40016 - trunk/ext/SQLite3

pmichaud at svn.parrot.org pmichaud at svn.parrot.org
Sun Jul 12 13:57:00 UTC 2009


Author: pmichaud
Date: Sun Jul 12 13:56:58 2009
New Revision: 40016
URL: https://trac.parrot.org/parrot/changeset/40016

Log:
[examples]  Some patches to avoid bitrot from masak++ .

Modified:
   trunk/ext/SQLite3/Makefile.PL
   trunk/ext/SQLite3/Makefile.in

Modified: trunk/ext/SQLite3/Makefile.PL
==============================================================================
--- trunk/ext/SQLite3/Makefile.PL	Sun Jul 12 13:29:53 2009	(r40015)
+++ trunk/ext/SQLite3/Makefile.PL	Sun Jul 12 13:56:58 2009	(r40016)
@@ -1,5 +1,5 @@
 use lib '../../lib';
 use Parrot::Configure;
 my $pc = Parrot::Configure->new();
-$pc->data->slurp();
+$pc->data->get_PConfig();
 $pc->genfile("Makefile.in" => "Makefile");

Modified: trunk/ext/SQLite3/Makefile.in
==============================================================================
--- trunk/ext/SQLite3/Makefile.in	Sun Jul 12 13:29:53 2009	(r40015)
+++ trunk/ext/SQLite3/Makefile.in	Sun Jul 12 13:56:58 2009	(r40016)
@@ -61,16 +61,15 @@
 .c$(O) :
 	@$(CC) "" $(CFLAGS) -I$(@D) @cc_o_out@$@ -c $<
 
-#PERL6=../../perl6
-PERL6=../../parrot ../../languages/perl6/perl6.pbc
+PERL6=../../parrot ../../languages/rakudo/perl6.pbc
 
 all :
-	cd ../..; make perl6
+	cd ../..; make all
 	cd ../../compilers/ncigen; $(PERL6) ../../ext/SQLite3/gen_sqlite3.pl /usr/include/sqlite3.h > ../../ext/SQLite3/genSQLite3.pir
 
 test:
 	$(RM_F) test.db t/test.db
-	PERL6LIB=../../languages/perl6 $(PERL6) t/test.p6
+	PERL6LIB=../../languages/rakudo $(PERL6) t/test.p6
 
 $(SHARED_LIB) : $(C_FILES)
 	$(MKPATH) @blib_dir@


More information about the parrot-commits mailing list