0

For prepairing a perl upgrade, i wanted to know which perl xs modules are installed for my local activestate perl 5.16 installation.

Does anybody know how i could get such a list of perl modules?

2 Answers2

0

I'm not sure how easy it is to properly differentiate between 'installed packages' and 'installed XS packages'.

The latter will very likely have been installed via PPM, so you should be able to list them with ppm list.

Sobrique
  • 52,974
  • 7
  • 60
  • 101
  • Have tried that before, but "PPM list" shows all installed modules and does not differerntiate between "normal" and XS packages. – ubastuhl Apr 20 '15 at 12:10
  • I'm not honestly sure that perl differentiates in 'normal operation'. I suspect you'll be needing to look at the module installation to see. – Sobrique Apr 20 '15 at 12:13
0

dir /s/b *.dll from your AP's lib and site\lib directory. (I think those in lib came with AP, and those in site\lib were installed afterwards.)

ikegami
  • 367,544
  • 15
  • 269
  • 518