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