ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/App-Staticperl/staticperl.pod
(Generate patch)

Comparing App-Staticperl/staticperl.pod (file contents):
Revision 1.7 by root, Mon Dec 6 21:21:44 2010 UTC vs.
Revision 1.17 by root, Thu Dec 9 08:55:52 2010 UTC

1=head1 NAME 1=head1 NAME
2 2
3staticperl - perl, libc, 50 modules, all in one 500kb file 3staticperl - perl, libc, 100 modules, all in one 500kb file
4 4
5=head1 SYNOPSIS 5=head1 SYNOPSIS
6 6
7 staticperl help # print the embedded documentation 7 staticperl help # print the embedded documentation
8 staticperl fetch # fetch and unpack perl sources 8 staticperl fetch # fetch and unpack perl sources
14 staticperl cpan # invoke CPAN shell 14 staticperl cpan # invoke CPAN shell
15 staticperl instmod path... # install unpacked modules 15 staticperl instmod path... # install unpacked modules
16 staticperl instcpan modulename... # install modules from CPAN 16 staticperl instcpan modulename... # install modules from CPAN
17 staticperl mkbundle <bundle-args...> # see documentation 17 staticperl mkbundle <bundle-args...> # see documentation
18 staticperl mkperl <bundle-args...> # see documentation 18 staticperl mkperl <bundle-args...> # see documentation
19 staticperl mkapp appname <bundle-args...> # see documentation
19 20
20Typical Examples: 21Typical Examples:
21 22
22 staticperl install # fetch, configure, build and install perl 23 staticperl install # fetch, configure, build and install perl
23 staticperl cpan # run interactive cpan shell 24 staticperl cpan # run interactive cpan shell
24 staticperl mkperl -M '"Config_heavy.pl"' # build a perl that supports -V 25 staticperl mkperl -M '"Config_heavy.pl"' # build a perl that supports -V
25 staticperl mkperl -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI -MURI::http 26 staticperl mkperl -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI -MURI::http
26 # build a perl with the above modules linked in 27 # build a perl with the above modules linked in
28 staticperl mkapp myapp --boot mainprog mymodules
29 # build a binary "myapp" from mainprog and mymodules
27 30
28=head1 DESCRIPTION 31=head1 DESCRIPTION
29 32
30This script helps you creating single-file perl interpreters, or embedding 33This script helps you to create single-file perl interpreters
31a perl interpreter in your applications. Single-file means that it is 34or applications, or embedding a perl interpreter in your
32fully self-contained - no separate shared objects, no autoload fragments, 35applications. Single-file means that it is fully self-contained - no
33no .pm or .pl files are needed. And when linking statically, you can 36separate shared objects, no autoload fragments, no .pm or .pl files are
34create (or embed) a single file that contains perl interpreter, libc, all 37needed. And when linking statically, you can create (or embed) a single
35the modules you need and all the libraries you need. 38file that contains perl interpreter, libc, all the modules you need, all
39the libraries you need and of course your actual program.
36 40
37With F<uClibc> and F<upx> on x86, you can create a single 500kb binary that 41With F<uClibc> and F<upx> on x86, you can create a single 500kb binary
38contains perl and 50 modules such as AnyEvent, EV, IO::AIO, Coro and so 42that contains perl and 100 modules such as POSIX, AnyEvent, EV, IO::AIO,
39on. Or any other choice of modules. 43Coro and so on. Or any other choice of modules.
40 44
41The created files do not need write access to the file system (like PAR 45The created files do not need write access to the file system (like PAR
42does). In fact, since this script is in many ways similar to PAR::Packer, 46does). In fact, since this script is in many ways similar to PAR::Packer,
43here are the differences: 47here are the differences:
44 48
63=item * The generated executables don't need a writable filesystem. 67=item * The generated executables don't need a writable filesystem.
64 68
65F<staticperl> loads all required files directly from memory. There is no 69F<staticperl> loads all required files directly from memory. There is no
66need to unpack files into a temporary directory. 70need to unpack files into a temporary directory.
67 71
68=item * More control over included files. 72=item * More control over included files, more burden.
69 73
70PAR tries to be maintenance and hassle-free - it tries to include more 74PAR tries to be maintenance and hassle-free - it tries to include more
71files than necessary to make sure everything works out of the box. The 75files than necessary to make sure everything works out of the box. It
72extra files (such as the unicode database) can take substantial amounts of 76mostly succeeds at this, but he extra files (such as the unicode database)
73memory and file size. 77can take substantial amounts of memory and file size.
74 78
75With F<staticperl>, the burden is mostly with the developer - only direct 79With F<staticperl>, the burden is mostly with the developer - only direct
76compile-time dependencies and L<AutoLoader> are handled automatically. 80compile-time dependencies and L<AutoLoader> are handled automatically.
77This means the modules to include often need to be tweaked manually. 81This means the modules to include often need to be tweaked manually.
82
83All this does not preclude more permissive modes to be implemented in
84the future, but right now, you have to resolve state hidden dependencies
85manually.
78 86
79=item * PAR works out of the box, F<staticperl> does not. 87=item * PAR works out of the box, F<staticperl> does not.
80 88
81Maintaining your own custom perl build can be a pain in the ass, and while 89Maintaining your own custom perl build can be a pain in the ass, and while
82F<staticperl> tries to make this easy, it still requires a custom perl 90F<staticperl> tries to make this easy, it still requires a custom perl
83build and possibly fiddling with some modules. PAR is likely to produce 91build and possibly fiddling with some modules. PAR is likely to produce
84results faster. 92results faster.
93
94Ok, PAR never has worked for me out of the box, and for some people,
95F<staticperl> does work out of the box, as they don't count "fiddling with
96module use lists" against it, but nevertheless, F<staticperl> is certainly
97a bit more difficult to use.
85 98
86=back 99=back
87 100
88=head1 HOW DOES IT WORK? 101=head1 HOW DOES IT WORK?
89 102
184command by specifying all the directories with modules in them that you 197command by specifying all the directories with modules in them that you
185want to have built. 198want to have built.
186 199
187=item F<staticperl clean> 200=item F<staticperl clean>
188 201
189Runs F<make distclean> in the perl source directory (and potentially 202Deletes the perl source directory (and potentially cleans up other
190cleans up other intermediate files). This can be used to clean up 203intermediate files). This can be used to clean up files only needed for
191intermediate files without removing the installed perl interpreter. 204building perl, without removing the installed perl interpreter, or to
205force a re-build from scratch.
206
207At the moment, it doesn't delete downloaded tarballs.
192 208
193=item F<staticperl distclean> 209=item F<staticperl distclean>
194 210
195This wipes your complete F<~/.staticperl> directory. Be careful with this, 211This wipes your complete F<~/.staticperl> directory. Be careful with this,
196it nukes your perl download, perl sources, perl distribution and any 212it nukes your perl download, perl sources, perl distribution and any
236(required by L<AnyEvent::HTTPD>) implements various URI schemes as extra 252(required by L<AnyEvent::HTTPD>) implements various URI schemes as extra
237modules - since L<AnyEvent::HTTPD> only needs C<http> URIs, we only need 253modules - since L<AnyEvent::HTTPD> only needs C<http> URIs, we only need
238to include that module. I found out about these dependencies by carefully 254to include that module. I found out about these dependencies by carefully
239watching any error messages about missing modules... 255watching any error messages about missing modules...
240 256
257Instead of building a new perl binary, you can also build a standalone
258application:
259
260 # build the app
261 staticperl mkapp app --boot eg/httpd \
262 -MAnyEvent::Impl::Perl -MAnyEvent::HTTPD -MURI::http
263
264 # run it
265 ./app
266
241=head3 OPTION PROCESSING 267=head3 OPTION PROCESSING
242 268
243All options can be given as arguments on the command line (typically 269All options can be given as arguments on the command line (typically
244using long (e.g. C<--verbose>) or short option (e.g. C<-v>) style). Since 270using long (e.g. C<--verbose>) or short option (e.g. C<-v>) style). Since
245specifying a lot of modules can make the command line very cumbersome, 271specifying a lot of modules can make the command line very cumbersome,
287is also a lot slower, so is best used for production builds. Note that 313is also a lot slower, so is best used for production builds. Note that
288this method doesn't optimise for raw file size, but for best compression 314this method doesn't optimise for raw file size, but for best compression
289(that means that the uncompressed file size is a bit larger, but the files 315(that means that the uncompressed file size is a bit larger, but the files
290compress better, e.g. with F<upx>). 316compress better, e.g. with F<upx>).
291 317
318Last not least, if you need accurate line numbers in error messages,
292Last not least, in the unlikely case where C<pod> is too slow, or some 319or in the unlikely case where C<pod> is too slow, or some module gets
293module gets mistreated, you can specify C<none> to not mangle included 320mistreated, you can specify C<none> to not mangle included perl sources in
294perl sources in any way. 321any way.
295 322
296=item --perl 323=item --perl
297 324
298After writing out the bundle files, try to link a new perl interpreter. It 325After writing out the bundle files, try to link a new perl interpreter. It
299will be called F<perl> and will be left in the current working 326will be called F<perl> and will be left in the current working
302This switch is automatically used when F<staticperl> is invoked with the 329This switch is automatically used when F<staticperl> is invoked with the
303C<mkperl> command (instead of C<mkbundle>): 330C<mkperl> command (instead of C<mkbundle>):
304 331
305 # build a new ./perl with only common::sense in it - very small :) 332 # build a new ./perl with only common::sense in it - very small :)
306 staticperl mkperl -Mcommon::sense 333 staticperl mkperl -Mcommon::sense
334
335=item --app name
336
337After writing out the bundle files, try to link a new standalone
338program. It will be called C<name>, and the bundle files get removed after
339linking it.
340
341The difference to the (mutually exclusive) C<--perl> option is that the
342binary created by this option will not try to act as a perl interpreter -
343instead it will simply initialise the perl interpreter, clean it up and
344exit.
345
346This switch is automatically used when F<staticperl> is invoked with the
347C<mkapp> command (instead of C<mkbundle>):
348
349To let it do something useful you I<must> add some boot code, e.g. with
350the C<--boot> option.
351
352Example: create a standalone perl binary that will execute F<appfile> when
353it is started.
354
355 staticperl mkbundle --app myexe --boot appfile
307 356
308=item --use module | -Mmodule 357=item --use module | -Mmodule
309 358
310Include the named module and all direct dependencies. This is done by 359Include the named module and all direct dependencies. This is done by
311C<require>'ing the module in a subprocess and tracing which other modules 360C<require>'ing the module in a subprocess and tracing which other modules
382 # specification file 431 # specification file
383 add file1 myfiles/file1 432 add file1 myfiles/file1
384 add file2 myfiles/file2 433 add file2 myfiles/file2
385 add file3 myfiles/file3 434 add file3 myfiles/file3
386 435
436=item --binadd "file" | --add "file alias"
437
438Just like C<--add>, except that it treats the file as binary and adds it
439without any processing.
440
441You should probably add a C</> prefix to avoid clashing with embedded
442perl files (whose paths do not start with C</>), and/or use a special
443directory, such as C</res/name>.
444
445You can later get a copy of these files by calling C<staticperl::find
446"alias">.
447
387=item --static 448=item --static
388 449
389When C<--perl> is also given, link statically instead of dynamically. The 450When C<--perl> is also given, link statically instead of dynamically. The
390default is to link the new perl interpreter fully dynamic (that means all 451default is to link the new perl interpreter fully dynamic (that means all
391perl modules are linked statically, but all external libraries are still 452perl modules are linked statically, but all external libraries are still
402Any other argument is interpreted as a bundle specification file, which 463Any other argument is interpreted as a bundle specification file, which
403supports most long options (without extra quoting), one option per line. 464supports most long options (without extra quoting), one option per line.
404 465
405=back 466=back
406 467
407=head2 F<STATCPERL> CONFIGURATION AND HOOKS 468=head2 F<STATICPERL> CONFIGURATION AND HOOKS
408 469
409During (each) startup, F<staticperl> tries to source the following shell 470During (each) startup, F<staticperl> tries to source the following shell
410files in order: 471files in order:
411 472
412 /etc/staticperlrc 473 /etc/staticperlrc
428=item C<EMAIL> 489=item C<EMAIL>
429 490
430The e-mail address of the person who built this binary. Has no good 491The e-mail address of the person who built this binary. Has no good
431default, so should be specified by you. 492default, so should be specified by you.
432 493
494=item C<CPAN>
495
496The URL of the CPAN mirror to use (e.g. L<http://mirror.netcologne.de/cpan/>).
497
498=item C<EXTRA_MODULES>
499
500Additional modules installed during F<staticperl install>. Here you can
501set which modules you want have to installed from CPAN.
502
503Example: I really really need EV, AnyEvent, Coro and AnyEvent::AIO.
504
505 EXTRA_MODULES="EV AnyEvent Coro AnyEvent::AIO"
506
507Note that you can also use a C<postinstall> hook to achieve this, and
508more.
509
433=back 510=back
434 511
435=head4 Variables you might I<want> to override 512=head4 Variables you might I<want> to override
436 513
437=over 4 514=over 4
438 515
516=item C<STATICPERL>
517
518The directory where staticperl stores all its files
519(default: F<~/.staticperl>).
520
521=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
522
523Usually set to C<1> to make modules "less inquisitive" during their
524installation, you can set any environment variable you want - some modules
525(such as L<Coro> or L<EV>) use environment variables for further tweaking.
526
439=item C<PERLVER> 527=item C<PERL_VERSION>
440 528
441The perl version to install - default is currently C<5.12.2>, but C<5.8.9> 529The perl version to install - default is currently C<5.12.2>, but C<5.8.9>
442is also a good choice (5.8.9 is much smaller than 5.12.2, while 5.10.1 is 530is also a good choice (5.8.9 is much smaller than 5.12.2, while 5.10.1 is
443about as big as 5.12.2). 531about as big as 5.12.2).
444 532
445=item C<CPAN>
446
447The URL of the CPAN mirror to use (e.g. L<http://mirror.netcologne.de/cpan/>).
448
449=item C<EXTRA_MODULES>
450
451Additional modules installed during F<staticperl install>. Here you can
452set which modules you want have to installed from CPAN.
453
454Example: I really really need EV, AnyEvent, Coro and IO::AIO.
455
456 EXTRA_MODULES="EV AnyEvent Coro IO::AIO"
457
458Note that you can also use a C<postinstall> hook to achieve this, and
459more.
460
461=item C<PERL_MM_USE_DEFAULT>, C<EV_EXTRA_DEFS>, ...
462
463Usually set to C<1> to make modules "less inquisitive" during their
464installation, you can set any environment variable you want - some modules
465(such as L<Coro> or L<EV>) use environment variables for further tweaking.
466
467=item C<STATICPERL>
468
469The directory where staticperl stores all its files
470(default: F<~/.staticperl>).
471
472=item C<PREFIX> 533=item C<PERL_PREFIX>
473 534
474The prefix where perl gets installed (default: F<$STATICPERL/perl>), 535The prefix where perl gets installed (default: F<$STATICPERL/perl>),
475i.e. where the F<bin> and F<lib> subdirectories will end up. 536i.e. where the F<bin> and F<lib> subdirectories will end up.
537
538=item C<PERL_CONFIGURE>
539
540Additional Configure options - these are simply passed to the perl
541Configure script. For example, if you wanted to enable dynamic loading,
542you could pass C<-Dusedl>. To enable ithreads (Why would you want that
543insanity? Don't! Use L<forks> instead!) you would pass C<-Duseithreads>
544and so on.
545
546More commonly, you would either activate 64 bit integer support
547(C<-Duse64bitint>), or disable large files support (-Uuselargefiles), to
548reduce filesize further.
476 549
477=item C<PERL_CPPFLAGS>, C<PERL_OPTIMIZE>, C<PERL_LDFLAGS>, C<PERL_LIBS> 550=item C<PERL_CPPFLAGS>, C<PERL_OPTIMIZE>, C<PERL_LDFLAGS>, C<PERL_LIBS>
478 551
479These flags are passed to perl's F<Configure> script, and are generally 552These flags are passed to perl's F<Configure> script, and are generally
480optimised for small size (at the cost of performance). Since they also 553optimised for small size (at the cost of performance). Since they also
517 instcpan Anyevent::AIO AnyEvent::HTTPD 590 instcpan Anyevent::AIO AnyEvent::HTTPD
518 } 591 }
519 592
520=over 4 593=over 4
521 594
595=item preconfigure
596
597Called just before running F<./Configur> in the perl source
598directory. Current working directory is the perl source directory.
599
600This can be used to set any C<PERL_xxx> variables, which might be costly
601to compute.
602
522=item postconfigure 603=item postconfigure
523 604
524Called after configuring, but before building perl. Current working 605Called after configuring, but before building perl. Current working
525directory is the perl source directory. 606directory is the perl source directory.
526 607
527Could be used to tailor/patch config.sh (followed by F<./Configure -S>) or 608Could be used to tailor/patch config.sh (followed by F<sh Configure -S>)
528do any other modifications. 609or do any other modifications.
529 610
530=item postbuild 611=item postbuild
531 612
532Called after building, but before installing perl. Current working 613Called after building, but before installing perl. Current working
533directory is the perl source directory. 614directory is the perl source directory.
548The script must return with a zero exit status, or the installation will 629The script must return with a zero exit status, or the installation will
549fail. 630fail.
550 631
551=back 632=back
552 633
634=head1 ANATOMY OF A BUNDLE
635
636When not building a new perl binary, C<mkbundle> will leave a number of
637files in the current working directory, which can be used to embed a perl
638interpreter in your program.
639
640Intimate knowledge of L<perlembed> and preferably some experience with
641embedding perl is highly recommended.
642
643C<mkperl> (or the C<--perl> option) basically does this to link the new
644interpreter (it also adds a main program to F<bundle.>):
645
646 $Config{cc} $(cat bundle.ccopts) -o perl bundle.c $(cat bundle.ldopts)
647
648=over 4
649
650=item bundle.h
651
652A header file that contains the prototypes of the few symbols "exported"
653by bundle.c, and also exposes the perl headers to the application.
654
655=over 4
656
657=item staticperl_init ()
658
659Initialises the perl interpreter. You can use the normal perl functions
660after calling this function, for example, to define extra functions or
661to load a .pm file that contains some initialisation code, or the main
662program function:
663
664 XS (xsfunction)
665 {
666 dXSARGS;
667
668 // now we have items, ST(i) etc.
669 }
670
671 static void
672 run_myapp(void)
673 {
674 staticperl_init ();
675 newXSproto ("myapp::xsfunction", xsfunction, __FILE__, "$$;$");
676 eval_pv ("require myapp::main", 1); // executes "myapp/main.pm"
677 }
678
679=item staticperl_xs_init (pTHX)
680
681Sometimes you need direct control over C<perl_parse> and C<perl_run>, in
682which case you do not want to use C<staticperl_init> but call them on your
683own.
684
685Then you need this function - either pass it directly as the C<xs_init>
686function to C<perl_parse>, or call it from your own C<xs_init> function.
687
688=item staticperl_cleanup ()
689
690In the unlikely case that you want to destroy the perl interpreter, here
691is the corresponding function.
692
693=item PerlInterpreter *staticperl
694
695The perl interpreter pointer used by staticperl. Not normally so useful,
696but there it is.
697
698=back
699
700=item bundle.ccopts
701
702Contains the compiler options required to compile at least F<bundle.c> and
703any file that includes F<bundle.h> - you should probably use it in your
704C<CFLAGS>.
705
706=item bundle.ldopts
707
708The linker options needed to link the final program.
709
710=back
711
712=head1 RUNTIME FUNCTIONALITY
713
714Binaries created with C<mkbundle>/C<mkperl> contain extra functions, which
715are required to access the bundled perl sources, but might be useful for
716other purposes.
717
718In addition, for the embedded loading of perl files to work, F<staticperl>
719overrides the C<@INC> array.
720
721=over 4
722
723=item $file = staticperl::find $path
724
725Returns the data associated with the given C<$path>
726(e.g. C<Digest/MD5.pm>, C<auto/POSIX/autosplit.ix>), which is basically
727the UNIX path relative to the perl library directory.
728
729Returns C<undef> if the file isn't embedded.
730
731=item @paths = staticperl::list
732
733Returns the list of all paths embedded in this binary.
734
735=back
736
737=head1 FULLY STATIC BINARIES - BUILDROOT
738
739To make truly static (Linux-) libraries, you might want to have a look at
740buildroot (L<http://buildroot.uclibc.org/>).
741
742Buildroot is primarily meant to set up a cross-compile environment (which
743is not so useful as perl doesn't quite like cross compiles), but it can also compile
744a chroot environment where you can use F<staticperl>.
745
746To do so, download buildroot, and enable "Build options => development
747files in target filesystem" and optionally "Build options => gcc
748optimization level (optimize for size)". At the time of writing, I had
749good experiences with GCC 4.4.x but not GCC 4.5.
750
751To minimise code size, I used C<-pipe -ffunction-sections -fdata-sections
752-finline-limit=8 -fno-builtin-strlen -mtune=i386>. The C<-mtune=i386>
753doesn't decrease codesize much, but it makes the file much more
754compressible.
755
756If you don't need Coro or threads, you can go with "linuxthreads.old" (or
757no thread support). For Coro, it is highly recommended to switch to a
758uClibc newer than 0.9.31 (at the time of this writing, I used the 20101201
759snapshot) and enable NPTL, otherwise Coro needs to be configured with the
760ultra-slow pthreads backend to work around linuxthreads bugs (it also uses
761twice the address space needed for stacks).
762
763If you use C<linuxthreads.old>, then you should also be aware that
764uClibc shares C<errno> between all threads when statically linking. See
765L<http://lists.uclibc.org/pipermail/uclibc/2010-June/044157.html> for a
766workaround (And L<https://bugs.uclibc.org/2089> for discussion).
767
768C<ccache> support is also recommended, especially if you want
769to play around with buildroot options. Enabling the C<miniperl>
770package will probably enable all options required for a successful
771perl build. F<staticperl> itself additionally needs either C<wget>
772(recommended, for CPAN) or C<curl>.
773
774As for shells, busybox should provide all that is needed, but the default
775busybox configuration doesn't include F<comm> which is needed by perl -
776either make a custom busybox config, or compile coreutils.
777
778For the latter route, you might find that bash has some bugs that keep
779it from working properly in a chroot - either use dash (and link it to
780F</bin/sh> inside the chroot) or link busybox to F</bin/sh>, using it's
781built-in ash shell.
782
783Finally, you need F</dev/null> inside the chroot for many scripts to work
784- F<cp /dev/null output/target/dev> or bind-mounting your F</dev> will
785both provide this.
786
787After you have compiled and set up your buildroot target, you can copy
788F<staticperl> from the C<App::Staticperl> distribution or from your
789perl f<bin> directory (if you installed it) into the F<output/target>
790filesystem, chroot inside and run it.
791
792=head1 RECIPES / SPECIFIC MODULES
793
794This section contains some common(?) recipes and information about
795problems with some common modules or perl constructs that require extra
796files to be included.
797
798=head2 MODULES
799
800=over 4
801
802=item utf8
803
804Some functionality in the utf8 module, such as swash handling (used
805for unicode character ranges in regexes) is implemented in the
806C<"utf8_heavy.pl"> library.
807
808Many Unicode properties in turn are defined in separate modules,
809such as C<"unicore/Heavy.pl"> and more specific data tables such as
810C<"unicore/To/Digit.pl"> or C<"unicore/lib/Perl/Word.pl">. These
811tables are big (7MB uncompressed), so including them on demand by your
812applciation only might pay off.
813
814=item Carp
815
816Carp had (in older versions of perl) a dependency on L<Carp::Heavy>. As of
817perl 5.12.2 (maybe earlier), this dependency no longer exists.
818
819=item Config
820
821The F<perl -V> switch (as well as many modules) needs L<Config>, which in
822turn might need L<"Config_heavy.pl">. Including the latter gives you
823both.
824
825=item AnyEvent
826
827AnyEvent needs a backend implementation that it will load in a delayed
828fashion. The L<AnyEvent::Impl::Perl> backend is the default choice
829for AnyEvent if it can't find anything else, and is usually a safe
830fallback. If you plan to use e.g. L<EV> (L<POE>...), then you need to
831include the L<AnyEvent::Impl::EV> (L<AnyEvent::Impl::POE>...) backend as
832well.
833
834If you want to handle IRIs or IDNs (L<AnyEvent::Util> punycode and idn
835functions), you also need to include C<"AnyEvent/Util/idna.pl"> and
836C<"AnyEvent/Util/uts46data.pl">.
837
838=item URI
839
840URI implements schemes as separate modules - the generic URL scheme is
841implemented in L<URI::_generic>, HTTP is implemented in L<URI::http>. If
842you need to use any of these schemes, you should include these manually.
843
844=back
845
846=head2 RECIPES
847
848=over 4
849
850=item Getting rid of netdb function
851
852The perl core has lots of netdb functions (C<getnetbyname>, C<getgrent>
853and so on) that few applications use. You can avoid compiling them in by
854putting the following fragment into a C<preconfigure> hook:
855
856 preconfigure() {
857 for sym in \
858 d_getgrnam_r d_endgrent d_endgrent_r d_endhent \
859 d_endhostent_r d_endnent d_endnetent_r d_endpent \
860 d_endprotoent_r d_endpwent d_endpwent_r d_endsent \
861 d_endservent_r d_getgrent d_getgrent_r d_getgrgid_r \
862 d_getgrnam_r d_gethbyaddr d_gethent d_getsbyport \
863 d_gethostbyaddr_r d_gethostbyname_r d_gethostent_r \
864 d_getlogin_r d_getnbyaddr d_getnbyname d_getnent \
865 d_getnetbyaddr_r d_getnetbyname_r d_getnetent_r \
866 d_getpent d_getpbyname d_getpbynumber d_getprotobyname_r \
867 d_getprotobynumber_r d_getprotoent_r d_getpwent \
868 d_getpwent_r d_getpwnam_r d_getpwuid_r d_getsent \
869 d_getservbyname_r d_getservbyport_r d_getservent_r \
870 d_getspnam_r d_getsbyname
871 # d_gethbyname
872 do
873 PERL_CONFIGURE="$PERL_CONFIGURE -U$sym"
874 done
875 }
876
877This mostly gains space when linking staticaly, as the functions will
878liekly not be linked in. The gain for dynamically-linked binaries is
879smaller.
880
881Also, this leaves C<gethostbyname> in - not only is it actually used
882often, the L<Socket> module also exposes it, so leaving it out usually
883gains little. Why Socket exposes a C function that is in the core already
884is anybody's guess.
885
886=back
887
553=head1 AUTHOR 888=head1 AUTHOR
554 889
555 Marc Lehmann <schmorp@schmorp.de> 890 Marc Lehmann <schmorp@schmorp.de>
556 http://software.schmorp.de/pkg/staticperl.html 891 http://software.schmorp.de/pkg/staticperl.html

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines