Change 27566 by [EMAIL PROTECTED] on 2006/03/22 13:37:19
Adjust docs to reflect that DynaLoader, as of change 27549,
is part of libperl.
Affected files ...
... //depot/perl/lib/ExtUtils/Embed.pm#28 edit
Differences ...
==== //depot/perl/lib/ExtUtils/Embed.pm#28 (text) ====
Index: perl/lib/ExtUtils/Embed.pm
--- perl/lib/ExtUtils/Embed.pm#27~23186~ 2004-08-03 03:22:54.000000000
-0700
+++ perl/lib/ExtUtils/Embed.pm 2006-03-22 05:37:19.000000000 -0800
@@ -425,7 +425,7 @@
perl -MExtUtils::Embed -e ldopts
-This will print arguments for linking with B<libperl.a>, B<DynaLoader> and
+This will print arguments for linking with B<libperl> and
extensions found in B<$Config{static_ext}>. This includes libraries
found in B<$Config{libs}> and the first ModuleName.a library
for each extension that is found by searching B<@INC> or the path
@@ -439,17 +439,8 @@
This will do the same as the above example, along with printing additional
arguments for linking with the B<Socket> extension.
-
- perl -MExtUtils::Embed -e ldopts -- DynaLoader
-
-
-This will print arguments for linking with just the B<DynaLoader> extension
-and B<libperl.a>.
-
-
perl -MExtUtils::Embed -e ldopts -- -std Msql -- -L/usr/msql/lib -lmsql
-
Any arguments after the second '--' token are additional linker
arguments that will be examined for potential conflict. If there is no
conflict, the additional arguments will be part of the output.
End of Patch.