Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

696 lines
23 KiB

  1. # Generated from DynaLoader.pm.PL (resolved %Config::Config values)
  2. package DynaLoader;
  3. # And Gandalf said: 'Many folk like to know beforehand what is to
  4. # be set on the table; but those who have laboured to prepare the
  5. # feast like to keep their secret; for wonder makes the words of
  6. # praise louder.'
  7. # (Quote from Tolkien sugested by Anno Siegel.)
  8. #
  9. # See pod text at end of file for documentation.
  10. # See also ext/DynaLoader/README in source tree for other information.
  11. #
  12. # [email protected], August 1994
  13. $VERSION = $VERSION = "1.03"; # avoid typo warning
  14. require AutoLoader;
  15. *AUTOLOAD = \&AutoLoader::AUTOLOAD;
  16. # The following require can't be removed during maintenance
  17. # releases, sadly, because of the risk of buggy code that does
  18. # require Carp; Carp::croak "..."; without brackets dying
  19. # if Carp hasn't been loaded in earlier compile time. :-(
  20. # We'll let those bugs get found on the development track.
  21. require Carp if $] < 5.00450;
  22. # enable debug/trace messages from DynaLoader perl code
  23. $dl_debug = $ENV{PERL_DL_DEBUG} || 0 unless defined $dl_debug;
  24. #
  25. # Flags to alter dl_load_file behaviour. Assigned bits:
  26. # 0x01 make symbols available for linking later dl_load_file's.
  27. # (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
  28. # (ignored under VMS; effect is built-in to image linking)
  29. #
  30. # This is called as a class method $module->dl_load_flags. The
  31. # definition here will be inherited and result on "default" loading
  32. # behaviour unless a sub-class of DynaLoader defines its own version.
  33. #
  34. sub dl_load_flags { 0x00 }
  35. # ($dl_dlext, $dlsrc)
  36. # = @Config::Config{'dlext', 'dlsrc'};
  37. ($dl_dlext, $dlsrc) = ('dll','dl_win32.xs')
  38. ;
  39. # Some systems need special handling to expand file specifications
  40. # (VMS support by Charles Bailey <[email protected]>)
  41. # See dl_expandspec() for more details. Should be harmless but
  42. # inefficient to define on systems that don't need it.
  43. $do_expand = $Is_VMS = $^O eq 'VMS';
  44. @dl_require_symbols = (); # names of symbols we need
  45. @dl_resolve_using = (); # names of files to link with
  46. @dl_library_path = (); # path to look for files
  47. @dl_librefs = (); # things we have loaded
  48. @dl_modules = (); # Modules we have loaded
  49. # This is a fix to support DLD's unfortunate desire to relink -lc
  50. @dl_resolve_using = dl_findfile('-lc') if $dlsrc eq "dl_dld.xs";
  51. # Initialise @dl_library_path with the 'standard' library path
  52. # for this platform as determined by Configure
  53. # push(@dl_library_path, split(' ', $Config::Config{'libpth'});
  54. push(@dl_library_path, split(' ', '"C:\\\'Program Files\\\'DevStudio\\\'VC\\\'lib"'));
  55. # Add to @dl_library_path any extra directories we can gather from
  56. # environment variables. So far LD_LIBRARY_PATH is the only known
  57. # variable used for this purpose. Others may be added later.
  58. push(@dl_library_path, split(/:/, $ENV{LD_LIBRARY_PATH}))
  59. if $ENV{LD_LIBRARY_PATH};
  60. # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here.
  61. boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) &&
  62. !defined(&dl_load_file);
  63. if ($dl_debug) {
  64. print STDERR "DynaLoader.pm loaded (@INC, @dl_library_path)\n";
  65. print STDERR "DynaLoader not linked into this perl\n"
  66. unless defined(&boot_DynaLoader);
  67. }
  68. 1; # End of main code
  69. sub croak { require Carp; Carp::croak(@_) }
  70. # The bootstrap function cannot be autoloaded (without complications)
  71. # so we define it here:
  72. sub bootstrap {
  73. # use local vars to enable $module.bs script to edit values
  74. local(@args) = @_;
  75. local($module) = $args[0];
  76. local(@dirs, $file);
  77. unless ($module) {
  78. require Carp;
  79. Carp::confess("Usage: DynaLoader::bootstrap(module)");
  80. }
  81. # A common error on platforms which don't support dynamic loading.
  82. # Since it's fatal and potentially confusing we give a detailed message.
  83. croak("Can't load module $module, dynamic loading not available in this perl.\n".
  84. " (You may need to build a new perl executable which either supports\n".
  85. " dynamic loading or has the $module module statically linked into it.)\n")
  86. unless defined(&dl_load_file);
  87. my @modparts = split(/::/,$module);
  88. my $modfname = $modparts[-1];
  89. # Some systems have restrictions on files names for DLL's etc.
  90. # mod2fname returns appropriate file base name (typically truncated)
  91. # It may also edit @modparts if required.
  92. $modfname = &mod2fname(\@modparts) if defined &mod2fname;
  93. my $modpname = join('/',@modparts);
  94. print STDERR "DynaLoader::bootstrap for $module ",
  95. "(auto/$modpname/$modfname.$dl_dlext)\n" if $dl_debug;
  96. foreach (@INC) {
  97. chop($_ = VMS::Filespec::unixpath($_)) if $Is_VMS;
  98. my $dir = "$_/auto/$modpname";
  99. next unless -d $dir; # skip over uninteresting directories
  100. # check for common cases to avoid autoload of dl_findfile
  101. my $try = "$dir/$modfname.$dl_dlext";
  102. last if $file = ($do_expand) ? dl_expandspec($try) : (-f $try && $try);
  103. # no luck here, save dir for possible later dl_findfile search
  104. push @dirs, $dir;
  105. }
  106. # last resort, let dl_findfile have a go in all known locations
  107. $file = dl_findfile(map("-L$_",@dirs,@INC), $modfname) unless $file;
  108. croak("Can't locate loadable object for module $module in \@INC (\@INC contains: @INC)")
  109. unless $file; # wording similar to error from 'require'
  110. my $bootname = "boot_$module";
  111. $bootname =~ s/\W/_/g;
  112. @dl_require_symbols = ($bootname);
  113. # Execute optional '.bootstrap' perl script for this module.
  114. # The .bs file can be used to configure @dl_resolve_using etc to
  115. # match the needs of the individual module on this architecture.
  116. my $bs = $file;
  117. $bs =~ s/(\.\w+)?$/\.bs/; # look for .bs 'beside' the library
  118. if (-s $bs) { # only read file if it's not empty
  119. print STDERR "BS: $bs ($^O, $dlsrc)\n" if $dl_debug;
  120. eval { do $bs; };
  121. warn "$bs: $@\n" if $@;
  122. }
  123. # Many dynamic extension loading problems will appear to come from
  124. # this section of code: XYZ failed at line 123 of DynaLoader.pm.
  125. # Often these errors are actually occurring in the initialisation
  126. # C code of the extension XS file. Perl reports the error as being
  127. # in this perl code simply because this was the last perl code
  128. # it executed.
  129. my $libref = dl_load_file($file, $module->dl_load_flags) or
  130. croak("Can't load '$file' for module $module: ".dl_error()."\n");
  131. push(@dl_librefs,$libref); # record loaded object
  132. my @unresolved = dl_undef_symbols();
  133. if (@unresolved) {
  134. require Carp;
  135. Carp::carp("Undefined symbols present after loading $file: @unresolved\n");
  136. }
  137. my $boot_symbol_ref = dl_find_symbol($libref, $bootname) or
  138. croak("Can't find '$bootname' symbol in $file\n");
  139. my $xs = dl_install_xsub("${module}::bootstrap", $boot_symbol_ref, $file);
  140. push(@dl_modules, $module); # record loaded module
  141. # See comment block above
  142. &$xs(@args);
  143. }
  144. #sub _check_file { # private utility to handle dl_expandspec vs -f tests
  145. # my($file) = @_;
  146. # return $file if (!$do_expand && -f $file); # the common case
  147. # return $file if ( $do_expand && ($file=dl_expandspec($file)));
  148. # return undef;
  149. #}
  150. # Let autosplit and the autoloader deal with these functions:
  151. __END__
  152. sub dl_findfile {
  153. # Read ext/DynaLoader/DynaLoader.doc for detailed information.
  154. # This function does not automatically consider the architecture
  155. # or the perl library auto directories.
  156. my (@args) = @_;
  157. my (@dirs, $dir); # which directories to search
  158. my (@found); # full paths to real files we have found
  159. my $dl_ext= 'dll'; # $Config::Config{'dlext'} suffix for perl extensions
  160. my $dl_so = 'dll'; # $Config::Config{'so'} suffix for shared libraries
  161. print STDERR "dl_findfile(@args)\n" if $dl_debug;
  162. # accumulate directories but process files as they appear
  163. arg: foreach(@args) {
  164. # Special fast case: full filepath requires no search
  165. if ($Is_VMS && m%[:>/\]]% && -f $_) {
  166. push(@found,dl_expandspec(VMS::Filespec::vmsify($_)));
  167. last arg unless wantarray;
  168. next;
  169. }
  170. elsif (m:/: && -f $_ && !$do_expand) {
  171. push(@found,$_);
  172. last arg unless wantarray;
  173. next;
  174. }
  175. # Deal with directories first:
  176. # Using a -L prefix is the preferred option (faster and more robust)
  177. if (m:^-L:) { s/^-L//; push(@dirs, $_); next; }
  178. # Otherwise we try to try to spot directories by a heuristic
  179. # (this is a more complicated issue than it first appears)
  180. if (m:/: && -d $_) { push(@dirs, $_); next; }
  181. # VMS: we may be using native VMS directry syntax instead of
  182. # Unix emulation, so check this as well
  183. if ($Is_VMS && /[:>\]]/ && -d $_) { push(@dirs, $_); next; }
  184. # Only files should get this far...
  185. my(@names, $name); # what filenames to look for
  186. if (m:-l: ) { # convert -lname to appropriate library name
  187. s/-l//;
  188. push(@names,"lib$_.$dl_so");
  189. push(@names,"lib$_.a");
  190. } else { # Umm, a bare name. Try various alternatives:
  191. # these should be ordered with the most likely first
  192. push(@names,"$_.$dl_ext") unless m/\.$dl_ext$/o;
  193. push(@names,"$_.$dl_so") unless m/\.$dl_so$/o;
  194. push(@names,"lib$_.$dl_so") unless m:/:;
  195. push(@names,"$_.a") if !m/\.a$/ and $dlsrc eq "dl_dld.xs";
  196. push(@names, $_);
  197. }
  198. foreach $dir (@dirs, @dl_library_path) {
  199. next unless -d $dir;
  200. chop($dir = VMS::Filespec::unixpath($dir)) if $Is_VMS;
  201. foreach $name (@names) {
  202. my($file) = "$dir/$name";
  203. print STDERR " checking in $dir for $name\n" if $dl_debug;
  204. $file = ($do_expand) ? dl_expandspec($file) : (-f $file && $file);
  205. #$file = _check_file($file);
  206. if ($file) {
  207. push(@found, $file);
  208. next arg; # no need to look any further
  209. }
  210. }
  211. }
  212. }
  213. if ($dl_debug) {
  214. foreach(@dirs) {
  215. print STDERR " dl_findfile ignored non-existent directory: $_\n" unless -d $_;
  216. }
  217. print STDERR "dl_findfile found: @found\n";
  218. }
  219. return $found[0] unless wantarray;
  220. @found;
  221. }
  222. sub dl_expandspec {
  223. my($spec) = @_;
  224. # Optional function invoked if DynaLoader.pm sets $do_expand.
  225. # Most systems do not require or use this function.
  226. # Some systems may implement it in the dl_*.xs file in which case
  227. # this autoload version will not be called but is harmless.
  228. # This function is designed to deal with systems which treat some
  229. # 'filenames' in a special way. For example VMS 'Logical Names'
  230. # (something like unix environment variables - but different).
  231. # This function should recognise such names and expand them into
  232. # full file paths.
  233. # Must return undef if $spec is invalid or file does not exist.
  234. my $file = $spec; # default output to input
  235. if ($Is_VMS) { # dl_expandspec should be defined in dl_vms.xs
  236. require Carp;
  237. Carp::croak("dl_expandspec: should be defined in XS file!\n");
  238. } else {
  239. return undef unless -f $file;
  240. }
  241. print STDERR "dl_expandspec($spec) => $file\n" if $dl_debug;
  242. $file;
  243. }
  244. sub dl_find_symbol_anywhere
  245. {
  246. my $sym = shift;
  247. my $libref;
  248. foreach $libref (@dl_librefs) {
  249. my $symref = dl_find_symbol($libref,$sym);
  250. return $symref if $symref;
  251. }
  252. return undef;
  253. }
  254. =head1 NAME
  255. DynaLoader - Dynamically load C libraries into Perl code
  256. dl_error(), dl_findfile(), dl_expandspec(), dl_load_file(), dl_find_symbol(), dl_find_symbol_anywhere(), dl_undef_symbols(), dl_install_xsub(), dl_load_flags(), bootstrap() - routines used by DynaLoader modules
  257. =head1 SYNOPSIS
  258. package YourPackage;
  259. require DynaLoader;
  260. @ISA = qw(... DynaLoader ...);
  261. bootstrap YourPackage;
  262. # optional method for 'global' loading
  263. sub dl_load_flags { 0x01 }
  264. =head1 DESCRIPTION
  265. This document defines a standard generic interface to the dynamic
  266. linking mechanisms available on many platforms. Its primary purpose is
  267. to implement automatic dynamic loading of Perl modules.
  268. This document serves as both a specification for anyone wishing to
  269. implement the DynaLoader for a new platform and as a guide for
  270. anyone wishing to use the DynaLoader directly in an application.
  271. The DynaLoader is designed to be a very simple high-level
  272. interface that is sufficiently general to cover the requirements
  273. of SunOS, HP-UX, NeXT, Linux, VMS and other platforms.
  274. It is also hoped that the interface will cover the needs of OS/2, NT
  275. etc and also allow pseudo-dynamic linking (using C<ld -A> at runtime).
  276. It must be stressed that the DynaLoader, by itself, is practically
  277. useless for accessing non-Perl libraries because it provides almost no
  278. Perl-to-C 'glue'. There is, for example, no mechanism for calling a C
  279. library function or supplying arguments. A C::DynaLib module
  280. is available from CPAN sites which performs that function for some
  281. common system types.
  282. DynaLoader Interface Summary
  283. @dl_library_path
  284. @dl_resolve_using
  285. @dl_require_symbols
  286. $dl_debug
  287. @dl_librefs
  288. @dl_modules
  289. Implemented in:
  290. bootstrap($modulename) Perl
  291. @filepaths = dl_findfile(@names) Perl
  292. $flags = $modulename->dl_load_flags Perl
  293. $symref = dl_find_symbol_anywhere($symbol) Perl
  294. $libref = dl_load_file($filename, $flags) C
  295. $symref = dl_find_symbol($libref, $symbol) C
  296. @symbols = dl_undef_symbols() C
  297. dl_install_xsub($name, $symref [, $filename]) C
  298. $message = dl_error C
  299. =over 4
  300. =item @dl_library_path
  301. The standard/default list of directories in which dl_findfile() will
  302. search for libraries etc. Directories are searched in order:
  303. $dl_library_path[0], [1], ... etc
  304. @dl_library_path is initialised to hold the list of 'normal' directories
  305. (F</usr/lib>, etc) determined by B<Configure> (C<$Config{'libpth'}>). This should
  306. ensure portability across a wide range of platforms.
  307. @dl_library_path should also be initialised with any other directories
  308. that can be determined from the environment at runtime (such as
  309. LD_LIBRARY_PATH for SunOS).
  310. After initialisation @dl_library_path can be manipulated by an
  311. application using push and unshift before calling dl_findfile().
  312. Unshift can be used to add directories to the front of the search order
  313. either to save search time or to override libraries with the same name
  314. in the 'normal' directories.
  315. The load function that dl_load_file() calls may require an absolute
  316. pathname. The dl_findfile() function and @dl_library_path can be
  317. used to search for and return the absolute pathname for the
  318. library/object that you wish to load.
  319. =item @dl_resolve_using
  320. A list of additional libraries or other shared objects which can be
  321. used to resolve any undefined symbols that might be generated by a
  322. later call to load_file().
  323. This is only required on some platforms which do not handle dependent
  324. libraries automatically. For example the Socket Perl extension
  325. library (F<auto/Socket/Socket.so>) contains references to many socket
  326. functions which need to be resolved when it's loaded. Most platforms
  327. will automatically know where to find the 'dependent' library (e.g.,
  328. F</usr/lib/libsocket.so>). A few platforms need to be told the
  329. location of the dependent library explicitly. Use @dl_resolve_using
  330. for this.
  331. Example usage:
  332. @dl_resolve_using = dl_findfile('-lsocket');
  333. =item @dl_require_symbols
  334. A list of one or more symbol names that are in the library/object file
  335. to be dynamically loaded. This is only required on some platforms.
  336. =item @dl_librefs
  337. An array of the handles returned by successful calls to dl_load_file(),
  338. made by bootstrap, in the order in which they were loaded.
  339. Can be used with dl_find_symbol() to look for a symbol in any of
  340. the loaded files.
  341. =item @dl_modules
  342. An array of module (package) names that have been bootstrap'ed.
  343. =item dl_error()
  344. Syntax:
  345. $message = dl_error();
  346. Error message text from the last failed DynaLoader function. Note
  347. that, similar to errno in unix, a successful function call does not
  348. reset this message.
  349. Implementations should detect the error as soon as it occurs in any of
  350. the other functions and save the corresponding message for later
  351. retrieval. This will avoid problems on some platforms (such as SunOS)
  352. where the error message is very temporary (e.g., dlerror()).
  353. =item $dl_debug
  354. Internal debugging messages are enabled when $dl_debug is set true.
  355. Currently setting $dl_debug only affects the Perl side of the
  356. DynaLoader. These messages should help an application developer to
  357. resolve any DynaLoader usage problems.
  358. $dl_debug is set to C<$ENV{'PERL_DL_DEBUG'}> if defined.
  359. For the DynaLoader developer/porter there is a similar debugging
  360. variable added to the C code (see dlutils.c) and enabled if Perl was
  361. built with the B<-DDEBUGGING> flag. This can also be set via the
  362. PERL_DL_DEBUG environment variable. Set to 1 for minimal information or
  363. higher for more.
  364. =item dl_findfile()
  365. Syntax:
  366. @filepaths = dl_findfile(@names)
  367. Determine the full paths (including file suffix) of one or more
  368. loadable files given their generic names and optionally one or more
  369. directories. Searches directories in @dl_library_path by default and
  370. returns an empty list if no files were found.
  371. Names can be specified in a variety of platform independent forms. Any
  372. names in the form B<-lname> are converted into F<libname.*>, where F<.*> is
  373. an appropriate suffix for the platform.
  374. If a name does not already have a suitable prefix and/or suffix then
  375. the corresponding file will be searched for by trying combinations of
  376. prefix and suffix appropriate to the platform: "$name.o", "lib$name.*"
  377. and "$name".
  378. If any directories are included in @names they are searched before
  379. @dl_library_path. Directories may be specified as B<-Ldir>. Any other
  380. names are treated as filenames to be searched for.
  381. Using arguments of the form C<-Ldir> and C<-lname> is recommended.
  382. Example:
  383. @dl_resolve_using = dl_findfile(qw(-L/usr/5lib -lposix));
  384. =item dl_expandspec()
  385. Syntax:
  386. $filepath = dl_expandspec($spec)
  387. Some unusual systems, such as VMS, require special filename handling in
  388. order to deal with symbolic names for files (i.e., VMS's Logical Names).
  389. To support these systems a dl_expandspec() function can be implemented
  390. either in the F<dl_*.xs> file or code can be added to the autoloadable
  391. dl_expandspec() function in F<DynaLoader.pm>. See F<DynaLoader.pm> for
  392. more information.
  393. =item dl_load_file()
  394. Syntax:
  395. $libref = dl_load_file($filename, $flags)
  396. Dynamically load $filename, which must be the path to a shared object
  397. or library. An opaque 'library reference' is returned as a handle for
  398. the loaded object. Returns undef on error.
  399. The $flags argument to alters dl_load_file behaviour.
  400. Assigned bits:
  401. 0x01 make symbols available for linking later dl_load_file's.
  402. (only known to work on Solaris 2 using dlopen(RTLD_GLOBAL))
  403. (ignored under VMS; this is a normal part of image linking)
  404. (On systems that provide a handle for the loaded object such as SunOS
  405. and HPUX, $libref will be that handle. On other systems $libref will
  406. typically be $filename or a pointer to a buffer containing $filename.
  407. The application should not examine or alter $libref in any way.)
  408. This is the function that does the real work. It should use the
  409. current values of @dl_require_symbols and @dl_resolve_using if required.
  410. SunOS: dlopen($filename)
  411. HP-UX: shl_load($filename)
  412. Linux: dld_create_reference(@dl_require_symbols); dld_link($filename)
  413. NeXT: rld_load($filename, @dl_resolve_using)
  414. VMS: lib$find_image_symbol($filename,$dl_require_symbols[0])
  415. (The dlopen() function is also used by Solaris and some versions of
  416. Linux, and is a common choice when providing a "wrapper" on other
  417. mechanisms as is done in the OS/2 port.)
  418. =item dl_loadflags()
  419. Syntax:
  420. $flags = dl_loadflags $modulename;
  421. Designed to be a method call, and to be overridden by a derived class
  422. (i.e. a class which has DynaLoader in its @ISA). The definition in
  423. DynaLoader itself returns 0, which produces standard behavior from
  424. dl_load_file().
  425. =item dl_find_symbol()
  426. Syntax:
  427. $symref = dl_find_symbol($libref, $symbol)
  428. Return the address of the symbol $symbol or C<undef> if not found. If the
  429. target system has separate functions to search for symbols of different
  430. types then dl_find_symbol() should search for function symbols first and
  431. then other types.
  432. The exact manner in which the address is returned in $symref is not
  433. currently defined. The only initial requirement is that $symref can
  434. be passed to, and understood by, dl_install_xsub().
  435. SunOS: dlsym($libref, $symbol)
  436. HP-UX: shl_findsym($libref, $symbol)
  437. Linux: dld_get_func($symbol) and/or dld_get_symbol($symbol)
  438. NeXT: rld_lookup("_$symbol")
  439. VMS: lib$find_image_symbol($libref,$symbol)
  440. =item dl_find_symbol_anywhere()
  441. Syntax:
  442. $symref = dl_find_symbol_anywhere($symbol)
  443. Applies dl_find_symbol() to the members of @dl_librefs and returns
  444. the first match found.
  445. =item dl_undef_symbols()
  446. Example
  447. @symbols = dl_undef_symbols()
  448. Return a list of symbol names which remain undefined after load_file().
  449. Returns C<()> if not known. Don't worry if your platform does not provide
  450. a mechanism for this. Most do not need it and hence do not provide it,
  451. they just return an empty list.
  452. =item dl_install_xsub()
  453. Syntax:
  454. dl_install_xsub($perl_name, $symref [, $filename])
  455. Create a new Perl external subroutine named $perl_name using $symref as
  456. a pointer to the function which implements the routine. This is simply
  457. a direct call to newXSUB(). Returns a reference to the installed
  458. function.
  459. The $filename parameter is used by Perl to identify the source file for
  460. the function if required by die(), caller() or the debugger. If
  461. $filename is not defined then "DynaLoader" will be used.
  462. =item bootstrap()
  463. Syntax:
  464. bootstrap($module)
  465. This is the normal entry point for automatic dynamic loading in Perl.
  466. It performs the following actions:
  467. =over 8
  468. =item *
  469. locates an auto/$module directory by searching @INC
  470. =item *
  471. uses dl_findfile() to determine the filename to load
  472. =item *
  473. sets @dl_require_symbols to C<("boot_$module")>
  474. =item *
  475. executes an F<auto/$module/$module.bs> file if it exists
  476. (typically used to add to @dl_resolve_using any files which
  477. are required to load the module on the current platform)
  478. =item *
  479. calls dl_load_flags() to determine how to load the file.
  480. =item *
  481. calls dl_load_file() to load the file
  482. =item *
  483. calls dl_undef_symbols() and warns if any symbols are undefined
  484. =item *
  485. calls dl_find_symbol() for "boot_$module"
  486. =item *
  487. calls dl_install_xsub() to install it as "${module}::bootstrap"
  488. =item *
  489. calls &{"${module}::bootstrap"} to bootstrap the module (actually
  490. it uses the function reference returned by dl_install_xsub for speed)
  491. =back
  492. =back
  493. =head1 AUTHOR
  494. Tim Bunce, 11 August 1994.
  495. This interface is based on the work and comments of (in no particular
  496. order): Larry Wall, Robert Sanders, Dean Roehrich, Jeff Okamoto, Anno
  497. Siegel, Thomas Neumann, Paul Marquess, Charles Bailey, myself and others.
  498. Larry Wall designed the elegant inherited bootstrap mechanism and
  499. implemented the first Perl 5 dynamic loader using it.
  500. Solaris global loading added by Nick Ing-Simmons with design/coding
  501. assistance from Tim Bunce, January 1996.
  502. =cut