http://qs321.pair.com?node_id=606047


in reply to Re^4: Merge multiple BMP images into ICO files
in thread Merge multiple BMP images into ICO files

Large parts of Imager are written in XS, which is mostly C with some Perl macros. On Win32, XS gets compiled into .dll files. On other platforms, it gets compiled into whatever format dynamically loadable libraries have. You can find out the filename extension for a platform by inspecting the output of perl -V:so on that platform:

Win32:

Q:\>perl -V:so so='dll';

Solaris:

$ perl -V:so so='so';