The manpage for DynaLoader mentions boot_$module names; this is apparently a standard call. From the manpage:

bootstrap() Syntax: bootstrap($module) This is the normal entry point for automatic dynamic loading in Perl. It performs the following actions: · locates an auto/$module directory by searching @INC · uses dl_findfile() to determine the filename to load · sets @dl_require_symbols to "("boot_$module")" · executes an auto/$module/$module.bs file if it exists (typically used to add to @dl_resolve_using any files which are required to load the module on the current platform) · calls dl_load_flags() to determine how to load the file. · calls dl_load_file() to load the file · calls dl_undef_symbols() and warns if any sym­ bols are undefined · calls dl_find_symbol() for "boot_$module" · calls dl_install_xsub() to install it as "${module}::bootstrap" · calls &{"${module}::bootstrap"} to bootstrap the module (actually it uses the function ref­ erence returned by dl_install_xsub for speed)

In reply to Re: My Perl XS Module Fails At 'make test' by bikeNomad
in thread My Perl XS Module Fails At 'make test' by sierrathedog04

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.