1 package ExtUtils
::MM_Unix
;
3 require 5.005_03
; # Maybe further back, dunno
9 use ExtUtils
::MakeMaker
::Config
;
10 use File
::Basename
qw(basename dirname);
13 use vars
qw($VERSION @ISA
14 $Is_OS2 $Is_VMS $Is_Win32 $Is_Dos
15 $Is_OSF $Is_IRIX $Is_NetBSD $Is_BSD
16 $Is_SunOS4 $Is_Solaris $Is_SunOS $Is_Interix
21 use ExtUtils::MakeMaker qw($Verbose neatvalue);
25 require ExtUtils::MM_Any;
26 @ISA = qw(ExtUtils::MM_Any);
29 $Is_OS2 = $^O
eq 'os2';
30 $Is_Win32 = $^O
eq 'MSWin32' || $Config{osname
} eq 'NetWare';
31 $Is_Dos = $^O
eq 'dos';
32 $Is_VMS = $^O
eq 'VMS';
33 $Is_OSF = $^O
eq 'dec_osf';
34 $Is_IRIX = $^O
eq 'irix';
35 $Is_NetBSD = $^O
eq 'netbsd';
36 $Is_Interix = $^O
eq 'interix';
37 $Is_SunOS4 = $^O
eq 'sunos';
38 $Is_Solaris = $^O
eq 'solaris';
39 $Is_SunOS = $Is_SunOS4 || $Is_Solaris;
40 $Is_BSD = $^O
=~ /^(?:free|net|open)bsd$/ or
41 $^O
eq 'bsdos' or $^O
eq 'interix';
46 # For things like vmsify()
47 require VMS
::Filespec
;
48 VMS
::Filespec
->import;
55 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
59 C<require ExtUtils::MM_Unix;>
63 The methods provided by this package are designed to be used in
64 conjunction with ExtUtils::MakeMaker. When MakeMaker writes a
65 Makefile, it creates one or more objects that inherit their methods
66 from a package C<MM>. MM itself doesn't provide any methods, but it
67 ISA ExtUtils::MM_Unix class. The inheritance tree of MM lets operating
68 specific packages take the responsibility for all the methods provided
69 by MM_Unix. We are trying to reduce the number of the necessary
70 overrides by defining rather primitive operations within
73 If you are going to write a platform specific MM package, please try
74 to limit the necessary overrides to primitive methods, and if it is not
75 possible to do so, let's work out how to achieve that gain.
77 If you are overriding any of these methods in your Makefile.PL (in the
78 MY class), please report that to the makemaker mailing list. We are
79 trying to minimize the necessary method overrides and switch to data
80 driven Makefile.PLs wherever possible. In the long run less methods
81 will be overridable via the MY class.
85 The following description of methods is still under
86 development. Please refer to the code for not suitably documented
87 sections and complain loudly to the makemaker@perl.org mailing list.
88 Better yet, provide a patch.
90 Not all of the methods below are overridable in a
91 Makefile.PL. Overridable methods are marked as (o). All methods are
92 overridable by a platform specific MM_*.pm file.
94 Cross-platform methods are being moved into MM_Any. If you can't find
95 something that used to be in here, look in MM_Any.
99 # So we don't have to keep calling the methods over and over again,
100 # we have these globals to cache the values. Faster and shrtr.
101 my $Curdir = __PACKAGE__
->curdir;
102 my $Rootdir = __PACKAGE__
->rootdir;
103 my $Updir = __PACKAGE__
->updir;
112 Simply says that we're Unix.
123 Defines the suffix rules to compile different flavors of C files to
129 # --- Translation Sections ---
132 return '' unless $self->needs_linking();
134 if (my $cpp = $Config{cpprun
}) {
135 my $cpp_cmd = $self->const_cccmd;
136 $cpp_cmd =~ s/^CCCMD\s*=\s*\$\(CC\)/$cpp/;
139 '. $cpp_cmd . ' $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c > $*.i
144 $(CCCMD) -S $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c
148 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c
152 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.C
153 ' if !$Is_OS2 and !$Is_Win32 and !$Is_Dos; #Case-specific
156 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cpp
159 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cxx
162 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.cc
169 Does very much the same as the cflags script in the perl
170 distribution. It doesn't return the whole compiler command line, but
171 initializes all of its parts. The const_cccmd method then actually
172 returns the definition of the CCCMD macro which uses these parts.
179 my($self,$libperl)=@_;
180 return $self->{CFLAGS
} if $self->{CFLAGS
};
181 return '' unless $self->needs_linking();
183 my($prog, $uc, $perltype, %cflags);
184 $libperl ||= $self->{LIBPERL_A
} || "libperl$self->{LIB_EXT}" ;
185 $libperl =~ s/\.\$\(A\)$/$self->{LIB_EXT}/;
187 @cflags{qw(cc ccflags optimize shellflags)}
188 = @Config{qw(cc ccflags optimize shellflags)};
191 $cflags{shellflags
} ||= '';
196 DE
=> '-DDEBUGGING -DEMBED',
197 M
=> '-DEMBED -DMULTIPLICITY',
198 DM
=> '-DDEBUGGING -DEMBED -DMULTIPLICITY',
201 if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
204 $uc = ""; # avoid warning
206 $perltype = $map{$uc} ?
$map{$uc} : "";
214 ( $name = $self->{NAME
} . "_cflags" ) =~ s/:/_/g ;
215 if ($prog = $Config{$name}) {
216 # Expand hints for this extension via the shell
217 print STDOUT
"Processing $name hint:\n" if $Verbose;
218 my(@o)=`cc=\"$cflags{cc}\"
219 ccflags=\"$cflags{ccflags}\"
220 optimize=\"$cflags{optimize}\"
221 perltype=\"$cflags{perltype}\"
222 optdebug=\"$cflags{optdebug}\"
225 echo ccflags=\$ccflags
226 echo optimize=\$optimize
227 echo perltype=\$perltype
228 echo optdebug=\$optdebug
233 if ($line =~ /(.*?)=\s*(.*)\s*$/){
235 print STDOUT
" $1 = $2\n" if $Verbose;
237 print STDOUT
"Unrecognised result from hint: '$line'\n";
243 $cflags{optimize
} = $optdebug;
246 for (qw(ccflags optimize perltype)) {
248 $cflags{$_} =~ s/^\s+//;
249 $cflags{$_} =~ s/\s+/ /g;
250 $cflags{$_} =~ s/\s+$//;
251 $self->{uc $_} ||= $cflags{$_};
254 if ($self->{POLLUTE
}) {
255 $self->{CCFLAGS
} .= ' -DPERL_POLLUTE ';
259 if ($Config{usemymalloc
} and not $Config{bincompat5005
}
260 and not $Config{ccflags
} =~ /-DPERL_POLLUTE_MALLOC\b/
261 and $self->{PERL_MALLOC_OK
}) {
262 $pollute = '$(PERL_MALLOC_DEF)';
265 $self->{CCFLAGS
} = quote_paren
($self->{CCFLAGS
});
266 $self->{OPTIMIZE
} = quote_paren
($self->{OPTIMIZE
});
268 return $self->{CFLAGS
} = qq{
269 CCFLAGS
= $self->{CCFLAGS
}
270 OPTIMIZE
= $self->{OPTIMIZE
}
271 PERLTYPE
= $self->{PERLTYPE
}
278 =item const_cccmd (o)
280 Returns the full compiler call for C programs and stores the
281 definition in CONST_CCCMD.
286 my($self,$libperl)=@_;
287 return $self->{CONST_CCCMD
} if $self->{CONST_CCCMD
};
288 return '' unless $self->needs_linking();
289 return $self->{CONST_CCCMD
} =
290 q{CCCMD = $(CC) -c $(PASTHRU_INC) $(INC) \\
291 $(CCFLAGS) $(OPTIMIZE) \\
292 $(PERLTYPE) $(MPOLLUTE) $(DEFINE_VERSION) \\
293 $(XS_DEFINE_VERSION)};
296 =item const_config (o)
298 Defines a couple of constants in the Makefile that are imported from
304 # --- Constants Sections ---
308 push(@m,"\n# These definitions are from config.sh (via $INC{'Config.pm'})\n");
309 push(@m,"\n# They may have been overridden via Makefile.PL or on the command line\n");
311 foreach $m (@
{$self->{CONFIG
}}){
312 # SITE*EXP macros are defined in &constants; avoid duplicates here
313 next if $once_only{$m};
314 $self->{uc $m} = quote_paren
($self->{uc $m});
315 push @m, uc($m) , ' = ' , $self->{uc $m}, "\n";
321 =item const_loadlibs (o)
323 Defines EXTRALIBS, LDLOADLIBS, BSLOADLIBS, LD_RUN_PATH. See
324 L<ExtUtils::Liblist> for details.
330 return "" unless $self->needs_linking;
333 # $self->{NAME} might depend on some other libraries:
334 # See ExtUtils::Liblist for details
339 EXTRALIBS LDLOADLIBS BSLOADLIBS
341 next unless defined $self->{$tmp};
342 push @m, "$tmp = $self->{$tmp}\n";
344 # don't set LD_RUN_PATH if empty
348 next unless $self->{$tmp};
349 push @m, "$tmp = $self->{$tmp}\n";
356 my $make_frag = $mm->constants;
358 Prints out macros for lots of constants.
366 $self->{DFSEP
} = '$(DIRFILESEP)'; # alias for internal use
370 AR_STATIC_ARGS DIRFILESEP DFSEP
372 VERSION VERSION_MACRO VERSION_SYM DEFINE_VERSION
373 XS_VERSION XS_VERSION_MACRO XS_DEFINE_VERSION
374 INST_ARCHLIB INST_SCRIPT INST_BIN INST_LIB
375 INST_MAN1DIR INST_MAN3DIR
377 INSTALLDIRS INSTALLBASE DESTDIR PREFIX
378 PERLPREFIX SITEPREFIX VENDORPREFIX
380 (map { ("INSTALL".$_,
382 } $self->installvars),
387 FIRST_MAKEFILE MAKEFILE_OLD MAKE_APERL_FILE
388 PERLMAINCC PERL_SRC PERL_INC
389 PERL FULLPERL ABSPERL
390 PERLRUN FULLPERLRUN ABSPERLRUN
391 PERLRUNINST FULLPERLRUNINST ABSPERLRUNINST
397 next unless defined $self->{$macro};
399 # pathnames can have sharp signs in them; escape them so
400 # make doesn't think it is a comment-start character.
401 $self->{$macro} =~ s/#/\\#/g;
402 push @m, "$macro = $self->{$macro}\n";
406 MAKEMAKER
= $self->{MAKEMAKER
}
407 MM_VERSION
= $self->{MM_VERSION
}
408 MM_REVISION
= $self->{MM_REVISION
}
412 # FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle).
413 # BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle)
414 # PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar)
415 # DLBASE = Basename part of dynamic library. May be just equal BASEEXT.
420 FULLEXT BASEEXT PARENT_NAME DLBASE VERSION_FROM INC DEFINE OBJECT
421 LDFROM LINKTYPE BOOTDEP
424 next unless defined $self->{$macro};
425 push @m, "$macro = $self->{$macro}\n";
429 # Handy lists of source code files:
430 XS_FILES = ".$self->wraplist(sort keys %{$self->{XS
}})."
431 C_FILES = ".$self->wraplist(@
{$self->{C
}})."
432 O_FILES = ".$self->wraplist(@
{$self->{O_FILES
}})."
433 H_FILES = ".$self->wraplist(@
{$self->{H
}})."
434 MAN1PODS = ".$self->wraplist(sort keys %{$self->{MAN1PODS
}})."
435 MAN3PODS = ".$self->wraplist(sort keys %{$self->{MAN3PODS
}})."
440 # Where is the Config information that we are using/depend on
441 CONFIGDEP = $(PERL_ARCHLIB)$(DFSEP)Config.pm $(PERL_INC)$(DFSEP)config.h
446 # Where to build things
447 INST_LIBDIR
= $self->{INST_LIBDIR
}
448 INST_ARCHLIBDIR
= $self->{INST_ARCHLIBDIR
}
450 INST_AUTODIR
= $self->{INST_AUTODIR
}
451 INST_ARCHAUTODIR
= $self->{INST_ARCHAUTODIR
}
453 INST_STATIC
= $self->{INST_STATIC
}
454 INST_DYNAMIC
= $self->{INST_DYNAMIC
}
455 INST_BOOT
= $self->{INST_BOOT
}
461 EXPORT_LIST
= $self->{EXPORT_LIST
}
462 PERL_ARCHIVE
= $self->{PERL_ARCHIVE
}
463 PERL_ARCHIVE_AFTER
= $self->{PERL_ARCHIVE_AFTER
}
468 TO_INST_PM = ".$self->wraplist(sort keys %{$self->{PM
}})."
470 PM_TO_BLIB = ".$self->wraplist(%{$self->{PM
}})."
479 Same as macro for the depend attribute.
484 my($self,%attribs) = @_;
486 while (($key,$val) = each %attribs){
487 last unless defined $key;
488 push @m, "$key : $val\n";
498 Defines the DESTDIR and DEST* variables paralleling the INSTALL*.
506 $self->{DESTDIR
} ||= '';
508 # Make DEST variables.
509 foreach my $var ($self->installvars) {
510 my $destvar = 'DESTINSTALL'.$var;
511 $self->{$destvar} ||= '$(DESTDIR)$(INSTALL'.$var.')';
520 Defines a lot of macros for distribution support.
522 macro description default
524 TAR tar command to use tar
525 TARFLAGS flags to pass to TAR cvf
527 ZIP zip command to use zip
528 ZIPFLAGS flags to pass to ZIP -r
530 COMPRESS compression command to gzip --best
532 SUFFIX suffix to put on .gz
535 SHAR shar command to use shar
537 PREOP extra commands to run before
539 POSTOP extra commands to run after
542 TO_UNIX a command to convert linefeeds
543 to Unix style in your archive
545 CI command to checkin your ci -u
546 sources to version control
547 RCS_LABEL command to label your sources rcs -Nv$(VERSION_SYM): -q
550 DIST_CP $how argument to manicopy() best
551 when the distdir is created
553 DIST_DEFAULT default target to use to tardist
554 create a distribution
556 DISTVNAME name of the resulting archive $(DISTNAME)-$(VERSION)
564 $self->{TAR
} ||= 'tar';
565 $self->{TARFLAGS
} ||= 'cvf';
566 $self->{ZIP
} ||= 'zip';
567 $self->{ZIPFLAGS
} ||= '-r';
568 $self->{COMPRESS
} ||= 'gzip --best';
569 $self->{SUFFIX
} ||= '.gz';
570 $self->{SHAR
} ||= 'shar';
571 $self->{PREOP
} ||= '$(NOECHO) $(NOOP)'; # eg update MANIFEST
572 $self->{POSTOP
} ||= '$(NOECHO) $(NOOP)'; # eg remove the distdir
573 $self->{TO_UNIX
} ||= '$(NOECHO) $(NOOP)';
575 $self->{CI
} ||= 'ci -u';
576 $self->{RCS_LABEL
}||= 'rcs -Nv$(VERSION_SYM): -q';
577 $self->{DIST_CP
} ||= 'best';
578 $self->{DIST_DEFAULT
} ||= 'tardist';
580 ($self->{DISTNAME
} = $self->{NAME
}) =~ s{::}{-}g unless $self->{DISTNAME
};
581 $self->{DISTVNAME
} ||= $self->{DISTNAME
}.'-'.$self->{VERSION
};
587 my $dist_macros = $mm->dist(%overrides);
589 Generates a make fragment defining all the macros initialized in
592 %overrides can be used to override any of the above.
597 my($self, %attribs) = @_;
601 TAR TARFLAGS ZIP ZIPFLAGS COMPRESS SUFFIX SHAR
603 CI RCS_LABEL DIST_CP DIST_DEFAULT
607 my $value = $attribs{$key} || $self->{$key};
608 $make .= "$key = $value\n";
614 =item dist_basics (o)
616 Defines the targets distclean, distcheck, skipcheck, manifest, veryclean.
623 return <<'MAKE_FRAG';
624 distclean :: realclean distcheck
628 $(PERLRUN) "-MExtUtils::Manifest=fullcheck" -e fullcheck
631 $(PERLRUN) "-MExtUtils::Manifest=skipcheck" -e skipcheck
634 $(PERLRUN) "-MExtUtils::Manifest=mkmanifest" -e mkmanifest
636 veryclean : realclean
637 $(RM_F) *~ *.orig */*~ */*.orig
645 Defines a check in target for RCS.
653 $(PERLRUN) "-MExtUtils::Manifest=maniread" \\
654 -e "@all = keys %{ maniread() };" \\
655 -e "print(qq{Executing $(CI) @all\n}); system(qq{$(CI) @all});" \\
656 -e "print(qq{Executing $(RCS_LABEL) ...\n}); system(qq{$(RCS_LABEL) @all});"
662 my $dist_make_fragment = $MM->dist_core;
664 Puts the targets necessary for 'make dist' together into one make
673 foreach my $target (qw(dist tardist uutardist tarfile zipdist zipfile
676 my $method = $target.'_target';
678 $make_frag .= $self->$method();
687 my $make_frag = $MM->dist_target;
689 Returns the 'dist' target to make an archive for distribution. This
690 target simply checks to make sure the Makefile is up-to-date and
691 depends on $(DIST_DEFAULT).
698 my $date_check = $self->oneliner(<<'CODE', ['-l']);
699 print 'Warning: Makefile possibly out of date with $(VERSION_FROM)'
700 if -e '$(VERSION_FROM)' and -M '$(VERSION_FROM)' < -M '$(FIRST_MAKEFILE)';
703 return sprintf <<'MAKE_FRAG', $date_check;
704 dist : $(DIST_DEFAULT) $(FIRST_MAKEFILE)
709 =item B<tardist_target>
711 my $make_frag = $MM->tardist_target;
713 Returns the 'tardist' target which is simply so 'make tardist' works.
714 The real work is done by the dynamically named tardistfile_target()
715 method, tardist should have that as a dependency.
722 return <<'MAKE_FRAG
';
723 tardist : $(DISTVNAME).tar$(SUFFIX)
728 =item B<zipdist_target>
730 my $make_frag = $MM->zipdist_target;
732 Returns the 'zipdist
' target which is simply so 'make zipdist
' works.
733 The real work is done by the dynamically named zipdistfile_target()
734 method, zipdist should have that as a dependency.
741 return <<'MAKE_FRAG';
742 zipdist
: $(DISTVNAME
).zip
747 =item B<tarfile_target>
749 my $make_frag = $MM->tarfile_target;
751 The name of this target is the name of the tarball generated by
752 tardist. This target does the actual work of turning the distdir into
760 return <<'MAKE_FRAG';
761 $(DISTVNAME).tar$(SUFFIX) : distdir
764 $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME)
765 $(RM_RF) $(DISTVNAME)
766 $(COMPRESS) $(DISTVNAME).tar
773 my $make_frag = $MM->zipfile_target;
775 The name of this target is the name of the zip file generated by
776 zipdist. This target does the actual work of turning the distdir into
784 return <<'MAKE_FRAG
';
785 $(DISTVNAME).zip : distdir
787 $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME)
788 $(RM_RF) $(DISTVNAME)
793 =item uutardist_target
795 my $make_frag = $MM->uutardist_target;
797 Converts the tarfile into a uuencoded file
801 sub uutardist_target {
804 return <<'MAKE_FRAG';
805 uutardist
: $(DISTVNAME
).tar
$(SUFFIX
)
806 uuencode
$(DISTVNAME
).tar
$(SUFFIX
) $(DISTVNAME
).tar
$(SUFFIX
) > $(DISTVNAME
).tar
$(SUFFIX
)_uu
813 my $make_frag = $MM->shdist_target;
815 Converts the distdir into a shell archive.
822 return <<'MAKE_FRAG';
825 $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar
826 $(RM_RF) $(DISTVNAME)
834 Used by some OS' to define DL_FUNCS and DL_VARS and write the *.exp files.
836 Normally just returns an empty string.
847 Defines targets for bootstrap files.
852 my($self, %attribs) = @_;
855 ' unless $self->has_link_code();
857 my $target = $Is_VMS ? '$(MMS$TARGET)' : '$@';
859 return sprintf <<'MAKE_FRAG
', ($target) x 5;
860 BOOTSTRAP = $(BASEEXT).bs
862 # As Mkbootstrap might not write a file (if none is required)
863 # we use touch to prevent make continually trying to remake it.
864 # The DynaLoader only reads a non-empty file.
865 $(BOOTSTRAP) : $(FIRST_MAKEFILE) $(BOOTDEP) $(INST_ARCHAUTODIR)$(DFSEP).exists
866 $(NOECHO) $(ECHO) "Running Mkbootstrap for $(NAME) ($(BSLOADLIBS))"
867 $(NOECHO) $(PERLRUN) \
868 "-MExtUtils::Mkbootstrap" \
869 -e "Mkbootstrap('$(BASEEXT
)','$(BSLOADLIBS
)');"
870 $(NOECHO) $(TOUCH) %s
871 $(CHMOD) $(PERM_RW) %s
873 $(INST_BOOT) : $(BOOTSTRAP) $(INST_ARCHAUTODIR)$(DFSEP).exists
874 $(NOECHO) $(RM_RF) %s
875 - $(CP) $(BOOTSTRAP) %s
876 $(CHMOD) $(PERM_RW) %s
880 =item dynamic_lib (o)
882 Defines how to produce the *.so (or equivalent) files.
887 my($self, %attribs) = @_;
888 return '' unless $self->needs_linking(); #might be because of a subdir
890 return '' unless $self->has_link_code;
892 my($otherldflags) = $attribs{OTHERLDFLAGS} || "";
893 my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP} || "";
894 my($armaybe) = $attribs{ARMAYBE} || $self->{ARMAYBE} || ":";
895 my($ldfrom) = '$(LDFROM
)';
896 $armaybe = 'ar
' if ($Is_OSF and $armaybe eq ':');
898 my $ld_opt = $Is_OS2 ? '$(OPTIMIZE
) ' : ''; # Useful on other systems too?
899 my $ld_fix = $Is_OS2 ? '|| ( $(RM_F
) $@
&& sh
-c false
)' : '';
901 # This section creates the dynamically loadable $(INST_DYNAMIC)
902 # from $(OBJECT) and possibly $(MYEXTLIB).
903 ARMAYBE
= '.$armaybe.'
904 OTHERLDFLAGS
= '.$ld_opt.$otherldflags.'
905 INST_DYNAMIC_DEP
= '.$inst_dynamic_dep.'
906 INST_DYNAMIC_FIX
= '.$ld_fix.'
908 $(INST_DYNAMIC
): $(OBJECT
) $(MYEXTLIB
) $(BOOTSTRAP
) $(INST_ARCHAUTODIR
)$(DFSEP
).exists $(EXPORT_LIST
) $(PERL_ARCHIVE
) $(PERL_ARCHIVE_AFTER
) $(INST_DYNAMIC_DEP
)
910 if ($armaybe ne ':'){
911 $ldfrom = 'tmp
$(LIB_EXT
)';
912 push(@m,' $(ARMAYBE
) cr
'.$ldfrom.' $(OBJECT
)'."\n");
913 push(@m,' $(RANLIB
) '."$ldfrom\n");
915 $ldfrom = "-all $ldfrom -none" if $Is_OSF;
917 # The IRIX linker doesn't
use LD_RUN_PATH
918 my $ldrun = $Is_IRIX && $self->{LD_RUN_PATH
} ?
919 qq{-rpath
"$self->{LD_RUN_PATH}"} : '';
921 # For example in AIX the shared objects/libraries from previous builds
922 # linger quite a while in the shared dynalinker cache even when nobody
923 # is using them. This is painful if one for instance tries to restart
924 # a failed build because the link command will fail unnecessarily 'cos
925 # the shared object/library is 'busy'.
929 my $libs = '$(LDLOADLIBS)';
931 if (($Is_NetBSD || $Is_Interix) && $Config{'useshrplib'}) {
932 # Use nothing on static perl platforms, and to the flags needed
933 # to link against the shared libperl library on shared perl
934 # platforms. We peek at lddlflags to see if we need -Wl,-R
935 # or -R to add paths to the run-time library search path.
936 if ($Config{'lddlflags'} =~ /-Wl,-R/) {
937 $libs .= ' -L$(PERL_INC) -Wl,-R$(INSTALLARCHLIB)/CORE -Wl,-R$(PERL_ARCHLIB)/CORE -lperl';
938 } elsif ($Config{'lddlflags'} =~ /-R/) {
939 $libs .= ' -L$(PERL_INC) -R$(INSTALLARCHLIB)/CORE -R$(PERL_ARCHLIB)/CORE -lperl';
943 my $ld_run_path_shell = "";
944 if ($self->{LD_RUN_PATH
} ne "") {
945 $ld_run_path_shell = 'LD_RUN_PATH="$(LD_RUN_PATH)" ';
948 push @m, sprintf <<'MAKE', $ld_run_path_shell, $ldrun, $ldfrom, $libs;
949 %s$(LD) %s $(LDDLFLAGS) %s $(OTHERLDFLAGS) -o $@ $(MYEXTLIB) \
950 $(PERL_ARCHIVE) %s $(PERL_ARCHIVE_AFTER) $(EXPORT_LIST) \
955 $(CHMOD) $(PERM_RWX) $@
963 Deprecated method. Use libscan instead.
968 my($self,$path) = @_;
974 Called by init_others, and calls ext ExtUtils::Liblist. See
975 L<ExtUtils::Liblist> for details.
980 my($self,$libs) = @_;
981 require ExtUtils
::Liblist
;
982 $self->ext($libs, $Verbose);
987 Finds the executables PERL and FULLPERL
992 my($self, $ver, $names, $dirs, $trace) = @_;
995 print "Looking for perl $ver by these names:
1002 my $stderr_duped = 0;
1005 if( open(STDERR_COPY
, '>&STDERR') ) {
1010 find_perl() can't dup STDERR: $!
1011 You might see some garbage while we search for Perl
1016 foreach $name (@
$names){
1017 foreach $dir (@
$dirs){
1018 next unless defined $dir; # $self->{PERL_SRC} may be undefined
1020 if ($self->file_name_is_absolute($name)) { # /foo/bar
1022 } elsif ($self->canonpath($name) eq
1023 $self->canonpath(basename
($name))) { # foo
1024 $abs = $self->catfile($dir, $name);
1026 $abs = $self->catfile($Curdir, $name);
1028 print "Checking $abs\n" if ($trace >= 2);
1029 next unless $self->maybe_command($abs);
1030 print "Executing $abs\n" if ($trace >= 2);
1032 my $version_check = qq{$abs -le "require $ver; print qq{VER_OK}"};
1033 # To avoid using the unportable 2>&1 to supress STDERR,
1034 # we close it before running the command.
1035 # However, thanks to a thread library bug in many BSDs
1036 # ( http://www.freebsd.org/cgi/query-pr.cgi?pr=51535 )
1037 # we cannot use the fancier more portable way in here
1038 # but instead need to use the traditional 2>&1 construct.
1040 $val = `$version_check 2>&1`;
1042 close STDERR
if $stderr_duped;
1043 $val = `$version_check`;
1044 open STDERR
, '>&STDERR_COPY' if $stderr_duped;
1047 if ($val =~ /^VER_OK/) {
1048 print "Using PERL=$abs\n" if $trace;
1050 } elsif ($trace >= 2) {
1051 print "Result: '$val'\n";
1055 print STDOUT
"Unable to find a perl $ver (by these names: @$names, in these dirs: @$dirs)\n";
1056 0; # false and not empty
1064 Inserts the sharpbang or equivalent magic number to a set of @files.
1068 sub fixin
{ # stolen from the pink Camel book, more or less
1069 my($self, @files) = @_;
1071 my($does_shbang) = $Config{'sharpbang'} =~ /^\s*\#\!/;
1072 for my $file (@files) {
1073 my $file_new = "$file.new";
1074 my $file_bak = "$file.bak";
1078 open(FIXIN
, $file) or croak
"Can't process '$file': $!";
1080 chomp(my $line = <FIXIN
>);
1081 next unless $line =~ s/^\s*\#!\s*//; # Not a shbang file.
1082 # Now figure out the interpreter name.
1083 my($cmd,$arg) = split ' ', $line, 2;
1086 # Now look (in reverse) for interpreter in absolute PATH (unless perl).
1088 if ($cmd eq "perl") {
1089 if ($Config{startperl
} =~ m
,^\#
!.*/perl
,) {
1090 $interpreter = $Config{startperl
};
1091 $interpreter =~ s
,^\#
!,,;
1093 $interpreter = $Config{perlpath
};
1096 my(@absdirs) = reverse grep {$self->file_name_is_absolute} $self->path;
1099 foreach $dir (@absdirs) {
1100 if ($self->maybe_command($cmd)) {
1101 warn "Ignoring $interpreter in $file\n" if $Verbose && $interpreter;
1102 $interpreter = $self->catfile($dir,$cmd);
1106 # Figure out how to invoke interpreter on this machine.
1110 print STDOUT
"Changing sharpbang in $file to $interpreter" if $Verbose;
1111 # this is probably value-free on DOSISH platforms
1113 $shb .= "$Config{'sharpbang'}$interpreter";
1114 $shb .= ' ' . $arg if defined $arg;
1118 eval 'exec $interpreter $arg -S \$0 \${1+"\$\@"}'
1119 if 0; # not running under some shell
1120 } unless $Is_Win32; # this won't work on win32, so don't
1122 warn "Can't find $cmd in PATH, $file unchanged"
1127 unless ( open(FIXOUT
,">$file_new") ) {
1128 warn "Can't create new $file: $!\n";
1132 # Print out the new #! line (or equivalent).
1135 print FIXOUT
$shb, <FIXIN
>;
1139 chmod 0666, $file_bak;
1141 unless ( _rename
($file, $file_bak) ) {
1142 warn "Can't rename $file to $file_bak: $!";
1145 unless ( _rename
($file_new, $file) ) {
1146 warn "Can't rename $file_new to $file: $!";
1147 unless ( _rename
($file_bak, $file) ) {
1148 warn "Can't rename $file_bak back to $file either: $!";
1149 warn "Leaving $file renamed as $file_bak\n";
1155 close(FIXIN
) if fileno(FIXIN
);
1156 system("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';;
1162 my($old, $new) = @_;
1164 foreach my $file ($old, $new) {
1165 if( $Is_VMS and basename
($file) !~ /\./ ) {
1166 # rename() in 5.8.0 on VMS will not rename a file if it
1167 # does not contain a dot yet it returns success.
1172 return rename($old, $new);
1178 Writes an empty FORCE: target.
1184 '# Phony target to force checking subdirectories.
1192 Guess the name of this package by examining the working directory's
1193 name. MakeMaker calls this only if the developer has not supplied a
1203 my $name = basename
(cwd
());
1204 $name =~ s
|[\
-_
][\d\
.\
-]+\z
||; # this is new with MM 5.00, we
1205 # strip minus or underline
1206 # followed by a float or some such
1207 print "Warning: Guessing NAME [$name] from current directory name.\n";
1213 Returns true if C, XS, MYEXTLIB or similar objects exist within this
1214 object that need a compiler. Does not descend into subdirectories as
1215 needs_linking() does.
1221 return $self->{HAS_LINK_CODE
} if defined $self->{HAS_LINK_CODE
};
1222 if ($self->{OBJECT
} or @
{$self->{C
} || []} or $self->{MYEXTLIB
}){
1223 $self->{HAS_LINK_CODE
} = 1;
1226 return $self->{HAS_LINK_CODE
} = 0;
1232 Scans the directory structure and initializes DIR, XS, XS_FILES, PM,
1233 C, C_FILES, O_FILES, H, H_FILES, PL_FILES, MAN*PODS, EXE_FILES.
1235 Called by init_main.
1239 sub init_dirscan
{ # --- File and Directory Lists (.xs .pm .pod etc)
1241 my($name, %dir, %xs, %c, %h, %pl_files, %manifypods);
1244 my %ignore = map {( $_ => 1 )} qw(Makefile.PL Build.PL test.pl t);
1246 # ignore the distdir
1247 $Is_VMS ?
$ignore{"$self->{DISTVNAME}.dir"} = 1
1248 : $ignore{$self->{DISTVNAME
}} = 1;
1250 @ignore{map lc, keys %ignore} = values %ignore if $Is_VMS;
1252 foreach $name ($self->lsdir($Curdir)){
1253 next if $name =~ /\#/;
1254 next if $name eq $Curdir or $name eq $Updir or $ignore{$name};
1255 next unless $self->libscan($name);
1257 next if -l
$name; # We do not support symlinks at all
1258 next if $self->{NORECURS
};
1259 $dir{$name} = $name if (-f
$self->catfile($name,"Makefile.PL"));
1260 } elsif ($name =~ /\.xs\z/){
1261 my($c); ($c = $name) =~ s/\.xs\z/.c/;
1264 } elsif ($name =~ /\.c(pp|xx|c)?\z/i){ # .c .C .cpp .cxx .cc
1266 unless $name =~ m/perlmain\.c/; # See MAP_TARGET
1267 } elsif ($name =~ /\.h\z/i){
1269 } elsif ($name =~ /\.PL\z/) {
1270 ($pl_files{$name} = $name) =~ s/\.PL\z// ;
1271 } elsif (($Is_VMS || $Is_Dos) && $name =~ /[._]pl$/i) {
1272 # case-insensitive filesystem, one dot per name, so foo.h.PL
1273 # under Unix appears as foo.h_pl under VMS or fooh.pl on Dos
1274 local($/); open(PL
,$name); my $txt = <PL
>; close PL
;
1275 if ($txt =~ /Extracting \S+ \(with variable substitutions/) {
1276 ($pl_files{$name} = $name) =~ s/[._]pl\z//i ;
1279 $pm{$name} = $self->catfile($self->{INST_LIBDIR
},$name);
1281 } elsif ($name =~ /\.(p[ml]|pod)\z/){
1282 $pm{$name} = $self->catfile($self->{INST_LIBDIR
},$name);
1286 # Some larger extensions often wish to install a number of *.pm/pl
1287 # files into the library in various locations.
1289 # The attribute PMLIBDIRS holds an array reference which lists
1290 # subdirectories which we should search for library files to
1291 # install. PMLIBDIRS defaults to [ 'lib', $self->{BASEEXT} ]. We
1292 # recursively search through the named directories (skipping any
1293 # which don't exist or contain Makefile.PL files).
1295 # For each *.pm or *.pl file found $self->libscan() is called with
1296 # the default installation path in $_[1]. The return value of
1297 # libscan defines the actual installation location. The default
1298 # libscan function simply returns the path. The file is skipped
1299 # if libscan returns false.
1301 # The default installation location passed to libscan in $_[1] is:
1303 # ./*.pm => $(INST_LIBDIR)/*.pm
1304 # ./xyz/... => $(INST_LIBDIR)/xyz/...
1305 # ./lib/... => $(INST_LIB)/...
1307 # In this way the 'lib' directory is seen as the root of the actual
1308 # perl library whereas the others are relative to INST_LIBDIR
1309 # (which includes PARENT_NAME). This is a subtle distinction but one
1310 # that's important for nested modules.
1312 unless( $self->{PMLIBDIRS
} ) {
1314 # Avoid logical name vs directory collisions
1315 $self->{PMLIBDIRS
} = ['./lib', "./$self->{BASEEXT}"];
1318 $self->{PMLIBDIRS
} = ['lib', $self->{BASEEXT
}];
1322 #only existing directories that aren't in $dir are allowed
1324 # Avoid $_ wherever possible:
1325 # @{$self->{PMLIBDIRS}} = grep -d && !$dir{$_}, @{$self->{PMLIBDIRS}};
1326 my (@pmlibdirs) = @
{$self->{PMLIBDIRS
}};
1328 @
{$self->{PMLIBDIRS
}} = ();
1329 foreach $pmlibdir (@pmlibdirs) {
1330 -d
$pmlibdir && !$dir{$pmlibdir} && push @
{$self->{PMLIBDIRS
}}, $pmlibdir;
1333 if (@
{$self->{PMLIBDIRS
}}){
1334 print "Searching PMLIBDIRS: @{$self->{PMLIBDIRS}}\n"
1337 File
::Find
::find
(sub {
1339 unless ($self->libscan($_)){
1340 $File::Find
::prune
= 1;
1345 return if /~$/; # emacs temp files
1346 return if /,v$/; # RCS files
1348 my $path = $File::Find
::name
;
1349 my $prefix = $self->{INST_LIBDIR
};
1352 $prefix = $self->{INST_LIB
}
1353 if ($striplibpath = $path) =~ s
:^(\W
*)lib\W
:$1:i
;
1355 my($inst) = $self->catfile($prefix,$striplibpath);
1356 local($_) = $inst; # for backwards compatibility
1357 $inst = $self->libscan($inst);
1358 print "libscan($path) => '$inst'\n" if ($Verbose >= 2);
1359 return unless $inst;
1361 }, @
{$self->{PMLIBDIRS
}});
1364 $self->{PM
} ||= \
%pm;
1365 $self->{PL_FILES
} ||= \
%pl_files;
1367 $self->{DIR
} ||= [sort keys %dir];
1369 $self->{XS
} ||= \
%xs;
1370 $self->{C
} ||= [sort keys %c];
1371 my @o_files = @
{$self->{C
}};
1372 $self->{O_FILES
} = [grep s/\.c(pp|xx|c)?\z/$self->{OBJ_EXT}/i, @o_files];
1374 $self->{H
} ||= [sort keys %h];
1376 # Set up names of manual pages to generate from pods
1378 foreach my $man (qw(MAN1 MAN3)) {
1379 unless ($self->{"${man}PODS"}) {
1380 $self->{"${man}PODS"} = {};
1381 $pods{$man} = 1 unless
1382 $self->{"INSTALL${man}DIR"} =~ /^(none|\s*)$/;
1387 if ( exists $self->{EXE_FILES
} ) {
1388 foreach $name (@
{$self->{EXE_FILES
}}) {
1391 if (open(FH
,"<$name")) {
1393 if (/^=(?:head\d+|item|pod)\b/) {
1400 # If it doesn't exist yet, we assume, it has pods in it
1405 $self->{MAN1PODS
}->{$name} =
1406 $self->catfile("\$(INST_MAN1DIR)", basename
($name).".\$(MAN1EXT)");
1412 my %manifypods = (); # we collect the keys first, i.e. the files
1413 # we have to convert to pod
1414 foreach $name (keys %{$self->{PM
}}) {
1415 if ($name =~ /\.pod\z/ ) {
1416 $manifypods{$name} = $self->{PM
}{$name};
1417 } elsif ($name =~ /\.p[ml]\z/ ) {
1420 if (open(FH
,"<$name")) {
1422 if (/^=head1\s+\w+/) {
1432 $manifypods{$name} = $self->{PM
}{$name};
1437 # Remove "Configure.pm" and similar, if it's not the only pod listed
1438 # To force inclusion, just name it "Configure.pod", or override
1440 foreach $name (keys %manifypods) {
1441 if ($self->{PERL_CORE
} and $name =~ /(config|setup).*\.pm/is) {
1442 delete $manifypods{$name};
1445 my($manpagename) = $name;
1446 $manpagename =~ s/\.p(od|m|l)\z//;
1447 # everything below lib is ok
1448 unless($manpagename =~ s!^\W*lib\W+!!s) {
1449 $manpagename = $self->catfile(
1450 split(/::/,$self->{PARENT_NAME
}),$manpagename
1454 $manpagename = $self->replace_manpage_separator($manpagename);
1455 $self->{MAN3PODS
}->{$name} =
1456 $self->catfile("\$(INST_MAN3DIR)", "$manpagename.\$(MAN3EXT)");
1462 =item init_DIRFILESEP
1464 Using / for Unix. Called by init_main.
1468 sub init_DIRFILESEP
{
1471 $self->{DIRFILESEP
} = '/';
1477 Initializes AR, AR_STATIC_ARGS, BASEEXT, CONFIG, DISTNAME, DLBASE,
1478 EXE_EXT, FULLEXT, FULLPERL, FULLPERLRUN, FULLPERLRUNINST, INST_*,
1479 INSTALL*, INSTALLDIRS, LIB_EXT, LIBPERL_A, MAP_TARGET, NAME,
1480 OBJ_EXT, PARENT_NAME, PERL, PERL_ARCHLIB, PERL_INC, PERL_LIB,
1481 PERL_SRC, PERLRUN, PERLRUNINST, PREFIX, VERSION,
1482 VERSION_SYM, XS_VERSION.
1489 # --- Initialize Module Name and Paths
1491 # NAME = Foo::Bar::Oracle
1492 # FULLEXT = Foo/Bar/Oracle
1494 # PARENT_NAME = Foo::Bar
1496 ### ($self->{FULLEXT} =
1497 ### $self->{NAME}) =~ s!::!/!g ; #eg. BSD/Foo/Socket
1498 $self->{FULLEXT
} = $self->catdir(split /::/, $self->{NAME
});
1501 # Copied from DynaLoader:
1503 my(@modparts) = split(/::/,$self->{NAME
});
1504 my($modfname) = $modparts[-1];
1506 # Some systems have restrictions on files names for DLL's etc.
1507 # mod2fname returns appropriate file base name (typically truncated)
1508 # It may also edit @modparts if required.
1509 if (defined &DynaLoader
::mod2fname
) {
1510 $modfname = &DynaLoader
::mod2fname
(\
@modparts);
1513 ($self->{PARENT_NAME
}, $self->{BASEEXT
}) = $self->{NAME
} =~ m!(?:([\w:]+)::)?(\w+)\z! ;
1514 $self->{PARENT_NAME
} ||= '';
1516 if (defined &DynaLoader
::mod2fname
) {
1517 # As of 5.001m, dl_os2 appends '_'
1518 $self->{DLBASE
} = $modfname;
1520 $self->{DLBASE
} = '$(BASEEXT)';
1524 # --- Initialize PERL_LIB, PERL_SRC
1526 # *Real* information: where did we get these two from? ...
1527 my $inc_config_dir = dirname
($INC{'Config.pm'});
1528 my $inc_carp_dir = dirname
($INC{'Carp.pm'});
1530 unless ($self->{PERL_SRC
}){
1532 foreach $dir ($Updir,
1533 $self->catdir($Updir,$Updir),
1534 $self->catdir($Updir,$Updir,$Updir),
1535 $self->catdir($Updir,$Updir,$Updir,$Updir),
1536 $self->catdir($Updir,$Updir,$Updir,$Updir,$Updir))
1539 -f
$self->catfile($dir,"config_h.SH")
1541 -f
$self->catfile($dir,"perl.h")
1543 -f
$self->catfile($dir,"lib","Exporter.pm")
1545 $self->{PERL_SRC
}=$dir ;
1551 warn "PERL_CORE is set but I can't find your PERL_SRC!\n" if
1552 $self->{PERL_CORE
} and !$self->{PERL_SRC
};
1554 if ($self->{PERL_SRC
}){
1555 $self->{PERL_LIB
} ||= $self->catdir("$self->{PERL_SRC}","lib");
1557 if (defined $Cross::platform
) {
1558 $self->{PERL_ARCHLIB
} =
1559 $self->catdir("$self->{PERL_SRC}","xlib",$Cross::platform
);
1561 $self->catdir("$self->{PERL_SRC}","xlib",$Cross::platform
,
1562 $Is_Win32?
("CORE"):());
1565 $self->{PERL_ARCHLIB
} = $self->{PERL_LIB
};
1566 $self->{PERL_INC
} = ($Is_Win32) ?
1567 $self->catdir($self->{PERL_LIB
},"CORE") : $self->{PERL_SRC
};
1570 # catch a situation that has occurred a few times in the past:
1572 -s
$self->catfile($self->{PERL_SRC
},'cflags')
1576 -s
$self->catfile($self->{PERL_SRC
},'perlshr_attr.opt')
1581 You cannot build extensions below the perl source tree after executing
1582 a
'make clean' in the perl source tree
.
1584 To rebuild extensions distributed with the perl source you should
1585 simply Configure
(to include those extensions
) and then build perl as
1586 normal
. After installing perl the source tree can be deleted
. It is
1587 not needed
for building extensions by running
'perl Makefile.PL'
1588 usually without extra arguments
.
1590 It is recommended that you
unpack and build additional extensions away
1591 from the perl source tree
.
1595 # we should also consider $ENV{PERL5LIB} here
1596 my $old = $self->{PERL_LIB
} || $self->{PERL_ARCHLIB
} || $self->{PERL_INC
};
1597 $self->{PERL_LIB
} ||= $Config{privlibexp
};
1598 $self->{PERL_ARCHLIB
} ||= $Config{archlibexp
};
1599 $self->{PERL_INC
} = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
1602 if (not -f
($perl_h = $self->catfile($self->{PERL_INC
},"perl.h"))
1604 # Maybe somebody tries to build an extension with an
1605 # uninstalled Perl outside of Perl build tree
1607 for my $dir (@INC) {
1608 $found = $dir, last if -e
$self->catdir($dir, "Config.pm");
1611 my $inc = dirname
$found;
1612 if (-e
$self->catdir($inc, "perl.h")) {
1613 $self->{PERL_LIB
} = $found;
1614 $self->{PERL_ARCHLIB
} = $found;
1615 $self->{PERL_INC
} = $inc;
1616 $self->{UNINSTALLED_PERL
} = 1;
1618 ... Detected uninstalled Perl. Trying to continue.
1625 # We get SITELIBEXP and SITEARCHEXP directly via
1626 # Get_from_Config. When we are running standard modules, these
1627 # won't matter, we will set INSTALLDIRS to "perl". Otherwise we
1628 # set it to "site". I prefer that INSTALLDIRS be set from outside
1630 $self->{INSTALLDIRS
} ||= "site";
1632 $self->{MAN1EXT
} ||= $Config{man1ext
};
1633 $self->{MAN3EXT
} ||= $Config{man3ext
};
1635 # Get some stuff out of %Config if we haven't yet done so
1636 print STDOUT
"CONFIG must be an array ref\n"
1637 if ($self->{CONFIG
} and ref $self->{CONFIG
} ne 'ARRAY');
1638 $self->{CONFIG
} = [] unless (ref $self->{CONFIG
});
1639 push(@
{$self->{CONFIG
}}, @ExtUtils::MakeMaker
::Get_from_Config
);
1640 push(@
{$self->{CONFIG
}}, 'shellflags') if $Config{shellflags
};
1642 foreach my $m (@
{$self->{CONFIG
}}){
1643 next if $once_only{$m};
1644 print STDOUT
"CONFIG key '$m' does not exist in Config.pm\n"
1645 unless exists $Config{$m};
1646 $self->{uc $m} ||= $Config{$m};
1650 # This is too dangerous:
1651 # if ($^O eq "next") {
1652 # $self->{AR} = "libtool";
1653 # $self->{AR_STATIC_ARGS} = "-o";
1655 # But I leave it as a placeholder
1657 $self->{AR_STATIC_ARGS
} ||= "cr";
1659 # These should never be needed
1660 $self->{OBJ_EXT
} ||= '.o';
1661 $self->{LIB_EXT
} ||= '.a';
1663 $self->{MAP_TARGET
} ||= "perl";
1665 $self->{LIBPERL_A
} ||= "libperl$self->{LIB_EXT}";
1667 # make a simple check if we find Exporter
1668 warn "Warning: PERL_LIB ($self->{PERL_LIB}) seems not to be a perl library directory
1669 (Exporter.pm not found)"
1670 unless -f
$self->catfile("$self->{PERL_LIB}","Exporter.pm") ||
1671 $self->{NAME
} eq "ExtUtils::MakeMaker";
1676 Initializes EXTRALIBS, BSLOADLIBS, LDLOADLIBS, LIBS, LD_RUN_PATH, LD,
1677 OBJECT, BOOTDEP, PERLMAINCC, LDFROM, LINKTYPE, SHELL, NOOP,
1678 FIRST_MAKEFILE, MAKEFILE_OLD, NOECHO, RM_F, RM_RF, TEST_F,
1679 TOUCH, CP, MV, CHMOD, UMASK_NULL, ECHO, ECHO_N
1683 sub init_others
{ # --- Initialize Other Attributes
1686 $self->{LD
} ||= 'ld';
1688 # Compute EXTRALIBS, BSLOADLIBS and LDLOADLIBS from $self->{LIBS}
1689 # Lets look at $self->{LIBS} carefully: It may be an anon array, a string or
1690 # undefined. In any case we turn it into an anon array:
1692 # May check $Config{libs} too, thus not empty.
1693 $self->{LIBS
} = [$self->{LIBS
}] unless ref $self->{LIBS
};
1695 $self->{LIBS
} = [''] unless @
{$self->{LIBS
}} && defined $self->{LIBS
}[0];
1696 $self->{LD_RUN_PATH
} = "";
1698 foreach $libs ( @
{$self->{LIBS
}} ){
1699 $libs =~ s/^\s*(.*\S)\s*$/$1/; # remove leading and trailing whitespace
1700 my(@libs) = $self->extliblist($libs);
1701 if ($libs[0] or $libs[1] or $libs[2]){
1702 # LD_RUN_PATH now computed by ExtUtils::Liblist
1703 ($self->{EXTRALIBS
}, $self->{BSLOADLIBS
},
1704 $self->{LDLOADLIBS
}, $self->{LD_RUN_PATH
}) = @libs;
1709 if ( $self->{OBJECT
} ) {
1710 $self->{OBJECT
} =~ s!\.o(bj)?\b!\$(OBJ_EXT)!g;
1712 # init_dirscan should have found out, if we have C files
1713 $self->{OBJECT
} = "";
1714 $self->{OBJECT
} = '$(BASEEXT)$(OBJ_EXT)' if @
{$self->{C
}||[]};
1716 $self->{OBJECT
} =~ s/\n+/ \\\n\t/g;
1717 $self->{BOOTDEP
} = (-f
"$self->{BASEEXT}_BS") ?
"$self->{BASEEXT}_BS" : "";
1718 $self->{PERLMAINCC
} ||= '$(CC)';
1719 $self->{LDFROM
} = '$(OBJECT)' unless $self->{LDFROM
};
1721 # Sanity check: don't define LINKTYPE = dynamic if we're skipping
1722 # the 'dynamic' section of MM. We don't have this problem with
1723 # 'static', since we either must use it (%Config says we can't
1724 # use dynamic loading) or the caller asked for it explicitly.
1725 if (!$self->{LINKTYPE
}) {
1726 $self->{LINKTYPE
} = $self->{SKIPHASH
}{'dynamic'}
1728 : ($Config{usedl
} ?
'dynamic' : 'static');
1731 $self->{NOOP
} ||= '$(SHELL) -c true';
1732 $self->{NOECHO
} = '@' unless defined $self->{NOECHO
};
1734 $self->{FIRST_MAKEFILE
} ||= $self->{MAKEFILE
} || 'Makefile';
1735 $self->{MAKEFILE
} ||= $self->{FIRST_MAKEFILE
};
1736 $self->{MAKEFILE_OLD
} ||= $self->{MAKEFILE
}.'.old';
1737 $self->{MAKE_APERL_FILE
} ||= $self->{MAKEFILE
}.'.aperl';
1739 # Some makes require a wrapper around macros passed in on the command
1741 $self->{MACROSTART
} ||= '';
1742 $self->{MACROEND
} ||= '';
1744 # Not everybody uses -f to indicate "use this Makefile instead"
1745 $self->{USEMAKEFILE
} ||= '-f';
1747 $self->{SHELL
} ||= $Config{sh
} || '/bin/sh';
1749 $self->{ECHO
} ||= 'echo';
1750 $self->{ECHO_N
} ||= 'echo -n';
1751 $self->{RM_F
} ||= "rm -f";
1752 $self->{RM_RF
} ||= "rm -rf";
1753 $self->{TOUCH
} ||= "touch";
1754 $self->{TEST_F
} ||= "test -f";
1755 $self->{CP
} ||= "cp";
1756 $self->{MV
} ||= "mv";
1757 $self->{CHMOD
} ||= "chmod";
1758 $self->{MKPATH
} ||= '$(ABSPERLRUN) "-MExtUtils::Command" -e mkpath';
1759 $self->{EQUALIZE_TIMESTAMP
} ||=
1760 '$(ABSPERLRUN) "-MExtUtils::Command" -e eqtime';
1762 $self->{UNINST
} ||= 0;
1763 $self->{VERBINST
} ||= 0;
1764 $self->{MOD_INSTALL
} ||=
1765 $self->oneliner(<<'CODE', ['-MExtUtils::Install']);
1766 install({@ARGV}, '$(VERBINST)', 0, '$(UNINST)');
1768 $self->{DOC_INSTALL
} ||=
1769 '$(ABSPERLRUN) "-MExtUtils::Command::MM" -e perllocal_install';
1770 $self->{UNINSTALL
} ||=
1771 '$(ABSPERLRUN) "-MExtUtils::Command::MM" -e uninstall';
1772 $self->{WARN_IF_OLD_PACKLIST
} ||=
1773 '$(ABSPERLRUN) "-MExtUtils::Command::MM" -e warn_if_old_packlist';
1775 q{$(PERLRUN) "-MExtUtils::MY" -e "MY->fixin(shift)"};
1777 $self->{UMASK_NULL
} ||= "umask 0";
1778 $self->{DEV_NULL
} ||= "> /dev/null 2>&1";
1786 Unix has no need of special linker flags.
1792 $self->{PERL_ARCHIVE
} ||= '';
1793 $self->{PERL_ARCHIVE_AFTER
} ||= '';
1794 $self->{EXPORT_LIST
} ||= '';
1811 # The user who requests an installation directory explicitly
1812 # should not have to tell us an architecture installation directory
1813 # as well. We look if a directory exists that is named after the
1814 # architecture. If not we take it as a sign that it should be the
1815 # same as the requested installation directory. Otherwise we take
1817 for my $libpair ({l
=>"privlib", a
=>"archlib"},
1818 {l
=>"sitelib", a
=>"sitearch"},
1819 {l
=>"vendorlib", a
=>"vendorarch"},
1822 my $lib = "install$libpair->{l}";
1824 my $Arch = uc "install$libpair->{a}";
1825 if( $self->{$Lib} && ! $self->{$Arch} ){
1826 my($ilib) = $Config{$lib};
1828 $self->prefixify($Arch,$ilib,$self->{$Lib});
1830 unless (-d
$self->{$Arch}) {
1831 print STDOUT
"Directory $self->{$Arch} not found\n"
1833 $self->{$Arch} = $self->{$Lib};
1835 print STDOUT
"Defaulting $Arch to $self->{$Arch}\n" if $Verbose;
1845 Called by init_main. Sets up ABSPERL, PERL, FULLPERL and all the
1846 *PERLRUN* permutations.
1848 PERL is allowed to be miniperl
1849 FULLPERL must be a complete perl
1851 ABSPERL is PERL converted to an absolute path
1853 *PERLRUN contains everything necessary to run perl, find it's
1856 *PERLRUNINST is *PERLRUN + everything necessary to find the
1857 modules being built.
1865 foreach my $component ($self->{PERL_SRC
}, $self->path(),
1868 push @defpath, $component if defined $component;
1871 # Build up a set of file names (not command names).
1872 my $thisperl = $self->canonpath($^X
);
1873 $thisperl .= $Config{exe_ext
} unless
1874 # VMS might have a file version # at the end
1875 $Is_VMS ?
$thisperl =~ m/$Config{exe_ext}(;\d+)?$/i
1876 : $thisperl =~ m/$Config{exe_ext}$/i;
1878 # We need a relative path to perl when in the core.
1879 $thisperl = $self->abs2rel($thisperl) if $self->{PERL_CORE
};
1881 my @perls = ($thisperl);
1882 push @perls, map { "$_$Config{exe_ext}" }
1883 ('perl', 'perl5', "perl$Config{version}");
1885 # miniperl has priority over all but the cannonical perl when in the
1886 # core. Otherwise its a last resort.
1887 my $miniperl = "miniperl$Config{exe_ext}";
1888 if( $self->{PERL_CORE
} ) {
1889 splice @perls, 1, 0, $miniperl;
1892 push @perls, $miniperl;
1896 $self->find_perl(5.0, \
@perls, \
@defpath, $Verbose );
1897 # don't check if perl is executable, maybe they have decided to
1898 # supply switches with perl
1900 # When built for debugging, VMS doesn't create perl.exe but ndbgperl.exe.
1901 my $perl_name = 'perl';
1902 $perl_name = 'ndbgperl' if $Is_VMS &&
1903 defined $Config{usevmsdebug
} && $Config{usevmsdebug
} eq 'define';
1905 # XXX This logic is flawed. If "miniperl" is anywhere in the path
1906 # it will get confused. It should be fixed to work only on the filename.
1907 # Define 'FULLPERL' to be a non-miniperl (used in test: target)
1908 ($self->{FULLPERL
} = $self->{PERL
}) =~ s/miniperl/$perl_name/i
1909 unless $self->{FULLPERL
};
1911 # Little hack to get around VMS's find_perl putting "MCR" in front
1913 $self->{ABSPERL
} = $self->{PERL
};
1914 my $has_mcr = $self->{ABSPERL
} =~ s/^MCR\s*//;
1915 if( $self->file_name_is_absolute($self->{ABSPERL
}) ) {
1916 $self->{ABSPERL
} = '$(PERL)';
1919 $self->{ABSPERL
} = $self->rel2abs($self->{ABSPERL
});
1920 $self->{ABSPERL
} = 'MCR '.$self->{ABSPERL
} if $has_mcr;
1923 # Are we building the core?
1924 $self->{PERL_CORE
} = $ENV{PERL_CORE
} unless exists $self->{PERL_CORE
};
1925 $self->{PERL_CORE
} = 0 unless defined $self->{PERL_CORE
};
1927 # How do we run perl?
1928 foreach my $perl (qw(PERL FULLPERL ABSPERL)) {
1929 my $run = $perl.'RUN';
1931 $self->{$run} = "\$($perl)";
1933 # Make sure perl can find itself before it's installed.
1934 $self->{$run} .= q{ "-I$(PERL_LIB)" "-I$(PERL_ARCHLIB)"}
1935 if $self->{UNINSTALLED_PERL
} || $self->{PERL_CORE
};
1937 $self->{$perl.'RUNINST'} =
1938 sprintf q{$(%sRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)"}, $perl;
1947 =item platform_constants
1949 Add MM_Unix_VERSION.
1956 $self->{MM_Unix_VERSION} = $VERSION;
1957 $self->{PERL_MALLOC_DEF} = '-DPERL_EXTMALLOC_DEF -Dmalloc=Perl_malloc '.
1958 '-Dfree=Perl_mfree -Drealloc=Perl_realloc '.
1959 '-Dcalloc=Perl_calloc';
1963 sub platform_constants {
1967 foreach my $macro (qw(MM_Unix_VERSION PERL_MALLOC_DEF))
1969 next unless defined $self->{$macro};
1970 $make_frag .= "$macro = $self->{$macro}\n";
1981 Called by init_main. Initializes PERL_*
1988 $self->{PERM_RW
} = 644 unless defined $self->{PERM_RW
};
1989 $self->{PERM_RWX
} = 755 unless defined $self->{PERM_RWX
};
1999 Sets up macros having to do with XS code. Currently just INST_STATIC,
2000 INST_DYNAMIC and INST_BOOT.
2007 if ($self->has_link_code()) {
2008 $self->{INST_STATIC
} =
2009 $self->catfile('$(INST_ARCHAUTODIR)', '$(BASEEXT)$(LIB_EXT)');
2010 $self->{INST_DYNAMIC
} =
2011 $self->catfile('$(INST_ARCHAUTODIR)', '$(DLBASE).$(DLEXT)');
2012 $self->{INST_BOOT
} =
2013 $self->catfile('$(INST_ARCHAUTODIR)', '$(BASEEXT).bs');
2015 $self->{INST_STATIC
} = '';
2016 $self->{INST_DYNAMIC
} = '';
2017 $self->{INST_BOOT
} = '';
2023 Defines the install target.
2028 my($self, %attribs) = @_;
2032 install :: all pure_install doc_install
2035 install_perl :: all pure_perl_install doc_perl_install
2038 install_site :: all pure_site_install doc_site_install
2041 install_vendor :: all pure_vendor_install doc_vendor_install
2044 pure_install :: pure_$(INSTALLDIRS)_install
2047 doc_install :: doc_$(INSTALLDIRS)_install
2050 pure__install : pure_site_install
2051 $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2053 doc__install : doc_site_install
2054 $(NOECHO) $(ECHO) INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
2056 pure_perl_install ::
2057 $(NOECHO) $(MOD_INSTALL) \
2058 read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2059 write }.$self->catfile('$(DESTINSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
2060 $(INST_LIB) $(DESTINSTALLPRIVLIB) \
2061 $(INST_ARCHLIB) $(DESTINSTALLARCHLIB) \
2062 $(INST_BIN) $(DESTINSTALLBIN) \
2063 $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \
2064 $(INST_MAN1DIR) $(DESTINSTALLMAN1DIR) \
2065 $(INST_MAN3DIR) $(DESTINSTALLMAN3DIR)
2066 $(NOECHO) $(WARN_IF_OLD_PACKLIST) \
2067 }.$self->catdir('$(SITEARCHEXP)','auto','$(FULLEXT)').q{
2070 pure_site_install ::
2071 $(NOECHO) $(MOD_INSTALL) \
2072 read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
2073 write }.$self->catfile('$(DESTINSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
2074 $(INST_LIB) $(DESTINSTALLSITELIB) \
2075 $(INST_ARCHLIB) $(DESTINSTALLSITEARCH) \
2076 $(INST_BIN) $(DESTINSTALLSITEBIN) \
2077 $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \
2078 $(INST_MAN1DIR) $(DESTINSTALLSITEMAN1DIR) \
2079 $(INST_MAN3DIR) $(DESTINSTALLSITEMAN3DIR)
2080 $(NOECHO) $(WARN_IF_OLD_PACKLIST) \
2081 }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{
2083 pure_vendor_install ::
2084 $(NOECHO) $(MOD_INSTALL) \
2085 read }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
2086 write }.$self->catfile('$(DESTINSTALLVENDORARCH)','auto','$(FULLEXT)','.packlist').q{ \
2087 $(INST_LIB) $(DESTINSTALLVENDORLIB) \
2088 $(INST_ARCHLIB) $(DESTINSTALLVENDORARCH) \
2089 $(INST_BIN) $(DESTINSTALLVENDORBIN) \
2090 $(INST_SCRIPT) $(DESTINSTALLSCRIPT) \
2091 $(INST_MAN1DIR) $(DESTINSTALLVENDORMAN1DIR) \
2092 $(INST_MAN3DIR) $(DESTINSTALLVENDORMAN3DIR)
2095 $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod
2096 -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB)
2097 -$(NOECHO) $(DOC_INSTALL) \
2098 "Module" "$(NAME)" \
2099 "installed into" "$(INSTALLPRIVLIB)" \
2100 LINKTYPE "$(LINKTYPE)" \
2101 VERSION "$(VERSION)" \
2102 EXE_FILES "$(EXE_FILES)" \
2103 >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{
2106 $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod
2107 -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB)
2108 -$(NOECHO) $(DOC_INSTALL) \
2109 "Module" "$(NAME)" \
2110 "installed into" "$(INSTALLSITELIB)" \
2111 LINKTYPE "$(LINKTYPE)" \
2112 VERSION "$(VERSION)" \
2113 EXE_FILES "$(EXE_FILES)" \
2114 >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{
2116 doc_vendor_install ::
2117 $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod
2118 -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB)
2119 -$(NOECHO) $(DOC_INSTALL) \
2120 "Module" "$(NAME)" \
2121 "installed into" "$(INSTALLVENDORLIB)" \
2122 LINKTYPE "$(LINKTYPE)" \
2123 VERSION "$(VERSION)" \
2124 EXE_FILES "$(EXE_FILES)" \
2125 >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{
2130 uninstall :: uninstall_from_$(INSTALLDIRS)dirs
2133 uninstall_from_perldirs ::
2134 $(NOECHO) $(UNINSTALL) }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{
2136 uninstall_from_sitedirs ::
2137 $(NOECHO) $(UNINSTALL) }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{
2139 uninstall_from_vendordirs ::
2140 $(NOECHO) $(UNINSTALL) }.$self->catfile('$(VENDORARCHEXP)','auto','$(FULLEXT)','.packlist').q{
2146 =item installbin (o)
2148 Defines targets to make and to install EXE_FILES.
2155 return "" unless $self->{EXE_FILES
} && ref $self->{EXE_FILES
} eq "ARRAY";
2156 my @exefiles = @
{$self->{EXE_FILES
}};
2157 return "" unless @exefiles;
2159 @exefiles = map vmsify
($_), @exefiles if $Is_VMS;
2162 for my $from (@exefiles) {
2163 my($path)= $self->catfile('$(INST_SCRIPT)', basename
($from));
2165 local($_) = $path; # for backwards compatibility
2166 my $to = $self->libscan($path);
2167 print "libscan($from) => '$to'\n" if ($Verbose >=2);
2169 $to = vmsify
($to) if $Is_VMS;
2170 $fromto{$from} = $to;
2172 my @to = values %fromto;
2176 EXE_FILES
= @exefiles
2184 # realclean can get rather large.
2185 push @m, map "\t$_\n", $self->split_command('$(RM_F)', @to);
2189 # A target for each exe file.
2190 while (my($from,$to) = each %fromto) {
2191 last unless defined $from;
2193 push @m, sprintf <<'MAKE', $to, $from, $to, $from, $to, $to, $to;
2194 %s : %s $(FIRST_MAKEFILE) $(INST_SCRIPT)$(DFSEP).exists $(INST_BIN)$(DFSEP).exists
2195 $(NOECHO) $(RM_F) %s
2198 -$(NOECHO) $(CHMOD) $(PERM_RWX) %s
2210 Defines the linkext target which in turn defines the LINKTYPE.
2215 my($self, %attribs) = @_;
2216 # LINKTYPE => static or dynamic or ''
2217 my($linktype) = defined $attribs{LINKTYPE
} ?
2218 $attribs{LINKTYPE
} : '$(LINKTYPE)';
2220 linkext :: $linktype
2227 Takes as arguments a directory name and a regular expression. Returns
2228 all entries in the directory that match the regular expression.
2234 my($dir, $regex) = @_;
2236 my $dh = new DirHandle
;
2237 $dh->open($dir || ".") or return ();
2240 @ls = grep(/$regex/, @ls) if $regex;
2246 Simple subroutine to insert the macros defined by the macro attribute
2252 my($self,%attribs) = @_;
2254 while (($key,$val) = each %attribs){
2255 last unless defined $key;
2256 push @m, "$key = $val\n";
2263 Called by staticmake. Defines how to write the Makefile to produce a
2266 By default the Makefile produced includes all the static extensions in
2267 the perl library. (Purified versions of library files, e.g.,
2268 DynaLoader_pure_p1_c0_032.a are automatically ignored to avoid link errors.)
2273 my($self, %attribs) = @_;
2274 my($makefilename, $searchdirs, $static, $extra, $perlinc, $target, $tmp, $libperl) =
2275 @attribs{qw(MAKE DIRS STAT EXTRA INCL TARGET TMP LIBPERL)};
2278 # --- MakeMaker makeaperl section ---
2279 MAP_TARGET = $target
2280 FULLPERL = $self->{FULLPERL}
2282 return join '', @m if $self->{PARENT
};
2284 my($dir) = join ":", @
{$self->{DIR
}};
2286 unless ($self->{MAKEAPERL
}) {
2288 $(MAP_TARGET) :: static $(MAKE_APERL_FILE)
2289 $(MAKE) $(USEMAKEFILE) $(MAKE_APERL_FILE) $@
2291 $(MAKE_APERL_FILE) : $(FIRST_MAKEFILE) pm_to_blib
2292 $(NOECHO) $(ECHO) Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET)
2293 $(NOECHO) $(PERLRUNINST) \
2294 Makefile.PL DIR=}, $dir, q{ \
2295 MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
2296 MAKEAPERL=1 NORECURS=1 CCCDLFLAGS=};
2302 push @m, " \\\n\t\t$_";
2304 # push @m, map( " \\\n\t\t$_", @ARGV );
2312 my($cccmd, $linkcmd, $lperl);
2315 $cccmd = $self->const_cccmd($libperl);
2316 $cccmd =~ s/^CCCMD\s*=\s*//;
2317 $cccmd =~ s/\$\(INC\)/ "-I$self->{PERL_INC}" /;
2318 $cccmd .= " $Config{cccdlflags}"
2319 if ($Config{useshrplib
} eq 'true');
2320 $cccmd =~ s/\(CC\)/\(PERLMAINCC\)/;
2322 # The front matter of the linkcommand...
2323 $linkcmd = join ' ', "\$(CC)",
2324 grep($_, @Config{qw(ldflags ccdlflags)});
2325 $linkcmd =~ s/\s+/ /g;
2326 $linkcmd =~ s
,(perl\
.exp),\
$(PERL_INC
)/$1,;
2328 # Which *.a files could we make use of...
2331 File
::Find
::find
(sub {
2332 return unless m/\Q$self->{LIB_EXT}\E$/;
2334 # Skip perl's libraries.
2335 return if m/^libperl/ or m/^perl\Q$self->{LIB_EXT}\E$/;
2337 # Skip purified versions of libraries
2338 # (e.g., DynaLoader_pure_p1_c0_032.a)
2339 return if m/_pure_\w+_\w+_\w+\.\w+$/ and -f
"$File::Find::dir/.pure";
2341 if( exists $self->{INCLUDE_EXT
} ){
2346 ($xx = $File::Find
::name
) =~ s
,.*?
/auto/,,s
;
2350 # Throw away anything not explicitly marked for inclusion.
2351 # DynaLoader is implied.
2352 foreach $incl ((@
{$self->{INCLUDE_EXT
}},'DynaLoader')){
2358 return unless $found;
2360 elsif( exists $self->{EXCLUDE_EXT
} ){
2364 ($xx = $File::Find
::name
) =~ s
,.*?
/auto/,,s
;
2368 # Throw away anything explicitly marked for exclusion
2369 foreach $excl (@
{$self->{EXCLUDE_EXT
}}){
2370 return if( $xx eq $excl );
2374 # don't include the installed version of this extension. I
2375 # leave this line here, although it is not necessary anymore:
2376 # I patched minimod.PL instead, so that Miniperl.pm won't
2377 # enclude duplicates
2379 # Once the patch to minimod.PL is in the distribution, I can
2381 return if $File::Find
::name
=~ m
:auto
/$self->{FULLEXT}/$self->{BASEEXT
}$self->{LIB_EXT
}\z
:;
2383 $static{cwd
() . "/" . $_}++;
2384 }, grep( -d
$_, @
{$searchdirs || []}) );
2386 # We trust that what has been handed in as argument, will be buildable
2387 $static = [] unless $static;
2388 @static{@
{$static}} = (1) x @
{$static};
2390 $extra = [] unless $extra && ref $extra eq 'ARRAY';
2391 for (sort keys %static) {
2392 next unless /\Q$self->{LIB_EXT}\E\z/;
2393 $_ = dirname
($_) . "/extralibs.ld";
2397 grep(s/^(.*)/"-I$1"/, @
{$perlinc || []});
2402 # MAP_STATIC doesn't look into subdirs yet. Once "all" is made and we
2403 # regenerate the Makefiles, MAP_STATIC and the dependencies for
2404 # extralibs.all are computed correctly
2406 MAP_LINKCMD = $linkcmd
2407 MAP_PERLINC = @{$perlinc || []}
2409 join(" \\\n\t", reverse sort keys %static), "
2411 MAP_PRELIBS = $Config{perllibs} $Config{cryptlib}
2414 if (defined $libperl) {
2415 ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/;
2417 unless ($libperl && -f
$lperl) { # Ilya's code...
2418 my $dir = $self->{PERL_SRC
} || "$self->{PERL_ARCHLIB}/CORE";
2419 $dir = "$self->{PERL_ARCHLIB}/.." if $self->{UNINSTALLED_PERL
};
2420 $libperl ||= "libperl$self->{LIB_EXT}";
2421 $libperl = "$dir/$libperl";
2422 $lperl ||= "libperl$self->{LIB_EXT}";
2423 $lperl = "$dir/$lperl";
2425 if (! -f
$libperl and ! -f
$lperl) {
2426 # We did not find a static libperl. Maybe there is a shared one?
2428 $lperl = $libperl = "$dir/$Config{libperl}";
2429 # SUNOS ld does not take the full path to a shared library
2430 $libperl = '' if $Is_SunOS4;
2434 print STDOUT
"Warning: $libperl not found
2435 If you're going to build a static perl binary, make sure perl is installed
2436 otherwise ignore this warning\n"
2437 unless (-f
$lperl || defined($self->{PERL_SRC
}));
2440 # SUNOS ld does not take the full path to a shared library
2441 my $llibperl = $libperl ?
'$(MAP_LIBPERL)' : '-lperl';
2444 MAP_LIBPERL = $libperl
2445 LLIBPERL = $llibperl
2449 $(INST_ARCHAUTODIR)/extralibs.all : $(INST_ARCHAUTODIR)$(DFSEP).exists '.join(" \\\n\t", @
$extra).'
2450 $(NOECHO) $(RM_F) $@
2451 $(NOECHO) $(TOUCH) $@
2455 foreach $catfile (@
$extra){
2456 push @m, "\tcat $catfile >> \$\@\n";
2460 \$(MAP_TARGET) :: $tmp/perlmain\$(OBJ_EXT) \$(MAP_LIBPERL) \$(MAP_STATIC) \$(INST_ARCHAUTODIR)/extralibs.all
2461 \$(MAP_LINKCMD) -o \$\@ \$(OPTIMIZE) $tmp/perlmain\$(OBJ_EXT) \$(LDFROM) \$(MAP_STATIC) \$(LLIBPERL) `cat \$(INST_ARCHAUTODIR)/extralibs.all` \$(MAP_PRELIBS)
2462 \$(NOECHO) \$(ECHO) 'To install the new \"\$(MAP_TARGET)\" binary, call'
2463 \$(NOECHO) \$(ECHO) ' \$(MAKE) \$(USEMAKEFILE) $makefilename inst_perl MAP_TARGET=\$(MAP_TARGET)'
2464 \$(NOECHO) \$(ECHO) 'To remove the intermediate files say'
2465 \$(NOECHO) \$(ECHO) ' \$(MAKE) \$(USEMAKEFILE) $makefilename map_clean'
2467 $tmp/perlmain\$(OBJ_EXT): $tmp/perlmain.c
2469 push @m, "\t".$self->cd($tmp, qq[$cccmd "-I\$(PERL_INC)" perlmain
.c
])."\n";
2472 $tmp/perlmain
.c
: $makefilename}, q{
2473 $(NOECHO) $(ECHO) Writing $@
2474 $(NOECHO) $(PERL) $(MAP_PERLINC) "-MExtUtils::Miniperl" \\
2475 -e "writemain(grep s#.*/auto/##s, split(q| |, q|$(MAP_STATIC)|))" > $@t && $(MV) $@t $@
2478 push @m, "\t", q{$(NOECHO) $(PERL) $(INSTALLSCRIPT)/fixpmain
2479 } if (defined (&Dos
::UseLFN
) && Dos
::UseLFN
()==0);
2484 $(NOECHO) $(ECHO) Appending installation info to $(DESTINSTALLARCHLIB)/perllocal.pod
2485 -$(NOECHO) $(MKPATH) $(DESTINSTALLARCHLIB)
2486 -$(NOECHO) $(DOC_INSTALL) \
2487 "Perl binary" "$(MAP_TARGET)" \
2488 MAP_STATIC "$(MAP_STATIC)" \
2489 MAP_EXTRA "`cat $(INST_ARCHAUTODIR)/extralibs.all`" \
2490 MAP_LIBPERL "$(MAP_LIBPERL)" \
2491 >> }.$self->catfile('$(DESTINSTALLARCHLIB)','perllocal.pod').q{
2496 inst_perl: pure_inst_perl doc_inst_perl
2498 pure_inst_perl: $(MAP_TARGET)
2499 }.$self->{CP
}.q{ $(MAP_TARGET) }.$self->catfile('$(DESTINSTALLBIN)','$(MAP_TARGET)').q{
2504 }.$self->{RM_F
}.qq{ $tmp/perlmain\$(OBJ_EXT) $tmp/perlmain
.c \
$(MAP_TARGET
) $makefilename \
$(INST_ARCHAUTODIR
)/extralibs
.all
2512 Defines how to rewrite the Makefile.
2519 # We do not know what target was originally specified so we
2520 # must force a manual rerun to be sure. But as it should only
2521 # happen very rarely it is not a significant problem.
2523 $(OBJECT) : $(FIRST_MAKEFILE)
2525 ' if $self->{OBJECT
};
2527 my $newer_than_target = $Is_VMS ?
'$(MMS$SOURCE_LIST)' : '$?';
2528 my $mpl_args = join " ", map qq["$_"], @ARGV;
2530 $m .= sprintf <<'MAKE_FRAG', $newer_than_target, $mpl_args;
2531 # We take a very conservative approach here, but it's worth it.
2532 # We move Makefile to Makefile.old here to avoid gnu make looping.
2533 $(FIRST_MAKEFILE) : Makefile.PL $(CONFIGDEP)
2534 $(NOECHO) $(ECHO) "Makefile out-of-date with respect to %s"
2535 $(NOECHO) $(ECHO) "Cleaning current config before rebuilding Makefile..."
2536 -$(NOECHO) $(RM_F) $(MAKEFILE_OLD)
2537 -$(NOECHO) $(MV) $(FIRST_MAKEFILE) $(MAKEFILE_OLD)
2538 - $(MAKE) $(USEMAKEFILE
) $(MAKEFILE_OLD
) clean
$(DEV_NULL
)
2539 $(PERLRUN
) Makefile
.PL
%s
2540 $(NOECHO
) $(ECHO
) "==> Your Makefile has been rebuilt. <=="
2541 $(NOECHO
) $(ECHO
) "==> Please rerun the $(MAKE) command. <=="
2552 Returns true, if the argument is likely to be a command.
2557 my($self,$file) = @_;
2558 return $file if -x
$file && ! -d
$file;
2563 =item needs_linking (o)
2565 Does this module need linking? Looks into subdirectory objects (see
2566 also has_link_code())
2573 $caller = (caller(0))[3];
2574 confess
("needs_linking called too early") if
2575 $caller =~ /^ExtUtils::MakeMaker::/;
2576 return $self->{NEEDS_LINKING
} if defined $self->{NEEDS_LINKING
};
2577 if ($self->has_link_code or $self->{MAKEAPERL
}){
2578 $self->{NEEDS_LINKING
} = 1;
2581 foreach $child (keys %{$self->{CHILDREN
}}) {
2582 if ($self->{CHILDREN
}->{$child}->needs_linking) {
2583 $self->{NEEDS_LINKING
} = 1;
2587 return $self->{NEEDS_LINKING
} = 0;
2592 misnamed method (will have to be changed). The MM_Unix method just
2593 returns the argument without further processing.
2595 On VMS used to insure that colons marking targets are preceded by
2596 space - most Unix Makes don't need this, but it's necessary under VMS
2597 to distinguish the target delimiter from a colon appearing as part of
2603 my($self,$text) = @_;
2607 =item parse_abstract
2609 parse a file and return what you think is the ABSTRACT
2613 sub parse_abstract
{
2614 my($self,$parsefile) = @_;
2618 open(FH
,$parsefile) or die "Could not open '$parsefile': $!";
2620 my $package = $self->{DISTNAME
};
2621 $package =~ s/-/::/g;
2623 $inpod = /^=(?!cut)/ ?
1 : /^=cut/ ?
0 : $inpod;
2626 next unless /^($package\s-\s)(.*)/;
2636 parse a file and return what you think is $VERSION in this file set to.
2637 It will return the string "undef" if it can't figure out what $VERSION
2638 is. $VERSION should be for all to see, so our $VERSION or plain $VERSION
2639 are okay, but my $VERSION is not.
2644 my($self,$parsefile) = @_;
2649 open(FH
,$parsefile) or die "Could not open '$parsefile': $!";
2652 $inpod = /^=(?!cut)/ ?
1 : /^=cut/ ?
0 : $inpod;
2653 next if $inpod || /^\s*#/;
2655 next unless /(?<!\\)([\$*])(([\w\:\']*)\bVERSION)\b.*\=/;
2657 package ExtUtils
::MakeMaker
::_version
;
2666 $result = eval($eval);
2667 warn "Could not eval '$eval' in $parsefile: $@" if $@
;
2672 $result = "undef" unless defined $result;
2679 Defines the string that is passed to recursive make calls in
2689 my($sep) = $Is_VMS ?
',' : '';
2692 foreach $key (qw(LIB LIBPERL_A LINKTYPE OPTIMIZE
2696 next unless defined $self->{$key};
2697 push @pasthru, "$key=\"\$($key)\"";
2700 foreach $key (qw(DEFINE INC)) {
2701 next unless defined $self->{$key};
2702 push @pasthru, "PASTHRU_$key=\"\$(PASTHRU_$key)\"";
2705 push @m, "\nPASTHRU = ", join ($sep, @pasthru), "\n";
2711 Takes one argument, a file name, and returns the file name, if the
2712 argument is likely to be a perl script. On MM_Unix this is true for
2713 any ordinary, readable file.
2718 my($self,$file) = @_;
2719 return $file if -r
$file && -f _
;
2723 =item perldepend (o)
2725 Defines the dependency from all *.h files that come with the perl
2734 my $make_config = $self->cd('$(PERL_SRC)', '$(MAKE) lib/Config.pm');
2736 push @m, sprintf <<'MAKE_FRAG', $make_config if $self->{PERL_SRC};
2737 # Check for unpropogated config.sh changes. Should never happen.
2738 # We do NOT just update config.h because that is not sufficient.
2739 # An out of date config.h is not fatal but complains loudly!
2740 $(PERL_INC)/config.h: $(PERL_SRC)/config.sh
2741 -$(NOECHO) $(ECHO) "Warning: $(PERL_INC)/config.h out of date with $(PERL_SRC)/config.sh"; false
2743 $(PERL_ARCHLIB)/Config.pm: $(PERL_SRC)/config.sh
2744 $(NOECHO) $(ECHO) "Warning: $(PERL_ARCHLIB)/Config.pm may be out of date with $(PERL_SRC)/config.sh"
2748 return join "", @m unless $self->needs_linking;
2752 $(PERL_INC)/EXTERN.h \
2753 $(PERL_INC)/INTERN.h \
2754 $(PERL_INC)/XSUB.h \
2756 $(PERL_INC)/cc_runtime.h \
2757 $(PERL_INC)/config.h \
2760 $(PERL_INC)/dosish.h \
2761 $(PERL_INC)/embed.h \
2762 $(PERL_INC)/embedvar.h \
2763 $(PERL_INC)/fakethr.h \
2764 $(PERL_INC)/form.h \
2766 $(PERL_INC)/handy.h \
2768 $(PERL_INC)/intrpvar.h \
2769 $(PERL_INC)/iperlsys.h \
2770 $(PERL_INC)/keywords.h \
2772 $(PERL_INC)/nostdio.h \
2774 $(PERL_INC)/opcode.h \
2775 $(PERL_INC)/patchlevel.h \
2776 $(PERL_INC)/perl.h \
2777 $(PERL_INC)/perlio.h \
2778 $(PERL_INC)/perlsdio.h \
2779 $(PERL_INC)/perlsfio.h \
2780 $(PERL_INC)/perlvars.h \
2781 $(PERL_INC)/perly.h \
2783 $(PERL_INC)/pp_proto.h \
2784 $(PERL_INC)/proto.h \
2785 $(PERL_INC)/regcomp.h \
2786 $(PERL_INC)/regexp.h \
2787 $(PERL_INC)/regnodes.h \
2788 $(PERL_INC)/scope.h \
2790 $(PERL_INC)/thrdvar.h \
2791 $(PERL_INC)/thread.h \
2792 $(PERL_INC)/unixish.h \
2795 $(OBJECT) : $(PERL_HDRS)
2796 } if $self->{OBJECT
};
2798 push @m, join(" ", values %{$self->{XS
}})." : \$(XSUBPPDEPS)\n" if %{$self->{XS
}};
2806 Returns the attribute C<PERM_RW> or the string C<644>.
2807 Used as the string that is passed
2808 to the C<chmod> command to set the permissions for read/writeable files.
2809 MakeMaker chooses C<644> because it has turned out in the past that
2810 relying on the umask provokes hard-to-track bug reports.
2811 When the return value is used by the perl function C<chmod>, it is
2812 interpreted as an octal value.
2817 return shift->{PERM_RW
};
2822 Returns the attribute C<PERM_RWX> or the string C<755>,
2823 i.e. the string that is passed
2824 to the C<chmod> command to set the permissions for executable files.
2830 return shift->{PERM_RWX
};
2835 Defines target that copies all files in the hash PM to their
2836 destination and autosplits them. See L<ExtUtils::Install/DESCRIPTION>
2842 my($autodir) = $self->catdir('$(INST_LIB)','auto');
2844 pm_to_blib : $(TO_INST_PM)
2847 my $pm_to_blib = $self->oneliner(<<CODE, ['-MExtUtils::Install']);
2848 pm_to_blib({\@ARGV}, '$autodir', '\$(PM_FILTER)')
2851 my @cmds = $self->split_command($pm_to_blib, %{$self->{PM
}});
2853 $r .= join '', map { "\t\$(NOECHO) $_\n" } @cmds;
2854 $r .= qq{\t\
$(NOECHO
) \
$(TOUCH
) pm_to_blib
\n};
2859 =item post_constants (o)
2861 Returns an empty string per default. Dedicated to overrides from
2862 within Makefile.PL after all constants have been defined.
2870 =item post_initialize (o)
2872 Returns an empty string per default. Used in Makefile.PLs to add some
2873 chunk of text to the Makefile after the object is initialized.
2877 sub post_initialize
{
2883 Returns an empty string. Can be used in Makefile.PLs to write some
2884 text to the Makefile at the end.
2894 Defines target that creates a PPD (Perl Package Description) file
2895 for a binary distribution.
2902 if ($self->{ABSTRACT_FROM
}){
2903 $self->{ABSTRACT
} = $self->parse_abstract($self->{ABSTRACT_FROM
}) or
2904 carp
"WARNING: Setting ABSTRACT via file ".
2905 "'$self->{ABSTRACT_FROM}' failed\n";
2908 my ($pack_ver) = join ",", (split (/\./, $self->{VERSION
}), (0)x4
)[0..3];
2910 my $abstract = $self->{ABSTRACT
} || '';
2911 $abstract =~ s/\n/\\n/sg;
2912 $abstract =~ s/</</g;
2913 $abstract =~ s/>/>/g;
2915 my $author = $self->{AUTHOR
} || '';
2916 $author =~ s/</</g;
2917 $author =~ s/>/>/g;
2919 my $ppd_xml = sprintf <<'PPD_HTML', $pack_ver, $abstract, $author;
2920 <SOFTPKG NAME="$(DISTNAME)" VERSION="%s">
2921 <TITLE>$(DISTNAME)</TITLE>
2922 <ABSTRACT>%s</ABSTRACT>
2926 $ppd_xml .= " <IMPLEMENTATION>\n";
2927 foreach my $prereq (sort keys %{$self->{PREREQ_PM}}) {
2928 my $pre_req = $prereq;
2929 $pre_req =~ s/::/-/g;
2930 my ($dep_ver) = join ",", (split (/\./, $self->{PREREQ_PM}{$prereq}),
2932 $ppd_xml .= sprintf <<'PPD_OUT
', $pre_req, $dep_ver;
2933 <DEPENDENCY NAME="%s" VERSION="%s" />
2938 $ppd_xml .= sprintf <<'PPD_OUT', $Config{archname
};
2939 <OS NAME
="$(OSNAME)" />
2940 <ARCHITECTURE NAME
="%s" />
2943 if ($self->{PPM_INSTALL_SCRIPT
}) {
2944 if ($self->{PPM_INSTALL_EXEC
}) {
2945 $ppd_xml .= sprintf qq{ <INSTALL EXEC
="%s">%s</INSTALL
>\n},
2946 $self->{PPM_INSTALL_EXEC
}, $self->{PPM_INSTALL_SCRIPT
};
2949 $ppd_xml .= sprintf qq{ <INSTALL
>%s</INSTALL
>\n},
2950 $self->{PPM_INSTALL_SCRIPT
};
2954 my ($bin_location) = $self->{BINARY_LOCATION
} || '';
2955 $bin_location =~ s/\\/\\\\/g;
2957 $ppd_xml .= sprintf <<'PPD_XML', $bin_location;
2958 <CODEBASE HREF="%s" />
2963 my @ppd_cmds = $self->echo($ppd_xml, '$(DISTNAME).ppd');
2965 return sprintf <<'PPD_OUT
', join "\n\t", @ppd_cmds;
2966 # Creates a PPD (Perl Package Description
) for a binary distribution
.
2975 $MM->prefixify($var, $prefix, $new_prefix, $default);
2977 Using either $MM->{uc $var} || $Config{lc $var}, it will attempt to
2978 replace it's $prefix with a $new_prefix.
2980 Should the $prefix fail to match I<AND> a PREFIX was given as an
2981 argument to WriteMakefile() it will set it to the $new_prefix +
2982 $default. This is for systems whose file layouts don't neatly fit into
2983 our ideas of prefixes.
2985 This is for heuristics which attempt to create directory structures
2986 that mirror those of the installed perl.
2990 $MM->prefixify('installman1dir', '/usr', '/home/foo', 'man/man1');
2992 this will attempt to remove '/usr' from the front of the
2993 $MM->{INSTALLMAN1DIR} path (initializing it to $Config{installman1dir}
2994 if necessary) and replace it with '/home/foo'. If this fails it will
2995 simply use '/home/foo/man/man1'.
3000 my($self,$var,$sprefix,$rprefix,$default) = @_;
3002 my $path = $self->{uc $var} ||
3003 $Config_Override{lc $var} || $Config{lc $var} || '';
3005 $rprefix .= '/' if $sprefix =~ m
|/$|;
3007 print STDERR
" prefixify $var => $path\n" if $Verbose >= 2;
3008 print STDERR
" from $sprefix to $rprefix\n" if $Verbose >= 2;
3010 if( $self->{ARGS
}{PREFIX
} && $self->file_name_is_absolute($path) &&
3011 $path !~ s{^\Q$sprefix\E\b}{$rprefix}s )
3014 print STDERR
" cannot prefix, using default.\n" if $Verbose >= 2;
3015 print STDERR
" no default!\n" if !$default && $Verbose >= 2;
3017 $path = $self->catdir($rprefix, $default) if $default;
3020 print " now $path\n" if $Verbose >= 2;
3021 return $self->{uc $var} = $path;
3027 Defines targets to run *.PL files.
3033 my $pl_files = $self->{PL_FILES
};
3035 return "" unless $pl_files;
3038 foreach my $plfile (sort keys %$pl_files) {
3039 my $list = ref($pl_files->{$plfile})
3040 ?
$pl_files->{$plfile}
3041 : [$pl_files->{$plfile}];
3043 foreach my $target (@
$list) {
3045 $plfile = vmsify
($plfile);
3046 $target = vmsify
($target);
3049 # Normally a .PL file runs AFTER pm_to_blib so it can have
3050 # blib in its @INC and load the just built modules. BUT if
3051 # the generated module is something in $(TO_INST_PM) which
3052 # pm_to_blib depends on then it can't depend on pm_to_blib
3053 # else we have a dependency loop.
3056 if( defined $self->{PM
}{$target} ) {
3058 $perlrun = 'PERLRUN';
3061 $pm_dep = 'pm_to_blib';
3062 $perlrun = 'PERLRUNINST';
3070 $target :: $plfile $pm_dep
3071 \$($perlrun) $plfile $target
3082 Backslashes parentheses C<()> in command line arguments.
3083 Doesn't handle recursive Makefile C<$(...)> constructs,
3084 but handles simple ones.
3090 $arg =~ s{\$\((.+?)\)}{\$\\\\($1\\\\)}g; # protect $(...)
3091 $arg =~ s{(?<!\\)([()])}{\\$1}g; # quote unprotected
3092 $arg =~ s{\$\\\\\((.+?)\\\\\)}{\$($1)}g; # unprotect $(...)
3096 =item replace_manpage_separator
3098 my $man_name = $MM->replace_manpage_separator($file_path);
3100 Takes the name of a package, which may be a nested package, in the
3101 form 'Foo/Bar.pm' and replaces the slash with C<::> or something else
3102 safe for a man page file name. Returns the replacement.
3106 sub replace_manpage_separator {
3107 my($self,$man) = @_;
3119 my($self, $dir, @cmds) = @_;
3121 # No leading tab and no trailing newline makes for easier embedding
3122 my $make_frag = join "\n\t", map { "cd $dir && $_" } @cmds;
3132 my($self, $cmd, $switches) = @_;
3133 $switches = [] unless defined $switches;
3135 # Strip leading and trailing newlines
3139 my @cmds = split /\n/, $cmd;
3140 $cmd = join " \n\t -e ", map $self->quote_literal($_), @cmds;
3141 $cmd = $self->escape_newlines($cmd);
3143 $switches = join ' ', @$switches;
3145 return qq{\$(ABSPERLRUN) $switches -e $cmd};
3154 my($self, $text) = @_;
3156 # I think all we have to quote is single quotes and I think
3157 # this is a safe way to do it.
3158 $text =~ s{'}{'\\''}g;
3164 =item escape_newlines
3168 sub escape_newlines {
3169 my($self, $text) = @_;
3171 $text =~ s{\n}{\\\n}g;
3179 Using POSIX::ARG_MAX. Otherwise falling back to 4096.
3186 if (!defined $self->{_MAX_EXEC_LEN}) {
3187 if (my $arg_max = eval { require POSIX; &POSIX::ARG_MAX }) {
3188 $self->{_MAX_EXEC_LEN} = $arg_max;
3190 else { # POSIX minimum exec size
3191 $self->{_MAX_EXEC_LEN} = 4096;
3195 return $self->{_MAX_EXEC_LEN};
3201 Defines the static target.
3206 # --- Static Loading Sections ---
3210 ## $(INST_PM) has been moved to the all: target.
3211 ## It remains here for awhile to allow for old usage: "make static"
3212 static :: $(FIRST_MAKEFILE) $(INST_STATIC)
3217 =item static_lib (o)
3219 Defines how to produce the *.a (or equivalent) files.
3225 return '' unless $self->has_link_code;
3230 $(INST_STATIC) : $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)$(DFSEP).exists
3234 # If this extension has its own library (eg SDBM_File)
3235 # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
3236 push(@m, <<'MAKE_FRAG') if $self->{MYEXTLIB};
3237 $(CP) $(MYEXTLIB) $@
3241 if (exists $self->{FULL_AR} && -x $self->{FULL_AR}) {
3242 # Prefer the absolute pathed ar if available so that PATH
3243 # doesn't confuse us. Perl itself is built with the full_ar.
3248 push @m, sprintf <<'MAKE_FRAG
', $ar;
3249 $(%s) $(AR_STATIC_ARGS) $@ $(OBJECT) && $(RANLIB) $@
3250 $(CHMOD) $(PERM_RWX) $@
3251 $(NOECHO) $(ECHO) "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)/extralibs.ld
3254 # Old mechanism - still available:
3255 push @m, <<'MAKE_FRAG' if $self->{PERL_SRC
} && $self->{EXTRALIBS
};
3256 $(NOECHO
) $(ECHO
) "$(EXTRALIBS)" >> $(PERL_SRC
)/ext
.libs
3262 =item staticmake (o)
3269 my($self, %attribs) = @_;
3272 my(@searchdirs)=($self->{PERL_ARCHLIB
}, $self->{SITEARCHEXP
}, $self->{INST_ARCHLIB
});
3274 # And as it's not yet built, we add the current extension
3275 # but only if it has some C code (or XS code, which implies C code)
3276 if (@
{$self->{C
}}) {
3277 @static = $self->catfile($self->{INST_ARCHLIB
},
3280 "$self->{BASEEXT}$self->{LIB_EXT}"
3284 # Either we determine now, which libraries we will produce in the
3285 # subdirectories or we do it at runtime of the make.
3287 # We could ask all subdir objects, but I cannot imagine, why it
3288 # would be necessary.
3290 # Instead we determine all libraries for the new perl at
3292 my(@perlinc) = ($self->{INST_ARCHLIB
}, $self->{INST_LIB
}, $self->{PERL_ARCHLIB
}, $self->{PERL_LIB
});
3294 $self->makeaperl(MAKE
=> $self->{MAKEFILE
},
3295 DIRS
=> \
@searchdirs,
3298 TARGET
=> $self->{MAP_TARGET
},
3300 LIBPERL
=> $self->{LIBPERL_A
}
3306 Helper subroutine for subdirs
3311 my($self, $subdir) = @_;
3313 my $subdir_cmd = $self->cd($subdir,
3314 '$(MAKE) $(USEMAKEFILE
) $(FIRST_MAKEFILE
) all
$(PASTHRU
)'
3316 return sprintf <<'EOT', $subdir_cmd;
3326 Defines targets to process subdirectories.
3331 # --- Sub-directory Sections ---
3334 # This method provides a mechanism to automatically deal with
3335 # subdirectories containing further Makefile.PL scripts.
3336 # It calls the subdir_x() method for each subdirectory.
3337 foreach $dir (@
{$self->{DIR
}}){
3338 push(@m, $self->subdir_x($dir));
3339 #### print "Including $dir subdirectory\n";
3343 # The default clean, realclean and test targets in this Makefile
3344 # have automatically been given entries for each subdir.
3348 push(@m, "\n# none")
3355 Defines the test targets.
3360 # --- Test and Installation Sections ---
3362 my($self, %attribs) = @_;
3363 my $tests = $attribs{TESTS
} || '';
3364 if (!$tests && -d
't') {
3365 $tests = $self->find_tests;
3367 # note: 'test.pl' name is also hardcoded in init_dirscan()
3371 TEST_TYPE=test_\$(LINKTYPE)
3376 testdb :: testdb_\$(LINKTYPE)
3378 test :: \$(TEST_TYPE)
3381 foreach my $dir (@
{ $self->{DIR
} }) {
3382 my $test = $self->oneliner(sprintf <<'CODE', $dir);
3384 system '$(MAKE) test $(PASTHRU)'
3385 if -f '$(FIRST_MAKEFILE)';
3388 push(@m, "\t\$(NOECHO) $test\n");
3391 push(@m, "\t\$(NOECHO) \$(ECHO) 'No tests defined for \$(NAME) extension.'\n")
3392 unless $tests or -f
"test.pl" or @
{$self->{DIR
}};
3395 push(@m, "test_dynamic :: pure_all\n");
3396 push(@m, $self->test_via_harness('$(FULLPERLRUN)', '$(TEST_FILES)'))
3398 push(@m, $self->test_via_script('$(FULLPERLRUN)', '$(TEST_FILE)'))
3402 push(@m, "testdb_dynamic :: pure_all\n");
3403 push(@m, $self->test_via_script('$(FULLPERLRUN) $(TESTDB_SW)',
3407 # Occasionally we may face this degenerate target:
3408 push @m, "test_ : test_dynamic\n\n";
3410 if ($self->needs_linking()) {
3411 push(@m, "test_static :: pure_all \$(MAP_TARGET)\n");
3412 push(@m, $self->test_via_harness('./$(MAP_TARGET)', '$(TEST_FILES)')) if $tests;
3413 push(@m, $self->test_via_script('./$(MAP_TARGET)', '$(TEST_FILE)')) if -f
"test.pl";
3415 push(@m, "testdb_static :: pure_all \$(MAP_TARGET)\n");
3416 push(@m, $self->test_via_script('./$(MAP_TARGET) $(TESTDB_SW)', '$(TEST_FILE)'));
3419 push @m, "test_static :: test_dynamic\n";
3420 push @m, "testdb_static :: testdb_dynamic\n";
3425 =item test_via_harness (override)
3427 For some reason which I forget, Unix machines like to have
3428 PERL_DL_NONLAZY set for tests.
3432 sub test_via_harness
{
3433 my($self, $perl, $tests) = @_;
3434 return $self->SUPER::test_via_harness
("PERL_DL_NONLAZY=1 $perl", $tests);
3437 =item test_via_script (override)
3439 Again, the PERL_DL_NONLAZY thing.
3443 sub test_via_script
{
3444 my($self, $perl, $script) = @_;
3445 return $self->SUPER::test_via_script
("PERL_DL_NONLAZY=1 $perl", $script);
3449 =item tools_other (o)
3451 my $make_frag = $MM->tools_other;
3453 Returns a make fragment containing definitions for the macros init_others()
3462 # We set PM_FILTER as late as possible so it can see all the earlier
3463 # on macro-order sensitive makes such as nmake.
3464 for my $tool (qw{ SHELL CHMOD CP MV NOOP NOECHO RM_F RM_RF TEST_F TOUCH
3465 UMASK_NULL DEV_NULL MKPATH EQUALIZE_TIMESTAMP
3468 MOD_INSTALL DOC_INSTALL UNINSTALL
3469 WARN_IF_OLD_PACKLIST
3476 next unless defined $self->{$tool};
3477 push @m, "$tool = $self->{$tool}\n";
3483 =item tool_xsubpp (o)
3485 Determines typemaps, xsubpp version, prototype behaviour.
3491 return "" unless $self->needs_linking;
3494 my @xsubpp_dirs = @INC;
3496 # Make sure we pick up the new xsubpp if we're building perl.
3497 unshift @xsubpp_dirs, $self->{PERL_LIB
} if $self->{PERL_CORE
};
3499 foreach my $dir (@xsubpp_dirs) {
3500 $xsdir = $self->catdir($dir, 'ExtUtils');
3501 if( -r
$self->catfile($xsdir, "xsubpp") ) {
3506 my $tmdir = File
::Spec
->catdir($self->{PERL_LIB
},"ExtUtils");
3507 my(@tmdeps) = $self->catfile($tmdir,'typemap');
3508 if( $self->{TYPEMAPS
} ){
3510 foreach $typemap (@
{$self->{TYPEMAPS
}}){
3511 if( ! -f
$typemap ){
3512 warn "Typemap $typemap not found.\n";
3515 push(@tmdeps, $typemap);
3519 push(@tmdeps, "typemap") if -f
"typemap";
3520 my(@tmargs) = map("-typemap $_", @tmdeps);
3521 if( exists $self->{XSOPT
} ){
3522 unshift( @tmargs, $self->{XSOPT
} );
3526 $Config{'ldflags'} &&
3527 $Config{'ldflags'} =~ m!/Debug!i &&
3528 (!exists($self->{XSOPT
}) || $self->{XSOPT
} !~ /linenumbers/)
3531 unshift(@tmargs,'-nolinenumbers');
3535 $self->{XSPROTOARG
} = "" unless defined $self->{XSPROTOARG
};
3539 XSUBPP
= \
$(XSUBPPDIR
)\
$(DFSEP
)xsubpp
3540 XSUBPPRUN
= \
$(PERLRUN
) \
$(XSUBPP
)
3541 XSPROTOARG
= $self->{XSPROTOARG
}
3542 XSUBPPDEPS
= @tmdeps \
$(XSUBPP
)
3543 XSUBPPARGS
= @tmargs
3551 Build man pages, too
3558 return <<'MAKE_EXT';
3559 all :: pure_all manifypods
3564 =item top_targets (o)
3566 Defines the targets all, subdirs, config, and O_FILES
3571 # --- Target Sections ---
3576 push @m, $self->all_target, "\n" unless $self->{SKIPHASH}{'all'};
3579 pure_all :: config pm_to_blib subdirs linkext
3582 subdirs :: $(MYEXTLIB)
3585 config :: $(FIRST_MAKEFILE) blibdirs
3590 $(O_FILES): $(H_FILES)
3591 ' if @{$self->{O_FILES} || []} && @{$self->{H} || []};
3595 perldoc ExtUtils::MakeMaker
3603 Obsolete, deprecated method. Not used since Version 5.21.
3608 # --- perllocal.pod section ---
3609 my($self,$what,$name,@attribs)=@_;
3610 my $time = localtime;
3611 print "=head2 $time: $what C<$name>\n\n=over 4\n\n=item *\n\n";
3612 print join "\n\n=item *\n\n", map("C<$_>",@attribs);
3613 print "\n\n=back\n\n";
3618 Defines the suffix rules to compile XS files to C.
3624 return '' unless $self->needs_linking();
3627 $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $(XSUBPP_EXTRA_ARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3633 Defines the suffix rules to compile XS files to C++.
3639 return '' unless $self->needs_linking();
3642 $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.cpp
3648 Defines suffix rules to go from XS to object files directly. This is
3649 only intended for broken make implementations.
3653 sub xs_o
{ # many makes are too dumb to use xs_c then c_o
3655 return '' unless $self->needs_linking();
3658 $(XSUBPPRUN) $(XSPROTOARG) $(XSUBPPARGS) $*.xs > $*.xsc && $(MV) $*.xsc $*.c
3659 $(CCCMD) $(CCCDLFLAGS) "-I$(PERL_INC)" $(PASTHRU_DEFINE) $(DEFINE) $*.c
3670 L<ExtUtils::MakeMaker>