Parrot config - a small perl task

2004-07-16 Thread Leopold Toetsch
Our types configuration is still using perl5's type sizes. This breaks default Configure.pl runs on various architectures, that ship a perl with long long intvals. Using perl's was needed a long time ago, when packfiles were generated by perl. It's not needed any more. So the job is to fix

[perl #30711] [BUG] Cannot open include file pmc_default.h in py_func.c

2004-07-16 Thread via RT
# New Ticket Created by Dennis Rieks # Please include the string: [perl #30711] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=30711 Hi, on my win32 tinderbox there is an missing file pmc_default.h while

Re: Quick thing for the piethon interested

2004-07-16 Thread TOGoS
This is my first code patch EVAR, so here's to hoping I didn't mess it all up. Seems to work, anyway. __ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail python.ops-2004.07.16.diff

Re: Quick thing for the piethon interested

2004-07-16 Thread TOGoS
--- TOGoS [EMAIL PROTECTED] wrote: This is my first code patch EVAR, so here's to hoping I didn't mess it all up. Seems to work, anyway. :# Sorry. Did the diff wrong. Here it is, the right way. __ Do you Yahoo!? New and Improved

Re: Parrot config - a small perl task

2004-07-16 Thread Brent 'Dax' Royal-Gordon
Leopold Toetsch wrote: On (AFAIK) all systems: opcode_type = intval_type = long. This size has to match the pointer size. And floatval_type = double. Very small, as it turns out: - my $intval=$Config{ivtype} || 'long'; - my $floatval=$Config{nvtype} || 'double'; - my $opcode=$Config{ivtype}

Re: Python builtin namespace

2004-07-16 Thread Tim Bunce
On Fri, Jul 16, 2004 at 12:02:15AM -0400, Dan Sugalski wrote: At 10:17 PM + 7/15/04, Steve Peters wrote: On Friday 16 July 2004 02:46 am, Dan Sugalski wrote: And language builtin namespaces in general. We need a standard, and now's as good a time as any, so... All language-specific

Re: Parrot config - a small perl task

2004-07-16 Thread Leopold Toetsch
Brent 'Dax' Royal-Gordon wrote: Leopold Toetsch wrote: On (AFAIK) all systems: opcode_type = intval_type = long. This size has to match the pointer size. And floatval_type = double. Very small, as it turns out: Great, thanks. The patch is smaller then my description ;) leo

Re: Quick thing for the piethon interested

2004-07-16 Thread Leopold Toetsch
Togos [EMAIL PROTECTED] wrote: This is my first code patch EVAR, so here's to hoping I didn't mess it all up. Seems to work, anyway. Thanks, applied. leo

Thanks Brent and Leo

2004-07-16 Thread Joshua Gatcomb
Cygwin no longer requires --intval and --opcode size changes in the Configure process to work correctly. Additionally, the benchmarks appear to be running a bit faster too. Cheers Joshua Gatcomb a.k.a. Limbic~Region __ Do you Yahoo!?

Re: Perl script to .so file

2004-07-16 Thread Stéphane Payrard
RAD On Wed, Jul 14, 2004 at 10:03:43PM +0800, RaghavendraK 70574 wrote: Hi, Am a hardcore C++ guy and don;t know much abt the Perl. But one of my friend has proved that the fastest way to RAD is Perl. I need to know if we can convert a Perl script to a dynamic link library under unix

Re: Parrot config - a small perl task

2004-07-16 Thread Timur Safin
- Original Message - From: Leopold Toetsch [EMAIL PROTECTED] To: Perl 6 Internals [EMAIL PROTECTED] Sent: Friday, July 16, 2004 9:42 AM Subject: Parrot config - a small perl task On (AFAIK) all systems: opcode_type = intval_type = long. This size has to match the pointer size. And