Re: How to recognize modules that needs compilation?

2007-05-16 Thread Alexandr Ciornii
Gabor Szabo wrote: I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? Is there a better way to collect this information or is it already available

Re: How to recognize modules that needs compilation?

2007-05-15 Thread Adriano Ferreira
On 5/14/07, Ken Williams [EMAIL PROTECTED] wrote: On May 14, 2007, at 2:22 PM, Gabor Szabo wrote: Hi, I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct

Re: How to recognize modules that needs compilation?

2007-05-15 Thread Jenda Krynicky
From: Gabor Szabo [EMAIL PROTECTED] Hi, I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? Is there a better way to collect this

Re: How to recognize modules that needs compilation?

2007-05-15 Thread Gabor Szabo
thanks for all the ideas. Gabor -- Gabor Szabo http://www.szabgab.com/ Perl Training in Israel http://www.pti.co.il/

How to recognize modules that needs compilation?

2007-05-14 Thread Gabor Szabo
Hi, I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? Is there a better way to collect this information or is it alrady available somewhere? In

Re: How to recognize modules that needs compilation?

2007-05-14 Thread Sébastien Aperghis-Tramoni
Gabor Szabo wrote: Hi, I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? Is there a better way to collect this information or is it alrady

Re: How to recognize modules that needs compilation?

2007-05-14 Thread Jerry D. Hedden
Gabor Szabo wrote: I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? I think it would cover nearly all cases.

Re: How to recognize modules that needs compilation?

2007-05-14 Thread Ken Williams
On May 14, 2007, at 2:22 PM, Gabor Szabo wrote: Hi, I would like to create a list of modules that need compilations as opposed to those that are pure perl Is checking for a file with .xs .c or .h extension in the distribution the correct thing to do? I agree it would be a good first