From: Joseph S. Myers Date: Fri, 20 Sep 1996 14:08:33 +0000 (+0100) Subject: Pod typos, pod2man bugs, and miscellaneous installation comments X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4e8642014db0a02b994dbae414bd00551a634b6b;p=p5sagit%2Fp5-mst-13.2.git Pod typos, pod2man bugs, and miscellaneous installation comments Remove unwantd space after the I in -I$Config[archlib} Here is a patch for various typos and other defects in the Perl 5.003_05 pods, including the pods embedded in library modules. --- diff --git a/lib/ExtUtils/Embed.pm b/lib/ExtUtils/Embed.pm index 45ccbe6..9783292 100644 --- a/lib/ExtUtils/Embed.pm +++ b/lib/ExtUtils/Embed.pm @@ -1,4 +1,4 @@ -# $Id: Embed.pm,v 1.17 1996/07/02 13:48:17 dougm Exp $ +# $Id: Embed.pm,v 1.18 1996/07/02 13:48:17 dougm Exp $ require 5.002; package ExtUtils::Embed; @@ -17,7 +17,7 @@ use vars qw(@ISA @EXPORT $VERSION ); use strict; -$VERSION = sprintf("%d.%02d", q$Revision: 1.17 $ =~ /(\d+)\.(\d+)/); +$VERSION = sprintf("%d.%02d", q$Revision: 1.18 $ =~ /(\d+)\.(\d+)/); #for the namespace change $Devel::embed::VERSION = "99.99"; @@ -222,7 +222,7 @@ sub ccdlflags { } sub perl_inc { - print " -I $Config{archlib}/CORE "; + print " -I$Config{archlib}/CORE "; } sub ccopts { @@ -266,19 +266,19 @@ functions while building your application. ExtUtils::Embed exports the following functions: -L, L, L, L, L, -L, L, L, L +xsinit(), ldopts(), ccopts(), perl_inc(), ccflags(), +ccdlflags(), xsi_header(), xsi_protos(), xsi_body() =head1 FUNCTIONS =item xsinit() -Generate C/C++ code for the XS intializer function. +Generate C/C++ code for the XS initializer function. When invoked as C<`perl -MExtUtils::Embed -e xsinit --`> the following options are recognized: -B<-o> (Defaults to B) +B<-o> Eoutput filenameE (Defaults to B) B<-o STDOUT> will print to STDOUT. @@ -340,7 +340,7 @@ B<-std> Output arguments for linking the Perl library and any extensions linked with the current Perl. -B<-I> +B<-I> Epath1:path2E Search path for ModuleName.a archives. Default path is B<@INC>. @@ -355,7 +355,7 @@ we should find B Keep in mind, you can always supply B as an additional linker argument. -B<--> +B<--> Elist of linker argsE Additional linker arguments to be considered. @@ -419,11 +419,11 @@ conflict, the additional arguments will be part of the output. For including perl header files this function simply prints: - -I $Config{archlib}/CORE + -I$Config{archlib}/CORE So, rather than having to say: - perl -MConfig -e 'print "-I $Config{archlib}/CORE"' + perl -MConfig -e 'print "-I$Config{archlib}/CORE"' Just say: @@ -456,18 +456,18 @@ B uses the xsi_* functions to generate most of it's code. =head1 EXAMPLES For examples on how to use B for building C/C++ applications -with embedded perl, see the eg/ directory and the I man page. +with embedded perl, see the eg/ directory and L. =head1 SEE ALSO -the I man page +L =head1 AUTHOR -Doug MacEachern +Doug MacEachern EFE -Based on ideas from Tim Bunce and -B by Andreas Koenig and Tim Bunce. +Based on ideas from Tim Bunce EFE and +B by Andreas Koenig EFE and Tim Bunce. =cut