1 package ExtUtils
::MM_Unix
;
5 use File
::Basename
qw(basename dirname fileparse);
8 use vars
qw($VERSION $Is_Mac $Is_OS2 $Is_VMS $Is_Win32 $Is_Dos $Is_PERL_OBJECT
9 $Verbose %pm %static $Xsubpp_Version);
11 $VERSION = substr q$Revision: 1.12603 $, 10;
12 # $Id: MM_Unix.pm,v 1.126 1998/06/28 21:32:49 k Exp k $
14 Exporter::import('ExtUtils::MakeMaker', qw($Verbose &neatvalue));
16 $Is_OS2 = $^O eq 'os2';
17 $Is_Mac = $^O eq 'MacOS';
18 $Is_Win32 = $^O eq 'MSWin32';
19 $Is_Dos = $^O eq 'dos';
21 $Is_PERL_OBJECT = $Config{'ccflags'} =~ /-DPERL_OBJECT/;
23 if ($Is_VMS = $^O eq 'VMS') {
24 require VMS::Filespec;
25 import VMS::Filespec qw( &vmsify );
30 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
34 C<require ExtUtils::MM_Unix;>
38 The methods provided by this package are designed to be used in
39 conjunction with ExtUtils::MakeMaker. When MakeMaker writes a
40 Makefile, it creates one or more objects that inherit their methods
41 from a package C<MM>. MM itself doesn't provide any methods, but it
42 ISA ExtUtils::MM_Unix class. The inheritance tree of MM lets operating
43 specific packages take the responsibility for all the methods provided
44 by MM_Unix. We are trying to reduce the number of the necessary
45 overrides by defining rather primitive operations within
48 If you are going to write a platform specific MM package, please try
49 to limit the necessary overrides to primitive methods, and if it is not
50 possible to do so, let's work out how to achieve that gain.
52 If you are overriding any of these methods in your Makefile.PL (in the
53 MY class), please report that to the makemaker mailing list. We are
54 trying to minimize the necessary method overrides and switch to data
55 driven Makefile.PLs wherever possible. In the long run less methods
56 will be overridable via the MY class.
60 The following description of methods is still under
61 development. Please refer to the code for not suitably documented
62 sections and complain loudly to the makemaker mailing list.
64 Not all of the methods below are overridable in a
65 Makefile.PL. Overridable methods are marked as (o). All methods are
66 overridable by a platform specific MM_*.pm file (See
67 L<ExtUtils::MM_VMS>) and L<ExtUtils::MM_OS2>).
69 =head2 Preloaded methods
75 No physical check on the filesystem, but a logical cleanup of a
76 path. On UNIX eliminated successive slashes and successive "/.".
83 if ( $^O
eq 'qnx' && $path =~ s
|^(//\d
+)/|/|s
) {
86 $path =~ s
|(?
<=[^/])/+|/|g ; # xx////xx -> xx/xx
87 $path =~ s
|(/\.)+/|/|g ; # xx/././xx -> xx
/xx
88 $path =~ s
|^(\
./)+||s unless $path eq "./"; # ./xx -> xx
89 $path =~ s|(?<=[^/])/\z|| ; # xx/ -> xx
95 Concatenate two or more directory names to form a complete path ending
96 with a directory. But remove the trailing slash from the resulting
97 string, because it doesn't look good, isn't necessary and confuses
98 OS2. Of course, if this is the root directory, don't cut off the
109 # append a slash to each argument unless it has one there
110 $_ .= "/" if $_ eq '' or substr($_,-1) ne "/";
112 $self->canonpath(join('', @args));
117 Concatenate one or more directory names and a filename to form a
118 complete path ending with a filename
125 return $self->canonpath($file) unless @_;
126 my $dir = $self->catdir(@_);
128 $_ .= "/" unless substr($_,length($_)-1,1) eq "/";
130 return $self->canonpath($dir.$file);
135 Returns a string representing of the current directory. "." on UNIX.
145 Returns a string representing of the root directory. "/" on UNIX.
155 Returns a string representing of the parent directory. ".." on UNIX.
163 sub ExtUtils::MM_Unix::c_o ;
164 sub ExtUtils::MM_Unix::clean ;
165 sub ExtUtils::MM_Unix::const_cccmd ;
166 sub ExtUtils::MM_Unix::const_config ;
167 sub ExtUtils::MM_Unix::const_loadlibs ;
168 sub ExtUtils::MM_Unix::constants ;
169 sub ExtUtils::MM_Unix::depend ;
170 sub ExtUtils::MM_Unix::dir_target ;
171 sub ExtUtils::MM_Unix::dist ;
172 sub ExtUtils::MM_Unix::dist_basics ;
173 sub ExtUtils::MM_Unix::dist_ci ;
174 sub ExtUtils::MM_Unix::dist_core ;
175 sub ExtUtils::MM_Unix::dist_dir ;
176 sub ExtUtils::MM_Unix::dist_test ;
177 sub ExtUtils::MM_Unix::dlsyms ;
178 sub ExtUtils::MM_Unix::dynamic ;
179 sub ExtUtils::MM_Unix::dynamic_bs ;
180 sub ExtUtils::MM_Unix::dynamic_lib ;
181 sub ExtUtils::MM_Unix::exescan ;
182 sub ExtUtils::MM_Unix::export_list ;
183 sub ExtUtils::MM_Unix::extliblist ;
184 sub ExtUtils::MM_Unix::file_name_is_absolute ;
185 sub ExtUtils::MM_Unix::find_perl ;
186 sub ExtUtils::MM_Unix::fixin ;
187 sub ExtUtils::MM_Unix::force ;
188 sub ExtUtils::MM_Unix::guess_name ;
189 sub ExtUtils::MM_Unix::has_link_code ;
190 sub ExtUtils::MM_Unix::htmlifypods ;
191 sub ExtUtils::MM_Unix::init_dirscan ;
192 sub ExtUtils::MM_Unix::init_main ;
193 sub ExtUtils::MM_Unix::init_others ;
194 sub ExtUtils::MM_Unix::install ;
195 sub ExtUtils::MM_Unix::installbin ;
196 sub ExtUtils::MM_Unix::libscan ;
197 sub ExtUtils::MM_Unix::linkext ;
198 sub ExtUtils::MM_Unix::lsdir ;
199 sub ExtUtils::MM_Unix::macro ;
200 sub ExtUtils::MM_Unix::makeaperl ;
201 sub ExtUtils::MM_Unix::makefile ;
202 sub ExtUtils::MM_Unix::manifypods ;
203 sub ExtUtils::MM_Unix::maybe_command ;
204 sub ExtUtils::MM_Unix::maybe_command_in_dirs ;
205 sub ExtUtils::MM_Unix::needs_linking ;
206 sub ExtUtils::MM_Unix::nicetext ;
207 sub ExtUtils::MM_Unix::parse_version ;
208 sub ExtUtils::MM_Unix::pasthru ;
209 sub ExtUtils::MM_Unix::path ;
210 sub ExtUtils::MM_Unix::perl_archive;
211 sub ExtUtils::MM_Unix::perl_archive_after;
212 sub ExtUtils::MM_Unix::perl_script ;
213 sub ExtUtils::MM_Unix::perldepend ;
214 sub ExtUtils::MM_Unix::pm_to_blib ;
215 sub ExtUtils::MM_Unix::post_constants ;
216 sub ExtUtils::MM_Unix::post_initialize ;
217 sub ExtUtils::MM_Unix::postamble ;
218 sub ExtUtils::MM_Unix::ppd ;
219 sub ExtUtils::MM_Unix::prefixify ;
220 sub ExtUtils::MM_Unix::processPL ;
221 sub ExtUtils::MM_Unix::realclean ;
222 sub ExtUtils::MM_Unix::replace_manpage_separator ;
223 sub ExtUtils::MM_Unix::static ;
224 sub ExtUtils::MM_Unix::static_lib ;
225 sub ExtUtils::MM_Unix::staticmake ;
226 sub ExtUtils::MM_Unix::subdir_x ;
227 sub ExtUtils::MM_Unix::subdirs ;
228 sub ExtUtils::MM_Unix::test ;
229 sub ExtUtils::MM_Unix::test_via_harness ;
230 sub ExtUtils::MM_Unix::test_via_script ;
231 sub ExtUtils::MM_Unix::tool_autosplit ;
232 sub ExtUtils::MM_Unix::tool_xsubpp ;
233 sub ExtUtils::MM_Unix::tools_other ;
234 sub ExtUtils::MM_Unix::top_targets ;
235 sub ExtUtils::MM_Unix::writedoc ;
236 sub ExtUtils::MM_Unix::xs_c ;
237 sub ExtUtils::MM_Unix::xs_cpp ;
238 sub ExtUtils::MM_Unix::xs_o ;
239 sub ExtUtils::MM_Unix::xsubpp_version ;
241 package ExtUtils::MM_Unix;
251 =head2 SelfLoaded methods
257 Defines the suffix rules to compile different flavors of C files to
263 # --- Translation Sections ---
266 return '' unless $self->needs_linking();
270 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
274 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.C
275 ' if $^O ne 'os2' and $^O ne 'MSWin32' and $^O ne 'dos'; #Case-specific
278 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cpp
281 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cxx
284 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cc
291 Does very much the same as the cflags script in the perl
292 distribution. It doesn't return the whole compiler command line, but
293 initializes all of its parts. The const_cccmd method then actually
294 returns the definition of the CCCMD macro which uses these parts.
301 my($self,$libperl)=@_;
302 return $self->{CFLAGS} if $self->{CFLAGS};
303 return '' unless $self->needs_linking();
305 my($prog, $uc, $perltype, %cflags);
306 $libperl ||= $self->{LIBPERL_A} || "libperl
$self->{LIB_EXT
}" ;
307 $libperl =~ s/\.\$\(A\)$/$self->{LIB_EXT}/;
309 @cflags{qw(cc ccflags optimize shellflags)}
310 = @Config{qw(cc ccflags optimize shellflags)};
313 $cflags{shellflags
} ||= '';
318 DE
=> '-DDEBUGGING -DEMBED',
319 M
=> '-DEMBED -DMULTIPLICITY',
320 DM
=> '-DDEBUGGING -DEMBED -DMULTIPLICITY',
323 if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
326 $uc = ""; # avoid warning
328 $perltype = $map{$uc} ?
$map{$uc} : "";
336 ( $name = $self->{NAME
} . "_cflags" ) =~ s/:/_/g ;
337 if ($prog = $Config::Config
{$name}) {
338 # Expand hints for this extension via the shell
339 print STDOUT
"Processing $name hint:\n" if $Verbose;
340 my(@o)=`cc=\"$cflags{cc}\"
341 ccflags=\"$cflags{ccflags}\"
342 optimize=\"$cflags{optimize}\"
343 perltype=\"$cflags{perltype}\"
344 optdebug=\"$cflags{optdebug}\"
347 echo ccflags=\$ccflags
348 echo optimize=\$optimize
349 echo perltype=\$perltype
350 echo optdebug=\$optdebug
355 if ($line =~ /(.*?)=\s*(.*)\s*$/){
357 print STDOUT
" $1 = $2\n" if $Verbose;
359 print STDOUT
"Unrecognised result from hint: '$line'\n";
365 $cflags{optimize
} = $optdebug;
368 for (qw(ccflags optimize perltype)) {
369 $cflags{$_} =~ s/^\s+//;
370 $cflags{$_} =~ s/\s+/ /g;
371 $cflags{$_} =~ s/\s+$//;
372 $self->{uc $_} ||= $cflags{$_}
375 if ($Is_PERL_OBJECT) {
376 $self->{CCFLAGS
} =~ s/-DPERL_OBJECT(\b|$)/-DPERL_CAPI/g;
378 if ($Config{'cc'} =~ /^cl/i) {
379 # Turn off C++ mode of the MSC compiler
380 $self->{CCFLAGS
} =~ s/-TP(\s|$)//g;
381 $self->{OPTIMIZE
} =~ s/-TP(\s|$)//g;
383 elsif ($Config{'cc'} =~ /^bcc32/i) {
384 # Turn off C++ mode of the Borland compiler
385 $self->{CCFLAGS
} =~ s/-P(\s|$)//g;
386 $self->{OPTIMIZE
} =~ s/-P(\s|$)//g;
388 elsif ($Config{'cc'} =~ /^gcc/i) {
389 # Turn off C++ mode of the GCC compiler
390 $self->{CCFLAGS
} =~ s/-xc\+\+(\s|$)//g;
391 $self->{OPTIMIZE
} =~ s/-xc\+\+(\s|$)//g;
396 if ($self->{POLLUTE
}) {
397 $self->{CCFLAGS
} .= ' -DPERL_POLLUTE ';
401 if ($Config{usemymalloc
} and not $Config{bincompat5005
}
402 and not $Config{ccflags
} =~ /-DPERL_POLLUTE_MALLOC\b/
403 and $self->{PERL_MALLOC_OK
}) {
404 $pollute = '$(PERL_MALLOC_DEF)';
407 return $self->{CFLAGS
} = qq{
408 CCFLAGS
= $self->{CCFLAGS
}
409 OPTIMIZE
= $self->{OPTIMIZE
}
410 PERLTYPE
= $self->{PERLTYPE
}
418 Defines the clean target.
423 # --- Cleanup and Distribution Sections ---
425 my($self, %attribs) = @_;
428 # Delete temporary files but do not touch installed files. We don\'t delete
429 # the Makefile here so a later make realclean still has a makefile to use.
433 # clean subdirectories first
434 for $dir (@
{$self->{DIR
}}) {
435 if ($Is_Win32 && Win32
::IsWin95
()) {
438 \$(TEST_F) $self->{MAKEFILE}
445 -cd $dir && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) clean
450 my(@otherfiles) = values %{$self->{XS
}}; # .c files from *.xs files
451 push(@otherfiles, $attribs{FILES
}) if $attribs{FILES
};
452 push(@otherfiles, qw
[./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs
.all
453 perlmain
.c mon
.out core core
.*perl
.*.?
454 *perl
.core so_locations pm_to_blib
455 *$(OBJ_EXT
) *$(LIB_EXT
) perl
.exe
456 $(BOOTSTRAP
) $(BASEEXT
).bso
$(BASEEXT
).def
459 push @m, "\t-$self->{RM_RF} @otherfiles\n";
460 # See realclean and ext/utils/make_ext for usage of Makefile.old
462 "\t-$self->{MV} $self->{MAKEFILE} $self->{MAKEFILE}.old \$(DEV_NULL)\n");
464 "\t$attribs{POSTOP}\n") if $attribs{POSTOP
};
468 =item const_cccmd (o)
470 Returns the full compiler call for C programs and stores the
471 definition in CONST_CCCMD.
476 my($self,$libperl)=@_;
477 return $self->{CONST_CCCMD
} if $self->{CONST_CCCMD
};
478 return '' unless $self->needs_linking();
479 return $self->{CONST_CCCMD
} =
480 q{CCCMD = $(CC) -c $(INC) $(CCFLAGS) $(OPTIMIZE) \\
481 $(PERLTYPE) $(MPOLLUTE) $(DEFINE_VERSION) \\
482 $(XS_DEFINE_VERSION)};
485 =item const_config (o)
487 Defines a couple of constants in the Makefile that are imported from
493 # --- Constants Sections ---
497 push(@m,"\n# These definitions are from config.sh (via $INC{'Config.pm'})\n");
498 push(@m,"\n# They may have been overridden via Makefile.PL or on the command line\n");
500 foreach $m (@
{$self->{CONFIG
}}){
501 # SITE*EXP macros are defined in &constants; avoid duplicates here
502 next if $once_only{$m} or $m eq 'sitelibexp' or $m eq 'sitearchexp';
503 push @m, "\U$m\E = ".$self->{uc $m}."\n";
509 =item const_loadlibs (o)
511 Defines EXTRALIBS, LDLOADLIBS, BSLOADLIBS, LD_RUN_PATH. See
512 L<ExtUtils::Liblist> for details.
518 return "" unless $self->needs_linking;
521 # $self->{NAME} might depend on some other libraries:
522 # See ExtUtils::Liblist for details
527 EXTRALIBS LDLOADLIBS BSLOADLIBS LD_RUN_PATH
529 next unless defined $self->{$tmp};
530 push @m, "$tmp = $self->{$tmp}\n";
537 Initializes lots of constants and .SUFFIXES and .PHONY
547 AR_STATIC_ARGS NAME DISTNAME NAME_SYM VERSION
548 VERSION_SYM XS_VERSION INST_BIN INST_EXE INST_LIB
549 INST_ARCHLIB INST_SCRIPT PREFIX INSTALLDIRS
550 INSTALLPRIVLIB INSTALLARCHLIB INSTALLSITELIB
551 INSTALLSITEARCH INSTALLBIN INSTALLSCRIPT PERL_LIB
552 PERL_ARCHLIB SITELIBEXP SITEARCHEXP LIBPERL_A MYEXTLIB
553 FIRST_MAKEFILE MAKE_APERL_FILE PERLMAINCC PERL_SRC
554 PERL_INC PERL FULLPERL FULL_AR
557 next unless defined $self->{$tmp};
558 push @m, "$tmp = $self->{$tmp}\n";
562 VERSION_MACRO
= VERSION
563 DEFINE_VERSION
= -D\
$(VERSION_MACRO
)=\\\"\
$(VERSION
)\\\"
564 XS_VERSION_MACRO
= XS_VERSION
565 XS_DEFINE_VERSION
= -D\
$(XS_VERSION_MACRO
)=\\\"\
$(XS_VERSION
)\\\"
566 PERL_MALLOC_DEF
= -DPERL_EXTMALLOC_DEF
-Dmalloc
=Perl_malloc
-Dfree
=Perl_mfree
-Drealloc
=Perl_realloc
-Dcalloc
=Perl_calloc
570 MAKEMAKER
= $INC{'ExtUtils/MakeMaker.pm'}
571 MM_VERSION
= $ExtUtils::MakeMaker
::VERSION
575 # FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle).
576 # BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle)
577 # ROOTEXT = Directory part of FULLEXT with leading slash (eg /DBD) !!! Deprecated from MM 5.32 !!!
578 # PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar)
579 # DLBASE = Basename part of dynamic library. May be just equal BASEEXT.
583 FULLEXT BASEEXT PARENT_NAME DLBASE VERSION_FROM INC DEFINE OBJECT
584 LDFROM LINKTYPE PM_FILTER
586 next unless defined $self->{$tmp};
587 push @m, "$tmp = $self->{$tmp}\n";
591 # Handy lists of source code files:
592 XS_FILES= ".join(" \\\n\t", sort keys %{$self->{XS
}})."
593 C_FILES = ".join(" \\\n\t", @
{$self->{C
}})."
594 O_FILES = ".join(" \\\n\t", @
{$self->{O_FILES
}})."
595 H_FILES = ".join(" \\\n\t", @
{$self->{H
}})."
596 HTMLLIBPODS = ".join(" \\\n\t", sort keys %{$self->{HTMLLIBPODS
}})."
597 HTMLSCRIPTPODS = ".join(" \\\n\t", sort keys %{$self->{HTMLSCRIPTPODS
}})."
598 MAN1PODS = ".join(" \\\n\t", sort keys %{$self->{MAN1PODS
}})."
599 MAN3PODS = ".join(" \\\n\t", sort keys %{$self->{MAN3PODS
}})."
603 INST_HTMLPRIVLIBDIR INSTALLHTMLPRIVLIBDIR
604 INST_HTMLSITELIBDIR INSTALLHTMLSITELIBDIR
605 INST_HTMLSCRIPTDIR INSTALLHTMLSCRIPTDIR
606 INST_HTMLLIBDIR HTMLEXT
607 INST_MAN1DIR INSTALLMAN1DIR MAN1EXT
608 INST_MAN3DIR INSTALLMAN3DIR MAN3EXT
610 next unless defined $self->{$tmp};
611 push @m, "$tmp = $self->{$tmp}\n";
618 my $method = lc($tmp);
619 # warn "self[$self] method[$method]";
620 push @m, "$tmp = ", $self->$method(), "\n";
624 .NO_CONFIG_REC: Makefile
625 } if $ENV{CLEARCASE_ROOT
};
627 # why not q{} ? -- emacs
629 # work around a famous dec-osf make(1) feature(?):
632 .SUFFIXES
: .xs
.c
.C
.cpp
.cxx
.cc \
$(OBJ_EXT
)
634 # Nick wanted to get rid of .PRECIOUS. I don't remember why. I seem to recall, that
635 # some make implementations will delete the Makefile when we rebuild it. Because
636 # we call false(1) when we rebuild it. So make(1) is not completely wrong when it
637 # does so. Our milage may vary.
638 # .PRECIOUS: Makefile # seems to be not necessary anymore
640 .PHONY
: all config static dynamic test linkext manifest
642 # Where is the Config information that we are using/depend on
643 CONFIGDEP
= \
$(PERL_ARCHLIB
)/Config.pm \$(PERL_INC)/config
.h
646 my @parentdir = split(/::/, $self->{PARENT_NAME
});
648 # Where to put things:
649 INST_LIBDIR = }. $self->catdir('$(INST_LIB)',@parentdir) .q{
650 INST_ARCHLIBDIR = }. $self->catdir('$(INST_ARCHLIB)',@parentdir) .q{
652 INST_AUTODIR = }. $self->catdir('$(INST_LIB)','auto','$(FULLEXT)') .q{
653 INST_ARCHAUTODIR = }. $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)') .q{
656 if ($self->has_link_code()) {
658 INST_STATIC = $(INST_ARCHAUTODIR)/$(BASEEXT)$(LIB_EXT)
659 INST_DYNAMIC = $(INST_ARCHAUTODIR)/$(DLBASE).$(DLEXT)
660 INST_BOOT = $(INST_ARCHAUTODIR)/$(BASEEXT).bs
670 $tmp = $self->export_list;
674 $tmp = $self->perl_archive;
678 $tmp = $self->perl_archive_after;
680 PERL_ARCHIVE_AFTER = $tmp
684 #INST_PM = }.join(" \\\n\t", sort values %{$self->{PM}}).q{
686 #PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM}}).q{
690 TO_INST_PM = }.join(" \\\n\t", sort keys %{$self->{PM
}}).q{
692 PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM
}}).q{
700 Same as macro for the depend attribute.
705 my($self,%attribs) = @_;
707 while (($key,$val) = each %attribs){
708 last unless defined $key;
709 push @m, "$key: $val\n";
716 Takes an array of directories that need to exist and returns a
717 Makefile entry for a .exists file in these directories. Returns
718 nothing, if the entry has already been processed. We're helpless
719 though, if the same directory comes as $(FOO) _and_ as "bar". Both of
720 them get an entry, that's why we use "::".
725 # --- Make-Directories section (internal method) ---
726 # dir_target(@array) returns a Makefile entry for the file .exists in each
727 # named directory. Returns nothing, if the entry has already been processed.
728 # We're helpless though, if the same directory comes as $(FOO) _and_ as "bar".
729 # Both of them get an entry, that's why we use "::". I chose '$(PERL)' as the
730 # prerequisite, because there has to be one, something that doesn't change
733 my($self,@dirs) = @_;
734 my(@m,$dir,$targdir);
735 foreach $dir (@dirs) {
736 my($src) = $self->catfile($self->{PERL_INC
},'perl.h');
737 my($targ) = $self->catfile($dir,'.exists');
738 # catfile may have adapted syntax of $dir to target OS, so...
739 if ($Is_VMS) { # Just remove file name; dirspec is often in macro
740 ($targdir = $targ) =~ s
:/?\
.exists\z
::;
742 else { # while elsewhere we expect to see the dir separator in $targ
743 $targdir = dirname
($targ);
745 next if $self->{DIR_TARGET
}{$self}{$targdir}++;
748 $self->{NOECHO
}\
$(MKPATH
) $targdir
749 $self->{NOECHO
}\
$(EQUALIZE_TIMESTAMP
) $src $targ
752 -$self->{NOECHO
}\
$(CHMOD
) \
$(PERM_RWX
) $targdir
760 Defines a lot of macros for distribution support.
765 my($self, %attribs) = @_;
768 # VERSION should be sanitised before use as a file name
769 my($version) = $attribs{VERSION
} || '$(VERSION)';
770 my($name) = $attribs{NAME
} || '$(DISTNAME)';
771 my($tar) = $attribs{TAR
} || 'tar'; # eg /usr/bin/gnutar
772 my($tarflags) = $attribs{TARFLAGS
} || 'cvf';
773 my($zip) = $attribs{ZIP
} || 'zip'; # eg pkzip Yuck!
774 my($zipflags) = $attribs{ZIPFLAGS
} || '-r';
775 my($compress) = $attribs{COMPRESS
} || 'gzip --best';
776 my($suffix) = $attribs{SUFFIX
} || '.gz'; # eg .gz
777 my($shar) = $attribs{SHAR
} || 'shar'; # eg "shar --gzip"
778 my($preop) = $attribs{PREOP
} || "$self->{NOECHO}\$(NOOP)"; # eg update MANIFEST
779 my($postop) = $attribs{POSTOP
} || "$self->{NOECHO}\$(NOOP)"; # eg remove the distdir
781 my($to_unix) = $attribs{TO_UNIX
} || ($Is_OS2
783 . '$(TEST_F) tmp.zip && $(RM) tmp.zip;'
784 . ' $(ZIP) -ll -mr tmp.zip $(DISTVNAME) && unzip -o tmp.zip && $(RM) tmp.zip'
785 : "$self->{NOECHO}\$(NOOP)");
787 my($ci) = $attribs{CI
} || 'ci -u';
788 my($rcs_label)= $attribs{RCS_LABEL
}|| 'rcs -Nv$(VERSION_SYM): -q';
789 my($dist_cp) = $attribs{DIST_CP
} || 'best';
790 my($dist_default) = $attribs{DIST_DEFAULT
} || 'tardist';
793 DISTVNAME = ${name}-$version
805 RCS_LABEL = $rcs_label
807 DIST_DEFAULT = $dist_default
812 =item dist_basics (o)
814 Defines the targets distclean, distcheck, skipcheck, manifest, veryclean.
822 distclean :: realclean distcheck
827 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=fullcheck \\
833 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=skipcheck \\
839 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=mkmanifest \\
844 veryclean : realclean
845 $(RM_F) *~ *.orig */*~ */*.orig
852 Defines a check in target for RCS.
861 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=maniread \\
862 -e "@all = keys %{ maniread() };" \\
863 -e 'print("Executing $(CI) @all\n"); system("$(CI) @all");' \\
864 -e 'print("Executing $(RCS_LABEL) ...\n"); system("$(RCS_LABEL) @all");'
871 Defines the targets dist, tardist, zipdist, uutardist, shdist
879 dist : $(DIST_DEFAULT)
880 }.$self->{NOECHO
}.q{$(PERL) -le 'print "Warning: Makefile possibly out of date with $$vf" if ' \
881 -e '-e ($$vf="$(VERSION_FROM)") and -M $$vf < -M "}.$self->{MAKEFILE}.q{";'
883 tardist : $(DISTVNAME).tar$(SUFFIX)
885 zipdist : $(DISTVNAME).zip
887 $(DISTVNAME).tar$(SUFFIX) : distdir
890 $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME)
891 $(RM_RF) $(DISTVNAME)
892 $(COMPRESS) $(DISTVNAME).tar
895 $(DISTVNAME).zip : distdir
897 $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME)
898 $(RM_RF) $(DISTVNAME)
901 uutardist : $(DISTVNAME).tar$(SUFFIX)
902 uuencode $(DISTVNAME).tar$(SUFFIX) \\
903 $(DISTVNAME).tar$(SUFFIX) > \\
904 $(DISTVNAME).tar$(SUFFIX)_uu
908 $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar
909 $(RM_RF) $(DISTVNAME)
917 Defines the scratch directory target that will hold the distribution
918 before tar-ing (or shar-ing).
927 $(RM_RF) $(DISTVNAME)
928 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=manicopy,maniread \\
929 -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');"
936 Defines a target that produces the distribution in the
937 scratchdirectory, and runs 'perl Makefile.PL; make ;make test' in that
947 cd $(DISTVNAME) && $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) Makefile.PL
948 cd $(DISTVNAME) && $(MAKE)
949 cd $(DISTVNAME) && $(MAKE) test
956 Used by AIX and VMS to define DL_FUNCS and DL_VARS and write the *.exp
962 my($self,%attribs) = @_;
964 return '' unless ($^O
eq 'aix' && $self->needs_linking() );
966 my($funcs) = $attribs{DL_FUNCS
} || $self->{DL_FUNCS
} || {};
967 my($vars) = $attribs{DL_VARS
} || $self->{DL_VARS
} || [];
968 my($funclist) = $attribs{FUNCLIST
} || $self->{FUNCLIST
} || [];
972 dynamic :: $self->{BASEEXT}.exp
974 ") unless $self->{SKIPHASH
}{'dynamic'}; # dynamic and static are subs, so...
977 static :: $self->{BASEEXT}.exp
979 ") unless $self->{SKIPHASH
}{'static'}; # we avoid a warning if we tick them
982 $self->{BASEEXT}.exp: Makefile.PL
983 ",' $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e \'use ExtUtils::Mksymlists; \\
984 Mksymlists("NAME" => "',$self->{NAME
},'", "DL_FUNCS" => ',
985 neatvalue
($funcs), ', "FUNCLIST" => ', neatvalue
($funclist),
986 ', "DL_VARS" => ', neatvalue
($vars), ');\'
994 Defines the dynamic target.
999 # --- Dynamic Loading Sections ---
1003 ## $(INST_PM) has been moved to the all: target.
1004 ## It remains here for awhile to allow for old usage: "make dynamic"
1005 #dynamic :: '.$self->{MAKEFILE
}.' $(INST_DYNAMIC) $(INST_BOOT) $(INST_PM)
1006 dynamic :: '.$self->{MAKEFILE
}.' $(INST_DYNAMIC) $(INST_BOOT)
1007 '.$self->{NOECHO
}.'$(NOOP)
1011 =item dynamic_bs (o)
1013 Defines targets for bootstrap files.
1018 my($self, %attribs) = @_;
1021 ' unless $self->has_link_code();
1024 BOOTSTRAP = '."$self->{BASEEXT}.bs".'
1026 # As Mkbootstrap might not write a file (if none is required)
1027 # we use touch to prevent make continually trying to remake it.
1028 # The DynaLoader only reads a non-empty file.
1029 $(BOOTSTRAP): '."$self->{MAKEFILE} $self->{BOOTDEP}".' $(INST_ARCHAUTODIR)/.exists
1030 '.$self->{NOECHO
}.'echo "Running Mkbootstrap for $(NAME) ($(BSLOADLIBS))"
1031 '.$self->{NOECHO
}.'$(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" \
1032 -MExtUtils::Mkbootstrap \
1033 -e "Mkbootstrap(\'$(BASEEXT)\',\'$(BSLOADLIBS)\');"
1034 '.$self->{NOECHO
}.'$(TOUCH) $(BOOTSTRAP)
1035 $(CHMOD) $(PERM_RW) $@
1037 $(INST_BOOT): $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists
1038 '."$self->{NOECHO}$self->{RM_RF}".' $(INST_BOOT)
1039 -'.$self->{CP
}.' $(BOOTSTRAP) $(INST_BOOT)
1040 $(CHMOD) $(PERM_RW) $@
1044 =item dynamic_lib (o)
1046 Defines how to produce the *.so (or equivalent) files.
1051 my($self, %attribs) = @_;
1052 return '' unless $self->needs_linking(); #might be because of a subdir
1054 return '' unless $self->has_link_code;
1056 my($otherldflags) = $attribs{OTHERLDFLAGS
} || "";
1057 my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP
} || "";
1058 my($armaybe) = $attribs{ARMAYBE
} || $self->{ARMAYBE
} || ":";
1059 my($ldfrom) = '$(LDFROM)';
1060 $armaybe = 'ar' if ($^O
eq 'dec_osf' and $armaybe eq ':');
1063 # This section creates the dynamically loadable $(INST_DYNAMIC)
1064 # from $(OBJECT) and possibly $(MYEXTLIB).
1065 ARMAYBE = '.$armaybe.'
1066 OTHERLDFLAGS = '.$otherldflags.'
1067 INST_DYNAMIC_DEP = '.$inst_dynamic_dep.'
1069 $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists $(EXPORT_LIST) $(PERL_ARCHIVE) $(PERL_ARCHIVE_AFTER) $(INST_DYNAMIC_DEP)
1071 if ($armaybe ne ':'){
1072 $ldfrom = 'tmp$(LIB_EXT)';
1073 push(@m,' $(ARMAYBE) cr '.$ldfrom.' $(OBJECT)'."\n");
1074 push(@m,' $(RANLIB) '."$ldfrom\n");
1076 $ldfrom = "-all $ldfrom -none" if ($^O
eq 'dec_osf');
1078 # The IRIX linker doesn't use LD_RUN_PATH
1079 my $ldrun = qq{-rpath
"$self->{LD_RUN_PATH}"}
1080 if ($^O
eq 'irix' && $self->{LD_RUN_PATH
});
1082 # For example in AIX the shared objects/libraries from previous builds
1083 # linger quite a while in the shared dynalinker cache even when nobody
1084 # is using them. This is painful if one for instance tries to restart
1085 # a failed build because the link command will fail unnecessarily 'cos
1086 # the shared object/library is 'busy'.
1087 push(@m,' $(RM_F) $@
1090 push(@m,' LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
1091 ' $(OTHERLDFLAGS) -o $@ $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(PERL_ARCHIVE_AFTER) $(EXPORT_LIST)');
1093 $(CHMOD) $(PERM_RWX) $@
1096 push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
1102 Deprecated method. Use libscan instead.
1107 my($self,$path) = @_;
1113 Called by init_others, and calls ext ExtUtils::Liblist. See
1114 L<ExtUtils::Liblist> for details.
1119 my($self,$libs) = @_;
1120 require ExtUtils
::Liblist
;
1121 $self->ext($libs, $Verbose);
1124 =item file_name_is_absolute
1126 Takes as argument a path and returns true, if it is an absolute path.
1130 sub file_name_is_absolute
{
1131 my($self,$file) = @_;
1133 $file =~ m{^([a-z]:)?[\\/]}is ;
1142 Finds the executables PERL and FULLPERL
1147 my($self, $ver, $names, $dirs, $trace) = @_;
1150 print "Looking for perl $ver by these names:
1156 foreach $name (@
$names){
1157 foreach $dir (@
$dirs){
1158 next unless defined $dir; # $self->{PERL_SRC} may be undefined
1160 if ($self->file_name_is_absolute($name)) { # /foo/bar
1162 } elsif ($self->canonpath($name) eq $self->canonpath(basename
($name))) { # foo
1163 $abs = $self->catfile($dir, $name);
1165 $abs = $self->canonpath($self->catfile($self->curdir, $name));
1167 print "Checking $abs\n" if ($trace >= 2);
1168 next unless $self->maybe_command($abs);
1169 print "Executing $abs\n" if ($trace >= 2);
1170 $val = `$abs -e 'require $ver; print "VER_OK\n" ' 2>&1`;
1171 if ($val =~ /VER_OK/) {
1172 print "Using PERL=$abs\n" if $trace;
1174 } elsif ($trace >= 2) {
1175 print "Result: `$val'\n";
1179 print STDOUT
"Unable to find a perl $ver (by these names: @$names, in these dirs: @$dirs)\n";
1180 0; # false and not empty
1185 =head2 Methods to actually produce chunks of text for the Makefile
1187 The methods here are called for each MakeMaker object in the order
1188 specified by @ExtUtils::MakeMaker::MM_Sections.
1194 Inserts the sharpbang or equivalent magic number to a script
1198 sub fixin
{ # stolen from the pink Camel book, more or less
1199 my($self,@files) = @_;
1200 my($does_shbang) = $Config::Config
{'sharpbang'} =~ /^\s*\#\!/;
1201 my($file,$interpreter);
1202 for $file (@files) {
1205 open(FIXIN
, $file) or Carp
::croak
"Can't process '$file': $!";
1207 chomp(my $line = <FIXIN
>);
1208 next unless $line =~ s/^\s*\#!\s*//; # Not a shbang file.
1209 # Now figure out the interpreter name.
1210 my($cmd,$arg) = split ' ', $line, 2;
1213 # Now look (in reverse) for interpreter in absolute PATH (unless perl).
1214 if ($cmd eq "perl") {
1215 if ($Config{startperl
} =~ m
,^\#
!.*/perl
,) {
1216 $interpreter = $Config{startperl
};
1217 $interpreter =~ s
,^\#
!,,;
1219 $interpreter = $Config{perlpath
};
1222 my(@absdirs) = reverse grep {$self->file_name_is_absolute} $self->path;
1225 foreach $dir (@absdirs) {
1226 if ($self->maybe_command($cmd)) {
1227 warn "Ignoring $interpreter in $file\n" if $Verbose && $interpreter;
1228 $interpreter = $self->catfile($dir,$cmd);
1232 # Figure out how to invoke interpreter on this machine.
1236 print STDOUT
"Changing sharpbang in $file to $interpreter" if $Verbose;
1237 # this is probably value-free on DOSISH platforms
1239 $shb .= "$Config{'sharpbang'}$interpreter";
1240 $shb .= ' ' . $arg if defined $arg;
1244 eval 'exec $interpreter $arg -S \$0 \${1+"\$\@"}'
1245 if 0; # not running under some shell
1246 } unless $Is_Win32; # this won't work on win32, so don't
1248 warn "Can't find $cmd in PATH, $file unchanged"
1253 unless ( open(FIXOUT
,">$file.new") ) {
1254 warn "Can't create new $file: $!\n";
1257 my($dev,$ino,$mode) = stat FIXIN
;
1259 # Print out the new #! line (or equivalent).
1262 print FIXOUT
$shb, <FIXIN
>;
1266 # can't rename/chmod open files on some DOSISH platforms
1268 # If they override perm_rwx, we won't notice it during fixin,
1269 # because fixin is run through a new instance of MakeMaker.
1270 # That is why we must run another CHMOD later.
1271 $mode = oct($self->perm_rwx) unless $dev;
1274 unless ( rename($file, "$file.bak") ) {
1275 warn "Can't rename $file to $file.bak: $!";
1278 unless ( rename("$file.new", $file) ) {
1279 warn "Can't rename $file.new to $file: $!";
1280 unless ( rename("$file.bak", $file) ) {
1281 warn "Can't rename $file.bak back to $file either: $!";
1282 warn "Leaving $file renamed as $file.bak\n";
1288 close(FIXIN
) if fileno(FIXIN
);
1289 chmod oct($self->perm_rwx), $file or
1290 die "Can't reset permissions for $file: $!\n";
1291 system("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';;
1303 '# Phony target to force checking subdirectories.
1305 '.$self->{NOECHO
}.'$(NOOP)
1311 Guess the name of this package by examining the working directory's
1312 name. MakeMaker calls this only if the developer has not supplied a
1322 my $name = basename
(cwd
());
1323 $name =~ s
|[\
-_
][\d\
.\
-]+\z
||; # this is new with MM 5.00, we
1324 # strip minus or underline
1325 # followed by a float or some such
1326 print "Warning: Guessing NAME [$name] from current directory name.\n";
1332 Returns true if C, XS, MYEXTLIB or similar objects exist within this
1333 object that need a compiler. Does not descend into subdirectories as
1334 needs_linking() does.
1340 return $self->{HAS_LINK_CODE
} if defined $self->{HAS_LINK_CODE
};
1341 if ($self->{OBJECT
} or @
{$self->{C
} || []} or $self->{MYEXTLIB
}){
1342 $self->{HAS_LINK_CODE
} = 1;
1345 return $self->{HAS_LINK_CODE
} = 0;
1348 =item htmlifypods (o)
1350 Defines targets and routines to translate the pods into HTML manpages
1351 and put them into the INST_HTMLLIBDIR and INST_HTMLSCRIPTDIR
1357 my($self, %attribs) = @_;
1358 return "\nhtmlifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n" unless
1359 %{$self->{HTMLLIBPODS
}} || %{$self->{HTMLSCRIPTPODS
}};
1362 if (defined $self->{PERL_SRC
}) {
1363 $pod2html_exe = $self->catfile($self->{PERL_SRC
},'pod','pod2html');
1365 $pod2html_exe = $self->catfile($Config{scriptdirexp
},'pod2html');
1367 unless ($pod2html_exe = $self->perl_script($pod2html_exe)) {
1368 # No pod2html but some HTMLxxxPODS to be installed
1371 Warning: I could not locate your pod2html program. Please make sure,
1372 your pod2html program is in your PATH before you execute 'make'
1375 $pod2html_exe = "-S pod2html";
1379 qq[POD2HTML_EXE
= $pod2html_exe\n],
1380 qq[POD2HTML
= \
$(PERL
) -we
'use File::Basename; use File::Path qw(mkpath); %m=\
@ARGV;for (keys %m){' \\\n],
1381 q[-e 'next if -e
$$m{$$_} && -M
$$m{$$_} < -M
$$_ && -M
$$m{$$_} < -M
"],
1382 $self->{MAKEFILE}, q[";' \\
1383 -e 'print "Htmlifying $$m{$$_}\n";' \\
1384 -e '$$dir = dirname
($$m{$$_}); mkpath
($$dir) unless -d
$$dir;' \\
1385 -e 'system(qq[$$^X
].q
["-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" $(POD2HTML_EXE
) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\\047t install $$m{$$_}\n";' \\
1386 -e 'chmod(oct($(PERM_RW
))), $$m{$$_} or warn "chmod $(PERM_RW) $$m{$$_}: $$!\n";}'
1388 push @m, "\nhtmlifypods : pure_all ";
1389 push @m, join " \\\n\t", keys %{$self->{HTMLLIBPODS}}, keys %{$self->{HTMLSCRIPTPODS}};
1392 if (%{$self->{HTMLLIBPODS}} || %{$self->{HTMLSCRIPTPODS}}) {
1393 push @m, "\t$self->{NOECHO}\$(POD2HTML) \\\n\t";
1394 push @m, join " \\\n\t", %{$self->{HTMLLIBPODS}}, %{$self->{HTMLSCRIPTPODS}};
1401 Initializes DIR, XS, PM, C, O_FILES, H, PL_FILES, HTML*PODS, MAN*PODS, EXE_FILES.
1405 sub init_dirscan { # --- File and Directory Lists (.xs .pm .pod etc)
1407 my($name, %dir, %xs, %c, %h, %ignore, %pl_files, %manifypods);
1408 local(%pm); #the sub in find() has to see this hash
1409 @ignore{qw(Makefile.PL test.pl)} = (1,1);
1410 $ignore{'makefile.pl'} = 1 if $Is_VMS;
1411 foreach $name ($self->lsdir($self->curdir)){
1412 next if $name =~ /\#/;
1413 next if $name eq $self->curdir or $name eq $self->updir or $ignore{$name};
1414 next unless $self->libscan($name);
1416 next if -l
$name; # We do not support symlinks at all
1417 $dir{$name} = $name if (-f
$self->catfile($name,"Makefile.PL"));
1418 } elsif ($name =~ /\.xs\z/){
1419 my($c); ($c = $name) =~ s/\.xs\z/.c/;
1422 } elsif ($name =~ /\.c(pp|xx|c)?\z/i){ # .c .C .cpp .cxx .cc
1424 unless $name =~ m/perlmain\.c/; # See MAP_TARGET
1425 } elsif ($name =~ /\.h\z/i){
1427 } elsif ($name =~ /\.PL\z/) {
1428 ($pl_files{$name} = $name) =~ s/\.PL\z// ;
1429 } elsif (($Is_VMS || $Is_Dos) && $name =~ /[._]pl$/i) {
1430 # case-insensitive filesystem, one dot per name, so foo.h.PL
1431 # under Unix appears as foo.h_pl under VMS or fooh.pl on Dos
1432 local($/); open(PL
,$name); my $txt = <PL
>; close PL
;
1433 if ($txt =~ /Extracting \S+ \(with variable substitutions/) {
1434 ($pl_files{$name} = $name) =~ s/[._]pl\z//i ;
1436 else { $pm{$name} = $self->catfile('$(INST_LIBDIR)',$name); }
1437 } elsif ($name =~ /\.(p[ml]|pod)\z/){
1438 $pm{$name} = $self->catfile('$(INST_LIBDIR)',$name);
1442 # Some larger extensions often wish to install a number of *.pm/pl
1443 # files into the library in various locations.
1445 # The attribute PMLIBDIRS holds an array reference which lists
1446 # subdirectories which we should search for library files to
1447 # install. PMLIBDIRS defaults to [ 'lib', $self->{BASEEXT} ]. We
1448 # recursively search through the named directories (skipping any
1449 # which don't exist or contain Makefile.PL files).
1451 # For each *.pm or *.pl file found $self->libscan() is called with
1452 # the default installation path in $_[1]. The return value of
1453 # libscan defines the actual installation location. The default
1454 # libscan function simply returns the path. The file is skipped
1455 # if libscan returns false.
1457 # The default installation location passed to libscan in $_[1] is:
1459 # ./*.pm => $(INST_LIBDIR)/*.pm
1460 # ./xyz/... => $(INST_LIBDIR)/xyz/...
1461 # ./lib/... => $(INST_LIB)/...
1463 # In this way the 'lib' directory is seen as the root of the actual
1464 # perl library whereas the others are relative to INST_LIBDIR
1465 # (which includes PARENT_NAME). This is a subtle distinction but one
1466 # that's important for nested modules.
1468 $self->{PMLIBDIRS
} = ['lib', $self->{BASEEXT
}]
1469 unless $self->{PMLIBDIRS
};
1471 #only existing directories that aren't in $dir are allowed
1473 # Avoid $_ wherever possible:
1474 # @{$self->{PMLIBDIRS}} = grep -d && !$dir{$_}, @{$self->{PMLIBDIRS}};
1475 my (@pmlibdirs) = @
{$self->{PMLIBDIRS
}};
1477 @
{$self->{PMLIBDIRS
}} = ();
1478 foreach $pmlibdir (@pmlibdirs) {
1479 -d
$pmlibdir && !$dir{$pmlibdir} && push @
{$self->{PMLIBDIRS
}}, $pmlibdir;
1482 if (@
{$self->{PMLIBDIRS
}}){
1483 print "Searching PMLIBDIRS: @{$self->{PMLIBDIRS}}\n"
1486 File
::Find
::find
(sub {
1488 if ($_ eq "CVS" || $_ eq "RCS"){
1489 $File::Find
::prune
= 1;
1494 my($path, $prefix) = ($File::Find
::name
, '$(INST_LIBDIR)');
1495 my($striplibpath,$striplibname);
1496 $prefix = '$(INST_LIB)' if (($striplibpath = $path) =~ s
:^(\W
*)lib\W
:$1:i
);
1497 ($striplibname,$striplibpath) = fileparse
($striplibpath);
1498 my($inst) = $self->catfile($prefix,$striplibpath,$striplibname);
1499 local($_) = $inst; # for backwards compatibility
1500 $inst = $self->libscan($inst);
1501 print "libscan($path) => '$inst'\n" if ($Verbose >= 2);
1502 return unless $inst;
1504 }, @
{$self->{PMLIBDIRS
}});
1507 $self->{DIR
} = [sort keys %dir] unless $self->{DIR
};
1508 $self->{XS
} = \
%xs unless $self->{XS
};
1509 $self->{PM
} = \
%pm unless $self->{PM
};
1510 $self->{C
} = [sort keys %c] unless $self->{C
};
1511 my(@o_files) = @
{$self->{C
}};
1512 $self->{O_FILES
} = [grep s/\.c(pp|xx|c)?\z/$self->{OBJ_EXT}/i, @o_files] ;
1513 $self->{H
} = [sort keys %h] unless $self->{H
};
1514 $self->{PL_FILES
} = \
%pl_files unless $self->{PL_FILES
};
1516 # Set up names of manual pages to generate from pods
1518 foreach my $man (qw(MAN1 MAN3 HTMLLIB HTMLSCRIPT)) {
1519 unless ($self->{"${man}PODS"}) {
1520 $self->{"${man}PODS"} = {};
1521 $pods{$man} = 1 unless $self->{"INST_${man}DIR"} =~ /^(none|\s*)$/;
1525 if ($pods{MAN1
} || $pods{HTMLSCRIPT
}) {
1526 if ( exists $self->{EXE_FILES
} ) {
1527 foreach $name (@
{$self->{EXE_FILES
}}) {
1530 if (open(FH
,"<$name")) {
1532 if (/^=head1\s+\w+/) {
1539 # If it doesn't exist yet, we assume, it has pods in it
1543 if ($pods{HTMLSCRIPT
}) {
1544 $self->{HTMLSCRIPTPODS
}->{$name} =
1545 $self->catfile("\$(INST_HTMLSCRIPTDIR)", basename
($name).".\$(HTMLEXT)");
1548 $self->{MAN1PODS
}->{$name} =
1549 $self->catfile("\$(INST_MAN1DIR)", basename
($name).".\$(MAN1EXT)");
1554 if ($pods{MAN3
} || $pods{HTMLLIB
}) {
1555 my %manifypods = (); # we collect the keys first, i.e. the files
1556 # we have to convert to pod
1557 foreach $name (keys %{$self->{PM
}}) {
1558 if ($name =~ /\.pod\z/ ) {
1559 $manifypods{$name} = $self->{PM
}{$name};
1560 } elsif ($name =~ /\.p[ml]\z/ ) {
1563 if (open(FH
,"<$name")) {
1565 if (/^=head1\s+\w+/) {
1575 $manifypods{$name} = $self->{PM
}{$name};
1580 # Remove "Configure.pm" and similar, if it's not the only pod listed
1581 # To force inclusion, just name it "Configure.pod", or override MAN3PODS
1582 foreach $name (keys %manifypods) {
1583 if ($name =~ /(config|setup).*\.pm/is) {
1584 delete $manifypods{$name};
1587 my($manpagename) = $name;
1588 $manpagename =~ s/\.p(od|m|l)\z//;
1589 if ($pods{HTMLLIB
}) {
1590 $self->{HTMLLIBPODS
}->{$name} =
1591 $self->catfile("\$(INST_HTMLLIBDIR)", "$manpagename.\$(HTMLEXT)");
1593 unless ($manpagename =~ s!^\W*lib\W+!!s) { # everything below lib is ok
1594 $manpagename = $self->catfile(split(/::/,$self->{PARENT_NAME
}),$manpagename);
1597 $manpagename = $self->replace_manpage_separator($manpagename);
1598 $self->{MAN3PODS
}->{$name} =
1599 $self->catfile("\$(INST_MAN3DIR)", "$manpagename.\$(MAN3EXT)");
1607 Initializes NAME, FULLEXT, BASEEXT, PARENT_NAME, DLBASE, PERL_SRC,
1608 PERL_LIB, PERL_ARCHLIB, PERL_INC, INSTALLDIRS, INST_*, INSTALL*,
1609 PREFIX, CONFIG, AR, AR_STATIC_ARGS, LD, OBJ_EXT, LIB_EXT, EXE_EXT, MAP_TARGET,
1610 LIBPERL_A, VERSION_FROM, VERSION, DISTNAME, VERSION_SYM.
1617 # --- Initialize Module Name and Paths
1619 # NAME = Foo::Bar::Oracle
1620 # FULLEXT = Foo/Bar/Oracle
1622 # ROOTEXT = Directory part of FULLEXT with leading /. !!! Deprecated from MM 5.32 !!!
1623 # PARENT_NAME = Foo::Bar
1625 ### ($self->{FULLEXT} =
1626 ### $self->{NAME}) =~ s!::!/!g ; #eg. BSD/Foo/Socket
1627 $self->{FULLEXT
} = $self->catdir(split /::/, $self->{NAME
});
1630 # Copied from DynaLoader:
1632 my(@modparts) = split(/::/,$self->{NAME
});
1633 my($modfname) = $modparts[-1];
1635 # Some systems have restrictions on files names for DLL's etc.
1636 # mod2fname returns appropriate file base name (typically truncated)
1637 # It may also edit @modparts if required.
1638 if (defined &DynaLoader
::mod2fname
) {
1639 $modfname = &DynaLoader
::mod2fname
(\
@modparts);
1642 ($self->{PARENT_NAME
}, $self->{BASEEXT
}) = $self->{NAME
} =~ m!(?:([\w:]+)::)?(\w+)\z! ;
1644 if (defined &DynaLoader
::mod2fname
) {
1645 # As of 5.001m, dl_os2 appends '_'
1646 $self->{DLBASE
} = $modfname;
1648 $self->{DLBASE
} = '$(BASEEXT)';
1652 ### ROOTEXT deprecated from MM 5.32
1653 ### ($self->{ROOTEXT} =
1654 ### $self->{FULLEXT}) =~ s#/?\Q$self->{BASEEXT}\E$## ; #eg. /BSD/Foo
1655 ### $self->{ROOTEXT} = ($Is_VMS ? '' : '/') . $self->{ROOTEXT} if $self->{ROOTEXT};
1658 # --- Initialize PERL_LIB, INST_LIB, PERL_SRC
1660 # *Real* information: where did we get these two from? ...
1661 my $inc_config_dir = dirname
($INC{'Config.pm'});
1662 my $inc_carp_dir = dirname
($INC{'Carp.pm'});
1664 unless ($self->{PERL_SRC
}){
1666 foreach $dir ($self->updir(),$self->catdir($self->updir(),$self->updir()),$self->catdir($self->updir(),$self->updir(),$self->updir()),$self->catdir($self->updir(),$self->updir(),$self->updir(),$self->updir())){
1668 -f
$self->catfile($dir,"config.sh")
1670 -f
$self->catfile($dir,"perl.h")
1672 -f
$self->catfile($dir,"lib","Exporter.pm")
1674 $self->{PERL_SRC
}=$dir ;
1679 if ($self->{PERL_SRC
}){
1680 $self->{PERL_LIB
} ||= $self->catdir("$self->{PERL_SRC}","lib");
1681 $self->{PERL_ARCHLIB
} = $self->{PERL_LIB
};
1682 $self->{PERL_INC
} = ($Is_Win32) ?
$self->catdir($self->{PERL_LIB
},"CORE") : $self->{PERL_SRC
};
1684 # catch a situation that has occurred a few times in the past:
1686 -s
$self->catfile($self->{PERL_SRC
},'cflags')
1690 -s
$self->catfile($self->{PERL_SRC
},'perlshr_attr.opt')
1697 You cannot build extensions below the perl source tree after executing
1698 a
'make clean' in the perl source tree
.
1700 To rebuild extensions distributed with the perl source you should
1701 simply Configure
(to include those extensions
) and then build perl as
1702 normal
. After installing perl the source tree can be deleted
. It is
1703 not needed
for building extensions by running
'perl Makefile.PL'
1704 usually without extra arguments
.
1706 It is recommended that you
unpack and build additional extensions away
1707 from the perl source tree
.
1711 # we should also consider $ENV{PERL5LIB} here
1712 my $old = $self->{PERL_LIB
} || $self->{PERL_ARCHLIB
} || $self->{PERL_INC
};
1713 $self->{PERL_LIB
} ||= $Config::Config
{privlibexp
};
1714 $self->{PERL_ARCHLIB
} ||= $Config::Config
{archlibexp
};
1715 $self->{PERL_INC
} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
1718 if (not -f
($perl_h = $self->catfile($self->{PERL_INC
},"perl.h"))
1720 # Maybe somebody tries to build an extension with an
1721 # uninstalled Perl outside of Perl build tree
1723 for my $dir (@INC) {
1724 $found = $dir, last if -e
$self->catdir($dir, "Config.pm");
1727 my $inc = dirname
$found;
1728 if (-e
$self->catdir($inc, "perl.h")) {
1729 $self->{PERL_LIB
} = $found;
1730 $self->{PERL_ARCHLIB
} = $found;
1731 $self->{PERL_INC
} = $inc;
1732 $self->{UNINSTALLED_PERL
} = 1;
1734 ... Detected uninstalled Perl. Trying to continue.
1740 unless (-f
($perl_h = $self->catfile($self->{PERL_INC
},"perl.h"))){
1742 Error
: Unable to locate installed Perl libraries
or Perl source code
.
1744 It is recommended that you install perl
in a standard location before
1745 building extensions
. Some precompiled versions of perl
do not contain
1746 these header files
, so you cannot build extensions
. In such a case
,
1747 please build
and install your perl from a fresh perl distribution
. It
1748 usually solves this kind of problem
.
1750 \
(You get this message
, because MakeMaker could
not find
"$perl_h"\
)
1753 # print STDOUT "Using header files found in $self->{PERL_INC}\n"
1754 # if $Verbose && $self->needs_linking();
1758 # We get SITELIBEXP and SITEARCHEXP directly via
1759 # Get_from_Config. When we are running standard modules, these
1760 # won't matter, we will set INSTALLDIRS to "perl". Otherwise we
1761 # set it to "site". I prefer that INSTALLDIRS be set from outside
1763 $self->{INSTALLDIRS
} ||= "site";
1765 # INST_LIB typically pre-set if building an extension after
1766 # perl has been built and installed. Setting INST_LIB allows
1767 # you to build directly into, say $Config::Config{privlibexp}.
1768 unless ($self->{INST_LIB
}){
1771 ##### XXXXX We have to change this nonsense
1773 if (defined $self->{PERL_SRC
} and $self->{INSTALLDIRS
} eq "perl") {
1774 $self->{INST_LIB
} = $self->{INST_ARCHLIB
} = $self->{PERL_LIB
};
1776 $self->{INST_LIB
} = $self->catdir($self->curdir,"blib","lib");
1779 $self->{INST_ARCHLIB
} ||= $self->catdir($self->curdir,"blib","arch");
1780 $self->{INST_BIN
} ||= $self->catdir($self->curdir,'blib','bin');
1782 # We need to set up INST_LIBDIR before init_libscan() for VMS
1783 my @parentdir = split(/::/, $self->{PARENT_NAME
});
1784 $self->{INST_LIBDIR
} = $self->catdir('$(INST_LIB)',@parentdir);
1785 $self->{INST_ARCHLIBDIR
} = $self->catdir('$(INST_ARCHLIB)',@parentdir);
1786 $self->{INST_AUTODIR
} = $self->catdir('$(INST_LIB)','auto','$(FULLEXT)');
1787 $self->{INST_ARCHAUTODIR
} = $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)');
1789 # INST_EXE is deprecated, should go away March '97
1790 $self->{INST_EXE
} ||= $self->catdir($self->curdir,'blib','script');
1791 $self->{INST_SCRIPT
} ||= $self->catdir($self->curdir,'blib','script');
1793 # The user who requests an installation directory explicitly
1794 # should not have to tell us a architecture installation directory
1795 # as well. We look if a directory exists that is named after the
1796 # architecture. If not we take it as a sign that it should be the
1797 # same as the requested installation directory. Otherwise we take
1799 # We do the same thing twice: for privlib/archlib and for sitelib/sitearch
1801 for $libpair ({l
=>"privlib", a
=>"archlib"}, {l
=>"sitelib", a
=>"sitearch"}) {
1802 my $lib = "install$libpair->{l}";
1804 my $Arch = uc "install$libpair->{a}";
1805 if( $self->{$Lib} && ! $self->{$Arch} ){
1806 my($ilib) = $Config{$lib};
1807 $ilib = VMS
::Filespec
::unixify
($ilib) if $Is_VMS;
1809 $self->prefixify($Arch,$ilib,$self->{$Lib});
1811 unless (-d
$self->{$Arch}) {
1812 print STDOUT
"Directory $self->{$Arch} not found, thusly\n" if $Verbose;
1813 $self->{$Arch} = $self->{$Lib};
1815 print STDOUT
"Defaulting $Arch to $self->{$Arch}\n" if $Verbose;
1819 # we have to look at the relation between $Config{prefix} and the
1820 # requested values. We're going to set the $Config{prefix} part of
1821 # all the installation path variables to literally $(PREFIX), so
1822 # the user can still say make PREFIX=foo
1823 my($configure_prefix) = $Config{'prefix'};
1824 $configure_prefix = VMS
::Filespec
::unixify
($configure_prefix) if $Is_VMS;
1825 $self->{PREFIX
} ||= $configure_prefix;
1828 my($install_variable,$search_prefix,$replace_prefix);
1830 # If the prefix contains perl, Configure shapes the tree as follows:
1831 # perlprefix/lib/ INSTALLPRIVLIB
1832 # perlprefix/lib/pod/
1833 # perlprefix/lib/site_perl/ INSTALLSITELIB
1834 # perlprefix/bin/ INSTALLBIN
1835 # perlprefix/man/ INSTALLMAN1DIR
1837 # prefix/lib/perl5/ INSTALLPRIVLIB
1838 # prefix/lib/perl5/pod/
1839 # prefix/lib/perl5/site_perl/ INSTALLSITELIB
1840 # prefix/bin/ INSTALLBIN
1841 # prefix/lib/perl5/man/ INSTALLMAN1DIR
1843 # The above results in various kinds of breakage on various
1844 # platforms, so we cope with it as follows: if prefix/lib/perl5
1845 # or prefix/lib/perl5/man exist, we'll replace those instead
1846 # of /prefix/{lib,man}
1848 $replace_prefix = qq[\
$\
(PREFIX\
)];
1849 for $install_variable (qw
/
1853 $self->prefixify($install_variable,$configure_prefix,$replace_prefix);
1855 my $funkylibdir = $self->catdir($configure_prefix,"lib","perl5");
1856 $funkylibdir = '' unless -d
$funkylibdir;
1857 $search_prefix = $funkylibdir || $self->catdir($configure_prefix,"lib");
1859 $self->{INSTALLPRIVLIB
} = $self->{INSTALLSITELIB
} = $self->{LIB
};
1860 $self->{INSTALLARCHLIB
} = $self->{INSTALLSITEARCH
} =
1861 $self->catdir($self->{LIB
},$Config{'archname'});
1864 if (-d
$self->catdir($self->{PREFIX
},"lib","perl5")) {
1865 $replace_prefix = $self->catdir(qq[\
$\
(PREFIX\
)],"lib", "perl5");
1868 $replace_prefix = $self->catdir(qq[\
$\
(PREFIX\
)],"lib");
1870 for $install_variable (qw
/
1877 $self->prefixify($install_variable,$search_prefix,$replace_prefix);
1880 my $funkymandir = $self->catdir($configure_prefix,"lib","perl5","man");
1881 $funkymandir = '' unless -d
$funkymandir;
1882 $search_prefix = $funkymandir || $self->catdir($configure_prefix,"man");
1883 if (-d
$self->catdir($self->{PREFIX
},"lib","perl5", "man")) {
1884 $replace_prefix = $self->catdir(qq[\
$\
(PREFIX\
)],"lib", "perl5", "man");
1887 $replace_prefix = $self->catdir(qq[\
$\
(PREFIX\
)],"man");
1889 for $install_variable (qw
/
1894 $self->prefixify($install_variable,$search_prefix,$replace_prefix);
1897 # Now we head at the manpages. Maybe they DO NOT want manpages
1899 $self->{INSTALLMAN1DIR
} = $Config::Config
{installman1dir
}
1900 unless defined $self->{INSTALLMAN1DIR
};
1901 unless (defined $self->{INST_MAN1DIR
}){
1902 if ($self->{INSTALLMAN1DIR
} =~ /^(none|\s*)$/){
1903 $self->{INST_MAN1DIR
} = $self->{INSTALLMAN1DIR
};
1905 $self->{INST_MAN1DIR
} = $self->catdir($self->curdir,'blib','man1');
1908 $self->{MAN1EXT
} ||= $Config::Config
{man1ext
};
1910 $self->{INSTALLMAN3DIR
} = $Config::Config
{installman3dir
}
1911 unless defined $self->{INSTALLMAN3DIR
};
1912 unless (defined $self->{INST_MAN3DIR
}){
1913 if ($self->{INSTALLMAN3DIR
} =~ /^(none|\s*)$/){
1914 $self->{INST_MAN3DIR
} = $self->{INSTALLMAN3DIR
};
1916 $self->{INST_MAN3DIR
} = $self->catdir($self->curdir,'blib','man3');
1919 $self->{MAN3EXT
} ||= $Config::Config
{man3ext
};
1921 $self->{INSTALLHTMLPRIVLIBDIR
} = $Config::Config
{installhtmlprivlibdir
}
1922 unless defined $self->{INSTALLHTMLPRIVLIBDIR
};
1923 $self->{INSTALLHTMLSITELIBDIR
} = $Config::Config
{installhtmlsitelibdir
}
1924 unless defined $self->{INSTALLHTMLSITELIBDIR
};
1926 unless (defined $self->{INST_HTMLLIBDIR
}){
1927 if ($self->{INSTALLHTMLSITELIBDIR
} =~ /^(none|\s*)$/){
1928 $self->{INST_HTMLLIBDIR
} = $self->{INSTALLHTMLSITELIBDIR
};
1930 $self->{INST_HTMLLIBDIR
} = $self->catdir($self->curdir,'blib','html','lib');
1934 $self->{INSTALLHTMLSCRIPTDIR
} = $Config::Config
{installhtmlscriptdir
}
1935 unless defined $self->{INSTALLHTMLSCRIPTDIR
};
1936 unless (defined $self->{INST_HTMLSCRIPTDIR
}){
1937 if ($self->{INSTALLHTMLSCRIPTDIR
} =~ /^(none|\s*)$/){
1938 $self->{INST_HTMLSCRIPTDIR
} = $self->{INSTALLHTMLSCRIPTDIR
};
1940 $self->{INST_HTMLSCRIPTDIR
} = $self->catdir($self->curdir,'blib','html','bin');
1943 $self->{HTMLEXT
} ||= $Config::Config
{htmlext
} || 'html';
1946 # Get some stuff out of %Config if we haven't yet done so
1947 print STDOUT
"CONFIG must be an array ref\n"
1948 if ($self->{CONFIG
} and ref $self->{CONFIG
} ne 'ARRAY');
1949 $self->{CONFIG
} = [] unless (ref $self->{CONFIG
});
1950 push(@
{$self->{CONFIG
}}, @ExtUtils::MakeMaker
::Get_from_Config
);
1951 push(@
{$self->{CONFIG
}}, 'shellflags') if $Config::Config
{shellflags
};
1953 foreach $m (@
{$self->{CONFIG
}}){
1954 next if $once_only{$m};
1955 print STDOUT
"CONFIG key '$m' does not exist in Config.pm\n"
1956 unless exists $Config::Config
{$m};
1957 $self->{uc $m} ||= $Config::Config
{$m};
1961 # This is too dangerous:
1962 # if ($^O eq "next") {
1963 # $self->{AR} = "libtool";
1964 # $self->{AR_STATIC_ARGS} = "-o";
1966 # But I leave it as a placeholder
1968 $self->{AR_STATIC_ARGS
} ||= "cr";
1970 # These should never be needed
1971 $self->{LD
} ||= 'ld';
1972 $self->{OBJ_EXT
} ||= '.o';
1973 $self->{LIB_EXT
} ||= '.a';
1975 $self->{MAP_TARGET
} ||= "perl";
1977 $self->{LIBPERL_A
} ||= "libperl$self->{LIB_EXT}";
1979 # make a simple check if we find Exporter
1980 warn "Warning: PERL_LIB ($self->{PERL_LIB}) seems not to be a perl library directory
1981 (Exporter.pm not found)"
1982 unless -f
$self->catfile("$self->{PERL_LIB}","Exporter.pm") ||
1983 $self->{NAME
} eq "ExtUtils::MakeMaker";
1985 # Determine VERSION and VERSION_FROM
1986 ($self->{DISTNAME
}=$self->{NAME
}) =~ s
#(::)#-#g unless $self->{DISTNAME};
1987 if ($self->{VERSION_FROM
}){
1988 $self->{VERSION
} = $self->parse_version($self->{VERSION_FROM
}) or
1989 Carp
::carp
"WARNING: Setting VERSION via file '$self->{VERSION_FROM}' failed\n"
1993 if ($self->{VERSION
}) {
1994 $self->{VERSION
} =~ s/^\s+//;
1995 $self->{VERSION
} =~ s/\s+$//;
1998 $self->{VERSION
} ||= "0.10";
1999 ($self->{VERSION_SYM
} = $self->{VERSION
}) =~ s/\W/_/g;
2002 # Graham Barr and Paul Marquess had some ideas how to ensure
2003 # version compatibility between the *.pm file and the
2004 # corresponding *.xs file. The bottomline was, that we need an
2005 # XS_VERSION macro that defaults to VERSION:
2006 $self->{XS_VERSION
} ||= $self->{VERSION
};
2008 # --- Initialize Perl Binary Locations
2010 # Find Perl 5. The only contract here is that both 'PERL' and 'FULLPERL'
2011 # will be working versions of perl 5. miniperl has priority over perl
2012 # for PERL to ensure that $(PERL) is usable while building ./ext/*
2013 my ($component,@defpath);
2014 foreach $component ($self->{PERL_SRC
}, $self->path(), $Config::Config
{binexp
}) {
2015 push @defpath, $component if defined $component;
2018 $self->find_perl(5.0, [ $self->canonpath($^X
), 'miniperl',
2019 'perl','perl5',"perl$Config{version}" ],
2020 \
@defpath, $Verbose );
2021 # don't check if perl is executable, maybe they have decided to
2022 # supply switches with perl
2024 # Define 'FULLPERL' to be a non-miniperl (used in test: target)
2025 ($self->{FULLPERL
} = $self->{PERL
}) =~ s/miniperl/perl/i
2026 unless ($self->{FULLPERL
});
2031 Initializes EXTRALIBS, BSLOADLIBS, LDLOADLIBS, LIBS, LD_RUN_PATH,
2032 OBJECT, BOOTDEP, PERLMAINCC, LDFROM, LINKTYPE, NOOP, FIRST_MAKEFILE,
2033 MAKEFILE, NOECHO, RM_F, RM_RF, TEST_F, TOUCH, CP, MV, CHMOD, UMASK_NULL
2037 sub init_others
{ # --- Initialize Other Attributes
2040 # Compute EXTRALIBS, BSLOADLIBS and LDLOADLIBS from $self->{LIBS}
2041 # Lets look at $self->{LIBS} carefully: It may be an anon array, a string or
2042 # undefined. In any case we turn it into an anon array:
2044 # May check $Config{libs} too, thus not empty.
2045 $self->{LIBS
}=[''] unless $self->{LIBS
};
2047 $self->{LIBS
}=[$self->{LIBS
}] if ref \
$self->{LIBS
} eq 'SCALAR';
2048 $self->{LD_RUN_PATH
} = "";
2050 foreach $libs ( @
{$self->{LIBS
}} ){
2051 $libs =~ s/^\s*(.*\S)\s*$/$1/; # remove leading and trailing whitespace
2052 my(@libs) = $self->extliblist($libs);
2053 if ($libs[0] or $libs[1] or $libs[2]){
2054 # LD_RUN_PATH now computed by ExtUtils::Liblist
2055 ($self->{EXTRALIBS
}, $self->{BSLOADLIBS
}, $self->{LDLOADLIBS
}, $self->{LD_RUN_PATH
}) = @libs;
2060 if ( $self->{OBJECT
} ) {
2061 $self->{OBJECT
} =~ s!\.o(bj)?\b!\$(OBJ_EXT)!g;
2063 # init_dirscan should have found out, if we have C files
2064 $self->{OBJECT
} = "";
2065 $self->{OBJECT
} = '$(BASEEXT)$(OBJ_EXT)' if @
{$self->{C
}||[]};
2067 $self->{OBJECT
} =~ s/\n+/ \\\n\t/g;
2068 $self->{BOOTDEP
} = (-f
"$self->{BASEEXT}_BS") ?
"$self->{BASEEXT}_BS" : "";
2069 $self->{PERLMAINCC
} ||= '$(CC)';
2070 $self->{LDFROM
} = '$(OBJECT)' unless $self->{LDFROM
};
2072 # Sanity check: don't define LINKTYPE = dynamic if we're skipping
2073 # the 'dynamic' section of MM. We don't have this problem with
2074 # 'static', since we either must use it (%Config says we can't
2075 # use dynamic loading) or the caller asked for it explicitly.
2076 if (!$self->{LINKTYPE
}) {
2077 $self->{LINKTYPE
} = $self->{SKIPHASH
}{'dynamic'}
2079 : ($Config::Config
{usedl
} ?
'dynamic' : 'static');
2082 # These get overridden for VMS and maybe some other systems
2083 $self->{NOOP
} ||= '$(SHELL) -c true';
2084 $self->{FIRST_MAKEFILE
} ||= "Makefile";
2085 $self->{MAKEFILE
} ||= $self->{FIRST_MAKEFILE
};
2086 $self->{MAKE_APERL_FILE
} ||= "Makefile.aperl";
2087 $self->{NOECHO
} = '@' unless defined $self->{NOECHO
};
2088 $self->{RM_F
} ||= "rm -f";
2089 $self->{RM_RF
} ||= "rm -rf";
2090 $self->{TOUCH
} ||= "touch";
2091 $self->{TEST_F
} ||= "test -f";
2092 $self->{CP
} ||= "cp";
2093 $self->{MV
} ||= "mv";
2094 $self->{CHMOD
} ||= "chmod";
2095 $self->{UMASK_NULL
} ||= "umask 0";
2096 $self->{DEV_NULL
} ||= "> /dev/null 2>&1";
2101 Defines the install target.
2106 my($self, %attribs) = @_;
2110 install :: all pure_install doc_install
2112 install_perl :: all pure_perl_install doc_perl_install
2114 install_site :: all pure_site_install doc_site_install
2116 install_ :: install_site
2117 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2119 pure_install :: pure_$(INSTALLDIRS)_install
2121 doc_install :: doc_$(INSTALLDIRS)_install
2122 }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
2124 pure__install : pure_site_install
2125 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2127 doc__install : doc_site_install
2128 @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2130 pure_perl_install ::
2131 }.$self->{NOECHO}.q{$(MOD_INSTALL) \
2132 read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2133 write }.$self->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2134 $(INST_LIB) $(INSTALLPRIVLIB) \
2135 $(INST_ARCHLIB) $(INSTALLARCHLIB) \
2136 $(INST_BIN) $(INSTALLBIN) \
2137 $(INST_SCRIPT) $(INSTALLSCRIPT) \
2138 $(INST_HTMLLIBDIR) $(INSTALLHTMLPRIVLIBDIR) \
2139 $(INST_HTMLSCRIPTDIR) $(INSTALLHTMLSCRIPTDIR) \
2140 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
2141 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
2142 }.$self->{NOECHO
}.q{$(WARN_IF_OLD_PACKLIST) \
2143 }.$self->catdir('$(SITEARCHEXP)','auto','$(FULLEXT)').q{
2146 pure_site_install ::
2147 }.$self->{NOECHO
}.q{$(MOD_INSTALL) \
2148 read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
2149 write }.$self->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
2150 $(INST_LIB) $(INSTALLSITELIB) \
2151 $(INST_ARCHLIB) $(INSTALLSITEARCH) \
2152 $(INST_BIN) $(INSTALLBIN) \
2153 $(INST_SCRIPT) $(INSTALLSCRIPT) \
2154 $(INST_HTMLLIBDIR) $(INSTALLHTMLSITELIBDIR) \
2155 $(INST_HTMLSCRIPTDIR) $(INSTALLHTMLSCRIPTDIR) \
2156 $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
2157 $(INST_MAN3DIR) $(INSTALLMAN3DIR)
2158 }.$self->{NOECHO
}.q{$(WARN_IF_OLD_PACKLIST) \
2159 }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{
2162 -}.$self->{NOECHO
}.q{$(MKPATH) $(INSTALLARCHLIB)
2163 -}.$self->{NOECHO
}.q{$(DOC_INSTALL) \
2164 "Module" "$(NAME)" \
2165 "installed into" "$(INSTALLPRIVLIB)" \
2166 LINKTYPE "$(LINKTYPE)" \
2167 VERSION "$(VERSION)" \
2168 EXE_FILES "$(EXE_FILES)" \
2169 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2172 -}.$self->{NOECHO
}.q{$(MKPATH) $(INSTALLARCHLIB)
2173 -}.$self->{NOECHO
}.q{$(DOC_INSTALL) \
2174 "Module" "$(NAME)" \
2175 "installed into" "$(INSTALLSITELIB)" \
2176 LINKTYPE "$(LINKTYPE)" \
2177 VERSION "$(VERSION)" \
2178 EXE_FILES "$(EXE_FILES)" \
2179 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2184 uninstall :: uninstall_from_$(INSTALLDIRS)dirs
2186 uninstall_from_perldirs ::
2188 q{$(UNINSTALL) }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{
2190 uninstall_from_sitedirs ::
2192 q{$(UNINSTALL) }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{
2198 =item installbin (o)
2200 Defines targets to make and to install EXE_FILES.
2206 return "" unless $self->{EXE_FILES
} && ref $self->{EXE_FILES
} eq "ARRAY";
2207 return "" unless @
{$self->{EXE_FILES
}};
2208 my(@m, $from, $to, %fromto, @to);
2209 push @m, $self->dir_target(qw
[$(INST_SCRIPT
)]);
2210 for $from (@
{$self->{EXE_FILES
}}) {
2211 my($path)= $self->catfile('$(INST_SCRIPT)', basename
($from));
2212 local($_) = $path; # for backwards compatibility
2213 $to = $self->libscan($path);
2214 print "libscan($from) => '$to'\n" if ($Verbose >=2);
2217 @to = values %fromto;
2219 EXE_FILES
= @
{$self->{EXE_FILES
}}
2222 ?
q{FIXIN = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
2223 -e "system qq[pl2bat.bat ].shift"
2224 } : q{FIXIN = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::MakeMaker \
2225 -e "MY->fixin(shift)"
2228 $self->{NOECHO
}\
$(NOOP
)
2234 while (($from,$to) = each %fromto) {
2235 last unless defined $from;
2236 my $todir = dirname
($to);
2238 $to: $from $self->{MAKEFILE} " . $self->catdir($todir,'.exists') . "
2239 $self->{NOECHO}$self->{RM_F} $to
2240 $self->{CP} $from $to
2242 -$self->{NOECHO}\$(CHMOD) \$(PERM_RWX) $to
2250 Takes a path to a file that is found by init_dirscan and returns false
2251 if we don't want to include this file in the library. Mainly used to
2252 exclude RCS, CVS, and SCCS directories from installation.
2259 my($self,$path) = @_;
2260 return '' if $path =~ m
:\b(RCS
|CVS
|SCCS
)\b: ;
2266 Defines the linkext target which in turn defines the LINKTYPE.
2271 my($self, %attribs) = @_;
2272 # LINKTYPE => static or dynamic or ''
2273 my($linktype) = defined $attribs{LINKTYPE
} ?
2274 $attribs{LINKTYPE
} : '$(LINKTYPE)';
2276 linkext :: $linktype
2277 $self->{NOECHO}\$(NOOP)
2283 Takes as arguments a directory name and a regular expression. Returns
2284 all entries in the directory that match the regular expression.
2290 my($dir, $regex) = @_;
2292 my $dh = new DirHandle
;
2293 $dh->open($dir || ".") or return ();
2296 @ls = grep(/$regex/, @ls) if $regex;
2302 Simple subroutine to insert the macros defined by the macro attribute
2308 my($self,%attribs) = @_;
2310 while (($key,$val) = each %attribs){
2311 last unless defined $key;
2312 push @m, "$key = $val\n";
2319 Called by staticmake. Defines how to write the Makefile to produce a
2322 By default the Makefile produced includes all the static extensions in
2323 the perl library. (Purified versions of library files, e.g.,
2324 DynaLoader_pure_p1_c0_032.a are automatically ignored to avoid link errors.)
2329 my($self, %attribs) = @_;
2330 my($makefilename, $searchdirs, $static, $extra, $perlinc, $target, $tmp, $libperl) =
2331 @attribs{qw(MAKE DIRS STAT EXTRA INCL TARGET TMP LIBPERL)};
2334 # --- MakeMaker makeaperl section ---
2335 MAP_TARGET = $target
2336 FULLPERL = $self->{FULLPERL}
2338 return join '', @m if $self->{PARENT
};
2340 my($dir) = join ":", @
{$self->{DIR
}};
2342 unless ($self->{MAKEAPERL
}) {
2344 $(MAP_TARGET) :: static $(MAKE_APERL_FILE)
2345 $(MAKE) -f $(MAKE_APERL_FILE) $@
2347 $(MAKE_APERL_FILE) : $(FIRST_MAKEFILE)
2348 }.$self->{NOECHO
}.q{echo Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET)
2349 }.$self->{NOECHO}.q{$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
2350 Makefile.PL DIR=}, $dir, q{ \
2351 MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
2352 MAKEAPERL=1 NORECURS=1 CCCDLFLAGS=};
2358 push @m, " \\\n\t\t$_";
2360 # push @m, map( " \\\n\t\t$_", @ARGV );
2368 my($cccmd, $linkcmd, $lperl);
2371 $cccmd = $self->const_cccmd($libperl);
2372 $cccmd =~ s/^CCCMD\s*=\s*//;
2373 $cccmd =~ s/\$\(INC\)/ -I$self->{PERL_INC} /;
2374 $cccmd .= " $Config::Config{cccdlflags}"
2375 if ($Config::Config
{useshrplib
} eq 'true');
2376 $cccmd =~ s/\(CC\)/\(PERLMAINCC\)/;
2378 # The front matter of the linkcommand...
2379 $linkcmd = join ' ', "\$(CC)",
2380 grep($_, @Config{qw(ldflags ccdlflags)});
2381 $linkcmd =~ s/\s+/ /g;
2382 $linkcmd =~ s
,(perl\
.exp),\
$(PERL_INC
)/$1,;
2384 # Which *.a files could we make use of...
2387 File
::Find
::find
(sub {
2388 return unless m/\Q$self->{LIB_EXT}\E$/;
2389 return if m/^libperl/;
2390 # Skip purified versions of libraries (e.g., DynaLoader_pure_p1_c0_032.a)
2391 return if m/_pure_\w+_\w+_\w+\.\w+$/ and -f
"$File::Find::dir/.pure";
2393 if( exists $self->{INCLUDE_EXT
} ){
2398 ($xx = $File::Find
::name
) =~ s
,.*?
/auto/,,s
;
2402 # Throw away anything not explicitly marked for inclusion.
2403 # DynaLoader is implied.
2404 foreach $incl ((@
{$self->{INCLUDE_EXT
}},'DynaLoader')){
2410 return unless $found;
2412 elsif( exists $self->{EXCLUDE_EXT
} ){
2416 ($xx = $File::Find
::name
) =~ s
,.*?
/auto/,,s
;
2420 # Throw away anything explicitly marked for exclusion
2421 foreach $excl (@
{$self->{EXCLUDE_EXT
}}){
2422 return if( $xx eq $excl );
2426 # don't include the installed version of this extension. I
2427 # leave this line here, although it is not necessary anymore:
2428 # I patched minimod.PL instead, so that Miniperl.pm won't
2429 # enclude duplicates
2431 # Once the patch to minimod.PL is in the distribution, I can
2433 return if $File::Find
::name
=~ m
:auto
/$self->{FULLEXT}/$self->{BASEEXT
}$self->{LIB_EXT
}\z
:;
2435 $static{cwd
() . "/" . $_}++;
2436 }, grep( -d
$_, @
{$searchdirs || []}) );
2438 # We trust that what has been handed in as argument, will be buildable
2439 $static = [] unless $static;
2440 @static{@
{$static}} = (1) x @
{$static};
2442 $extra = [] unless $extra && ref $extra eq 'ARRAY';
2443 for (sort keys %static) {
2444 next unless /\Q$self->{LIB_EXT}\E\z/;
2445 $_ = dirname
($_) . "/extralibs.ld";
2449 grep(s/^/-I/, @
{$perlinc || []});
2451 $target = "perl" unless $target;
2452 $tmp = "." unless $tmp;
2454 # MAP_STATIC doesn't look into subdirs yet. Once "all" is made and we
2455 # regenerate the Makefiles, MAP_STATIC and the dependencies for
2456 # extralibs.all are computed correctly
2458 MAP_LINKCMD = $linkcmd
2459 MAP_PERLINC = @{$perlinc || []}
2461 join(" \\\n\t", reverse sort keys %static), "
2463 MAP_PRELIBS = $Config::Config{perllibs} $Config::Config{cryptlib}
2466 if (defined $libperl) {
2467 ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/;
2469 unless ($libperl && -f
$lperl) { # Ilya's code...
2470 my $dir = $self->{PERL_SRC
} || "$self->{PERL_ARCHLIB}/CORE";
2471 $dir = "$self->{PERL_ARCHLIB}/.." if $self->{UNINSTALLED_PERL
};
2472 $libperl ||= "libperl$self->{LIB_EXT}";
2473 $libperl = "$dir/$libperl";
2474 $lperl ||= "libperl$self->{LIB_EXT}";
2475 $lperl = "$dir/$lperl";
2477 if (! -f
$libperl and ! -f
$lperl) {
2478 # We did not find a static libperl. Maybe there is a shared one?
2479 if ($^O
eq 'solaris' or $^O
eq 'sunos') {
2480 $lperl = $libperl = "$dir/$Config::Config{libperl}";
2481 # SUNOS ld does not take the full path to a shared library
2482 $libperl = '' if $^O
eq 'sunos';
2486 print STDOUT
"Warning: $libperl not found
2487 If you're going to build a static perl binary, make sure perl is installed
2488 otherwise ignore this warning\n"
2489 unless (-f
$lperl || defined($self->{PERL_SRC
}));
2493 MAP_LIBPERL = $libperl
2497 \$(INST_ARCHAUTODIR)/extralibs.all: \$(INST_ARCHAUTODIR)/.exists ".join(" \\\n\t", @
$extra)."
2498 $self->{NOECHO}$self->{RM_F} \$\@
2499 $self->{NOECHO}\$(TOUCH) \$\@
2503 foreach $catfile (@
$extra){
2504 push @m, "\tcat $catfile >> \$\@\n";
2506 # SUNOS ld does not take the full path to a shared library
2507 my $llibperl = ($libperl)?
'$(MAP_LIBPERL)':'-lperl';
2510 \$(MAP_TARGET) :: $tmp/perlmain\$(OBJ_EXT) \$(MAP_LIBPERL) \$(MAP_STATIC) \$(INST_ARCHAUTODIR)/extralibs.all
2511 \$(MAP_LINKCMD) -o \$\@ \$(OPTIMIZE) $tmp/perlmain\$(OBJ_EXT) \$(LDFROM) \$(MAP_STATIC) $llibperl `cat \$(INST_ARCHAUTODIR)/extralibs.all` \$(MAP_PRELIBS)
2512 $self->{NOECHO}echo 'To install the new \"\$(MAP_TARGET)\" binary, call'
2513 $self->{NOECHO}echo ' make -f $makefilename inst_perl MAP_TARGET=\$(MAP_TARGET)'
2514 $self->{NOECHO}echo 'To remove the intermediate files say'
2515 $self->{NOECHO}echo ' make -f $makefilename map_clean'
2517 $tmp/perlmain\$(OBJ_EXT): $tmp/perlmain.c
2519 push @m, "\tcd $tmp && $cccmd -I\$(PERL_INC) perlmain.c\n";
2522 $tmp/perlmain
.c
: $makefilename}, q{
2523 }.$self->{NOECHO
}.q{echo Writing $@
2524 }.$self->{NOECHO
}.q{$(PERL) $(MAP_PERLINC) -MExtUtils::Miniperl \\
2525 -e "writemain(grep s#.*/auto/##s, split(q| |, q|$(MAP_STATIC)|))" > $@t && $(MV) $@t $@
2528 push @m, "\t",$self->{NOECHO}.q{$(PERL) $(INSTALLSCRIPT)/fixpmain
2529 } if (defined (&Dos
::UseLFN
) && Dos
::UseLFN
()==0);
2534 }.$self->{NOECHO
}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
2535 -}.$self->{NOECHO
}.q{$(MKPATH) $(INSTALLARCHLIB)
2536 -}.$self->{NOECHO
}.q{$(DOC_INSTALL) \
2537 "Perl binary" "$(MAP_TARGET)" \
2538 MAP_STATIC "$(MAP_STATIC)" \
2539 MAP_EXTRA "`cat $(INST_ARCHAUTODIR)/extralibs.all`" \
2540 MAP_LIBPERL "$(MAP_LIBPERL)" \
2541 >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
2546 inst_perl: pure_inst_perl doc_inst_perl
2548 pure_inst_perl: $(MAP_TARGET)
2549 }.$self->{CP
}.q{ $(MAP_TARGET) }.$self->catfile('$(INSTALLBIN)','$(MAP_TARGET)').q{
2554 }.$self->{RM_F
}.qq{ $tmp/perlmain\$(OBJ_EXT) $tmp/perlmain
.c \
$(MAP_TARGET
) $makefilename \
$(INST_ARCHAUTODIR
)/extralibs
.all
2562 Defines how to rewrite the Makefile.
2569 # We do not know what target was originally specified so we
2570 # must force a manual rerun to be sure. But as it should only
2571 # happen very rarely it is not a significant problem.
2573 $(OBJECT) : $(FIRST_MAKEFILE)
2574 ' if $self->{OBJECT
};
2577 # We take a very conservative approach here, but it\'s worth it.
2578 # We move Makefile to Makefile.old here to avoid gnu make looping.
2579 }.$self->{MAKEFILE}.q{ : Makefile.PL $(CONFIGDEP)
2580 }.$self->{NOECHO
}.q{echo "Makefile out-of-date with respect to $?"
2581 }.$self->{NOECHO
}.q{echo "Cleaning current config before rebuilding Makefile..."
2582 -}.$self->{NOECHO
}.q{$(RM_F) }."$self->{MAKEFILE}.old".q{
2583 -}.$self->{NOECHO
}.q{$(MV) }."$self->{MAKEFILE} $self->{MAKEFILE}.old".q{
2584 -$(MAKE) -f }.$self->{MAKEFILE
}.q{.old clean $(DEV_NULL) || $(NOOP)
2585 $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" Makefile.PL }.join(" ",map(qq["$_"],@ARGV)).q{
2586 }.$self->{NOECHO
}.q{echo "==> Your Makefile has been rebuilt. <=="
2587 }.$self->{NOECHO
}.q{echo "==> Please rerun the make command. <=="
2590 # To change behavior to :: would be nice, but would break Tk b9.02
2591 # so you find such a warning below the dist target.
2592 #}.$self->{MAKEFILE
}.q{ :: $(VERSION_FROM)
2593 # }.$self->{NOECHO
}.q{echo "Warning: Makefile possibly out of date with $(VERSION_FROM)"
2599 =item manifypods (o)
2601 Defines targets and routines to translate the pods into manpages and
2602 put them into the INST_* directories.
2607 my($self, %attribs) = @_;
2608 return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n" unless
2609 %{$self->{MAN3PODS
}} or %{$self->{MAN1PODS
}};
2612 if (defined $self->{PERL_SRC
}) {
2613 $pod2man_exe = $self->catfile($self->{PERL_SRC
},'pod','pod2man');
2615 $pod2man_exe = $self->catfile($Config{scriptdirexp
},'pod2man');
2617 unless ($pod2man_exe = $self->perl_script($pod2man_exe)) {
2618 # Maybe a build by uninstalled Perl?
2619 $pod2man_exe = $self->catfile($self->{PERL_INC
}, "pod", "pod2man");
2621 unless ($pod2man_exe = $self->perl_script($pod2man_exe)) {
2622 # No pod2man but some MAN3PODS to be installed
2625 Warning: I could not locate your pod2man program. Please make sure,
2626 your pod2man program is in your PATH before you execute 'make'
2629 $pod2man_exe = "-S pod2man";
2633 qq[POD2MAN_EXE
= $pod2man_exe\n],
2634 qq[POD2MAN
= \
$(PERL
) -we
'%m=\@ARGV;for (keys %m){' \\\n],
2635 q
[-e
'next if -e $$m{$$_} && -M $$m{$$_} < -M $$_ && -M $$m{$$_} < -M "],
2636 $self->{MAKEFILE}, q[";' \\
2637 -e
'print "Manifying $$m{$$_}\n";' \\
2638 -e
'system(qq[$$^X ].q["-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" $(POD2MAN_EXE) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\\047t install $$m{$$_}\n";' \\
2639 -e
'chmod(oct($(PERM_RW))), $$m{$$_} or warn "chmod $(PERM_RW) $$m{$$_}: $$!\n";}'
2641 push @m, "\nmanifypods : pure_all ";
2642 push @m, join " \\\n\t", keys %{$self->{MAN1PODS
}}, keys %{$self->{MAN3PODS
}};
2645 if (%{$self->{MAN1PODS
}} || %{$self->{MAN3PODS
}}) {
2646 push @m, "\t$self->{NOECHO}\$(POD2MAN) \\\n\t";
2647 push @m, join " \\\n\t", %{$self->{MAN1PODS
}}, %{$self->{MAN3PODS
}};
2654 Returns true, if the argument is likely to be a command.
2659 my($self,$file) = @_;
2660 return $file if -x
$file && ! -d
$file;
2664 =item maybe_command_in_dirs
2666 method under development. Not yet used. Ask Ilya :-)
2670 sub maybe_command_in_dirs
{ # $ver is optional argument if looking for perl
2671 # Ilya's suggestion. Not yet used, want to understand it first, but at least the code is here
2672 my($self, $names, $dirs, $trace, $ver) = @_;
2674 foreach $dir (@
$dirs){
2675 next unless defined $dir; # $self->{PERL_SRC} may be undefined
2676 foreach $name (@
$names){
2678 if ($self->file_name_is_absolute($name)) { # /foo/bar
2680 } elsif ($self->canonpath($name) eq $self->canonpath(basename
($name))) { # bar
2681 $abs = $self->catfile($dir, $name);
2683 $abs = $self->catfile($self->curdir, $name);
2685 print "Checking $abs for $name\n" if ($trace >= 2);
2686 next unless $tryabs = $self->maybe_command($abs);
2687 print "Substituting $tryabs instead of $abs\n"
2688 if ($trace >= 2 and $tryabs ne $abs);
2691 print "Executing $abs\n" if ($trace >= 2);
2692 if (`$abs -e 'require $ver; print "VER_OK\n" ' 2>&1` =~ /VER_OK/) {
2693 print "Using PERL=$abs\n" if $trace;
2696 } else { # Do not look for perl
2703 =item needs_linking (o)
2705 Does this module need linking? Looks into subdirectory objects (see
2706 also has_link_code())
2713 $caller = (caller(0))[3];
2714 Carp
::confess
("Needs_linking called too early") if $caller =~ /^ExtUtils::MakeMaker::/;
2715 return $self->{NEEDS_LINKING
} if defined $self->{NEEDS_LINKING
};
2716 if ($self->has_link_code or $self->{MAKEAPERL
}){
2717 $self->{NEEDS_LINKING
} = 1;
2720 foreach $child (keys %{$self->{CHILDREN
}}) {
2721 if ($self->{CHILDREN
}->{$child}->needs_linking) {
2722 $self->{NEEDS_LINKING
} = 1;
2726 return $self->{NEEDS_LINKING
} = 0;
2731 misnamed method (will have to be changed). The MM_Unix method just
2732 returns the argument without further processing.
2734 On VMS used to insure that colons marking targets are preceded by
2735 space - most Unix Makes don't need this, but it's necessary under VMS
2736 to distinguish the target delimiter from a colon appearing as part of
2742 my($self,$text) = @_;
2748 parse a file and return what you think is $VERSION in this file set to.
2749 It will return the string "undef" if it can't figure out what $VERSION
2755 my($self,$parsefile) = @_;
2759 open(FH
,$parsefile) or die "Could not open '$parsefile': $!";
2762 $inpod = /^=(?!cut)/ ?
1 : /^=cut/ ?
0 : $inpod;
2765 # next unless /\$(([\w\:\']*)\bVERSION)\b.*\=/;
2766 next unless /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/;
2768 package ExtUtils
::MakeMaker
::_version
;
2777 $result = eval($eval);
2778 warn "Could not eval '$eval' in $parsefile: $@" if $@
;
2779 $result = "undef" unless defined $result;
2786 =item parse_abstract
2788 parse a file and return what you think is the ABSTRACT
2792 sub parse_abstract
{
2793 my($self,$parsefile) = @_;
2797 open(FH
,$parsefile) or die "Could not open '$parsefile': $!";
2799 my $package = $self->{DISTNAME
};
2800 $package =~ s/-/::/g;
2802 $inpod = /^=(?!cut)/ ?
1 : /^=cut/ ?
0 : $inpod;
2805 next unless /^($package\s-\s)(.*)/;
2815 Defines the string that is passed to recursive make calls in
2825 my($sep) = $Is_VMS ?
',' : '';
2828 foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)){
2829 push @pasthru, "$key=\"\$($key)\"";
2832 push @m, "\nPASTHRU = ", join ($sep, @pasthru), "\n";
2838 Takes no argument, returns the environment variable PATH as an array.
2844 my $path_sep = ($Is_OS2 || $Is_Dos) ?
";" : ":";
2845 my $path = $ENV{PATH
};
2846 $path =~ s
:\\:/:g
if $Is_OS2;
2847 my @path = split $path_sep, $path;
2848 foreach(@path) { $_ = '.' if $_ eq '' }
2854 Takes one argument, a file name, and returns the file name, if the
2855 argument is likely to be a perl script. On MM_Unix this is true for
2856 any ordinary, readable file.
2861 my($self,$file) = @_;
2862 return $file if -r
$file && -f _
;
2866 =item perldepend (o)
2868 Defines the dependency from all *.h files that come with the perl
2877 # Check for unpropogated config.sh changes. Should never happen.
2878 # We do NOT just update config.h because that is not sufficient.
2879 # An out of date config.h is not fatal but complains loudly!
2880 $(PERL_INC)/config.h: $(PERL_SRC)/config.sh
2881 -}.$self->{NOECHO
}.q{echo "Warning: $(PERL_INC)/config.h out of date with $(PERL_SRC)/config.sh"; false
2883 $(PERL_ARCHLIB)/Config.pm: $(PERL_SRC)/config.sh
2884 }.$self->{NOECHO
}.q{echo "Warning: $(PERL_ARCHLIB)/Config.pm may be out of date with $(PERL_SRC)/config.sh"
2885 cd $(PERL_SRC) && $(MAKE) lib/Config.pm
2886 } if $self->{PERL_SRC
};
2888 return join "", @m unless $self->needs_linking;
2892 $(PERL_INC)/EXTERN.h \
2893 $(PERL_INC)/INTERN.h \
2894 $(PERL_INC)/XSUB.h \
2896 $(PERL_INC)/cc_runtime.h \
2897 $(PERL_INC)/config.h \
2900 $(PERL_INC)/dosish.h \
2901 $(PERL_INC)/embed.h \
2902 $(PERL_INC)/embedvar.h \
2903 $(PERL_INC)/fakethr.h \
2904 $(PERL_INC)/form.h \
2906 $(PERL_INC)/handy.h \
2908 $(PERL_INC)/intrpvar.h \
2909 $(PERL_INC)/iperlsys.h \
2910 $(PERL_INC)/keywords.h \
2912 $(PERL_INC)/nostdio.h \
2913 $(PERL_INC)/objXSUB.h \
2915 $(PERL_INC)/opcode.h \
2916 $(PERL_INC)/opnames.h \
2917 $(PERL_INC)/patchlevel.h \
2918 $(PERL_INC)/perl.h \
2919 $(PERL_INC)/perlapi.h \
2920 $(PERL_INC)/perlio.h \
2921 $(PERL_INC)/perlsdio.h \
2922 $(PERL_INC)/perlsfio.h \
2923 $(PERL_INC)/perlvars.h \
2924 $(PERL_INC)/perly.h \
2926 $(PERL_INC)/pp_proto.h \
2927 $(PERL_INC)/proto.h \
2928 $(PERL_INC)/regcomp.h \
2929 $(PERL_INC)/regexp.h \
2930 $(PERL_INC)/regnodes.h \
2931 $(PERL_INC)/scope.h \
2933 $(PERL_INC)/thrdvar.h \
2934 $(PERL_INC)/thread.h \
2935 $(PERL_INC)/unixish.h \
2936 $(PERL_INC)/utf8.h \
2937 $(PERL_INC)/util.h \
2938 $(PERL_INC)/warnings.h
2940 $(OBJECT) : $(PERL_HDRS)
2941 } if $self->{OBJECT
};
2943 push @m, join(" ", values %{$self->{XS
}})." : \$(XSUBPPDEPS)\n" if %{$self->{XS
}};
2950 Defines target that creates a PPD (Perl Package Description) file
2951 for a binary distribution.
2958 if ($self->{ABSTRACT_FROM
}){
2959 $self->{ABSTRACT
} = $self->parse_abstract($self->{ABSTRACT_FROM
}) or
2960 Carp
::carp
"WARNING: Setting ABSTRACT via file '$self->{ABSTRACT_FROM}' failed\n";
2962 my ($pack_ver) = join ",", (split (/\./, $self->{VERSION
}), (0) x
4) [0 .. 3];
2963 push(@m, "# Creates a PPD (Perl Package Description) for a binary distribution.\n");
2965 push(@m, "\t\@\$(PERL) -e \"print qq{<SOFTPKG NAME=\\\"$self->{DISTNAME}\\\" VERSION=\\\"$pack_ver\\\">\\n}");
2966 push(@m, ". qq{\\t<TITLE>$self->{DISTNAME}</TITLE>\\n}");
2967 my $abstract = $self->{ABSTRACT
};
2968 $abstract =~ s/\n/\\n/sg;
2969 $abstract =~ s/</</g;
2970 $abstract =~ s/>/>/g;
2971 push(@m, ". qq{\\t<ABSTRACT>$abstract</ABSTRACT>\\n}");
2972 my ($author) = $self->{AUTHOR
};
2973 $author =~ s/</</g;
2974 $author =~ s/>/>/g;
2975 $author =~ s/@/\\@/g;
2976 push(@m, ". qq{\\t<AUTHOR>$author</AUTHOR>\\n}");
2977 push(@m, ". qq{\\t<IMPLEMENTATION>\\n}");
2979 foreach $prereq (sort keys %{$self->{PREREQ_PM
}}) {
2980 my $pre_req = $prereq;
2981 $pre_req =~ s/::/-/g;
2982 my ($dep_ver) = join ",", (split (/\./, $self->{PREREQ_PM
}{$prereq}), (0) x
4) [0 .. 3];
2983 push(@m, ". qq{\\t\\t<DEPENDENCY NAME=\\\"$pre_req\\\" VERSION=\\\"$dep_ver\\\" />\\n}");
2985 push(@m, ". qq{\\t\\t<OS NAME=\\\"\$(OSNAME)\\\" />\\n}");
2986 push(@m, ". qq{\\t\\t<ARCHITECTURE NAME=\\\"$Config{'archname'}\\\" />\\n}");
2987 my ($bin_location) = $self->{BINARY_LOCATION
};
2988 $bin_location =~ s/\\/\\\\/g;
2989 if ($self->{PPM_INSTALL_SCRIPT
}) {
2990 if ($self->{PPM_INSTALL_EXEC
}) {
2991 push(@m, " . qq{\\t\\t<INSTALL EXEC=\\\"$self->{PPM_INSTALL_EXEC}\\\">$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
2994 push(@m, " . qq{\\t\\t<INSTALL>$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
2997 push(@m, ". qq{\\t\\t<CODEBASE HREF=\\\"$bin_location\\\" />\\n}");
2998 push(@m, ". qq{\\t</IMPLEMENTATION>\\n}");
2999 push(@m, ". qq{</SOFTPKG>\\n}\" > $self->{DISTNAME}.ppd");
3006 Returns the attribute C<PERM_RW> or the string C<644>.
3007 Used as the string that is passed
3008 to the C<chmod> command to set the permissions for read/writeable files.
3009 MakeMaker chooses C<644> because it has turned out in the past that
3010 relying on the umask provokes hard-to-track bug reports.
3011 When the return value is used by the perl function C<chmod>, it is
3012 interpreted as an octal value.
3017 shift->{PERM_RW
} || "644";
3022 Returns the attribute C<PERM_RWX> or the string C<755>,
3023 i.e. the string that is passed
3024 to the C<chmod> command to set the permissions for executable files.
3030 shift->{PERM_RWX
} || "755";
3035 Defines target that copies all files in the hash PM to their
3036 destination and autosplits them. See L<ExtUtils::Install/DESCRIPTION>
3042 my($autodir) = $self->catdir('$(INST_LIB)','auto');
3044 pm_to_blib: $(TO_INST_PM)
3045 }.$self->{NOECHO
}.q{$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \
3046 "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \
3047 -e "pm_to_blib({qw{$(PM_TO_BLIB)}},'}.$autodir.q{','$(PM_FILTER)')"
3048 }.$self->{NOECHO}.q{$(TOUCH) $@
3052 =item post_constants (o)
3054 Returns an empty string per default. Dedicated to overrides from
3055 within Makefile.PL after all constants have been defined.
3064 =item post_initialize (o)
3066 Returns an empty string per default. Used in Makefile.PLs to add some
3067 chunk of text to the Makefile after the object is initialized.
3071 sub post_initialize
{
3078 Returns an empty string. Can be used in Makefile.PLs to write some
3079 text to the Makefile at the end.
3090 Check a path variable in $self from %Config, if it contains a prefix,
3091 and replace it with another one.
3093 Takes as arguments an attribute name, a search prefix and a
3094 replacement prefix. Changes the attribute in the object.
3099 my($self,$var,$sprefix,$rprefix) = @_;
3100 $self->{uc $var} ||= $Config{lc $var};
3101 $self->{uc $var} = VMS
::Filespec
::unixpath
($self->{uc $var}) if $Is_VMS;
3102 $self->{uc $var} =~ s/\Q$sprefix\E/$rprefix/s;
3107 Defines targets to run *.PL files.
3113 return "" unless $self->{PL_FILES
};
3115 foreach $plfile (sort keys %{$self->{PL_FILES
}}) {
3116 my $list = ref($self->{PL_FILES
}->{$plfile})
3117 ?
$self->{PL_FILES
}->{$plfile}
3118 : [$self->{PL_FILES
}->{$plfile}];
3120 foreach $target (@
$list) {
3123 $self->{NOECHO}\$(NOOP)
3126 \$(PERL) -I\$(INST_ARCHLIB) -I\$(INST_LIB) -I\$(PERL_ARCHLIB) -I\$(PERL_LIB) $plfile $target
3135 Defines the realclean target.
3140 my($self, %attribs) = @_;
3143 # Delete temporary files (via clean) and also delete installed files
3144 realclean purge :: clean
3146 # realclean subdirectories first (already cleaned)
3147 my $sub = ($Is_Win32 && Win32
::IsWin95
()) ?
3148 "\tcd %s\n\t\$(TEST_F) %s\n\t\$(MAKE) %s realclean\n\tcd ..\n" :
3149 "\t-cd %s && \$(TEST_F) %s && \$(MAKE) %s realclean\n";
3150 foreach(@
{$self->{DIR
}}){
3151 push(@m, sprintf($sub,$_,"$self->{MAKEFILE}.old","-f $self->{MAKEFILE}.old"));
3152 push(@m, sprintf($sub,$_,"$self->{MAKEFILE}",''));
3154 push(@m, " $self->{RM_RF} \$(INST_AUTODIR) \$(INST_ARCHAUTODIR)\n");
3155 if( $self->has_link_code ){
3156 push(@m, " $self->{RM_F} \$(INST_DYNAMIC) \$(INST_BOOT)\n");
3157 push(@m, " $self->{RM_F} \$(INST_STATIC)\n");
3159 # Issue a several little RM_F commands rather than risk creating a
3160 # very long command line (useful for extensions such as Encode
3161 # that have many files).
3162 if (keys %{$self->{PM
}}) {
3164 foreach (values %{$self->{PM
}}) {
3165 if (length($line) + length($_) > 80) {
3166 push @m, "\t$self->{RM_F} $line\n";
3173 push @m, "\t$self->{RM_F} $line\n" if $line;
3175 my(@otherfiles) = ($self->{MAKEFILE
},
3176 "$self->{MAKEFILE}.old"); # Makefiles last
3177 push(@otherfiles, $attribs{FILES
}) if $attribs{FILES
};
3178 push(@m, " $self->{RM_RF} @otherfiles\n") if @otherfiles;
3179 push(@m, " $attribs{POSTOP}\n") if $attribs{POSTOP
};
3183 =item replace_manpage_separator
3185 Takes the name of a package, which may be a nested package, in the
3186 form Foo/Bar and replaces the slash with C<::>. Returns the replacement.
3190 sub replace_manpage_separator
{
3191 my($self,$man) = @_;
3192 if ($^O
eq 'uwin') {
3204 Defines the static target.
3209 # --- Static Loading Sections ---
3213 ## $(INST_PM) has been moved to the all: target.
3214 ## It remains here for awhile to allow for old usage: "make static"
3215 #static :: '.$self->{MAKEFILE
}.' $(INST_STATIC) $(INST_PM)
3216 static :: '.$self->{MAKEFILE
}.' $(INST_STATIC)
3217 '.$self->{NOECHO
}.'$(NOOP)
3221 =item static_lib (o)
3223 Defines how to produce the *.a (or equivalent) files.
3229 # Come to think of it, if there are subdirs with linkcode, we still have no INST_STATIC
3230 # return '' unless $self->needs_linking(); #might be because of a subdir
3232 return '' unless $self->has_link_code;
3236 $(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)/.exists
3239 # If this extension has it's own library (eg SDBM_File)
3240 # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
3241 push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB
};
3244 if (exists $self->{FULL_AR
} && -x
$self->{FULL_AR
}) {
3245 # Prefer the absolute pathed ar if available so that PATH
3246 # doesn't confuse us. Perl itself is built with the full_ar.
3252 "\t\$($ar) ".'$(AR_STATIC_ARGS) $@ $(OBJECT) && $(RANLIB) $@'."\n";
3254 q{ $(CHMOD) $(PERM_RWX) $@
3255 }.$self->{NOECHO
}.q{echo "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)/extralibs.ld
3257 # Old mechanism - still available:
3259 "\t$self->{NOECHO}".q{echo "$(EXTRALIBS)" >> $(PERL_SRC)/ext.libs
3260 } if $self->{PERL_SRC
} && $self->{EXTRALIBS
};
3263 push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
3267 =item staticmake (o)
3274 my($self, %attribs) = @_;
3277 my(@searchdirs)=($self->{PERL_ARCHLIB
}, $self->{SITEARCHEXP
}, $self->{INST_ARCHLIB
});
3279 # And as it's not yet built, we add the current extension
3280 # but only if it has some C code (or XS code, which implies C code)
3281 if (@
{$self->{C
}}) {
3282 @static = $self->catfile($self->{INST_ARCHLIB
},
3285 "$self->{BASEEXT}$self->{LIB_EXT}"
3289 # Either we determine now, which libraries we will produce in the
3290 # subdirectories or we do it at runtime of the make.
3292 # We could ask all subdir objects, but I cannot imagine, why it
3293 # would be necessary.
3295 # Instead we determine all libraries for the new perl at
3297 my(@perlinc) = ($self->{INST_ARCHLIB
}, $self->{INST_LIB
}, $self->{PERL_ARCHLIB
}, $self->{PERL_LIB
});
3299 $self->makeaperl(MAKE
=> $self->{MAKEFILE
},
3300 DIRS
=> \
@searchdirs,
3303 TARGET
=> $self->{MAP_TARGET
},
3305 LIBPERL
=> $self->{LIBPERL_A
}
3311 Helper subroutine for subdirs
3316 my($self, $subdir) = @_;
3318 if ($Is_Win32 && Win32
::IsWin95
()) {
3319 # XXX: dmake-specific, like rest of Win95 port
3324 \$(MAKE) all \$(PASTHRU)
3333 $self->{NOECHO}cd $subdir && \$(MAKE) all \$(PASTHRU)
3341 Defines targets to process subdirectories.
3346 # --- Sub-directory Sections ---
3349 # This method provides a mechanism to automatically deal with
3350 # subdirectories containing further Makefile.PL scripts.
3351 # It calls the subdir_x() method for each subdirectory.
3352 foreach $dir (@
{$self->{DIR
}}){
3353 push(@m, $self->subdir_x($dir));
3354 #### print "Including $dir subdirectory\n";
3358 # The default clean, realclean and test targets in this Makefile
3359 # have automatically been given entries for each subdir.
3363 push(@m, "\n# none")
3370 Defines the test targets.
3375 # --- Test and Installation Sections ---
3377 my($self, %attribs) = @_;
3378 my $tests = $attribs{TESTS
};
3379 if (!$tests && -d
't') {
3380 $tests = $Is_Win32 ?
join(' ', <t
\\*.t
>) : 't/*.t';
3382 # note: 'test.pl' name is also hardcoded in init_dirscan()
3386 TEST_TYPE=test_\$(LINKTYPE)
3391 testdb :: testdb_\$(LINKTYPE)
3393 test :: \$(TEST_TYPE)
3395 push(@m, map("\t$self->{NOECHO}cd $_ && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) test \$(PASTHRU)\n",
3397 push(@m, "\t$self->{NOECHO}echo 'No tests defined for \$(NAME) extension.'\n")
3398 unless $tests or -f
"test.pl" or @
{$self->{DIR
}};
3401 push(@m, "test_dynamic :: pure_all\n");
3402 push(@m, $self->test_via_harness('$(FULLPERL)', '$(TEST_FILES)')) if $tests;
3403 push(@m, $self->test_via_script('$(FULLPERL)', '$(TEST_FILE)')) if -f
"test.pl";
3406 push(@m, "testdb_dynamic :: pure_all\n");
3407 push(@m, $self->test_via_script('$(FULLPERL) $(TESTDB_SW)', '$(TEST_FILE)'));
3410 # Occasionally we may face this degenerate target:
3411 push @m, "test_ : test_dynamic\n\n";
3413 if ($self->needs_linking()) {
3414 push(@m, "test_static :: pure_all \$(MAP_TARGET)\n");
3415 push(@m, $self->test_via_harness('./$(MAP_TARGET)', '$(TEST_FILES)')) if $tests;
3416 push(@m, $self->test_via_script('./$(MAP_TARGET)', '$(TEST_FILE)')) if -f
"test.pl";
3418 push(@m, "testdb_static :: pure_all \$(MAP_TARGET)\n");
3419 push(@m, $self->test_via_script('./$(MAP_TARGET) $(TESTDB_SW)', '$(TEST_FILE)'));
3422 push @m, "test_static :: test_dynamic\n";
3423 push @m, "testdb_static :: testdb_dynamic\n";
3428 =item test_via_harness (o)
3430 Helper method to write the test targets
3434 sub test_via_harness
{
3435 my($self, $perl, $tests) = @_;
3436 $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
3437 "\t$perl".q
! -I
$(INST_ARCHLIB
) -I
$(INST_LIB
) -I
$(PERL_ARCHLIB
) -I
$(PERL_LIB
) -e
'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' !."$tests\n";
3440 =item test_via_script (o)
3442 Other helper method for test.
3446 sub test_via_script
{
3447 my($self, $perl, $script) = @_;
3448 $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
3449 qq{\t$perl}.q{ -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) }.qq{$script
3453 =item tool_autosplit (o)
3455 Defines a simple perl call that runs autosplit. May be deprecated by
3460 sub tool_autosplit
{
3461 # --- Tool Sections ---
3463 my($self, %attribs) = @_;
3465 $asl = "\$AutoSplit::Maxlen=$attribs{MAXLEN};" if $attribs{MAXLEN
};
3467 # Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto
3468 AUTOSPLITFILE = $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;'
3472 =item tools_other (o)
3474 Defines SHELL, LD, TOUCH, CP, MV, RM_F, RM_RF, CHMOD, UMASK_NULL in
3475 the Makefile. Also defines the perl programs MKPATH,
3476 WARN_IF_OLD_PACKLIST, MOD_INSTALL. DOC_INSTALL, and UNINSTALL.
3483 my $bin_sh = $Config{sh} || '/bin/sh';
3488 for (qw/ CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL/ ) {
3489 push @m, "$_ = $self->{$_}\n";
3493 # The following is a portable way to say mkdir -p
3494 # To see which directories are created, change the if 0 to if 1
3495 MKPATH = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e mkpath
3497 # This helps us to minimize the effect of the .exists files A yet
3498 # better solution would be to have a stable file in the perl
3499 # distribution with a timestamp of zero. But this solution doesn't
3500 # need any changes to the core distribution and works with older perls
3501 EQUALIZE_TIMESTAMP = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e eqtime
3505 return join "", @m if $self->{PARENT
};
3508 # Here we warn users that an old packlist file was found somewhere,
3509 # and that they should call some uninstall routine
3510 WARN_IF_OLD_PACKLIST = $(PERL) -we 'exit unless -f $$ARGV[0];' \\
3511 -e 'print "WARNING: I have found an old package in\n";' \\
3512 -e 'print "\t$$ARGV[0].\n";' \\
3513 -e 'print "Please make sure the two installations are not conflicting\n";'
3518 MOD_INSTALL = $(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MExtUtils::Install \
3519 -e "install({@ARGV},'$(VERBINST)',0,'$(UNINST)');"
3521 DOC_INSTALL = $(PERL) -e '$$\="\n\n";' \
3522 -e 'print "=head2 ", scalar(localtime), ": C<", shift, ">", " L<", $$arg=shift, "|", $$arg, ">";' \
3523 -e 'print "=over 4";' \
3524 -e 'while (defined($$key = shift) and defined($$val = shift)){print "=item *";print "C<$$key: $$val>";}' \
3527 UNINSTALL = $(PERL) -MExtUtils::Install \
3528 -e 'uninstall($$ARGV[0],1,1); print "\nUninstall is deprecated. Please check the";' \
3529 -e 'print " packlist above carefully.\n There may be errors. Remove the";' \
3530 -e 'print " appropriate files manually.\n Sorry for the inconveniences.\n"'
3536 =item tool_xsubpp (o)
3538 Determines typemaps, xsubpp version, prototype behaviour.
3544 return "" unless $self->needs_linking;
3545 my($xsdir) = $self->catdir($self->{PERL_LIB},"ExtUtils");
3546 my(@tmdeps) = $self->catdir('$(XSUBPPDIR)','typemap');
3547 if( $self->{TYPEMAPS} ){
3549 foreach $typemap (@{$self->{TYPEMAPS}}){
3550 if( ! -f $typemap ){
3551 warn "Typemap $typemap not found.\n";
3554 push(@tmdeps, $typemap);
3558 push(@tmdeps, "typemap") if -f "typemap";
3559 my(@tmargs) = map("-typemap $_", @tmdeps);
3560 if( exists $self->{XSOPT} ){
3561 unshift( @tmargs, $self->{XSOPT} );
3565 my $xsubpp_version = $self->xsubpp_version($self->catfile($xsdir,"xsubpp"));
3567 # What are the correct thresholds for version 1 && 2 Paul?
3568 if ( $xsubpp_version > 1.923 ){
3569 $self->{XSPROTOARG} = "" unless defined $self->{XSPROTOARG};
3571 if (defined $self->{XSPROTOARG} && $self->{XSPROTOARG} =~ /\-prototypes/) {
3572 print STDOUT qq{Warning: This extension wants to pass the switch "-prototypes" to xsubpp.
3573 Your version of xsubpp is $xsubpp_version and cannot handle this.
3574 Please upgrade to a more recent version of xsubpp.
3577 $self->{XSPROTOARG} = "";
3581 my $xsubpp = "xsubpp";
3585 XSUBPP = \$(XSUBPPDIR)/$xsubpp
3586 XSPROTOARG = $self->{XSPROTOARG}
3587 XSUBPPDEPS = @tmdeps \$(XSUBPP)
3588 XSUBPPARGS = @tmargs
3594 my($self,$xsubpp) = @_;
3595 return $Xsubpp_Version if defined $Xsubpp_Version; # global variable
3599 # try to figure out the version number of the xsubpp on the system
3601 # first try the -v flag, introduced in 1.921 & 2.000a2
3603 return "" unless $self->needs_linking;
3605 my $command = "$self->{PERL} -I$self->{PERL_LIB} $xsubpp -v 2>&1";
3606 print "Running $command\n" if $Verbose >= 2;
3607 $version = `$command` ;
3608 warn "Running '$command' exits with status " . ($?>>8) if $?;
3611 return $Xsubpp_Version = $1 if $version =~ /^xsubpp version (.*)/ ;
3613 # nope, then try something else
3615 my $counter = '000';
3616 my ($file) = 'temp' ;
3617 $counter++ while -e "$file$counter"; # don't overwrite anything
3620 open(F, ">$file") or die "Cannot open file '$file': $!\n" ;
3622 MODULE = fred PACKAGE = fred
3631 $command = "$self->{PERL} $xsubpp $file 2>&1";
3632 print "Running $command\n" if $Verbose >= 2;
3633 my $text = `$command` ;
3634 warn "Running '$command' exits with status " . ($?
>>8) if $?
;
3637 # gets 1.2 -> 1.92 and 2.000a1
3638 return $Xsubpp_Version = $1 if $text =~ /automatically by xsubpp version ([\S]+)\s*/ ;
3640 # it is either 1.0 or 1.1
3641 return $Xsubpp_Version = 1.1 if $text =~ /^Warning: ignored semicolon/ ;
3643 # none of the above, so 1.0
3644 return $Xsubpp_Version = "1.0" ;
3647 =item top_targets (o)
3649 Defines the targets all, subdirs, config, and O_FILES
3654 # --- Target Sections ---
3659 #all :: config $(INST_PM) subdirs linkext manifypods
3663 all :: pure_all htmlifypods manifypods
3664 '.$self->{NOECHO
}.'$(NOOP)
3666 unless $self->{SKIPHASH
}{'all'};
3669 pure_all :: config pm_to_blib subdirs linkext
3670 '.$self->{NOECHO
}.'$(NOOP)
3672 subdirs :: $(MYEXTLIB)
3673 '.$self->{NOECHO
}.'$(NOOP)
3675 config :: '.$self->{MAKEFILE
}.' $(INST_LIBDIR)/.exists
3676 '.$self->{NOECHO
}.'$(NOOP)
3678 config :: $(INST_ARCHAUTODIR)/.exists
3679 '.$self->{NOECHO
}.'$(NOOP)
3681 config :: $(INST_AUTODIR)/.exists
3682 '.$self->{NOECHO
}.'$(NOOP)
3685 push @m, $self->dir_target(qw
[$(INST_AUTODIR
) $(INST_LIBDIR
) $(INST_ARCHAUTODIR
)]);
3687 if (%{$self->{HTMLLIBPODS
}}) {
3689 config
:: \
$(INST_HTMLLIBDIR
)/.exists
3690 $self->{NOECHO
}\
$(NOOP
)
3693 push @m, $self->dir_target(qw
[$(INST_HTMLLIBDIR
)]);
3696 if (%{$self->{HTMLSCRIPTPODS
}}) {
3698 config
:: \
$(INST_HTMLSCRIPTDIR
)/.exists
3699 $self->{NOECHO
}\
$(NOOP
)
3702 push @m, $self->dir_target(qw
[$(INST_HTMLSCRIPTDIR
)]);
3705 if (%{$self->{MAN1PODS
}}) {
3707 config
:: \
$(INST_MAN1DIR
)/.exists
3708 $self->{NOECHO
}\
$(NOOP
)
3711 push @m, $self->dir_target(qw
[$(INST_MAN1DIR
)]);
3713 if (%{$self->{MAN3PODS
}}) {
3715 config
:: \
$(INST_MAN3DIR
)/.exists
3716 $self->{NOECHO
}\
$(NOOP
)
3719 push @m, $self->dir_target(qw
[$(INST_MAN3DIR
)]);
3723 $(O_FILES): $(H_FILES)
3724 ' if @
{$self->{O_FILES
} || []} && @
{$self->{H
} || []};
3728 perldoc ExtUtils::MakeMaker
3733 }.$self->{NOECHO
}.q{$(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
3734 -MExtUtils::MakeMaker=Version_check \
3735 -e "Version_check('$(MM_VERSION)')"
3743 Obsolete, deprecated method. Not used since Version 5.21.
3748 # --- perllocal.pod section ---
3749 my($self,$what,$name,@attribs)=@_;
3750 my $time = localtime;
3751 print "=head2 $time: $what C<$name>\n\n=over 4\n\n=item *\n\n";
3752 print join "\n\n=item *\n\n", map("C<$_>",@attribs);
3753 print "\n\n=back\n\n";
3758 Defines the suffix rules to compile XS files to C.
3764 return '' unless $self->needs_linking();
3767 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3773 Defines the suffix rules to compile XS files to C++.
3779 return '' unless $self->needs_linking();
3782 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.cpp
3788 Defines suffix rules to go from XS to object files directly. This is
3789 only intended for broken make implementations.
3793 sub xs_o
{ # many makes are too dumb to use xs_c then c_o
3795 return '' unless $self->needs_linking();
3798 $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3799 $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
3805 This is internal method that returns path to libperl.a equivalent
3806 to be linked to dynamic extensions. UNIX does not have one but OS2
3813 return '$(PERL_INC)' . "/$Config{libperl}" if $^O
eq "beos";
3817 =item perl_archive_after
3819 This is an internal method that returns path to a library which
3820 should be put on the linker command line I<after> the external libraries
3821 to be linked to dynamic extensions. This may be needed if the linker
3822 is one-pass, and Perl includes some overrides for C RTL functions,
3827 sub perl_archive_after
3834 This is internal method that returns name of a file that is
3835 passed to linker to define symbols to be exported.
3836 UNIX does not have one but OS2 and Win32 do.
3852 L<ExtUtils::MakeMaker>