xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/FAQ.pod (revision 897fc685943471cf985a0fe38ba076ea6fe74fa5)
1package ExtUtils::MakeMaker::FAQ;
2
3our $VERSION = '7.10_01';
4
51;
6__END__
7
8=head1 NAME
9
10ExtUtils::MakeMaker::FAQ - Frequently Asked Questions About MakeMaker
11
12=head1 DESCRIPTION
13
14FAQs, tricks and tips for C<ExtUtils::MakeMaker>.
15
16
17=head2 Module Installation
18
19=over 4
20
21=item How do I install a module into my home directory?
22
23If you're not the Perl administrator you probably don't have
24permission to install a module to its default location.  Then you
25should install it for your own use into your home directory like so:
26
27    # Non-unix folks, replace ~ with /path/to/your/home/dir
28    perl Makefile.PL INSTALL_BASE=~
29
30This will put modules into F<~/lib/perl5>, man pages into F<~/man> and
31programs into F<~/bin>.
32
33To ensure your Perl programs can see these newly installed modules,
34set your C<PERL5LIB> environment variable to F<~/lib/perl5> or tell
35each of your programs to look in that directory with the following:
36
37    use lib "$ENV{HOME}/lib/perl5";
38
39or if $ENV{HOME} isn't set and you don't want to set it for some
40reason, do it the long way.
41
42    use lib "/path/to/your/home/dir/lib/perl5";
43
44
45=item How do I get MakeMaker and Module::Build to install to the same place?
46
47Module::Build, as of 0.28, supports two ways to install to the same
48location as MakeMaker.
49
50We highly recommend the install_base method, its the simplest and most
51closely approximates the expected behavior of an installation prefix.
52
531) Use INSTALL_BASE / C<--install_base>
54
55MakeMaker (as of 6.31) and Module::Build (as of 0.28) both can install
56to the same locations using the "install_base" concept.  See
57L<ExtUtils::MakeMaker/INSTALL_BASE> for details.  To get MM and MB to
58install to the same location simply set INSTALL_BASE in MM and
59C<--install_base> in MB to the same location.
60
61    perl Makefile.PL INSTALL_BASE=/whatever
62    perl Build.PL    --install_base /whatever
63
64This works most like other language's behavior when you specify a
65prefix.  We recommend this method.
66
672) Use PREFIX / C<--prefix>
68
69Module::Build 0.28 added support for C<--prefix> which works like
70MakeMaker's PREFIX.
71
72    perl Makefile.PL PREFIX=/whatever
73    perl Build.PL    --prefix /whatever
74
75We highly discourage this method.  It should only be used if you know
76what you're doing and specifically need the PREFIX behavior.  The
77PREFIX algorithm is complicated and focused on matching the system
78installation.
79
80=item How do I keep from installing man pages?
81
82Recent versions of MakeMaker will only install man pages on Unix-like
83operating systems.
84
85For an individual module:
86
87        perl Makefile.PL INSTALLMAN1DIR=none INSTALLMAN3DIR=none
88
89If you want to suppress man page installation for all modules you have
90to reconfigure Perl and tell it 'none' when it asks where to install
91man pages.
92
93
94=item How do I use a module without installing it?
95
96Two ways.  One is to build the module normally...
97
98        perl Makefile.PL
99        make
100        make test
101
102...and then set the PERL5LIB environment variable to point at the
103blib/lib and blib/arch directories.
104
105The other is to install the module in a temporary location.
106
107        perl Makefile.PL INSTALL_BASE=~/tmp
108        make
109        make test
110        make install
111
112And then set PERL5LIB to F<~/tmp/lib/perl5>.  This works well when you
113have multiple modules to work with.  It also ensures that the module
114goes through its full installation process which may modify it.
115
116=item PREFIX vs INSTALL_BASE from Module::Build::Cookbook
117
118The behavior of PREFIX is complicated and depends closely on how your
119Perl is configured. The resulting installation locations will vary from
120machine to machine and even different installations of Perl on the same machine.
121Because of this, its difficult to document where prefix will place your modules.
122
123In contrast, INSTALL_BASE has predictable, easy to explain installation locations.
124Now that Module::Build and MakeMaker both have INSTALL_BASE there is little reason
125to use PREFIX other than to preserve your existing installation locations. If you
126are starting a fresh Perl installation we encourage you to use INSTALL_BASE. If
127you have an existing installation installed via PREFIX, consider moving it to an
128installation structure matching INSTALL_BASE and using that instead.
129
130=back
131
132=head2 Common errors and problems
133
134=over 4
135
136=item "No rule to make target `/usr/lib/perl5/CORE/config.h', needed by `Makefile'"
137
138Just what it says, you're missing that file.  MakeMaker uses it to
139determine if perl has been rebuilt since the Makefile was made.  It's
140a bit of a bug that it halts installation.
141
142Some operating systems don't ship the CORE directory with their base
143perl install.  To solve the problem, you likely need to install a perl
144development package such as perl-devel (CentOS, Fedora and other
145Redhat systems) or perl (Ubuntu and other Debian systems).
146
147=back
148
149=head2 Philosophy and History
150
151=over 4
152
153=item Why not just use <insert other build config tool here>?
154
155Why did MakeMaker reinvent the build configuration wheel?  Why not
156just use autoconf or automake or ppm or Ant or ...
157
158There are many reasons, but the major one is cross-platform
159compatibility.
160
161Perl is one of the most ported pieces of software ever.  It works on
162operating systems I've never even heard of (see perlport for details).
163It needs a build tool that can work on all those platforms and with
164any wacky C compilers and linkers they might have.
165
166No such build tool exists.  Even make itself has wildly different
167dialects.  So we have to build our own.
168
169
170=item What is Module::Build and how does it relate to MakeMaker?
171
172Module::Build is a project by Ken Williams to supplant MakeMaker.
173Its primary advantages are:
174
175=over 8
176
177=item * pure perl.  no make, no shell commands
178
179=item * easier to customize
180
181=item * cleaner internals
182
183=item * less cruft
184
185=back
186
187Module::Build was long the official heir apparent to MakeMaker.  The rate of
188both its development and adoption has slowed in recent years, though, and it is
189unclear what the future holds for it.  That said, Module::Build set the stage
190for I<something> to become the heir to MakeMaker.  MakeMaker's maintainers have
191long said that it is a dead end and should be kept functioning, but not
192extended with new features.  It's complicated enough as it is!
193
194=back
195
196
197=head2 Module Writing
198
199=over 4
200
201=item How do I keep my $VERSION up to date without resetting it manually?
202
203Often you want to manually set the $VERSION in the main module
204distribution because this is the version that everybody sees on CPAN
205and maybe you want to customize it a bit.  But for all the other
206modules in your dist, $VERSION is really just bookkeeping and all that's
207important is it goes up every time the module is changed.  Doing this
208by hand is a pain and you often forget.
209
210Simplest way to do it automatically is to use your version control
211system's revision number (you are using version control, right?).
212
213In CVS, RCS and SVN you use $Revision$ (see the documentation of your
214version control system for details).  Every time the file is checked
215in the $Revision$ will be updated, updating your $VERSION.
216
217SVN uses a simple integer for $Revision$ so you can adapt it for your
218$VERSION like so:
219
220    ($VERSION) = q$Revision$ =~ /(\d+)/;
221
222In CVS and RCS version 1.9 is followed by 1.10.  Since CPAN compares
223version numbers numerically we use a sprintf() to convert 1.9 to 1.009
224and 1.10 to 1.010 which compare properly.
225
226    $VERSION = sprintf "%d.%03d", q$Revision$ =~ /(\d+)\.(\d+)/g;
227
228If branches are involved (ie. $Revision: 1.5.3.4$) it's a little more
229complicated.
230
231    # must be all on one line or MakeMaker will get confused.
232    $VERSION = do { my @r = (q$Revision$ =~ /\d+/g); sprintf "%d."."%03d" x $#r, @r };
233
234In SVN, $Revision$ should be the same for every file in the project so
235they would all have the same $VERSION.  CVS and RCS have a different
236$Revision$ per file so each file will have a different $VERSION.
237Distributed version control systems, such as SVK, may have a different
238$Revision$ based on who checks out the file, leading to a different $VERSION
239on each machine!  Finally, some distributed version control systems, such
240as darcs, have no concept of revision number at all.
241
242
243=item What's this F<META.yml> thing and how did it get in my F<MANIFEST>?!
244
245F<META.yml> is a module meta-data file pioneered by Module::Build and
246automatically generated as part of the 'distdir' target (and thus
247'dist').  See L<ExtUtils::MakeMaker/"Module Meta-Data">.
248
249To shut off its generation, pass the C<NO_META> flag to C<WriteMakefile()>.
250
251
252=item How do I delete everything not in my F<MANIFEST>?
253
254Some folks are surprised that C<make distclean> does not delete
255everything not listed in their MANIFEST (thus making a clean
256distribution) but only tells them what they need to delete.  This is
257done because it is considered too dangerous.  While developing your
258module you might write a new file, not add it to the MANIFEST, then
259run a C<distclean> and be sad because your new work was deleted.
260
261If you really want to do this, you can use
262C<ExtUtils::Manifest::manifind()> to read the MANIFEST and File::Find
263to delete the files.  But you have to be careful.  Here's a script to
264do that.  Use at your own risk.  Have fun blowing holes in your foot.
265
266    #!/usr/bin/perl -w
267
268    use strict;
269
270    use File::Spec;
271    use File::Find;
272    use ExtUtils::Manifest qw(maniread);
273
274    my %manifest = map  {( $_ => 1 )}
275                   grep { File::Spec->canonpath($_) }
276                        keys %{ maniread() };
277
278    if( !keys %manifest ) {
279        print "No files found in MANIFEST.  Stopping.\n";
280        exit;
281    }
282
283    find({
284          wanted   => sub {
285              my $path = File::Spec->canonpath($_);
286
287              return unless -f $path;
288              return if exists $manifest{ $path };
289
290              print "unlink $path\n";
291              unlink $path;
292          },
293          no_chdir => 1
294         },
295         "."
296    );
297
298
299=item Which tar should I use on Windows?
300
301We recommend ptar from Archive::Tar not older than 1.66 with '-C' option.
302
303=item Which zip should I use on Windows for '[nd]make zipdist'?
304
305We recommend InfoZIP: L<http://www.info-zip.org/Zip.html>
306
307
308=back
309
310=head2 XS
311
312=over 4
313
314=item How do I prevent "object version X.XX does not match bootstrap parameter Y.YY" errors?
315
316XS code is very sensitive to the module version number and will
317complain if the version number in your Perl module doesn't match.  If
318you change your module's version # without rerunning Makefile.PL the old
319version number will remain in the Makefile, causing the XS code to be built
320with the wrong number.
321
322To avoid this, you can force the Makefile to be rebuilt whenever you
323change the module containing the version number by adding this to your
324WriteMakefile() arguments.
325
326    depend => { '$(FIRST_MAKEFILE)' => '$(VERSION_FROM)' }
327
328
329=item How do I make two or more XS files coexist in the same directory?
330
331Sometimes you need to have two and more XS files in the same package.
332One way to go is to put them into separate directories, but sometimes
333this is not the most suitable solution. The following technique allows
334you to put two (and more) XS files in the same directory.
335
336Let's assume that we have a package C<Cool::Foo>, which includes
337C<Cool::Foo> and C<Cool::Bar> modules each having a separate XS
338file. First we use the following I<Makefile.PL>:
339
340  use ExtUtils::MakeMaker;
341
342  WriteMakefile(
343      NAME		=> 'Cool::Foo',
344      VERSION_FROM	=> 'Foo.pm',
345      OBJECT              => q/$(O_FILES)/,
346      # ... other attrs ...
347  );
348
349Notice the C<OBJECT> attribute. MakeMaker generates the following
350variables in I<Makefile>:
351
352  # Handy lists of source code files:
353  XS_FILES= Bar.xs \
354  	Foo.xs
355  C_FILES = Bar.c \
356  	Foo.c
357  O_FILES = Bar.o \
358  	Foo.o
359
360Therefore we can use the C<O_FILES> variable to tell MakeMaker to use
361these objects into the shared library.
362
363That's pretty much it. Now write I<Foo.pm> and I<Foo.xs>, I<Bar.pm>
364and I<Bar.xs>, where I<Foo.pm> bootstraps the shared library and
365I<Bar.pm> simply loading I<Foo.pm>.
366
367The only issue left is to how to bootstrap I<Bar.xs>. This is done
368from I<Foo.xs>:
369
370  MODULE = Cool::Foo PACKAGE = Cool::Foo
371
372  BOOT:
373  # boot the second XS file
374  boot_Cool__Bar(aTHX_ cv);
375
376If you have more than two files, this is the place where you should
377boot extra XS files from.
378
379The following four files sum up all the details discussed so far.
380
381  Foo.pm:
382  -------
383  package Cool::Foo;
384
385  require DynaLoader;
386
387  our @ISA = qw(DynaLoader);
388  our $VERSION = '0.01';
389  bootstrap Cool::Foo $VERSION;
390
391  1;
392
393  Bar.pm:
394  -------
395  package Cool::Bar;
396
397  use Cool::Foo; # bootstraps Bar.xs
398
399  1;
400
401  Foo.xs:
402  -------
403  #include "EXTERN.h"
404  #include "perl.h"
405  #include "XSUB.h"
406
407  MODULE = Cool::Foo  PACKAGE = Cool::Foo
408
409  BOOT:
410  # boot the second XS file
411  boot_Cool__Bar(aTHX_ cv);
412
413  MODULE = Cool::Foo  PACKAGE = Cool::Foo  PREFIX = cool_foo_
414
415  void
416  cool_foo_perl_rules()
417
418      CODE:
419      fprintf(stderr, "Cool::Foo says: Perl Rules\n");
420
421  Bar.xs:
422  -------
423  #include "EXTERN.h"
424  #include "perl.h"
425  #include "XSUB.h"
426
427  MODULE = Cool::Bar  PACKAGE = Cool::Bar PREFIX = cool_bar_
428
429  void
430  cool_bar_perl_rules()
431
432      CODE:
433      fprintf(stderr, "Cool::Bar says: Perl Rules\n");
434
435And of course a very basic test:
436
437  t/cool.t:
438  --------
439  use Test;
440  BEGIN { plan tests => 1 };
441  use Cool::Foo;
442  use Cool::Bar;
443  Cool::Foo::perl_rules();
444  Cool::Bar::perl_rules();
445  ok 1;
446
447This tip has been brought to you by Nick Ing-Simmons and Stas Bekman.
448
449=back
450
451=head1 PATCHING
452
453If you have a question you'd like to see added to the FAQ (whether or
454not you have the answer) please send it to makemaker@perl.org.
455
456=head1 AUTHOR
457
458The denizens of makemaker@perl.org.
459
460=head1 SEE ALSO
461
462L<ExtUtils::MakeMaker>
463
464=cut
465