home *** CD-ROM | disk | FTP | other *** search
/ Chip: Windows 2000 Professional Resource Kit / W2KPRK.iso / apps / perl / ActivePerl.exe / data.z / MM_Unix.pm < prev    next >
Encoding:
Perl POD Document  |  1999-10-14  |  102.7 KB  |  3,586 lines

  1. package ExtUtils::MM_Unix;
  2.  
  3. use Exporter ();
  4. use Config;
  5. use File::Basename qw(basename dirname fileparse);
  6. use DirHandle;
  7. use strict;
  8. use vars qw($VERSION $Is_Mac $Is_OS2 $Is_VMS $Is_Win32 $Is_Dos $Is_PERL_OBJECT
  9.         $Verbose %pm %static $Xsubpp_Version);
  10.  
  11. $VERSION = substr q$Revision: 1.12602 $, 10;
  12. # $Id: MM_Unix.pm,v 1.126 1998/06/28 21:32:49 k Exp k $
  13.  
  14. Exporter::import('ExtUtils::MakeMaker',
  15.     qw( $Verbose &neatvalue));
  16.  
  17. $Is_OS2 = $^O eq 'os2';
  18. $Is_Mac = $^O eq 'MacOS';
  19. $Is_Win32 = $^O eq 'MSWin32';
  20. $Is_Dos = $^O eq 'dos';
  21.  
  22. $Is_PERL_OBJECT = $Config{'ccflags'} =~ /-DPERL_OBJECT/;
  23.  
  24. if ($Is_VMS = $^O eq 'VMS') {
  25.     require VMS::Filespec;
  26.     import VMS::Filespec qw( &vmsify );
  27. }
  28.  
  29. =head1 NAME
  30.  
  31. ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
  32.  
  33. =head1 SYNOPSIS
  34.  
  35. C<require ExtUtils::MM_Unix;>
  36.  
  37. =head1 DESCRIPTION
  38.  
  39. The methods provided by this package are designed to be used in
  40. conjunction with ExtUtils::MakeMaker. When MakeMaker writes a
  41. Makefile, it creates one or more objects that inherit their methods
  42. from a package C<MM>. MM itself doesn't provide any methods, but it
  43. ISA ExtUtils::MM_Unix class. The inheritance tree of MM lets operating
  44. specific packages take the responsibility for all the methods provided
  45. by MM_Unix. We are trying to reduce the number of the necessary
  46. overrides by defining rather primitive operations within
  47. ExtUtils::MM_Unix.
  48.  
  49. If you are going to write a platform specific MM package, please try
  50. to limit the necessary overrides to primitive methods, and if it is not
  51. possible to do so, let's work out how to achieve that gain.
  52.  
  53. If you are overriding any of these methods in your Makefile.PL (in the
  54. MY class), please report that to the makemaker mailing list. We are
  55. trying to minimize the necessary method overrides and switch to data
  56. driven Makefile.PLs wherever possible. In the long run less methods
  57. will be overridable via the MY class.
  58.  
  59. =head1 METHODS
  60.  
  61. The following description of methods is still under
  62. development. Please refer to the code for not suitably documented
  63. sections and complain loudly to the makemaker mailing list.
  64.  
  65. Not all of the methods below are overridable in a
  66. Makefile.PL. Overridable methods are marked as (o). All methods are
  67. overridable by a platform specific MM_*.pm file (See
  68. L<ExtUtils::MM_VMS>) and L<ExtUtils::MM_OS2>).
  69.  
  70. =head2 Preloaded methods
  71.  
  72. =over 2
  73.  
  74. =item canonpath
  75.  
  76. No physical check on the filesystem, but a logical cleanup of a
  77. path. On UNIX eliminated successive slashes and successive "/.".
  78.  
  79. =cut
  80.  
  81. sub canonpath {
  82.     my($self,$path) = @_;
  83.     my $node = '';
  84.     if ( $^O eq 'qnx' && $path =~ s|^(//\d+)/|/| ) {
  85.       $node = $1;
  86.     }
  87.     $path =~ s|(?<=[^/])/+|/|g ;                   # xx////xx  -> xx/xx
  88.     $path =~ s|(/\.)+/|/|g ;                       # xx/././xx -> xx/xx
  89.     $path =~ s|^(\./)+|| unless $path eq "./";     # ./xx      -> xx
  90.     $path =~ s|(?<=[^/])/$|| ;                     # xx/       -> xx
  91.     "$node$path";
  92. }
  93.  
  94. =item catdir
  95.  
  96. Concatenate two or more directory names to form a complete path ending
  97. with a directory. But remove the trailing slash from the resulting
  98. string, because it doesn't look good, isn't necessary and confuses
  99. OS2. Of course, if this is the root directory, don't cut off the
  100. trailing slash :-)
  101.  
  102. =cut
  103.  
  104. # ';
  105.  
  106. sub catdir {
  107.     my $self = shift @_;
  108.     my @args = @_;
  109.     for (@args) {
  110.     # append a slash to each argument unless it has one there
  111.     $_ .= "/" if $_ eq '' or substr($_,-1) ne "/";
  112.     }
  113.     $self->canonpath(join('', @args));
  114. }
  115.  
  116. =item catfile
  117.  
  118. Concatenate one or more directory names and a filename to form a
  119. complete path ending with a filename
  120.  
  121. =cut
  122.  
  123. sub catfile {
  124.     my $self = shift @_;
  125.     my $file = pop @_;
  126.     return $self->canonpath($file) unless @_;
  127.     my $dir = $self->catdir(@_);
  128.     for ($dir) {
  129.     $_ .= "/" unless substr($_,length($_)-1,1) eq "/";
  130.     }
  131.     return $self->canonpath($dir.$file);
  132. }
  133.  
  134. =item curdir
  135.  
  136. Returns a string representing of the current directory.  "." on UNIX.
  137.  
  138. =cut
  139.  
  140. sub curdir {
  141.     return "." ;
  142. }
  143.  
  144. =item rootdir
  145.  
  146. Returns a string representing of the root directory.  "/" on UNIX.
  147.  
  148. =cut
  149.  
  150. sub rootdir {
  151.     return "/";
  152. }
  153.  
  154. =item updir
  155.  
  156. Returns a string representing of the parent directory.  ".." on UNIX.
  157.  
  158. =cut
  159.  
  160. sub updir {
  161.     return "..";
  162. }
  163.  
  164. sub ExtUtils::MM_Unix::c_o ;
  165. sub ExtUtils::MM_Unix::clean ;
  166. sub ExtUtils::MM_Unix::const_cccmd ;
  167. sub ExtUtils::MM_Unix::const_config ;
  168. sub ExtUtils::MM_Unix::const_loadlibs ;
  169. sub ExtUtils::MM_Unix::constants ;
  170. sub ExtUtils::MM_Unix::depend ;
  171. sub ExtUtils::MM_Unix::dir_target ;
  172. sub ExtUtils::MM_Unix::dist ;
  173. sub ExtUtils::MM_Unix::dist_basics ;
  174. sub ExtUtils::MM_Unix::dist_ci ;
  175. sub ExtUtils::MM_Unix::dist_core ;
  176. sub ExtUtils::MM_Unix::dist_dir ;
  177. sub ExtUtils::MM_Unix::dist_test ;
  178. sub ExtUtils::MM_Unix::dlsyms ;
  179. sub ExtUtils::MM_Unix::dynamic ;
  180. sub ExtUtils::MM_Unix::dynamic_bs ;
  181. sub ExtUtils::MM_Unix::dynamic_lib ;
  182. sub ExtUtils::MM_Unix::exescan ;
  183. sub ExtUtils::MM_Unix::export_list ;
  184. sub ExtUtils::MM_Unix::extliblist ;
  185. sub ExtUtils::MM_Unix::file_name_is_absolute ;
  186. sub ExtUtils::MM_Unix::find_perl ;
  187. sub ExtUtils::MM_Unix::fixin ;
  188. sub ExtUtils::MM_Unix::force ;
  189. sub ExtUtils::MM_Unix::guess_name ;
  190. sub ExtUtils::MM_Unix::has_link_code ;
  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_script ;
  212. sub ExtUtils::MM_Unix::perldepend ;
  213. sub ExtUtils::MM_Unix::pm_to_blib ;
  214. sub ExtUtils::MM_Unix::post_constants ;
  215. sub ExtUtils::MM_Unix::post_initialize ;
  216. sub ExtUtils::MM_Unix::postamble ;
  217. sub ExtUtils::MM_Unix::ppd ;
  218. sub ExtUtils::MM_Unix::prefixify ;
  219. sub ExtUtils::MM_Unix::processPL ;
  220. sub ExtUtils::MM_Unix::realclean ;
  221. sub ExtUtils::MM_Unix::replace_manpage_separator ;
  222. sub ExtUtils::MM_Unix::static ;
  223. sub ExtUtils::MM_Unix::static_lib ;
  224. sub ExtUtils::MM_Unix::staticmake ;
  225. sub ExtUtils::MM_Unix::subdir_x ;
  226. sub ExtUtils::MM_Unix::subdirs ;
  227. sub ExtUtils::MM_Unix::test ;
  228. sub ExtUtils::MM_Unix::test_via_harness ;
  229. sub ExtUtils::MM_Unix::test_via_script ;
  230. sub ExtUtils::MM_Unix::tool_autosplit ;
  231. sub ExtUtils::MM_Unix::tool_xsubpp ;
  232. sub ExtUtils::MM_Unix::tools_other ;
  233. sub ExtUtils::MM_Unix::top_targets ;
  234. sub ExtUtils::MM_Unix::writedoc ;
  235. sub ExtUtils::MM_Unix::xs_c ;
  236. sub ExtUtils::MM_Unix::xs_cpp ;
  237. sub ExtUtils::MM_Unix::xs_o ;
  238. sub ExtUtils::MM_Unix::xsubpp_version ;
  239.  
  240. package ExtUtils::MM_Unix;
  241.  
  242. use SelfLoader;
  243.  
  244. 1;
  245.  
  246. __DATA__
  247.  
  248. =back
  249.  
  250. =head2 SelfLoaded methods
  251.  
  252. =over 2
  253.  
  254. =item c_o (o)
  255.  
  256. Defines the suffix rules to compile different flavors of C files to
  257. object files.
  258.  
  259. =cut
  260.  
  261. sub c_o {
  262. # --- Translation Sections ---
  263.  
  264.     my($self) = shift;
  265.     return '' unless $self->needs_linking();
  266.     my(@m);
  267.     push @m, '
  268. .c$(OBJ_EXT):
  269.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
  270. ';
  271.     push @m, '
  272. .C$(OBJ_EXT):
  273.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.C
  274. ' if $^O ne 'os2' and $^O ne 'MSWin32' and $^O ne 'dos'; #Case-specific
  275.     push @m, '
  276. .cpp$(OBJ_EXT):
  277.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cpp
  278.  
  279. .cxx$(OBJ_EXT):
  280.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cxx
  281.  
  282. .cc$(OBJ_EXT):
  283.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.cc
  284. ';
  285.     join "", @m;
  286. }
  287.  
  288. =item cflags (o)
  289.  
  290. Does very much the same as the cflags script in the perl
  291. distribution. It doesn't return the whole compiler command line, but
  292. initializes all of its parts. The const_cccmd method then actually
  293. returns the definition of the CCCMD macro which uses these parts.
  294.  
  295. =cut
  296.  
  297. #'
  298.  
  299. sub cflags {
  300.     my($self,$libperl)=@_;
  301.     return $self->{CFLAGS} if $self->{CFLAGS};
  302.     return '' unless $self->needs_linking();
  303.  
  304.     my($prog, $uc, $perltype, %cflags);
  305.     $libperl ||= $self->{LIBPERL_A} || "libperl$self->{LIB_EXT}" ;
  306.     $libperl =~ s/\.\$\(A\)$/$self->{LIB_EXT}/;
  307.  
  308.     @cflags{qw(cc ccflags optimize large split shellflags)}
  309.     = @Config{qw(cc ccflags optimize large split shellflags)};
  310.     my($optdebug) = "";
  311.  
  312.     $cflags{shellflags} ||= '';
  313.  
  314.     my(%map) =  (
  315.         D =>   '-DDEBUGGING',
  316.         E =>   '-DEMBED',
  317.         DE =>  '-DDEBUGGING -DEMBED',
  318.         M =>   '-DEMBED -DMULTIPLICITY',
  319.         DM =>  '-DDEBUGGING -DEMBED -DMULTIPLICITY',
  320.         );
  321.  
  322.     if ($libperl =~ /libperl(\w*)\Q$self->{LIB_EXT}/){
  323.     $uc = uc($1);
  324.     } else {
  325.     $uc = ""; # avoid warning
  326.     }
  327.     $perltype = $map{$uc} ? $map{$uc} : "";
  328.  
  329.     if ($uc =~ /^D/) {
  330.     $optdebug = "-g";
  331.     }
  332.  
  333.  
  334.     my($name);
  335.     ( $name = $self->{NAME} . "_cflags" ) =~ s/:/_/g ;
  336.     if ($prog = $Config::Config{$name}) {
  337.     # Expand hints for this extension via the shell
  338.     print STDOUT "Processing $name hint:\n" if $Verbose;
  339.     my(@o)=`cc=\"$cflags{cc}\"
  340.       ccflags=\"$cflags{ccflags}\"
  341.       optimize=\"$cflags{optimize}\"
  342.       perltype=\"$cflags{perltype}\"
  343.       optdebug=\"$cflags{optdebug}\"
  344.       large=\"$cflags{large}\"
  345.       split=\"$cflags{'split'}\"
  346.       eval '$prog'
  347.       echo cc=\$cc
  348.       echo ccflags=\$ccflags
  349.       echo optimize=\$optimize
  350.       echo perltype=\$perltype
  351.       echo optdebug=\$optdebug
  352.       echo large=\$large
  353.       echo split=\$split
  354.       `;
  355.     my($line);
  356.     foreach $line (@o){
  357.         chomp $line;
  358.         if ($line =~ /(.*?)=\s*(.*)\s*$/){
  359.         $cflags{$1} = $2;
  360.         print STDOUT "    $1 = $2\n" if $Verbose;
  361.         } else {
  362.         print STDOUT "Unrecognised result from hint: '$line'\n";
  363.         }
  364.     }
  365.     }
  366.  
  367.     if ($optdebug) {
  368.     $cflags{optimize} = $optdebug;
  369.     }
  370.  
  371.     for (qw(ccflags optimize perltype large split)) {
  372.     $cflags{$_} =~ s/^\s+//;
  373.     $cflags{$_} =~ s/\s+/ /g;
  374.     $cflags{$_} =~ s/\s+$//;
  375.     $self->{uc $_} ||= $cflags{$_}
  376.     }
  377.  
  378.     if ($self->{CAPI} && $Is_PERL_OBJECT) {
  379.         $self->{CCFLAGS} =~ s/-DPERL_OBJECT(\s|$)//;
  380.         $self->{CCFLAGS} .= ' -DPERL_CAPI ';
  381.         if ($Is_Win32 && $Config{'cc'} =~ /^cl.exe/i) {
  382.             # Turn off C++ mode of the MSC compiler
  383.             $self->{CCFLAGS} =~ s/-TP(\s|$)//;
  384.             $self->{OPTIMIZE} =~ s/-TP(\s|$)//;
  385.         }
  386.     }
  387.     return $self->{CFLAGS} = qq{
  388. CCFLAGS = $self->{CCFLAGS}
  389. OPTIMIZE = $self->{OPTIMIZE}
  390. PERLTYPE = $self->{PERLTYPE}
  391. LARGE = $self->{LARGE}
  392. SPLIT = $self->{SPLIT}
  393. };
  394.  
  395. }
  396.  
  397. =item clean (o)
  398.  
  399. Defines the clean target.
  400.  
  401. =cut
  402.  
  403. sub clean {
  404. # --- Cleanup and Distribution Sections ---
  405.  
  406.     my($self, %attribs) = @_;
  407.     my(@m,$dir);
  408.     push(@m, '
  409. # Delete temporary files but do not touch installed files. We don\'t delete
  410. # the Makefile here so a later make realclean still has a makefile to use.
  411.  
  412. clean ::
  413. ');
  414.     # clean subdirectories first
  415.     for $dir (@{$self->{DIR}}) {
  416.     push @m, "\t-cd $dir && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) clean\n";
  417.     }
  418.  
  419.     my(@otherfiles) = values %{$self->{XS}}; # .c files from *.xs files
  420.     push(@otherfiles, $attribs{FILES}) if $attribs{FILES};
  421.     push(@otherfiles, qw[./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs.all
  422.              perlmain.c mon.out core so_locations pm_to_blib
  423.              *~ */*~ */*/*~ *$(OBJ_EXT) *$(LIB_EXT) perl.exe
  424.              $(BOOTSTRAP) $(BASEEXT).bso $(BASEEXT).def
  425.              $(BASEEXT).exp
  426.             ]);
  427.     push @m, "\t-$self->{RM_RF} @otherfiles\n";
  428.     # See realclean and ext/utils/make_ext for usage of Makefile.old
  429.     push(@m,
  430.      "\t-$self->{MV} $self->{MAKEFILE} $self->{MAKEFILE}.old \$(DEV_NULL)\n");
  431.     push(@m,
  432.      "\t$attribs{POSTOP}\n")   if $attribs{POSTOP};
  433.     join("", @m);
  434. }
  435.  
  436. =item const_cccmd (o)
  437.  
  438. Returns the full compiler call for C programs and stores the
  439. definition in CONST_CCCMD.
  440.  
  441. =cut
  442.  
  443. sub const_cccmd {
  444.     my($self,$libperl)=@_;
  445.     return $self->{CONST_CCCMD} if $self->{CONST_CCCMD};
  446.     return '' unless $self->needs_linking();
  447.     return $self->{CONST_CCCMD} =
  448.     q{CCCMD = $(CC) -c $(INC) $(CCFLAGS) $(OPTIMIZE) \\
  449.     $(PERLTYPE) $(LARGE) $(SPLIT) $(DEFINE_VERSION) \\
  450.     $(XS_DEFINE_VERSION)};
  451. }
  452.  
  453. =item const_config (o)
  454.  
  455. Defines a couple of constants in the Makefile that are imported from
  456. %Config.
  457.  
  458. =cut
  459.  
  460. sub const_config {
  461. # --- Constants Sections ---
  462.  
  463.     my($self) = shift;
  464.     my(@m,$m);
  465.     push(@m,"\n# These definitions are from config.sh (via $INC{'Config.pm'})\n");
  466.     push(@m,"\n# They may have been overridden via Makefile.PL or on the command line\n");
  467.     my(%once_only);
  468.     foreach $m (@{$self->{CONFIG}}){
  469.     # SITE*EXP macros are defined in &constants; avoid duplicates here
  470.     next if $once_only{$m} or $m eq 'sitelibexp' or $m eq 'sitearchexp';
  471.     push @m, "\U$m\E = ".$self->{uc $m}."\n";
  472.     $once_only{$m} = 1;
  473.     }
  474.     join('', @m);
  475. }
  476.  
  477. =item const_loadlibs (o)
  478.  
  479. Defines EXTRALIBS, LDLOADLIBS, BSLOADLIBS, LD_RUN_PATH. See
  480. L<ExtUtils::Liblist> for details.
  481.  
  482. =cut
  483.  
  484. sub const_loadlibs {
  485.     my($self) = shift;
  486.     return "" unless $self->needs_linking;
  487.     my @m;
  488.     push @m, qq{
  489. # $self->{NAME} might depend on some other libraries:
  490. # See ExtUtils::Liblist for details
  491. #
  492. };
  493.     my($tmp);
  494.     for $tmp (qw/
  495.      EXTRALIBS LDLOADLIBS BSLOADLIBS LD_RUN_PATH
  496.      /) {
  497.     next unless defined $self->{$tmp};
  498.     push @m, "$tmp = $self->{$tmp}\n";
  499.     }
  500.     return join "", @m;
  501. }
  502.  
  503. =item constants (o)
  504.  
  505. Initializes lots of constants and .SUFFIXES and .PHONY
  506.  
  507. =cut
  508.  
  509. sub constants {
  510.     my($self) = @_;
  511.     my(@m,$tmp);
  512.  
  513.     for $tmp (qw/
  514.  
  515.           AR_STATIC_ARGS NAME DISTNAME NAME_SYM VERSION
  516.           VERSION_SYM XS_VERSION INST_BIN INST_EXE INST_LIB
  517.           INST_ARCHLIB INST_SCRIPT PREFIX  INSTALLDIRS
  518.           INSTALLPRIVLIB INSTALLARCHLIB INSTALLSITELIB
  519.           INSTALLSITEARCH INSTALLBIN INSTALLSCRIPT PERL_LIB
  520.           PERL_ARCHLIB SITELIBEXP SITEARCHEXP LIBPERL_A MYEXTLIB
  521.           FIRST_MAKEFILE MAKE_APERL_FILE PERLMAINCC PERL_SRC
  522.           PERL_INC PERL FULLPERL
  523.  
  524.           / ) {
  525.     next unless defined $self->{$tmp};
  526.     push @m, "$tmp = $self->{$tmp}\n";
  527.     }
  528.  
  529.     push @m, qq{
  530. VERSION_MACRO = VERSION
  531. DEFINE_VERSION = -D\$(VERSION_MACRO)=\\\"\$(VERSION)\\\"
  532. XS_VERSION_MACRO = XS_VERSION
  533. XS_DEFINE_VERSION = -D\$(XS_VERSION_MACRO)=\\\"\$(XS_VERSION)\\\"
  534. };
  535.  
  536.     push @m, qq{
  537. MAKEMAKER = $INC{'ExtUtils/MakeMaker.pm'}
  538. MM_VERSION = $ExtUtils::MakeMaker::VERSION
  539. };
  540.  
  541.     push @m, q{
  542. # FULLEXT = Pathname for extension directory (eg Foo/Bar/Oracle).
  543. # BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT. (eg Oracle)
  544. # ROOTEXT = Directory part of FULLEXT with leading slash (eg /DBD)  !!! Deprecated from MM 5.32  !!!
  545. # PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar)
  546. # DLBASE  = Basename part of dynamic library. May be just equal BASEEXT.
  547. };
  548.  
  549.     for $tmp (qw/
  550.           FULLEXT BASEEXT PARENT_NAME DLBASE VERSION_FROM INC DEFINE OBJECT
  551.           LDFROM LINKTYPE
  552.           /    ) {
  553.     next unless defined $self->{$tmp};
  554.     push @m, "$tmp = $self->{$tmp}\n";
  555.     }
  556.  
  557.     push @m, "
  558. # Handy lists of source code files:
  559. XS_FILES= ".join(" \\\n\t", sort keys %{$self->{XS}})."
  560. C_FILES = ".join(" \\\n\t", @{$self->{C}})."
  561. O_FILES = ".join(" \\\n\t", @{$self->{O_FILES}})."
  562. H_FILES = ".join(" \\\n\t", @{$self->{H}})."
  563. MAN1PODS = ".join(" \\\n\t", sort keys %{$self->{MAN1PODS}})."
  564. MAN3PODS = ".join(" \\\n\t", sort keys %{$self->{MAN3PODS}})."
  565. ";
  566.  
  567.     for $tmp (qw/
  568.           INST_MAN1DIR INSTALLMAN1DIR MAN1EXT INST_MAN3DIR INSTALLMAN3DIR MAN3EXT
  569.           /) {
  570.     next unless defined $self->{$tmp};
  571.     push @m, "$tmp = $self->{$tmp}\n";
  572.     }
  573.  
  574.     for $tmp (qw(
  575.         PERM_RW PERM_RWX
  576.         )
  577.          ) {
  578.         my $method = lc($tmp);
  579.     # warn "self[$self] method[$method]";
  580.         push @m, "$tmp = ", $self->$method(), "\n";
  581.     }
  582.  
  583.     push @m, q{
  584. .NO_CONFIG_REC: Makefile
  585. } if $ENV{CLEARCASE_ROOT};
  586.  
  587.     # why not q{} ? -- emacs
  588.     push @m, qq{
  589. # work around a famous dec-osf make(1) feature(?):
  590. makemakerdflt: all
  591.  
  592. .SUFFIXES: .xs .c .C .cpp .cxx .cc \$(OBJ_EXT)
  593.  
  594. # Nick wanted to get rid of .PRECIOUS. I don't remember why. I seem to recall, that
  595. # some make implementations will delete the Makefile when we rebuild it. Because
  596. # we call false(1) when we rebuild it. So make(1) is not completely wrong when it
  597. # does so. Our milage may vary.
  598. # .PRECIOUS: Makefile    # seems to be not necessary anymore
  599.  
  600. .PHONY: all config static dynamic test linkext manifest
  601.  
  602. # Where is the Config information that we are using/depend on
  603. CONFIGDEP = \$(PERL_ARCHLIB)/Config.pm \$(PERL_INC)/config.h
  604. };
  605.  
  606.     my @parentdir = split(/::/, $self->{PARENT_NAME});
  607.     push @m, q{
  608. # Where to put things:
  609. INST_LIBDIR      = }. $self->catdir('$(INST_LIB)',@parentdir)        .q{
  610. INST_ARCHLIBDIR  = }. $self->catdir('$(INST_ARCHLIB)',@parentdir)    .q{
  611.  
  612. INST_AUTODIR     = }. $self->catdir('$(INST_LIB)','auto','$(FULLEXT)')       .q{
  613. INST_ARCHAUTODIR = }. $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)')   .q{
  614. };
  615.  
  616.     if ($self->has_link_code()) {
  617.     push @m, '
  618. INST_STATIC  = $(INST_ARCHAUTODIR)/$(BASEEXT)$(LIB_EXT)
  619. INST_DYNAMIC = $(INST_ARCHAUTODIR)/$(DLBASE).$(DLEXT)
  620. INST_BOOT    = $(INST_ARCHAUTODIR)/$(BASEEXT).bs
  621. ';
  622.     } else {
  623.     push @m, '
  624. INST_STATIC  =
  625. INST_DYNAMIC =
  626. INST_BOOT    =
  627. ';
  628.     }
  629.  
  630.     $tmp = $self->export_list;
  631.     push @m, "
  632. EXPORT_LIST = $tmp
  633. ";
  634.     $tmp = $self->perl_archive;
  635.     push @m, "
  636. PERL_ARCHIVE = $tmp
  637. ";
  638.  
  639. #    push @m, q{
  640. #INST_PM = }.join(" \\\n\t", sort values %{$self->{PM}}).q{
  641. #
  642. #PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM}}).q{
  643. #};
  644.  
  645.     push @m, q{
  646. TO_INST_PM = }.join(" \\\n\t", sort keys %{$self->{PM}}).q{
  647.  
  648. PM_TO_BLIB = }.join(" \\\n\t", %{$self->{PM}}).q{
  649. };
  650.  
  651.     join('',@m);
  652. }
  653.  
  654. =item depend (o)
  655.  
  656. Same as macro for the depend attribute.
  657.  
  658. =cut
  659.  
  660. sub depend {
  661.     my($self,%attribs) = @_;
  662.     my(@m,$key,$val);
  663.     while (($key,$val) = each %attribs){
  664.     last unless defined $key;
  665.     push @m, "$key: $val\n";
  666.     }
  667.     join "", @m;
  668. }
  669.  
  670. =item dir_target (o)
  671.  
  672. Takes an array of directories that need to exist and returns a
  673. Makefile entry for a .exists file in these directories. Returns
  674. nothing, if the entry has already been processed. We're helpless
  675. though, if the same directory comes as $(FOO) _and_ as "bar". Both of
  676. them get an entry, that's why we use "::".
  677.  
  678. =cut
  679.  
  680. sub dir_target {
  681. # --- Make-Directories section (internal method) ---
  682. # dir_target(@array) returns a Makefile entry for the file .exists in each
  683. # named directory. Returns nothing, if the entry has already been processed.
  684. # We're helpless though, if the same directory comes as $(FOO) _and_ as "bar".
  685. # Both of them get an entry, that's why we use "::". I chose '$(PERL)' as the
  686. # prerequisite, because there has to be one, something that doesn't change
  687. # too often :)
  688.  
  689.     my($self,@dirs) = @_;
  690.     my(@m,$dir,$targdir);
  691.     foreach $dir (@dirs) {
  692.     my($src) = $self->catfile($self->{PERL_INC},'perl.h');
  693.     my($targ) = $self->catfile($dir,'.exists');
  694.     # catfile may have adapted syntax of $dir to target OS, so...
  695.     if ($Is_VMS) { # Just remove file name; dirspec is often in macro
  696.         ($targdir = $targ) =~ s:/?\.exists$::;
  697.     }
  698.     else { # while elsewhere we expect to see the dir separator in $targ
  699.         $targdir = dirname($targ);
  700.     }
  701.     next if $self->{DIR_TARGET}{$self}{$targdir}++;
  702.     push @m, qq{
  703. $targ :: $src
  704.     $self->{NOECHO}\$(MKPATH) $targdir
  705.     $self->{NOECHO}\$(EQUALIZE_TIMESTAMP) $src $targ
  706. };
  707.     push(@m, qq{
  708.     -$self->{NOECHO}\$(CHMOD) \$(PERM_RWX) $targdir
  709. }) unless $Is_VMS;
  710.     }
  711.     join "", @m;
  712. }
  713.  
  714. =item dist (o)
  715.  
  716. Defines a lot of macros for distribution support.
  717.  
  718. =cut
  719.  
  720. sub dist {
  721.     my($self, %attribs) = @_;
  722.  
  723.     my(@m);
  724.     # VERSION should be sanitised before use as a file name
  725.     my($version)  = $attribs{VERSION}  || '$(VERSION)';
  726.     my($name)     = $attribs{NAME}     || '$(DISTNAME)';
  727.     my($tar)      = $attribs{TAR}      || 'tar';        # eg /usr/bin/gnutar
  728.     my($tarflags) = $attribs{TARFLAGS} || 'cvf';
  729.     my($zip)      = $attribs{ZIP}      || 'zip';        # eg pkzip Yuck!
  730.     my($zipflags) = $attribs{ZIPFLAGS} || '-r';
  731.     my($compress) = $attribs{COMPRESS} || 'gzip --best';
  732.     my($suffix)   = $attribs{SUFFIX}   || '.gz';          # eg .gz
  733.     my($shar)     = $attribs{SHAR}     || 'shar';       # eg "shar --gzip"
  734.     my($preop)    = $attribs{PREOP}    || "$self->{NOECHO}\$(NOOP)"; # eg update MANIFEST
  735.     my($postop)   = $attribs{POSTOP}   || "$self->{NOECHO}\$(NOOP)"; # eg remove the distdir
  736.  
  737.     my($to_unix)  = $attribs{TO_UNIX} || ($Is_OS2
  738.                       ? "$self->{NOECHO}"
  739.                       . '$(TEST_F) tmp.zip && $(RM) tmp.zip;'
  740.                       . ' $(ZIP) -ll -mr tmp.zip $(DISTVNAME) && unzip -o tmp.zip && $(RM) tmp.zip'
  741.                       : "$self->{NOECHO}\$(NOOP)");
  742.  
  743.     my($ci)       = $attribs{CI}       || 'ci -u';
  744.     my($rcs_label)= $attribs{RCS_LABEL}|| 'rcs -Nv$(VERSION_SYM): -q';
  745.     my($dist_cp)  = $attribs{DIST_CP}  || 'best';
  746.     my($dist_default) = $attribs{DIST_DEFAULT} || 'tardist';
  747.  
  748.     push @m, "
  749. DISTVNAME = ${name}-$version
  750. TAR  = $tar
  751. TARFLAGS = $tarflags
  752. ZIP  = $zip
  753. ZIPFLAGS = $zipflags
  754. COMPRESS = $compress
  755. SUFFIX = $suffix
  756. SHAR = $shar
  757. PREOP = $preop
  758. POSTOP = $postop
  759. TO_UNIX = $to_unix
  760. CI = $ci
  761. RCS_LABEL = $rcs_label
  762. DIST_CP = $dist_cp
  763. DIST_DEFAULT = $dist_default
  764. ";
  765.     join "", @m;
  766. }
  767.  
  768. =item dist_basics (o)
  769.  
  770. Defines the targets distclean, distcheck, skipcheck, manifest.
  771.  
  772. =cut
  773.  
  774. sub dist_basics {
  775.     my($self) = shift;
  776.     my @m;
  777.     push @m, q{
  778. distclean :: realclean distcheck
  779. };
  780.  
  781.     push @m, q{
  782. distcheck :
  783.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=fullcheck \\
  784.         -e fullcheck
  785. };
  786.  
  787.     push @m, q{
  788. skipcheck :
  789.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=skipcheck \\
  790.         -e skipcheck
  791. };
  792.  
  793.     push @m, q{
  794. manifest :
  795.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=mkmanifest \\
  796.         -e mkmanifest
  797. };
  798.     join "", @m;
  799. }
  800.  
  801. =item dist_ci (o)
  802.  
  803. Defines a check in target for RCS.
  804.  
  805. =cut
  806.  
  807. sub dist_ci {
  808.     my($self) = shift;
  809.     my @m;
  810.     push @m, q{
  811. ci :
  812.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=maniread \\
  813.         -e "@all = keys %{ maniread() };" \\
  814.         -e 'print("Executing $(CI) @all\n"); system("$(CI) @all");' \\
  815.         -e 'print("Executing $(RCS_LABEL) ...\n"); system("$(RCS_LABEL) @all");'
  816. };
  817.     join "", @m;
  818. }
  819.  
  820. =item dist_core (o)
  821.  
  822. Defines the targets dist, tardist, zipdist, uutardist, shdist
  823.  
  824. =cut
  825.  
  826. sub dist_core {
  827.     my($self) = shift;
  828.     my @m;
  829.     push @m, q{
  830. dist : $(DIST_DEFAULT)
  831.     }.$self->{NOECHO}.q{$(PERL) -le 'print "Warning: Makefile possibly out of date with $$vf" if ' \
  832.         -e '-e ($$vf="$(VERSION_FROM)") and -M $$vf < -M "}.$self->{MAKEFILE}.q{";'
  833.  
  834. tardist : $(DISTVNAME).tar$(SUFFIX)
  835.  
  836. zipdist : $(DISTVNAME).zip
  837.  
  838. $(DISTVNAME).tar$(SUFFIX) : distdir
  839.     $(PREOP)
  840.     $(TO_UNIX)
  841.     $(TAR) $(TARFLAGS) $(DISTVNAME).tar $(DISTVNAME)
  842.     $(RM_RF) $(DISTVNAME)
  843.     $(COMPRESS) $(DISTVNAME).tar
  844.     $(POSTOP)
  845.  
  846. $(DISTVNAME).zip : distdir
  847.     $(PREOP)
  848.     $(ZIP) $(ZIPFLAGS) $(DISTVNAME).zip $(DISTVNAME)
  849.     $(RM_RF) $(DISTVNAME)
  850.     $(POSTOP)
  851.  
  852. uutardist : $(DISTVNAME).tar$(SUFFIX)
  853.     uuencode $(DISTVNAME).tar$(SUFFIX) \\
  854.         $(DISTVNAME).tar$(SUFFIX) > \\
  855.         $(DISTVNAME).tar$(SUFFIX)_uu
  856.  
  857. shdist : distdir
  858.     $(PREOP)
  859.     $(SHAR) $(DISTVNAME) > $(DISTVNAME).shar
  860.     $(RM_RF) $(DISTVNAME)
  861.     $(POSTOP)
  862. };
  863.     join "", @m;
  864. }
  865.  
  866. =item dist_dir (o)
  867.  
  868. Defines the scratch directory target that will hold the distribution
  869. before tar-ing (or shar-ing).
  870.  
  871. =cut
  872.  
  873. sub dist_dir {
  874.     my($self) = shift;
  875.     my @m;
  876.     push @m, q{
  877. distdir :
  878.     $(RM_RF) $(DISTVNAME)
  879.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Manifest=manicopy,maniread \\
  880.         -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');"
  881. };
  882.     join "", @m;
  883. }
  884.  
  885. =item dist_test (o)
  886.  
  887. Defines a target that produces the distribution in the
  888. scratchdirectory, and runs 'perl Makefile.PL; make ;make test' in that
  889. subdirectory.
  890.  
  891. =cut
  892.  
  893. sub dist_test {
  894.     my($self) = shift;
  895.     my @m;
  896.     push @m, q{
  897. disttest : distdir
  898.     cd $(DISTVNAME) && $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) Makefile.PL
  899.     cd $(DISTVNAME) && $(MAKE)
  900.     cd $(DISTVNAME) && $(MAKE) test
  901. };
  902.     join "", @m;
  903. }
  904.  
  905. =item dlsyms (o)
  906.  
  907. Used by AIX and VMS to define DL_FUNCS and DL_VARS and write the *.exp
  908. files.
  909.  
  910. =cut
  911.  
  912. sub dlsyms {
  913.     my($self,%attribs) = @_;
  914.  
  915.     return '' unless ($^O eq 'aix' && $self->needs_linking() );
  916.  
  917.     my($funcs) = $attribs{DL_FUNCS} || $self->{DL_FUNCS} || {};
  918.     my($vars)  = $attribs{DL_VARS} || $self->{DL_VARS} || [];
  919.     my($funclist)  = $attribs{FUNCLIST} || $self->{FUNCLIST} || [];
  920.     my(@m);
  921.  
  922.     push(@m,"
  923. dynamic :: $self->{BASEEXT}.exp
  924.  
  925. ") unless $self->{SKIPHASH}{'dynamic'}; # dynamic and static are subs, so...
  926.  
  927.     push(@m,"
  928. static :: $self->{BASEEXT}.exp
  929.  
  930. ") unless $self->{SKIPHASH}{'static'};  # we avoid a warning if we tick them
  931.  
  932.     push(@m,"
  933. $self->{BASEEXT}.exp: Makefile.PL
  934. ",'    $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e \'use ExtUtils::Mksymlists; \\
  935.     Mksymlists("NAME" => "',$self->{NAME},'", "DL_FUNCS" => ',
  936.     neatvalue($funcs), ', "FUNCLIST" => ', neatvalue($funclist),
  937.     ', "DL_VARS" => ', neatvalue($vars), ');\'
  938. ');
  939.  
  940.     join('',@m);
  941. }
  942.  
  943. =item dynamic (o)
  944.  
  945. Defines the dynamic target.
  946.  
  947. =cut
  948.  
  949. sub dynamic {
  950. # --- Dynamic Loading Sections ---
  951.  
  952.     my($self) = shift;
  953.     '
  954. ## $(INST_PM) has been moved to the all: target.
  955. ## It remains here for awhile to allow for old usage: "make dynamic"
  956. #dynamic :: '.$self->{MAKEFILE}.' $(INST_DYNAMIC) $(INST_BOOT) $(INST_PM)
  957. dynamic :: '.$self->{MAKEFILE}.' $(INST_DYNAMIC) $(INST_BOOT)
  958.     '.$self->{NOECHO}.'$(NOOP)
  959. ';
  960. }
  961.  
  962. =item dynamic_bs (o)
  963.  
  964. Defines targets for bootstrap files.
  965.  
  966. =cut
  967.  
  968. sub dynamic_bs {
  969.     my($self, %attribs) = @_;
  970.     return '
  971. BOOTSTRAP =
  972. ' unless $self->has_link_code();
  973.  
  974.     return '
  975. BOOTSTRAP = '."$self->{BASEEXT}.bs".'
  976.  
  977. # As Mkbootstrap might not write a file (if none is required)
  978. # we use touch to prevent make continually trying to remake it.
  979. # The DynaLoader only reads a non-empty file.
  980. $(BOOTSTRAP): '."$self->{MAKEFILE} $self->{BOOTDEP}".' $(INST_ARCHAUTODIR)/.exists
  981.     '.$self->{NOECHO}.'echo "Running Mkbootstrap for $(NAME) ($(BSLOADLIBS))"
  982.     '.$self->{NOECHO}.'$(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" \
  983.         -MExtUtils::Mkbootstrap \
  984.         -e "Mkbootstrap(\'$(BASEEXT)\',\'$(BSLOADLIBS)\');"
  985.     '.$self->{NOECHO}.'$(TOUCH) $(BOOTSTRAP)
  986.     $(CHMOD) $(PERM_RW) $@
  987.  
  988. $(INST_BOOT): $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists
  989.     '."$self->{NOECHO}$self->{RM_RF}".' $(INST_BOOT)
  990.     -'.$self->{CP}.' $(BOOTSTRAP) $(INST_BOOT)
  991.     $(CHMOD) $(PERM_RW) $@
  992. ';
  993. }
  994.  
  995. =item dynamic_lib (o)
  996.  
  997. Defines how to produce the *.so (or equivalent) files.
  998.  
  999. =cut
  1000.  
  1001. sub dynamic_lib {
  1002.     my($self, %attribs) = @_;
  1003.     return '' unless $self->needs_linking(); #might be because of a subdir
  1004.  
  1005.     return '' unless $self->has_link_code;
  1006.  
  1007.     my($otherldflags) = $attribs{OTHERLDFLAGS} || "";
  1008.     my($inst_dynamic_dep) = $attribs{INST_DYNAMIC_DEP} || "";
  1009.     my($armaybe) = $attribs{ARMAYBE} || $self->{ARMAYBE} || ":";
  1010.     my($ldfrom) = '$(LDFROM)';
  1011.     $armaybe = 'ar' if ($^O eq 'dec_osf' and $armaybe eq ':');
  1012.     my(@m);
  1013.     push(@m,'
  1014. # This section creates the dynamically loadable $(INST_DYNAMIC)
  1015. # from $(OBJECT) and possibly $(MYEXTLIB).
  1016. ARMAYBE = '.$armaybe.'
  1017. OTHERLDFLAGS = '.$otherldflags.'
  1018. INST_DYNAMIC_DEP = '.$inst_dynamic_dep.'
  1019.  
  1020. $(INST_DYNAMIC): $(OBJECT) $(MYEXTLIB) $(BOOTSTRAP) $(INST_ARCHAUTODIR)/.exists $(EXPORT_LIST) $(PERL_ARCHIVE) $(INST_DYNAMIC_DEP)
  1021. ');
  1022.     if ($armaybe ne ':'){
  1023.     $ldfrom = 'tmp$(LIB_EXT)';
  1024.     push(@m,'    $(ARMAYBE) cr '.$ldfrom.' $(OBJECT)'."\n");
  1025.     push(@m,'    $(RANLIB) '."$ldfrom\n");
  1026.     }
  1027.     $ldfrom = "-all $ldfrom -none" if ($^O eq 'dec_osf');
  1028.  
  1029.     # Brain dead solaris linker does not use LD_RUN_PATH?
  1030.     # This fixes dynamic extensions which need shared libs
  1031.     my $ldrun = '';
  1032.     $ldrun = join ' ', map "-R$_", split /:/, $self->{LD_RUN_PATH}
  1033.        if ($^O eq 'solaris');
  1034.  
  1035.     # The IRIX linker also doesn't use LD_RUN_PATH
  1036.     $ldrun = qq{-rpath "$self->{LD_RUN_PATH}"}
  1037.     if ($^O eq 'irix' && $self->{LD_RUN_PATH});
  1038.  
  1039.     push(@m,'    LD_RUN_PATH="$(LD_RUN_PATH)" $(LD) -o $@ '.$ldrun.' $(LDDLFLAGS) '.$ldfrom.
  1040.         ' $(OTHERLDFLAGS) $(MYEXTLIB) $(PERL_ARCHIVE) $(LDLOADLIBS) $(EXPORT_LIST)');
  1041.     push @m, '
  1042.     $(CHMOD) $(PERM_RWX) $@
  1043. ';
  1044.  
  1045.     push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
  1046.     join('',@m);
  1047. }
  1048.  
  1049. =item exescan
  1050.  
  1051. Deprecated method. Use libscan instead.
  1052.  
  1053. =cut
  1054.  
  1055. sub exescan {
  1056.     my($self,$path) = @_;
  1057.     $path;
  1058. }
  1059.  
  1060. =item extliblist
  1061.  
  1062. Called by init_others, and calls ext ExtUtils::Liblist. See
  1063. L<ExtUtils::Liblist> for details.
  1064.  
  1065. =cut
  1066.  
  1067. sub extliblist {
  1068.     my($self,$libs) = @_;
  1069.     require ExtUtils::Liblist;
  1070.     $self->ext($libs, $Verbose);
  1071. }
  1072.  
  1073. =item file_name_is_absolute
  1074.  
  1075. Takes as argument a path and returns true, if it is an absolute path.
  1076.  
  1077. =cut
  1078.  
  1079. sub file_name_is_absolute {
  1080.     my($self,$file) = @_;
  1081.     if ($Is_Dos){
  1082.         $file =~ m{^([a-z]:)?[\\/]}i ;
  1083.     }
  1084.     else {
  1085.         $file =~ m:^/: ;
  1086.     }
  1087. }
  1088.  
  1089. =item find_perl
  1090.  
  1091. Finds the executables PERL and FULLPERL
  1092.  
  1093. =cut
  1094.  
  1095. sub find_perl {
  1096.     my($self, $ver, $names, $dirs, $trace) = @_;
  1097.     my($name, $dir);
  1098.     if ($trace >= 2){
  1099.     print "Looking for perl $ver by these names:
  1100. @$names
  1101. in these dirs:
  1102. @$dirs
  1103. ";
  1104.     }
  1105.     foreach $dir (@$dirs){
  1106.     next unless defined $dir; # $self->{PERL_SRC} may be undefined
  1107.     foreach $name (@$names){
  1108.         my ($abs, $val);
  1109.         if ($self->file_name_is_absolute($name)) { # /foo/bar
  1110.         $abs = $name;
  1111.         } elsif ($self->canonpath($name) eq $self->canonpath(basename($name))) { # foo
  1112.         $abs = $self->catfile($dir, $name);
  1113.         } else { # foo/bar
  1114.         $abs = $self->canonpath($self->catfile($self->curdir, $name));
  1115.         }
  1116.         print "Checking $abs\n" if ($trace >= 2);
  1117.         next unless $self->maybe_command($abs);
  1118.         print "Executing $abs\n" if ($trace >= 2);
  1119.         $val = `$abs -e 'require $ver; print "VER_OK\n" ' 2>&1`;
  1120.         if ($val =~ /VER_OK/) {
  1121.             print "Using PERL=$abs\n" if $trace;
  1122.             return $abs;
  1123.         } elsif ($trace >= 2) {
  1124.         print "Result: `$val'\n";
  1125.         }
  1126.     }
  1127.     }
  1128.     print STDOUT "Unable to find a perl $ver (by these names: @$names, in these dirs: @$dirs)\n";
  1129.     0; # false and not empty
  1130. }
  1131.  
  1132. =back
  1133.  
  1134. =head2 Methods to actually produce chunks of text for the Makefile
  1135.  
  1136. The methods here are called for each MakeMaker object in the order
  1137. specified by @ExtUtils::MakeMaker::MM_Sections.
  1138.  
  1139. =over 2
  1140.  
  1141. =item fixin
  1142.  
  1143. Inserts the sharpbang or equivalent magic number to a script
  1144.  
  1145. =cut
  1146.  
  1147. sub fixin { # stolen from the pink Camel book, more or less
  1148.     my($self,@files) = @_;
  1149.     my($does_shbang) = $Config::Config{'sharpbang'} =~ /^\s*\#\!/;
  1150.     my($file,$interpreter);
  1151.     for $file (@files) {
  1152.     local(*FIXIN);
  1153.     local(*FIXOUT);
  1154.     open(FIXIN, $file) or Carp::croak "Can't process '$file': $!";
  1155.     local $/ = "\n";
  1156.     chomp(my $line = <FIXIN>);
  1157.     next unless $line =~ s/^\s*\#!\s*//;     # Not a shbang file.
  1158.     # Now figure out the interpreter name.
  1159.     my($cmd,$arg) = split ' ', $line, 2;
  1160.     $cmd =~ s!^.*/!!;
  1161.  
  1162.     # Now look (in reverse) for interpreter in absolute PATH (unless perl).
  1163.     if ($cmd eq "perl") {
  1164.             if ($Config{startperl} =~ m,^\#!.*/perl,) {
  1165.                 $interpreter = $Config{startperl};
  1166.                 $interpreter =~ s,^\#!,,;
  1167.             } else {
  1168.                 $interpreter = $Config{perlpath};
  1169.             }
  1170.     } else {
  1171.         my(@absdirs) = reverse grep {$self->file_name_is_absolute} $self->path;
  1172.         $interpreter = '';
  1173.         my($dir);
  1174.         foreach $dir (@absdirs) {
  1175.         if ($self->maybe_command($cmd)) {
  1176.             warn "Ignoring $interpreter in $file\n" if $Verbose && $interpreter;
  1177.             $interpreter = $self->catfile($dir,$cmd);
  1178.         }
  1179.         }
  1180.     }
  1181.     # Figure out how to invoke interpreter on this machine.
  1182.  
  1183.     my($shb) = "";
  1184.     if ($interpreter) {
  1185.         print STDOUT "Changing sharpbang in $file to $interpreter" if $Verbose;
  1186.         # this is probably value-free on DOSISH platforms
  1187.         if ($does_shbang) {
  1188.         $shb .= "$Config{'sharpbang'}$interpreter";
  1189.         $shb .= ' ' . $arg if defined $arg;
  1190.         $shb .= "\n";
  1191.         }
  1192.         $shb .= qq{
  1193. eval 'exec $interpreter $arg -S \$0 \${1+"\$\@"}'
  1194.     if 0; # not running under some shell
  1195. } unless $Is_Win32; # this won't work on win32, so don't
  1196.     } else {
  1197.         warn "Can't find $cmd in PATH, $file unchanged"
  1198.         if $Verbose;
  1199.         next;
  1200.     }
  1201.  
  1202.     unless ( open(FIXOUT,">$file.new") ) {
  1203.         warn "Can't create new $file: $!\n";
  1204.         next;
  1205.     }
  1206.     my($dev,$ino,$mode) = stat FIXIN;
  1207.     # If they override perm_rwx, we won't notice it during fixin,
  1208.     # because fixin is run through a new instance of MakeMaker.
  1209.     # That is why we must run another CHMOD later.
  1210.     $mode = oct($self->perm_rwx) unless $dev;
  1211.     chmod $mode, $file;
  1212.     
  1213.     # Print out the new #! line (or equivalent).
  1214.     local $\;
  1215.     undef $/;
  1216.     print FIXOUT $shb, <FIXIN>;
  1217.     close FIXIN;
  1218.     close FIXOUT;
  1219.     # can't rename open files on some DOSISH platforms
  1220.     unless ( rename($file, "$file.bak") ) {    
  1221.         warn "Can't rename $file to $file.bak: $!";
  1222.         next;
  1223.     }
  1224.     unless ( rename("$file.new", $file) ) {    
  1225.         warn "Can't rename $file.new to $file: $!";
  1226.         unless ( rename("$file.bak", $file) ) {
  1227.             warn "Can't rename $file.bak back to $file either: $!";
  1228.         warn "Leaving $file renamed as $file.bak\n";
  1229.         }
  1230.         next;
  1231.     }
  1232.     unlink "$file.bak";
  1233.     } continue {
  1234.     chmod oct($self->perm_rwx), $file or
  1235.       die "Can't reset permissions for $file: $!\n";
  1236.     system("$Config{'eunicefix'} $file") if $Config{'eunicefix'} ne ':';;
  1237.     }
  1238. }
  1239.  
  1240. =item force (o)
  1241.  
  1242. Just writes FORCE:
  1243.  
  1244. =cut
  1245.  
  1246. sub force {
  1247.     my($self) = shift;
  1248.     '# Phony target to force checking subdirectories.
  1249. FORCE:
  1250.     '.$self->{NOECHO}.'$(NOOP)
  1251. ';
  1252. }
  1253.  
  1254. =item guess_name
  1255.  
  1256. Guess the name of this package by examining the working directory's
  1257. name. MakeMaker calls this only if the developer has not supplied a
  1258. NAME attribute.
  1259.  
  1260. =cut
  1261.  
  1262. # ';
  1263.  
  1264. sub guess_name {
  1265.     my($self) = @_;
  1266.     use Cwd 'cwd';
  1267.     my $name = basename(cwd());
  1268.     $name =~ s|[\-_][\d\.\-]+$||;   # this is new with MM 5.00, we
  1269.                                     # strip minus or underline
  1270.                                     # followed by a float or some such
  1271.     print "Warning: Guessing NAME [$name] from current directory name.\n";
  1272.     $name;
  1273. }
  1274.  
  1275. =item has_link_code
  1276.  
  1277. Returns true if C, XS, MYEXTLIB or similar objects exist within this
  1278. object that need a compiler. Does not descend into subdirectories as
  1279. needs_linking() does.
  1280.  
  1281. =cut
  1282.  
  1283. sub has_link_code {
  1284.     my($self) = shift;
  1285.     return $self->{HAS_LINK_CODE} if defined $self->{HAS_LINK_CODE};
  1286.     if ($self->{OBJECT} or @{$self->{C} || []} or $self->{MYEXTLIB}){
  1287.     $self->{HAS_LINK_CODE} = 1;
  1288.     return 1;
  1289.     }
  1290.     return $self->{HAS_LINK_CODE} = 0;
  1291. }
  1292.  
  1293. =item init_dirscan
  1294.  
  1295. Initializes DIR, XS, PM, C, O_FILES, H, PL_FILES, MAN*PODS, EXE_FILES.
  1296.  
  1297. =cut
  1298.  
  1299. sub init_dirscan {    # --- File and Directory Lists (.xs .pm .pod etc)
  1300.     my($self) = @_;
  1301.     my($name, %dir, %xs, %c, %h, %ignore, %pl_files, %manifypods);
  1302.     local(%pm); #the sub in find() has to see this hash
  1303.     @ignore{qw(Makefile.PL test.pl)} = (1,1);
  1304.     $ignore{'makefile.pl'} = 1 if $Is_VMS;
  1305.     foreach $name ($self->lsdir($self->curdir)){
  1306.     next if $name =~ /\#/;
  1307.     next if $name eq $self->curdir or $name eq $self->updir or $ignore{$name};
  1308.     next unless $self->libscan($name);
  1309.     if (-d $name){
  1310.         next if -l $name; # We do not support symlinks at all
  1311.         $dir{$name} = $name if (-f $self->catfile($name,"Makefile.PL"));
  1312.     } elsif ($name =~ /\.xs$/){
  1313.         my($c); ($c = $name) =~ s/\.xs$/.c/;
  1314.         $xs{$name} = $c;
  1315.         $c{$c} = 1;
  1316.     } elsif ($name =~ /\.c(pp|xx|c)?$/i){  # .c .C .cpp .cxx .cc
  1317.         $c{$name} = 1
  1318.         unless $name =~ m/perlmain\.c/; # See MAP_TARGET
  1319.     } elsif ($name =~ /\.h$/i){
  1320.         $h{$name} = 1;
  1321.     } elsif ($name =~ /\.PL$/) {
  1322.         ($pl_files{$name} = $name) =~ s/\.PL$// ;
  1323.     } elsif ($Is_VMS && $name =~ /\.pl$/) {  # case-insensitive filesystem
  1324.         local($/); open(PL,$name); my $txt = <PL>; close PL;
  1325.         if ($txt =~ /Extracting \S+ \(with variable substitutions/) {
  1326.         ($pl_files{$name} = $name) =~ s/\.pl$// ;
  1327.         }
  1328.         else { $pm{$name} = $self->catfile('$(INST_LIBDIR)',$name); }
  1329.     } elsif ($name =~ /\.(p[ml]|pod)$/){
  1330.         $pm{$name} = $self->catfile('$(INST_LIBDIR)',$name);
  1331.     }
  1332.     }
  1333.  
  1334.     # Some larger extensions often wish to install a number of *.pm/pl
  1335.     # files into the library in various locations.
  1336.  
  1337.     # The attribute PMLIBDIRS holds an array reference which lists
  1338.     # subdirectories which we should search for library files to
  1339.     # install. PMLIBDIRS defaults to [ 'lib', $self->{BASEEXT} ].  We
  1340.     # recursively search through the named directories (skipping any
  1341.     # which don't exist or contain Makefile.PL files).
  1342.  
  1343.     # For each *.pm or *.pl file found $self->libscan() is called with
  1344.     # the default installation path in $_[1]. The return value of
  1345.     # libscan defines the actual installation location.  The default
  1346.     # libscan function simply returns the path.  The file is skipped
  1347.     # if libscan returns false.
  1348.  
  1349.     # The default installation location passed to libscan in $_[1] is:
  1350.     #
  1351.     #  ./*.pm        => $(INST_LIBDIR)/*.pm
  1352.     #  ./xyz/...    => $(INST_LIBDIR)/xyz/...
  1353.     #  ./lib/...    => $(INST_LIB)/...
  1354.     #
  1355.     # In this way the 'lib' directory is seen as the root of the actual
  1356.     # perl library whereas the others are relative to INST_LIBDIR
  1357.     # (which includes PARENT_NAME). This is a subtle distinction but one
  1358.     # that's important for nested modules.
  1359.  
  1360.     $self->{PMLIBDIRS} = ['lib', $self->{BASEEXT}]
  1361.     unless $self->{PMLIBDIRS};
  1362.  
  1363.     #only existing directories that aren't in $dir are allowed
  1364.  
  1365.     # Avoid $_ wherever possible:
  1366.     # @{$self->{PMLIBDIRS}} = grep -d && !$dir{$_}, @{$self->{PMLIBDIRS}};
  1367.     my (@pmlibdirs) = @{$self->{PMLIBDIRS}};
  1368.     my ($pmlibdir);
  1369.     @{$self->{PMLIBDIRS}} = ();
  1370.     foreach $pmlibdir (@pmlibdirs) {
  1371.     -d $pmlibdir && !$dir{$pmlibdir} && push @{$self->{PMLIBDIRS}}, $pmlibdir;
  1372.     }
  1373.  
  1374.     if (@{$self->{PMLIBDIRS}}){
  1375.     print "Searching PMLIBDIRS: @{$self->{PMLIBDIRS}}\n"
  1376.         if ($Verbose >= 2);
  1377.     require File::Find;
  1378.     File::Find::find(sub {
  1379.         if (-d $_){
  1380.         if ($_ eq "CVS" || $_ eq "RCS"){
  1381.             $File::Find::prune = 1;
  1382.         }
  1383.         return;
  1384.         }
  1385.         return if /\#/;
  1386.         my($path, $prefix) = ($File::Find::name, '$(INST_LIBDIR)');
  1387.         my($striplibpath,$striplibname);
  1388.         $prefix =  '$(INST_LIB)' if (($striplibpath = $path) =~ s:^(\W*)lib\W:$1:i);
  1389.         ($striplibname,$striplibpath) = fileparse($striplibpath);
  1390.         my($inst) = $self->catfile($prefix,$striplibpath,$striplibname);
  1391.         local($_) = $inst; # for backwards compatibility
  1392.         $inst = $self->libscan($inst);
  1393.         print "libscan($path) => '$inst'\n" if ($Verbose >= 2);
  1394.         return unless $inst;
  1395.         $pm{$path} = $inst;
  1396.     }, @{$self->{PMLIBDIRS}});
  1397.     }
  1398.  
  1399.     $self->{DIR} = [sort keys %dir] unless $self->{DIR};
  1400.     $self->{XS}  = \%xs             unless $self->{XS};
  1401.     $self->{PM}  = \%pm             unless $self->{PM};
  1402.     $self->{C}   = [sort keys %c]   unless $self->{C};
  1403.     my(@o_files) = @{$self->{C}};
  1404.     $self->{O_FILES} = [grep s/\.c(pp|xx|c)?$/$self->{OBJ_EXT}/i, @o_files] ;
  1405.     $self->{H}   = [sort keys %h]   unless $self->{H};
  1406.     $self->{PL_FILES} = \%pl_files unless $self->{PL_FILES};
  1407.  
  1408.     # Set up names of manual pages to generate from pods
  1409.     if ($self->{MAN1PODS}) {
  1410.     } elsif ( $self->{INST_MAN1DIR} =~ /^(none|\s*)$/ ) {
  1411.         $self->{MAN1PODS} = {};
  1412.     } else {
  1413.     my %manifypods = ();
  1414.     if ( exists $self->{EXE_FILES} ) {
  1415.         foreach $name (@{$self->{EXE_FILES}}) {
  1416. #        use FileHandle ();
  1417. #        my $fh = new FileHandle;
  1418.         local *FH;
  1419.         my($ispod)=0;
  1420. #        if ($fh->open("<$name")) {
  1421.         if (open(FH,"<$name")) {
  1422. #            while (<$fh>) {
  1423.             while (<FH>) {
  1424.             if (/^=head1\s+\w+/) {
  1425.                 $ispod=1;
  1426.                 last;
  1427.             }
  1428.             }
  1429. #            $fh->close;
  1430.             close FH;
  1431.         } else {
  1432.             # If it doesn't exist yet, we assume, it has pods in it
  1433.             $ispod = 1;
  1434.         }
  1435.         if( $ispod ) {
  1436.             $manifypods{$name} =
  1437.             $self->catfile('$(INST_MAN1DIR)',
  1438.                        basename($name).'.$(MAN1EXT)');
  1439.         }
  1440.         }
  1441.     }
  1442.     $self->{MAN1PODS} = \%manifypods;
  1443.     }
  1444.     if ($self->{MAN3PODS}) {
  1445.     } elsif ( $self->{INST_MAN3DIR} =~ /^(none|\s*)$/ ) {
  1446.         $self->{MAN3PODS} = {};
  1447.     } else {
  1448.     my %manifypods = (); # we collect the keys first, i.e. the files
  1449.                  # we have to convert to pod
  1450.     foreach $name (keys %{$self->{PM}}) {
  1451.         if ($name =~ /\.pod$/ ) {
  1452.         $manifypods{$name} = $self->{PM}{$name};
  1453.         } elsif ($name =~ /\.p[ml]$/ ) {
  1454. #        use FileHandle ();
  1455. #        my $fh = new FileHandle;
  1456.         local *FH;
  1457.         my($ispod)=0;
  1458. #        $fh->open("<$name");
  1459.         if (open(FH,"<$name")) {
  1460.             #        while (<$fh>) {
  1461.             while (<FH>) {
  1462.             if (/^=head1\s+\w+/) {
  1463.                 $ispod=1;
  1464.                 last;
  1465.             }
  1466.             }
  1467.             #        $fh->close;
  1468.             close FH;
  1469.         } else {
  1470.             $ispod = 1;
  1471.         }
  1472.         if( $ispod ) {
  1473.             $manifypods{$name} = $self->{PM}{$name};
  1474.         }
  1475.         }
  1476.     }
  1477.  
  1478.     # Remove "Configure.pm" and similar, if it's not the only pod listed
  1479.     # To force inclusion, just name it "Configure.pod", or override MAN3PODS
  1480.     foreach $name (keys %manifypods) {
  1481.         if ($name =~ /(config|setup).*\.pm/i) {
  1482.         delete $manifypods{$name};
  1483.         next;
  1484.         }
  1485.         my($manpagename) = $name;
  1486.         unless ($manpagename =~ s!^\W*lib\W+!!) { # everything below lib is ok
  1487.         $manpagename = $self->catfile(split(/::/,$self->{PARENT_NAME}),$manpagename);
  1488.         }
  1489.         $manpagename =~ s/\.p(od|m|l)$//;
  1490.         $manpagename = $self->replace_manpage_separator($manpagename);
  1491.         $manifypods{$name} = $self->catfile("\$(INST_MAN3DIR)","$manpagename.\$(MAN3EXT)");
  1492.     }
  1493.     $self->{MAN3PODS} = \%manifypods;
  1494.     }
  1495. }
  1496.  
  1497. =item init_main
  1498.  
  1499. Initializes NAME, FULLEXT, BASEEXT, PARENT_NAME, DLBASE, PERL_SRC,
  1500. PERL_LIB, PERL_ARCHLIB, PERL_INC, INSTALLDIRS, INST_*, INSTALL*,
  1501. PREFIX, CONFIG, AR, AR_STATIC_ARGS, LD, OBJ_EXT, LIB_EXT, EXE_EXT, MAP_TARGET,
  1502. LIBPERL_A, VERSION_FROM, VERSION, DISTNAME, VERSION_SYM.
  1503.  
  1504. =cut
  1505.  
  1506. sub init_main {
  1507.     my($self) = @_;
  1508.  
  1509.     # --- Initialize Module Name and Paths
  1510.  
  1511.     # NAME    = Foo::Bar::Oracle
  1512.     # FULLEXT = Foo/Bar/Oracle
  1513.     # BASEEXT = Oracle
  1514.     # ROOTEXT = Directory part of FULLEXT with leading /. !!! Deprecated from MM 5.32 !!!
  1515.     # PARENT_NAME = Foo::Bar
  1516. ### Only UNIX:
  1517. ###    ($self->{FULLEXT} =
  1518. ###     $self->{NAME}) =~ s!::!/!g ; #eg. BSD/Foo/Socket
  1519.     $self->{FULLEXT} = $self->catdir(split /::/, $self->{NAME});
  1520.  
  1521.  
  1522.     # Copied from DynaLoader:
  1523.  
  1524.     my(@modparts) = split(/::/,$self->{NAME});
  1525.     my($modfname) = $modparts[-1];
  1526.  
  1527.     # Some systems have restrictions on files names for DLL's etc.
  1528.     # mod2fname returns appropriate file base name (typically truncated)
  1529.     # It may also edit @modparts if required.
  1530.     if (defined &DynaLoader::mod2fname) {
  1531.         $modfname = &DynaLoader::mod2fname(\@modparts);
  1532.     }
  1533.  
  1534.     ($self->{PARENT_NAME}, $self->{BASEEXT}) = $self->{NAME} =~ m!(?:([\w:]+)::)?(\w+)$! ;
  1535.  
  1536.     if (defined &DynaLoader::mod2fname) {
  1537.     # As of 5.001m, dl_os2 appends '_'
  1538.     $self->{DLBASE} = $modfname;
  1539.     } else {
  1540.     $self->{DLBASE} = '$(BASEEXT)';
  1541.     }
  1542.  
  1543.  
  1544.     ### ROOTEXT deprecated from MM 5.32
  1545. ###    ($self->{ROOTEXT} =
  1546. ###     $self->{FULLEXT}) =~ s#/?\Q$self->{BASEEXT}\E$## ;      #eg. /BSD/Foo
  1547. ###    $self->{ROOTEXT} = ($Is_VMS ? '' : '/') . $self->{ROOTEXT} if $self->{ROOTEXT};
  1548.  
  1549.  
  1550.     # --- Initialize PERL_LIB, INST_LIB, PERL_SRC
  1551.  
  1552.     # *Real* information: where did we get these two from? ...
  1553.     my $inc_config_dir = dirname($INC{'Config.pm'});
  1554.     my $inc_carp_dir   = dirname($INC{'Carp.pm'});
  1555.  
  1556.     unless ($self->{PERL_SRC}){
  1557.     my($dir);
  1558.     foreach $dir ($self->updir(),$self->catdir($self->updir(),$self->updir()),$self->catdir($self->updir(),$self->updir(),$self->updir())){
  1559.         if (
  1560.         -f $self->catfile($dir,"config.sh")
  1561.         &&
  1562.         -f $self->catfile($dir,"perl.h")
  1563.         &&
  1564.         -f $self->catfile($dir,"lib","Exporter.pm")
  1565.            ) {
  1566.         $self->{PERL_SRC}=$dir ;
  1567.         last;
  1568.         }
  1569.     }
  1570.     }
  1571.     if ($self->{PERL_SRC}){
  1572.     $self->{PERL_LIB}     ||= $self->catdir("$self->{PERL_SRC}","lib");
  1573.     $self->{PERL_ARCHLIB} = $self->{PERL_LIB};
  1574.     $self->{PERL_INC}     = ($Is_Win32) ? $self->catdir($self->{PERL_LIB},"CORE") : $self->{PERL_SRC};
  1575.  
  1576.     # catch a situation that has occurred a few times in the past:
  1577.     unless (
  1578.         -s $self->catfile($self->{PERL_SRC},'cflags')
  1579.         or
  1580.         $Is_VMS
  1581.         &&
  1582.         -s $self->catfile($self->{PERL_SRC},'perlshr_attr.opt')
  1583.         or
  1584.         $Is_Mac
  1585.         or
  1586.         $Is_Win32
  1587.            ){
  1588.         warn qq{
  1589. You cannot build extensions below the perl source tree after executing
  1590. a 'make clean' in the perl source tree.
  1591.  
  1592. To rebuild extensions distributed with the perl source you should
  1593. simply Configure (to include those extensions) and then build perl as
  1594. normal. After installing perl the source tree can be deleted. It is
  1595. not needed for building extensions by running 'perl Makefile.PL'
  1596. usually without extra arguments.
  1597.  
  1598. It is recommended that you unpack and build additional extensions away
  1599. from the perl source tree.
  1600. };
  1601.     }
  1602.     } else {
  1603.     # we should also consider $ENV{PERL5LIB} here
  1604.     $self->{PERL_LIB}     ||= $Config::Config{privlibexp};
  1605.     $self->{PERL_ARCHLIB} ||= $Config::Config{archlibexp};
  1606.     $self->{PERL_INC}     = $self->catdir("$self->{PERL_ARCHLIB}","CORE"); # wild guess for now
  1607.     my $perl_h;
  1608.     unless (-f ($perl_h = $self->catfile($self->{PERL_INC},"perl.h"))){
  1609.         die qq{
  1610. Error: Unable to locate installed Perl libraries or Perl source code.
  1611.  
  1612. It is recommended that you install perl in a standard location before
  1613. building extensions. Some precompiled versions of perl do not contain
  1614. these header files, so you cannot build extensions. In such a case,
  1615. please build and install your perl from a fresh perl distribution. It
  1616. usually solves this kind of problem.
  1617.  
  1618. \(You get this message, because MakeMaker could not find "$perl_h"\)
  1619. };
  1620.     }
  1621. #     print STDOUT "Using header files found in $self->{PERL_INC}\n"
  1622. #         if $Verbose && $self->needs_linking();
  1623.  
  1624.     }
  1625.  
  1626.     # We get SITELIBEXP and SITEARCHEXP directly via
  1627.     # Get_from_Config. When we are running standard modules, these
  1628.     # won't matter, we will set INSTALLDIRS to "perl". Otherwise we
  1629.     # set it to "site". I prefer that INSTALLDIRS be set from outside
  1630.     # MakeMaker.
  1631.     $self->{INSTALLDIRS} ||= "site";
  1632.  
  1633.     # INST_LIB typically pre-set if building an extension after
  1634.     # perl has been built and installed. Setting INST_LIB allows
  1635.     # you to build directly into, say $Config::Config{privlibexp}.
  1636.     unless ($self->{INST_LIB}){
  1637.  
  1638.  
  1639.     ##### XXXXX We have to change this nonsense
  1640.  
  1641.     if (defined $self->{PERL_SRC} and $self->{INSTALLDIRS} eq "perl") {
  1642.         $self->{INST_LIB} = $self->{INST_ARCHLIB} = $self->{PERL_LIB};
  1643.     } else {
  1644.         $self->{INST_LIB} = $self->catdir($self->curdir,"blib","lib");
  1645.     }
  1646.     }
  1647.     $self->{INST_ARCHLIB} ||= $self->catdir($self->curdir,"blib","arch");
  1648.     $self->{INST_BIN} ||= $self->catdir($self->curdir,'blib','bin');
  1649.  
  1650.     # We need to set up INST_LIBDIR before init_libscan() for VMS
  1651.     my @parentdir = split(/::/, $self->{PARENT_NAME});
  1652.     $self->{INST_LIBDIR} = $self->catdir('$(INST_LIB)',@parentdir);
  1653.     $self->{INST_ARCHLIBDIR} = $self->catdir('$(INST_ARCHLIB)',@parentdir);
  1654.     $self->{INST_AUTODIR} = $self->catdir('$(INST_LIB)','auto','$(FULLEXT)');
  1655.     $self->{INST_ARCHAUTODIR} = $self->catdir('$(INST_ARCHLIB)','auto','$(FULLEXT)');
  1656.  
  1657.     # INST_EXE is deprecated, should go away March '97
  1658.     $self->{INST_EXE} ||= $self->catdir($self->curdir,'blib','script');
  1659.     $self->{INST_SCRIPT} ||= $self->catdir($self->curdir,'blib','script');
  1660.  
  1661.     # The user who requests an installation directory explicitly
  1662.     # should not have to tell us a architecture installation directory
  1663.     # as well. We look if a directory exists that is named after the
  1664.     # architecture. If not we take it as a sign that it should be the
  1665.     # same as the requested installation directory. Otherwise we take
  1666.     # the found one.
  1667.     # We do the same thing twice: for privlib/archlib and for sitelib/sitearch
  1668.     my($libpair);
  1669.     for $libpair ({l=>"privlib", a=>"archlib"}, {l=>"sitelib", a=>"sitearch"}) {
  1670.     my $lib = "install$libpair->{l}";
  1671.     my $Lib = uc $lib;
  1672.     my $Arch = uc "install$libpair->{a}";
  1673.     if( $self->{$Lib} && ! $self->{$Arch} ){
  1674.         my($ilib) = $Config{$lib};
  1675.         $ilib = VMS::Filespec::unixify($ilib) if $Is_VMS;
  1676.  
  1677.         $self->prefixify($Arch,$ilib,$self->{$Lib});
  1678.  
  1679.         unless (-d $self->{$Arch}) {
  1680.         print STDOUT "Directory $self->{$Arch} not found, thusly\n" if $Verbose;
  1681.         $self->{$Arch} = $self->{$Lib};
  1682.         }
  1683.         print STDOUT "Defaulting $Arch to $self->{$Arch}\n" if $Verbose;
  1684.     }
  1685.     }
  1686.  
  1687.     # we have to look at the relation between $Config{prefix} and the
  1688.     # requested values. We're going to set the $Config{prefix} part of
  1689.     # all the installation path variables to literally $(PREFIX), so
  1690.     # the user can still say make PREFIX=foo
  1691.     my($configure_prefix) = $Config{'prefix'};
  1692.     $configure_prefix = VMS::Filespec::unixify($configure_prefix) if $Is_VMS;
  1693.     $self->{PREFIX} ||= $configure_prefix;
  1694.  
  1695.  
  1696.     my($install_variable,$search_prefix,$replace_prefix);
  1697.  
  1698.     # If the prefix contains perl, Configure shapes the tree as follows:
  1699.     #    perlprefix/lib/                INSTALLPRIVLIB
  1700.     #    perlprefix/lib/pod/
  1701.     #    perlprefix/lib/site_perl/    INSTALLSITELIB
  1702.     #    perlprefix/bin/        INSTALLBIN
  1703.     #    perlprefix/man/        INSTALLMAN1DIR
  1704.     # else
  1705.     #    prefix/lib/perl5/        INSTALLPRIVLIB
  1706.     #    prefix/lib/perl5/pod/
  1707.     #    prefix/lib/perl5/site_perl/    INSTALLSITELIB
  1708.     #    prefix/bin/            INSTALLBIN
  1709.     #    prefix/lib/perl5/man/        INSTALLMAN1DIR
  1710.     #
  1711.     # The above results in various kinds of breakage on various
  1712.     # platforms, so we cope with it as follows: if prefix/lib/perl5
  1713.     # or prefix/lib/perl5/man exist, we'll replace those instead
  1714.     # of /prefix/{lib,man}
  1715.  
  1716.     $replace_prefix = qq[\$\(PREFIX\)];
  1717.     for $install_variable (qw/
  1718.                INSTALLBIN
  1719.                INSTALLSCRIPT
  1720.                /) {
  1721.     $self->prefixify($install_variable,$configure_prefix,$replace_prefix);
  1722.     }
  1723.     my $funkylibdir = $self->catdir($configure_prefix,"lib","perl5");
  1724.     $funkylibdir = '' unless -d $funkylibdir;
  1725.     $search_prefix = $funkylibdir || $self->catdir($configure_prefix,"lib");
  1726.     if ($self->{LIB}) {
  1727.     $self->{INSTALLPRIVLIB} = $self->{INSTALLSITELIB} = $self->{LIB};
  1728.     $self->{INSTALLARCHLIB} = $self->{INSTALLSITEARCH} = 
  1729.         $self->catdir($self->{LIB},$Config{'archname'});
  1730.     }
  1731.     else {
  1732.     if (-d $self->catdir($self->{PREFIX},"lib","perl5")) {
  1733.         $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib", "perl5");
  1734.     }
  1735.     else {
  1736.         $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib");
  1737.     }
  1738.     for $install_variable (qw/
  1739.                    INSTALLPRIVLIB
  1740.                    INSTALLARCHLIB
  1741.                    INSTALLSITELIB
  1742.                    INSTALLSITEARCH
  1743.                    /)
  1744.     {
  1745.         $self->prefixify($install_variable,$search_prefix,$replace_prefix);
  1746.     }
  1747.     }
  1748.     my $funkymandir = $self->catdir($configure_prefix,"lib","perl5","man");
  1749.     $funkymandir = '' unless -d $funkymandir;
  1750.     $search_prefix = $funkymandir || $self->catdir($configure_prefix,"man");
  1751.     if (-d $self->catdir($self->{PREFIX},"lib","perl5", "man")) {
  1752.     $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"lib", "perl5", "man");
  1753.     }
  1754.     else {
  1755.     $replace_prefix = $self->catdir(qq[\$\(PREFIX\)],"man");
  1756.     }
  1757.     for $install_variable (qw/
  1758.                INSTALLMAN1DIR
  1759.                INSTALLMAN3DIR
  1760.                /)
  1761.     {
  1762.     $self->prefixify($install_variable,$search_prefix,$replace_prefix);
  1763.     }
  1764.  
  1765.     # Now we head at the manpages. Maybe they DO NOT want manpages
  1766.     # installed
  1767.     $self->{INSTALLMAN1DIR} = $Config::Config{installman1dir}
  1768.     unless defined $self->{INSTALLMAN1DIR};
  1769.     unless (defined $self->{INST_MAN1DIR}){
  1770.     if ($self->{INSTALLMAN1DIR} =~ /^(none|\s*)$/){
  1771.         $self->{INST_MAN1DIR} = $self->{INSTALLMAN1DIR};
  1772.     } else {
  1773.         $self->{INST_MAN1DIR} = $self->catdir($self->curdir,'blib','man1');
  1774.     }
  1775.     }
  1776.     $self->{MAN1EXT} ||= $Config::Config{man1ext};
  1777.  
  1778.     $self->{INSTALLMAN3DIR} = $Config::Config{installman3dir}
  1779.     unless defined $self->{INSTALLMAN3DIR};
  1780.     unless (defined $self->{INST_MAN3DIR}){
  1781.     if ($self->{INSTALLMAN3DIR} =~ /^(none|\s*)$/){
  1782.         $self->{INST_MAN3DIR} = $self->{INSTALLMAN3DIR};
  1783.     } else {
  1784.         $self->{INST_MAN3DIR} = $self->catdir($self->curdir,'blib','man3');
  1785.     }
  1786.     }
  1787.     $self->{MAN3EXT} ||= $Config::Config{man3ext};
  1788.  
  1789.  
  1790.     # Get some stuff out of %Config if we haven't yet done so
  1791.     print STDOUT "CONFIG must be an array ref\n"
  1792.     if ($self->{CONFIG} and ref $self->{CONFIG} ne 'ARRAY');
  1793.     $self->{CONFIG} = [] unless (ref $self->{CONFIG});
  1794.     push(@{$self->{CONFIG}}, @ExtUtils::MakeMaker::Get_from_Config);
  1795.     push(@{$self->{CONFIG}}, 'shellflags') if $Config::Config{shellflags};
  1796.     my(%once_only,$m);
  1797.     foreach $m (@{$self->{CONFIG}}){
  1798.     next if $once_only{$m};
  1799.     print STDOUT "CONFIG key '$m' does not exist in Config.pm\n"
  1800.         unless exists $Config::Config{$m};
  1801.     $self->{uc $m} ||= $Config::Config{$m};
  1802.     $once_only{$m} = 1;
  1803.     }
  1804.  
  1805. # This is too dangerous:
  1806. #    if ($^O eq "next") {
  1807. #    $self->{AR} = "libtool";
  1808. #    $self->{AR_STATIC_ARGS} = "-o";
  1809. #    }
  1810. # But I leave it as a placeholder
  1811.  
  1812.     $self->{AR_STATIC_ARGS} ||= "cr";
  1813.  
  1814.     # These should never be needed
  1815.     $self->{LD} ||= 'ld';
  1816.     $self->{OBJ_EXT} ||= '.o';
  1817.     $self->{LIB_EXT} ||= '.a';
  1818.  
  1819.     $self->{MAP_TARGET} ||= "perl";
  1820.  
  1821.     $self->{LIBPERL_A} ||= "libperl$self->{LIB_EXT}";
  1822.  
  1823.     # make a simple check if we find Exporter
  1824.     warn "Warning: PERL_LIB ($self->{PERL_LIB}) seems not to be a perl library directory
  1825.         (Exporter.pm not found)"
  1826.     unless -f $self->catfile("$self->{PERL_LIB}","Exporter.pm") ||
  1827.         $self->{NAME} eq "ExtUtils::MakeMaker";
  1828.  
  1829.     # Determine VERSION and VERSION_FROM
  1830.     ($self->{DISTNAME}=$self->{NAME}) =~ s#(::)#-#g unless $self->{DISTNAME};
  1831.     if ($self->{VERSION_FROM}){
  1832.     $self->{VERSION} = $self->parse_version($self->{VERSION_FROM}) or
  1833.         Carp::carp "WARNING: Setting VERSION via file '$self->{VERSION_FROM}' failed\n"
  1834.     }
  1835.  
  1836.     # strip blanks
  1837.     if ($self->{VERSION}) {
  1838.     $self->{VERSION} =~ s/^\s+//;
  1839.     $self->{VERSION} =~ s/\s+$//;
  1840.     }
  1841.  
  1842.     $self->{VERSION} ||= "0.10";
  1843.     ($self->{VERSION_SYM} = $self->{VERSION}) =~ s/\W/_/g;
  1844.  
  1845.  
  1846.     # Graham Barr and Paul Marquess had some ideas how to ensure
  1847.     # version compatibility between the *.pm file and the
  1848.     # corresponding *.xs file. The bottomline was, that we need an
  1849.     # XS_VERSION macro that defaults to VERSION:
  1850.     $self->{XS_VERSION} ||= $self->{VERSION};
  1851.  
  1852.     # --- Initialize Perl Binary Locations
  1853.  
  1854.     # Find Perl 5. The only contract here is that both 'PERL' and 'FULLPERL'
  1855.     # will be working versions of perl 5. miniperl has priority over perl
  1856.     # for PERL to ensure that $(PERL) is usable while building ./ext/*
  1857.     my ($component,@defpath);
  1858.     foreach $component ($self->{PERL_SRC}, $self->path(), $Config::Config{binexp}) {
  1859.     push @defpath, $component if defined $component;
  1860.     }
  1861.     $self->{PERL} ||=
  1862.         $self->find_perl(5.0, [ $self->canonpath($^X), 'miniperl','perl','perl5',"perl$]" ],
  1863.         \@defpath, $Verbose );
  1864.     # don't check if perl is executable, maybe they have decided to
  1865.     # supply switches with perl
  1866.  
  1867.     # Define 'FULLPERL' to be a non-miniperl (used in test: target)
  1868.     ($self->{FULLPERL} = $self->{PERL}) =~ s/miniperl/perl/i
  1869.     unless ($self->{FULLPERL});
  1870. }
  1871.  
  1872. =item init_others
  1873.  
  1874. Initializes EXTRALIBS, BSLOADLIBS, LDLOADLIBS, LIBS, LD_RUN_PATH,
  1875. OBJECT, BOOTDEP, PERLMAINCC, LDFROM, LINKTYPE, NOOP, FIRST_MAKEFILE,
  1876. MAKEFILE, NOECHO, RM_F, RM_RF, TEST_F, TOUCH, CP, MV, CHMOD, UMASK_NULL
  1877.  
  1878. =cut
  1879.  
  1880. sub init_others {    # --- Initialize Other Attributes
  1881.     my($self) = shift;
  1882.  
  1883.     # Compute EXTRALIBS, BSLOADLIBS and LDLOADLIBS from $self->{LIBS}
  1884.     # Lets look at $self->{LIBS} carefully: It may be an anon array, a string or
  1885.     # undefined. In any case we turn it into an anon array:
  1886.  
  1887.     # May check $Config{libs} too, thus not empty.
  1888.     $self->{LIBS}=[''] unless $self->{LIBS};
  1889.  
  1890.     $self->{LIBS}=[$self->{LIBS}] if ref \$self->{LIBS} eq 'SCALAR';
  1891.     $self->{LD_RUN_PATH} = "";
  1892.     my($libs);
  1893.     foreach $libs ( @{$self->{LIBS}} ){
  1894.     $libs =~ s/^\s*(.*\S)\s*$/$1/; # remove leading and trailing whitespace
  1895.     my(@libs) = $self->extliblist($libs);
  1896.     if ($libs[0] or $libs[1] or $libs[2]){
  1897.         # LD_RUN_PATH now computed by ExtUtils::Liblist
  1898.         ($self->{EXTRALIBS}, $self->{BSLOADLIBS}, $self->{LDLOADLIBS}, $self->{LD_RUN_PATH}) = @libs;
  1899.         last;
  1900.     }
  1901.     }
  1902.  
  1903.     if ( $self->{OBJECT} ) {
  1904.     $self->{OBJECT} =~ s!\.o(bj)?\b!\$(OBJ_EXT)!g;
  1905.     } else {
  1906.     # init_dirscan should have found out, if we have C files
  1907.     $self->{OBJECT} = "";
  1908.     $self->{OBJECT} = '$(BASEEXT)$(OBJ_EXT)' if @{$self->{C}||[]};
  1909.     }
  1910.     $self->{OBJECT} =~ s/\n+/ \\\n\t/g;
  1911.     $self->{BOOTDEP}  = (-f "$self->{BASEEXT}_BS") ? "$self->{BASEEXT}_BS" : "";
  1912.     $self->{PERLMAINCC} ||= '$(CC)';
  1913.     $self->{LDFROM} = '$(OBJECT)' unless $self->{LDFROM};
  1914.  
  1915.     # Sanity check: don't define LINKTYPE = dynamic if we're skipping
  1916.     # the 'dynamic' section of MM.  We don't have this problem with
  1917.     # 'static', since we either must use it (%Config says we can't
  1918.     # use dynamic loading) or the caller asked for it explicitly.
  1919.     if (!$self->{LINKTYPE}) {
  1920.        $self->{LINKTYPE} = $self->{SKIPHASH}{'dynamic'}
  1921.                         ? 'static'
  1922.                         : ($Config::Config{usedl} ? 'dynamic' : 'static');
  1923.     };
  1924.  
  1925.     # These get overridden for VMS and maybe some other systems
  1926.     $self->{NOOP}  ||= '$(SHELL) -c true';
  1927.     $self->{FIRST_MAKEFILE} ||= "Makefile";
  1928.     $self->{MAKEFILE} ||= $self->{FIRST_MAKEFILE};
  1929.     $self->{MAKE_APERL_FILE} ||= "Makefile.aperl";
  1930.     $self->{NOECHO} = '@' unless defined $self->{NOECHO};
  1931.     $self->{RM_F}  ||= "rm -f";
  1932.     $self->{RM_RF} ||= "rm -rf";
  1933.     $self->{TOUCH} ||= "touch";
  1934.     $self->{TEST_F} ||= "test -f";
  1935.     $self->{CP} ||= "cp";
  1936.     $self->{MV} ||= "mv";
  1937.     $self->{CHMOD} ||= "chmod";
  1938.     $self->{UMASK_NULL} ||= "umask 0";
  1939.     $self->{DEV_NULL} ||= "> /dev/null 2>&1";
  1940. }
  1941.  
  1942. =item install (o)
  1943.  
  1944. Defines the install target.
  1945.  
  1946. =cut
  1947.  
  1948. sub install {
  1949.     my($self, %attribs) = @_;
  1950.     my(@m);
  1951.  
  1952.     push @m, q{
  1953. install :: all pure_install doc_install
  1954.  
  1955. install_perl :: all pure_perl_install doc_perl_install
  1956.  
  1957. install_site :: all pure_site_install doc_site_install
  1958.  
  1959. install_ :: install_site
  1960.     @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
  1961.  
  1962. pure_install :: pure_$(INSTALLDIRS)_install
  1963.  
  1964. doc_install :: doc_$(INSTALLDIRS)_install
  1965.     }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
  1966.  
  1967. pure__install : pure_site_install
  1968.     @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
  1969.  
  1970. doc__install : doc_site_install
  1971.     @echo INSTALLDIRS not defined, defaulting to INSTALLDIRS=site
  1972.  
  1973. pure_perl_install ::
  1974.     }.$self->{NOECHO}.q{$(MOD_INSTALL) \
  1975.         read }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
  1976.         write }.$self->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').q{ \
  1977.         $(INST_LIB) $(INSTALLPRIVLIB) \
  1978.         $(INST_ARCHLIB) $(INSTALLARCHLIB) \
  1979.         $(INST_BIN) $(INSTALLBIN) \
  1980.         $(INST_SCRIPT) $(INSTALLSCRIPT) \
  1981.         $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
  1982.         $(INST_MAN3DIR) $(INSTALLMAN3DIR)
  1983.     }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
  1984.         }.$self->catdir('$(SITEARCHEXP)','auto','$(FULLEXT)').q{
  1985.  
  1986.  
  1987. pure_site_install ::
  1988.     }.$self->{NOECHO}.q{$(MOD_INSTALL) \
  1989.         read }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{ \
  1990.         write }.$self->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').q{ \
  1991.         $(INST_LIB) $(INSTALLSITELIB) \
  1992.         $(INST_ARCHLIB) $(INSTALLSITEARCH) \
  1993.         $(INST_BIN) $(INSTALLBIN) \
  1994.         $(INST_SCRIPT) $(INSTALLSCRIPT) \
  1995.         $(INST_MAN1DIR) $(INSTALLMAN1DIR) \
  1996.         $(INST_MAN3DIR) $(INSTALLMAN3DIR)
  1997.     }.$self->{NOECHO}.q{$(WARN_IF_OLD_PACKLIST) \
  1998.         }.$self->catdir('$(PERL_ARCHLIB)','auto','$(FULLEXT)').q{
  1999.  
  2000. doc_perl_install ::
  2001.     -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
  2002.         "Module" "$(NAME)" \
  2003.         "installed into" "$(INSTALLPRIVLIB)" \
  2004.         LINKTYPE "$(LINKTYPE)" \
  2005.         VERSION "$(VERSION)" \
  2006.         EXE_FILES "$(EXE_FILES)" \
  2007.         >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
  2008.  
  2009. doc_site_install ::
  2010.     -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
  2011.         "Module" "$(NAME)" \
  2012.         "installed into" "$(INSTALLSITELIB)" \
  2013.         LINKTYPE "$(LINKTYPE)" \
  2014.         VERSION "$(VERSION)" \
  2015.         EXE_FILES "$(EXE_FILES)" \
  2016.         >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
  2017.  
  2018. };
  2019.  
  2020.     push @m, q{
  2021. uninstall :: uninstall_from_$(INSTALLDIRS)dirs
  2022.  
  2023. uninstall_from_perldirs ::
  2024.     }.$self->{NOECHO}.
  2025.     q{$(UNINSTALL) }.$self->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').q{
  2026.  
  2027. uninstall_from_sitedirs ::
  2028.     }.$self->{NOECHO}.
  2029.     q{$(UNINSTALL) }.$self->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').q{
  2030. };
  2031.  
  2032.     join("",@m);
  2033. }
  2034.  
  2035. =item installbin (o)
  2036.  
  2037. Defines targets to make and to install EXE_FILES.
  2038.  
  2039. =cut
  2040.  
  2041. sub installbin {
  2042.     my($self) = shift;
  2043.     return "" unless $self->{EXE_FILES} && ref $self->{EXE_FILES} eq "ARRAY";
  2044.     return "" unless @{$self->{EXE_FILES}};
  2045.     my(@m, $from, $to, %fromto, @to);
  2046.     push @m, $self->dir_target(qw[$(INST_SCRIPT)]);
  2047.     for $from (@{$self->{EXE_FILES}}) {
  2048.     my($path)= $self->catfile('$(INST_SCRIPT)', basename($from));
  2049.     local($_) = $path; # for backwards compatibility
  2050.     $to = $self->libscan($path);
  2051.     print "libscan($from) => '$to'\n" if ($Verbose >=2);
  2052.     $fromto{$from}=$to;
  2053.     }
  2054.     @to   = values %fromto;
  2055.     push(@m, qq{
  2056. EXE_FILES = @{$self->{EXE_FILES}}
  2057.  
  2058. } . ($Is_Win32
  2059.   ? q{FIXIN = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
  2060.     -e "system qq[pl2bat.bat ].shift"
  2061. } : q{FIXIN = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::MakeMaker \
  2062.     -e "MY->fixin(shift)"
  2063. }).qq{
  2064. pure_all :: @to
  2065.     $self->{NOECHO}\$(NOOP)
  2066.  
  2067. realclean ::
  2068.     $self->{RM_F} @to
  2069. });
  2070.  
  2071.     while (($from,$to) = each %fromto) {
  2072.     last unless defined $from;
  2073.     my $todir = dirname($to);
  2074.     push @m, "
  2075. $to: $from $self->{MAKEFILE} " . $self->catdir($todir,'.exists') . "
  2076.     $self->{NOECHO}$self->{RM_F} $to
  2077.     $self->{CP} $from $to
  2078.     \$(FIXIN) $to
  2079.     -$self->{NOECHO}\$(CHMOD) \$(PERM_RWX) $to
  2080. ";
  2081.     }
  2082.     join "", @m;
  2083. }
  2084.  
  2085. =item libscan (o)
  2086.  
  2087. Takes a path to a file that is found by init_dirscan and returns false
  2088. if we don't want to include this file in the library. Mainly used to
  2089. exclude RCS, CVS, and SCCS directories from installation.
  2090.  
  2091. =cut
  2092.  
  2093. # ';
  2094.  
  2095. sub libscan {
  2096.     my($self,$path) = @_;
  2097.     return '' if $path =~ m:\b(RCS|CVS|SCCS)\b: ;
  2098.     $path;
  2099. }
  2100.  
  2101. =item linkext (o)
  2102.  
  2103. Defines the linkext target which in turn defines the LINKTYPE.
  2104.  
  2105. =cut
  2106.  
  2107. sub linkext {
  2108.     my($self, %attribs) = @_;
  2109.     # LINKTYPE => static or dynamic or ''
  2110.     my($linktype) = defined $attribs{LINKTYPE} ?
  2111.       $attribs{LINKTYPE} : '$(LINKTYPE)';
  2112.     "
  2113. linkext :: $linktype
  2114.     $self->{NOECHO}\$(NOOP)
  2115. ";
  2116. }
  2117.  
  2118. =item lsdir
  2119.  
  2120. Takes as arguments a directory name and a regular expression. Returns
  2121. all entries in the directory that match the regular expression.
  2122.  
  2123. =cut
  2124.  
  2125. sub lsdir {
  2126.     my($self) = shift;
  2127.     my($dir, $regex) = @_;
  2128.     my(@ls);
  2129.     my $dh = new DirHandle;
  2130.     $dh->open($dir || ".") or return ();
  2131.     @ls = $dh->read;
  2132.     $dh->close;
  2133.     @ls = grep(/$regex/, @ls) if $regex;
  2134.     @ls;
  2135. }
  2136.  
  2137. =item macro (o)
  2138.  
  2139. Simple subroutine to insert the macros defined by the macro attribute
  2140. into the Makefile.
  2141.  
  2142. =cut
  2143.  
  2144. sub macro {
  2145.     my($self,%attribs) = @_;
  2146.     my(@m,$key,$val);
  2147.     while (($key,$val) = each %attribs){
  2148.     last unless defined $key;
  2149.     push @m, "$key = $val\n";
  2150.     }
  2151.     join "", @m;
  2152. }
  2153.  
  2154. =item makeaperl (o)
  2155.  
  2156. Called by staticmake. Defines how to write the Makefile to produce a
  2157. static new perl.
  2158.  
  2159. By default the Makefile produced includes all the static extensions in
  2160. the perl library. (Purified versions of library files, e.g.,
  2161. DynaLoader_pure_p1_c0_032.a are automatically ignored to avoid link errors.)
  2162.  
  2163. =cut
  2164.  
  2165. sub makeaperl {
  2166.     my($self, %attribs) = @_;
  2167.     my($makefilename, $searchdirs, $static, $extra, $perlinc, $target, $tmp, $libperl) =
  2168.     @attribs{qw(MAKE DIRS STAT EXTRA INCL TARGET TMP LIBPERL)};
  2169.     my(@m);
  2170.     push @m, "
  2171. # --- MakeMaker makeaperl section ---
  2172. MAP_TARGET    = $target
  2173. FULLPERL      = $self->{FULLPERL}
  2174. ";
  2175.     return join '', @m if $self->{PARENT};
  2176.  
  2177.     my($dir) = join ":", @{$self->{DIR}};
  2178.  
  2179.     unless ($self->{MAKEAPERL}) {
  2180.     push @m, q{
  2181. $(MAP_TARGET) :: static $(MAKE_APERL_FILE)
  2182.     $(MAKE) -f $(MAKE_APERL_FILE) $@
  2183.  
  2184. $(MAKE_APERL_FILE) : $(FIRST_MAKEFILE)
  2185.     }.$self->{NOECHO}.q{echo Writing \"$(MAKE_APERL_FILE)\" for this $(MAP_TARGET)
  2186.     }.$self->{NOECHO}.q{$(PERL) -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
  2187.         Makefile.PL DIR=}, $dir, q{ \
  2188.         MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
  2189.         MAKEAPERL=1 NORECURS=1 CCCDLFLAGS=};
  2190.  
  2191.     foreach (@ARGV){
  2192.         if( /\s/ ){
  2193.             s/=(.*)/='$1'/;
  2194.         }
  2195.         push @m, " \\\n\t\t$_";
  2196.     }
  2197. #    push @m, map( " \\\n\t\t$_", @ARGV );
  2198.     push @m, "\n";
  2199.  
  2200.     return join '', @m;
  2201.     }
  2202.  
  2203.  
  2204.  
  2205.     my($cccmd, $linkcmd, $lperl);
  2206.  
  2207.  
  2208.     $cccmd = $self->const_cccmd($libperl);
  2209.     $cccmd =~ s/^CCCMD\s*=\s*//;
  2210.     $cccmd =~ s/\$\(INC\)/ -I$self->{PERL_INC} /;
  2211.     $cccmd .= " $Config::Config{cccdlflags}"
  2212.     if ($Config::Config{useshrplib} eq 'true');
  2213.     $cccmd =~ s/\(CC\)/\(PERLMAINCC\)/;
  2214.  
  2215.     # The front matter of the linkcommand...
  2216.     $linkcmd = join ' ', "\$(CC)",
  2217.         grep($_, @Config{qw(large split ldflags ccdlflags)});
  2218.     $linkcmd =~ s/\s+/ /g;
  2219.     $linkcmd =~ s,(perl\.exp),\$(PERL_INC)/$1,;
  2220.  
  2221.     # Which *.a files could we make use of...
  2222.     local(%static);
  2223.     require File::Find;
  2224.     File::Find::find(sub {
  2225.     return unless m/\Q$self->{LIB_EXT}\E$/;
  2226.     return if m/^libperl/;
  2227.     # Skip purified versions of libraries (e.g., DynaLoader_pure_p1_c0_032.a)
  2228.     return if m/_pure_\w+_\w+_\w+\.\w+$/ and -f "$File::Find::dir/.pure";
  2229.  
  2230.     if( exists $self->{INCLUDE_EXT} ){
  2231.         my $found = 0;
  2232.         my $incl;
  2233.         my $xx;
  2234.  
  2235.         ($xx = $File::Find::name) =~ s,.*?/auto/,,;
  2236.         $xx =~ s,/?$_,,;
  2237.         $xx =~ s,/,::,g;
  2238.  
  2239.         # Throw away anything not explicitly marked for inclusion.
  2240.         # DynaLoader is implied.
  2241.         foreach $incl ((@{$self->{INCLUDE_EXT}},'DynaLoader')){
  2242.             if( $xx eq $incl ){
  2243.                 $found++;
  2244.                 last;
  2245.             }
  2246.         }
  2247.         return unless $found;
  2248.     }
  2249.     elsif( exists $self->{EXCLUDE_EXT} ){
  2250.         my $excl;
  2251.         my $xx;
  2252.  
  2253.         ($xx = $File::Find::name) =~ s,.*?/auto/,,;
  2254.         $xx =~ s,/?$_,,;
  2255.         $xx =~ s,/,::,g;
  2256.  
  2257.         # Throw away anything explicitly marked for exclusion
  2258.         foreach $excl (@{$self->{EXCLUDE_EXT}}){
  2259.             return if( $xx eq $excl );
  2260.         }
  2261.     }
  2262.  
  2263.     # don't include the installed version of this extension. I
  2264.     # leave this line here, although it is not necessary anymore:
  2265.     # I patched minimod.PL instead, so that Miniperl.pm won't
  2266.     # enclude duplicates
  2267.  
  2268.     # Once the patch to minimod.PL is in the distribution, I can
  2269.     # drop it
  2270.     return if $File::Find::name =~ m:auto/$self->{FULLEXT}/$self->{BASEEXT}$self->{LIB_EXT}$:;
  2271.     use Cwd 'cwd';
  2272.     $static{cwd() . "/" . $_}++;
  2273.     }, grep( -d $_, @{$searchdirs || []}) );
  2274.  
  2275.     # We trust that what has been handed in as argument, will be buildable
  2276.     $static = [] unless $static;
  2277.     @static{@{$static}} = (1) x @{$static};
  2278.  
  2279.     $extra = [] unless $extra && ref $extra eq 'ARRAY';
  2280.     for (sort keys %static) {
  2281.     next unless /\Q$self->{LIB_EXT}\E$/;
  2282.     $_ = dirname($_) . "/extralibs.ld";
  2283.     push @$extra, $_;
  2284.     }
  2285.  
  2286.     grep(s/^/-I/, @{$perlinc || []});
  2287.  
  2288.     $target = "perl" unless $target;
  2289.     $tmp = "." unless $tmp;
  2290.  
  2291. # MAP_STATIC doesn't look into subdirs yet. Once "all" is made and we
  2292. # regenerate the Makefiles, MAP_STATIC and the dependencies for
  2293. # extralibs.all are computed correctly
  2294.     push @m, "
  2295. MAP_LINKCMD   = $linkcmd
  2296. MAP_PERLINC   = @{$perlinc || []}
  2297. MAP_STATIC    = ",
  2298. join(" \\\n\t", reverse sort keys %static), "
  2299.  
  2300. MAP_PRELIBS   = $Config::Config{libs} $Config::Config{cryptlib}
  2301. ";
  2302.  
  2303.     if (defined $libperl) {
  2304.     ($lperl = $libperl) =~ s/\$\(A\)/$self->{LIB_EXT}/;
  2305.     }
  2306.     unless ($libperl && -f $lperl) { # Ilya's code...
  2307.     my $dir = $self->{PERL_SRC} || "$self->{PERL_ARCHLIB}/CORE";
  2308.     $libperl ||= "libperl$self->{LIB_EXT}";
  2309.     $libperl   = "$dir/$libperl";
  2310.     $lperl   ||= "libperl$self->{LIB_EXT}";
  2311.     $lperl     = "$dir/$lperl";
  2312.  
  2313.         if (! -f $libperl and ! -f $lperl) {
  2314.           # We did not find a static libperl. Maybe there is a shared one?
  2315.           if ($^O eq 'solaris' or $^O eq 'sunos') {
  2316.             $lperl  = $libperl = "$dir/$Config::Config{libperl}";
  2317.             # SUNOS ld does not take the full path to a shared library
  2318.             $libperl = '' if $^O eq 'sunos';
  2319.           }
  2320.         }
  2321.  
  2322.     print STDOUT "Warning: $libperl not found
  2323.     If you're going to build a static perl binary, make sure perl is installed
  2324.     otherwise ignore this warning\n"
  2325.         unless (-f $lperl || defined($self->{PERL_SRC}));
  2326.     }
  2327.  
  2328.     push @m, "
  2329. MAP_LIBPERL = $libperl
  2330. ";
  2331.  
  2332.     push @m, "
  2333. \$(INST_ARCHAUTODIR)/extralibs.all: \$(INST_ARCHAUTODIR)/.exists ".join(" \\\n\t", @$extra)."
  2334.     $self->{NOECHO}$self->{RM_F} \$\@
  2335.     $self->{NOECHO}\$(TOUCH) \$\@
  2336. ";
  2337.  
  2338.     my $catfile;
  2339.     foreach $catfile (@$extra){
  2340.     push @m, "\tcat $catfile >> \$\@\n";
  2341.     }
  2342.     # SUNOS ld does not take the full path to a shared library
  2343.     my $llibperl = ($libperl)?'$(MAP_LIBPERL)':'-lperl';
  2344.  
  2345.     # Brain dead solaris linker does not use LD_RUN_PATH?
  2346.     # This fixes dynamic extensions which need shared libs
  2347.     my $ldfrom = ($^O eq 'solaris')?
  2348.            join(' ', map "-R$_", split /:/, $self->{LD_RUN_PATH}):'';
  2349.  
  2350. push @m, "
  2351. \$(MAP_TARGET) :: $tmp/perlmain\$(OBJ_EXT) \$(MAP_LIBPERL) \$(MAP_STATIC) \$(INST_ARCHAUTODIR)/extralibs.all
  2352.     \$(MAP_LINKCMD) -o \$\@ \$(OPTIMIZE) $tmp/perlmain\$(OBJ_EXT) $ldfrom \$(MAP_STATIC) $llibperl `cat \$(INST_ARCHAUTODIR)/extralibs.all` \$(MAP_PRELIBS)
  2353.     $self->{NOECHO}echo 'To install the new \"\$(MAP_TARGET)\" binary, call'
  2354.     $self->{NOECHO}echo '    make -f $makefilename inst_perl MAP_TARGET=\$(MAP_TARGET)'
  2355.     $self->{NOECHO}echo 'To remove the intermediate files say'
  2356.     $self->{NOECHO}echo '    make -f $makefilename map_clean'
  2357.  
  2358. $tmp/perlmain\$(OBJ_EXT): $tmp/perlmain.c
  2359. ";
  2360.     push @m, "\tcd $tmp && $cccmd -I\$(PERL_INC) perlmain.c\n";
  2361.  
  2362.     push @m, qq{
  2363. $tmp/perlmain.c: $makefilename}, q{
  2364.     }.$self->{NOECHO}.q{echo Writing $@
  2365.     }.$self->{NOECHO}.q{$(PERL) $(MAP_PERLINC) -MExtUtils::Miniperl \\
  2366.         -e "writemain(grep s#.*/auto/##, split(q| |, q|$(MAP_STATIC)|))" > $@t && $(MV) $@t $@
  2367.  
  2368. };
  2369.     push @m, "\t",$self->{NOECHO}.q{$(PERL) $(INSTALLSCRIPT)/fixpmain
  2370. } if (defined (&Dos::UseLFN) && Dos::UseLFN()==0);
  2371.  
  2372.  
  2373.     push @m, q{
  2374. doc_inst_perl:
  2375.     }.$self->{NOECHO}.q{echo Appending installation info to $(INSTALLARCHLIB)/perllocal.pod
  2376.     -}.$self->{NOECHO}.q{$(DOC_INSTALL) \
  2377.         "Perl binary" "$(MAP_TARGET)" \
  2378.         MAP_STATIC "$(MAP_STATIC)" \
  2379.         MAP_EXTRA "`cat $(INST_ARCHAUTODIR)/extralibs.all`" \
  2380.         MAP_LIBPERL "$(MAP_LIBPERL)" \
  2381.         >> }.$self->catfile('$(INSTALLARCHLIB)','perllocal.pod').q{
  2382.  
  2383. };
  2384.  
  2385.     push @m, q{
  2386. inst_perl: pure_inst_perl doc_inst_perl
  2387.  
  2388. pure_inst_perl: $(MAP_TARGET)
  2389.     }.$self->{CP}.q{ $(MAP_TARGET) }.$self->catfile('$(INSTALLBIN)','$(MAP_TARGET)').q{
  2390.  
  2391. clean :: map_clean
  2392.  
  2393. map_clean :
  2394.     }.$self->{RM_F}.qq{ $tmp/perlmain\$(OBJ_EXT) $tmp/perlmain.c \$(MAP_TARGET) $makefilename \$(INST_ARCHAUTODIR)/extralibs.all
  2395. };
  2396.  
  2397.     join '', @m;
  2398. }
  2399.  
  2400. =item makefile (o)
  2401.  
  2402. Defines how to rewrite the Makefile.
  2403.  
  2404. =cut
  2405.  
  2406. sub makefile {
  2407.     my($self) = shift;
  2408.     my @m;
  2409.     # We do not know what target was originally specified so we
  2410.     # must force a manual rerun to be sure. But as it should only
  2411.     # happen very rarely it is not a significant problem.
  2412.     push @m, '
  2413. $(OBJECT) : $(FIRST_MAKEFILE)
  2414. ' if $self->{OBJECT};
  2415.  
  2416.     push @m, q{
  2417. # We take a very conservative approach here, but it\'s worth it.
  2418. # We move Makefile to Makefile.old here to avoid gnu make looping.
  2419. }.$self->{MAKEFILE}.q{ : Makefile.PL $(CONFIGDEP)
  2420.     }.$self->{NOECHO}.q{echo "Makefile out-of-date with respect to $?"
  2421.     }.$self->{NOECHO}.q{echo "Cleaning current config before rebuilding Makefile..."
  2422.     -}.$self->{NOECHO}.q{$(RM_F) }."$self->{MAKEFILE}.old".q{
  2423.     -}.$self->{NOECHO}.q{$(MV) }."$self->{MAKEFILE} $self->{MAKEFILE}.old".q{
  2424.     -$(MAKE) -f }.$self->{MAKEFILE}.q{.old clean $(DEV_NULL) || $(NOOP)
  2425.     $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" Makefile.PL }.join(" ",map(qq["$_"],@ARGV)).q{
  2426.     }.$self->{NOECHO}.q{echo "==> Your Makefile has been rebuilt. <=="
  2427.     }.$self->{NOECHO}.q{echo "==> Please rerun the make command.  <=="
  2428.     false
  2429.  
  2430. # To change behavior to :: would be nice, but would break Tk b9.02
  2431. # so you find such a warning below the dist target.
  2432. #}.$self->{MAKEFILE}.q{ :: $(VERSION_FROM)
  2433. #    }.$self->{NOECHO}.q{echo "Warning: Makefile possibly out of date with $(VERSION_FROM)"
  2434. };
  2435.  
  2436.     join "", @m;
  2437. }
  2438.  
  2439. =item manifypods (o)
  2440.  
  2441. Defines targets and routines to translate the pods into manpages and
  2442. put them into the INST_* directories.
  2443.  
  2444. =cut
  2445.  
  2446. sub manifypods {
  2447.     my($self, %attribs) = @_;
  2448.     return "\nmanifypods : pure_all\n\t$self->{NOECHO}\$(NOOP)\n" unless
  2449.     %{$self->{MAN3PODS}} or %{$self->{MAN1PODS}};
  2450.     my($dist);
  2451.     my($pod2man_exe);
  2452.     if (defined $self->{PERL_SRC}) {
  2453.     $pod2man_exe = $self->catfile($self->{PERL_SRC},'pod','pod2man');
  2454.     } else {
  2455.     $pod2man_exe = $self->catfile($Config{scriptdirexp},'pod2man');
  2456.     }
  2457.     unless ($self->perl_script($pod2man_exe)) {
  2458.     # No pod2man but some MAN3PODS to be installed
  2459.     print <<END;
  2460.  
  2461. Warning: I could not locate your pod2man program. Please make sure,
  2462.          your pod2man program is in your PATH before you execute 'make'
  2463.  
  2464. END
  2465.         $pod2man_exe = "-S pod2man";
  2466.     }
  2467.     my(@m);
  2468.     push @m,
  2469. qq[POD2MAN_EXE = $pod2man_exe\n],
  2470. qq[POD2MAN = \$(PERL) -we '%m=\@ARGV;for (keys %m){' \\\n],
  2471. q[-e 'next if -e $$m{$$_} && -M $$m{$$_} < -M $$_ && -M $$m{$$_} < -M "],
  2472.  $self->{MAKEFILE}, q[";' \\
  2473. -e 'print "Manifying $$m{$$_}\n";' \\
  2474. -e 'system(qq[$$^X ].q["-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" $(POD2MAN_EXE) ].qq[$$_>$$m{$$_}])==0 or warn "Couldn\\047t install $$m{$$_}\n";' \\
  2475. -e 'chmod(oct($(PERM_RW))), $$m{$$_} or warn "chmod $(PERM_RW) $$m{$$_}: $$!\n";}'
  2476. ];
  2477.     push @m, "\nmanifypods : pure_all ";
  2478.     push @m, join " \\\n\t", keys %{$self->{MAN1PODS}}, keys %{$self->{MAN3PODS}};
  2479.  
  2480.     push(@m,"\n");
  2481.     if (%{$self->{MAN1PODS}} || %{$self->{MAN3PODS}}) {
  2482.     push @m, "\t$self->{NOECHO}\$(POD2MAN) \\\n\t";
  2483.     push @m, join " \\\n\t", %{$self->{MAN1PODS}}, %{$self->{MAN3PODS}};
  2484.     }
  2485.     join('', @m);
  2486. }
  2487.  
  2488. =item maybe_command
  2489.  
  2490. Returns true, if the argument is likely to be a command.
  2491.  
  2492. =cut
  2493.  
  2494. sub maybe_command {
  2495.     my($self,$file) = @_;
  2496.     return $file if -x $file && ! -d $file;
  2497.     return;
  2498. }
  2499.  
  2500. =item maybe_command_in_dirs
  2501.  
  2502. method under development. Not yet used. Ask Ilya :-)
  2503.  
  2504. =cut
  2505.  
  2506. sub maybe_command_in_dirs {    # $ver is optional argument if looking for perl
  2507. # Ilya's suggestion. Not yet used, want to understand it first, but at least the code is here
  2508.     my($self, $names, $dirs, $trace, $ver) = @_;
  2509.     my($name, $dir);
  2510.     foreach $dir (@$dirs){
  2511.     next unless defined $dir; # $self->{PERL_SRC} may be undefined
  2512.     foreach $name (@$names){
  2513.         my($abs,$tryabs);
  2514.         if ($self->file_name_is_absolute($name)) { # /foo/bar
  2515.         $abs = $name;
  2516.         } elsif ($self->canonpath($name) eq $self->canonpath(basename($name))) { # bar
  2517.         $abs = $self->catfile($dir, $name);
  2518.         } else { # foo/bar
  2519.         $abs = $self->catfile($self->curdir, $name);
  2520.         }
  2521.         print "Checking $abs for $name\n" if ($trace >= 2);
  2522.         next unless $tryabs = $self->maybe_command($abs);
  2523.         print "Substituting $tryabs instead of $abs\n"
  2524.         if ($trace >= 2 and $tryabs ne $abs);
  2525.         $abs = $tryabs;
  2526.         if (defined $ver) {
  2527.         print "Executing $abs\n" if ($trace >= 2);
  2528.         if (`$abs -e 'require $ver; print "VER_OK\n" ' 2>&1` =~ /VER_OK/) {
  2529.             print "Using PERL=$abs\n" if $trace;
  2530.             return $abs;
  2531.         }
  2532.         } else { # Do not look for perl
  2533.         return $abs;
  2534.         }
  2535.     }
  2536.     }
  2537. }
  2538.  
  2539. =item needs_linking (o)
  2540.  
  2541. Does this module need linking? Looks into subdirectory objects (see
  2542. also has_link_code())
  2543.  
  2544. =cut
  2545.  
  2546. sub needs_linking {
  2547.     my($self) = shift;
  2548.     my($child,$caller);
  2549.     $caller = (caller(0))[3];
  2550.     Carp::confess("Needs_linking called too early") if $caller =~ /^ExtUtils::MakeMaker::/;
  2551.     return $self->{NEEDS_LINKING} if defined $self->{NEEDS_LINKING};
  2552.     if ($self->has_link_code or $self->{MAKEAPERL}){
  2553.     $self->{NEEDS_LINKING} = 1;
  2554.     return 1;
  2555.     }
  2556.     foreach $child (keys %{$self->{CHILDREN}}) {
  2557.     if ($self->{CHILDREN}->{$child}->needs_linking) {
  2558.         $self->{NEEDS_LINKING} = 1;
  2559.         return 1;
  2560.     }
  2561.     }
  2562.     return $self->{NEEDS_LINKING} = 0;
  2563. }
  2564.  
  2565. =item nicetext
  2566.  
  2567. misnamed method (will have to be changed). The MM_Unix method just
  2568. returns the argument without further processing.
  2569.  
  2570. On VMS used to insure that colons marking targets are preceded by
  2571. space - most Unix Makes don't need this, but it's necessary under VMS
  2572. to distinguish the target delimiter from a colon appearing as part of
  2573. a filespec.
  2574.  
  2575. =cut
  2576.  
  2577. sub nicetext {
  2578.     my($self,$text) = @_;
  2579.     $text;
  2580. }
  2581.  
  2582. =item parse_version
  2583.  
  2584. parse a file and return what you think is $VERSION in this file set to
  2585.  
  2586. =cut
  2587.  
  2588. sub parse_version {
  2589.     my($self,$parsefile) = @_;
  2590.     my $result;
  2591.     local *FH;
  2592.     local $/ = "\n";
  2593.     open(FH,$parsefile) or die "Could not open '$parsefile': $!";
  2594.     my $inpod = 0;
  2595.     while (<FH>) {
  2596.     $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod;
  2597.     next if $inpod;
  2598.     chop;
  2599.     # next unless /\$(([\w\:\']*)\bVERSION)\b.*\=/;
  2600.     next unless /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/;
  2601.     my $eval = qq{
  2602.         package ExtUtils::MakeMaker::_version;
  2603.         no strict;
  2604.  
  2605.         local $1$2;
  2606.         \$$2=undef; do {
  2607.         $_
  2608.         }; \$$2
  2609.     };
  2610.     local($^W) = 0;
  2611.     $result = eval($eval);
  2612.     die "Could not eval '$eval' in $parsefile: $@" if $@;
  2613.     $result = "undef" unless defined $result;
  2614.     last;
  2615.     }
  2616.     close FH;
  2617.     return $result;
  2618. }
  2619.  
  2620. =item parse_abstract
  2621.  
  2622. parse a file and return what you think is the ABSTRACT
  2623.  
  2624. =cut
  2625.  
  2626. sub parse_abstract {
  2627.     my($self,$parsefile) = @_;
  2628.     my $result;
  2629.     local *FH;
  2630.     local $/ = "\n";
  2631.     open(FH,$parsefile) or die "Could not open '$parsefile': $!";
  2632.     my $inpod = 0;
  2633.     my $package = $self->{DISTNAME};
  2634.     $package =~ s/-/::/;
  2635.     while (<FH>) {
  2636.         $inpod = /^=(?!cut)/ ? 1 : /^=cut/ ? 0 : $inpod;
  2637.         next if !$inpod;
  2638.         chop;
  2639.         next unless /^($package\s-\s)(.*)/;
  2640.         $result = $2;
  2641.         last;
  2642.     }
  2643.     close FH;
  2644.     return $result;
  2645. }
  2646.  
  2647. =item pasthru (o)
  2648.  
  2649. Defines the string that is passed to recursive make calls in
  2650. subdirectories.
  2651.  
  2652. =cut
  2653.  
  2654. sub pasthru {
  2655.     my($self) = shift;
  2656.     my(@m,$key);
  2657.  
  2658.     my(@pasthru);
  2659.     my($sep) = $Is_VMS ? ',' : '';
  2660.     $sep .= "\\\n\t";
  2661.  
  2662.     foreach $key (qw(LIB LIBPERL_A LINKTYPE PREFIX OPTIMIZE)){
  2663.     push @pasthru, "$key=\"\$($key)\"";
  2664.     }
  2665.  
  2666.     push @m, "\nPASTHRU = ", join ($sep, @pasthru), "\n";
  2667.     join "", @m;
  2668. }
  2669.  
  2670. =item path
  2671.  
  2672. Takes no argument, returns the environment variable PATH as an array.
  2673.  
  2674. =cut
  2675.  
  2676. sub path {
  2677.     my($self) = @_;
  2678.     my $path_sep = ($Is_OS2 || $Is_Dos) ? ";" : ":";
  2679.     my $path = $ENV{PATH};
  2680.     $path =~ s:\\:/:g if $Is_OS2;
  2681.     my @path = split $path_sep, $path;
  2682.     foreach(@path) { $_ = '.' if $_ eq '' }
  2683.     @path;
  2684. }
  2685.  
  2686. =item perl_script
  2687.  
  2688. Takes one argument, a file name, and returns the file name, if the
  2689. argument is likely to be a perl script. On MM_Unix this is true for
  2690. any ordinary, readable file.
  2691.  
  2692. =cut
  2693.  
  2694. sub perl_script {
  2695.     my($self,$file) = @_;
  2696.     return $file if -r $file && -f _;
  2697.     return;
  2698. }
  2699.  
  2700. =item perldepend (o)
  2701.  
  2702. Defines the dependency from all *.h files that come with the perl
  2703. distribution.
  2704.  
  2705. =cut
  2706.  
  2707. sub perldepend {
  2708.     my($self) = shift;
  2709.     my(@m);
  2710.     push @m, q{
  2711. # Check for unpropogated config.sh changes. Should never happen.
  2712. # We do NOT just update config.h because that is not sufficient.
  2713. # An out of date config.h is not fatal but complains loudly!
  2714. $(PERL_INC)/config.h: $(PERL_SRC)/config.sh
  2715.     -}.$self->{NOECHO}.q{echo "Warning: $(PERL_INC)/config.h out of date with $(PERL_SRC)/config.sh"; false
  2716.  
  2717. $(PERL_ARCHLIB)/Config.pm: $(PERL_SRC)/config.sh
  2718.     }.$self->{NOECHO}.q{echo "Warning: $(PERL_ARCHLIB)/Config.pm may be out of date with $(PERL_SRC)/config.sh"
  2719.     cd $(PERL_SRC) && $(MAKE) lib/Config.pm
  2720. } if $self->{PERL_SRC};
  2721.  
  2722.     return join "", @m unless $self->needs_linking;
  2723.  
  2724.     push @m, q{
  2725. PERL_HDRS = \
  2726. $(PERL_INC)/EXTERN.h       $(PERL_INC)/gv.h           $(PERL_INC)/pp.h       \
  2727. $(PERL_INC)/INTERN.h       $(PERL_INC)/handy.h        $(PERL_INC)/proto.h    \
  2728. $(PERL_INC)/XSUB.h         $(PERL_INC)/hv.h           $(PERL_INC)/regcomp.h  \
  2729. $(PERL_INC)/av.h           $(PERL_INC)/keywords.h     $(PERL_INC)/regexp.h   \
  2730. $(PERL_INC)/config.h       $(PERL_INC)/mg.h           $(PERL_INC)/scope.h    \
  2731. $(PERL_INC)/cop.h          $(PERL_INC)/op.h           $(PERL_INC)/sv.h         \
  2732. $(PERL_INC)/cv.h           $(PERL_INC)/opcode.h       $(PERL_INC)/unixish.h  \
  2733. $(PERL_INC)/dosish.h       $(PERL_INC)/patchlevel.h   $(PERL_INC)/util.h     \
  2734. $(PERL_INC)/embed.h        $(PERL_INC)/perl.h         $(PERL_INC)/iperlsys.h \
  2735. $(PERL_INC)/form.h         $(PERL_INC)/perly.h
  2736.  
  2737. $(OBJECT) : $(PERL_HDRS)
  2738. } if $self->{OBJECT};
  2739.  
  2740.     push @m, join(" ", values %{$self->{XS}})." : \$(XSUBPPDEPS)\n"  if %{$self->{XS}};
  2741.  
  2742.     join "\n", @m;
  2743. }
  2744.  
  2745. =item ppd
  2746.  
  2747. Defines target that creates a PPD (Perl Package Description) file
  2748. for a binary distribution.
  2749.  
  2750. =cut
  2751.  
  2752. sub ppd {
  2753.     my($self) = @_;
  2754.     my(@m);
  2755.     if ($self->{ABSTRACT_FROM}){
  2756.         $self->{ABSTRACT} = $self->parse_abstract($self->{ABSTRACT_FROM}) or
  2757.             Carp::carp "WARNING: Setting ABSTRACT via file '$self->{ABSTRACT_FROM}' failed\n";
  2758.     }
  2759.     my ($pack_ver) = join ",", (split (/\./, $self->{VERSION}), (0) x 4) [0 .. 3];
  2760.     push(@m, "# Creates a PPD (Perl Package Description) for a binary distribution.\n");
  2761.     push(@m, "ppd:\n");
  2762.     push(@m, "\t\@\$(PERL) -e \"print qq{<SOFTPKG NAME=\\\"$self->{DISTNAME}\\\" VERSION=\\\"$pack_ver\\\">\\n}");
  2763.     push(@m, ". qq{\\t<TITLE>$self->{DISTNAME}</TITLE>\\n}");
  2764.     my $abstract = $self->{ABSTRACT};
  2765.     $abstract =~ s/\n/\\n/sg;
  2766.     $abstract =~ s/</</g;
  2767.     $abstract =~ s/>/>/g;
  2768.     push(@m, ". qq{\\t<ABSTRACT>$abstract</ABSTRACT>\\n}");
  2769.     my ($author) = $self->{AUTHOR};
  2770.     $author =~ s/</</g;
  2771.     $author =~ s/>/>/g;
  2772.     $author =~ s/@/\\@/g;
  2773.     push(@m, ". qq{\\t<AUTHOR>$author</AUTHOR>\\n}");
  2774.     push(@m, ". qq{\\t<IMPLEMENTATION>\\n}");
  2775.     my ($prereq);
  2776.     foreach $prereq (sort keys %{$self->{PREREQ_PM}}) {
  2777.         my $pre_req = $prereq;
  2778.         $pre_req =~ s/::/-/g;
  2779.         my ($dep_ver) = join ",", (split (/\./, $self->{PREREQ_PM}{$prereq}), (0) x 4) [0 .. 3];
  2780.         push(@m, ". qq{\\t\\t<DEPENDENCY NAME=\\\"$pre_req\\\" VERSION=\\\"$dep_ver\\\" />\\n}");
  2781.     }
  2782.     push(@m, ". qq{\\t\\t<OS NAME=\\\"\$(OSNAME)\\\" />\\n}");
  2783.     push(@m, ". qq{\\t\\t<ARCHITECTURE NAME=\\\"$Config{'archname'}\\\" />\\n}");
  2784.     my ($bin_location) = $self->{BINARY_LOCATION};
  2785.     $bin_location =~ s/\\/\\\\/g;
  2786.     if ($self->{PPM_INSTALL_SCRIPT}) {
  2787.         if ($self->{PPM_INSTALL_EXEC}) {
  2788.             push(@m, " . qq{\\t\\t<INSTALL EXEC=\\\"$self->{PPM_INSTALL_EXEC}\\\">$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
  2789.         }
  2790.         else {
  2791.             push(@m, " . qq{\\t\\t<INSTALL>$self->{PPM_INSTALL_SCRIPT}</INSTALL>\\n}");
  2792.         }
  2793.     }
  2794.     push(@m, ". qq{\\t\\t<CODEBASE HREF=\\\"$bin_location\\\" />\\n}");
  2795.     push(@m, ". qq{\\t</IMPLEMENTATION>\\n}");
  2796.     push(@m, ". qq{</SOFTPKG>\\n}\" > $self->{DISTNAME}.ppd");
  2797.  
  2798.     join("", @m);   
  2799. }
  2800.  
  2801. =item perm_rw (o)
  2802.  
  2803. Returns the attribute C<PERM_RW> or the string C<644>.
  2804. Used as the string that is passed
  2805. to the C<chmod> command to set the permissions for read/writeable files.
  2806. MakeMaker chooses C<644> because it has turned out in the past that
  2807. relying on the umask provokes hard-to-track bug reports.
  2808. When the return value is used by the perl function C<chmod>, it is
  2809. interpreted as an octal value.
  2810.  
  2811. =cut
  2812.  
  2813. sub perm_rw {
  2814.     shift->{PERM_RW} || "644";
  2815. }
  2816.  
  2817. =item perm_rwx (o)
  2818.  
  2819. Returns the attribute C<PERM_RWX> or the string C<755>,
  2820. i.e. the string that is passed
  2821. to the C<chmod> command to set the permissions for executable files.
  2822. See also perl_rw.
  2823.  
  2824. =cut
  2825.  
  2826. sub perm_rwx {
  2827.     shift->{PERM_RWX} || "755";
  2828. }
  2829.  
  2830. =item pm_to_blib
  2831.  
  2832. Defines target that copies all files in the hash PM to their
  2833. destination and autosplits them. See L<ExtUtils::Install/DESCRIPTION>
  2834.  
  2835. =cut
  2836.  
  2837. sub pm_to_blib {
  2838.     my $self = shift;
  2839.     my($autodir) = $self->catdir('$(INST_LIB)','auto');
  2840.     return q{
  2841. pm_to_blib: $(TO_INST_PM)
  2842.     }.$self->{NOECHO}.q{$(PERL) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)" \
  2843.     "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -MExtUtils::Install \
  2844.         -e "pm_to_blib({qw{$(PM_TO_BLIB)}},'}.$autodir.q{')"
  2845.     }.$self->{NOECHO}.q{$(TOUCH) $@
  2846. };
  2847. }
  2848.  
  2849. =item post_constants (o)
  2850.  
  2851. Returns an empty string per default. Dedicated to overrides from
  2852. within Makefile.PL after all constants have been defined.
  2853.  
  2854. =cut
  2855.  
  2856. sub post_constants{
  2857.     my($self) = shift;
  2858.     "";
  2859. }
  2860.  
  2861. =item post_initialize (o)
  2862.  
  2863. Returns an empty string per default. Used in Makefile.PLs to add some
  2864. chunk of text to the Makefile after the object is initialized.
  2865.  
  2866. =cut
  2867.  
  2868. sub post_initialize {
  2869.     my($self) = shift;
  2870.     "";
  2871. }
  2872.  
  2873. =item postamble (o)
  2874.  
  2875. Returns an empty string. Can be used in Makefile.PLs to write some
  2876. text to the Makefile at the end.
  2877.  
  2878. =cut
  2879.  
  2880. sub postamble {
  2881.     my($self) = shift;
  2882.     "";
  2883. }
  2884.  
  2885. =item prefixify
  2886.  
  2887. Check a path variable in $self from %Config, if it contains a prefix,
  2888. and replace it with another one.
  2889.  
  2890. Takes as arguments an attribute name, a search prefix and a
  2891. replacement prefix. Changes the attribute in the object.
  2892.  
  2893. =cut
  2894.  
  2895. sub prefixify {
  2896.     my($self,$var,$sprefix,$rprefix) = @_;
  2897.     $self->{uc $var} ||= $Config{lc $var};
  2898.     $self->{uc $var} = VMS::Filespec::unixpath($self->{uc $var}) if $Is_VMS;
  2899.     $self->{uc $var} =~ s/\Q$sprefix\E/$rprefix/;
  2900. }
  2901.  
  2902. =item processPL (o)
  2903.  
  2904. Defines targets to run *.PL files.
  2905.  
  2906. =cut
  2907.  
  2908. sub processPL {
  2909.     my($self) = shift;
  2910.     return "" unless $self->{PL_FILES};
  2911.     my(@m, $plfile);
  2912.     foreach $plfile (sort keys %{$self->{PL_FILES}}) {
  2913.         my $list = ref($self->{PL_FILES}->{$plfile})
  2914.         ? $self->{PL_FILES}->{$plfile}
  2915.         : [$self->{PL_FILES}->{$plfile}];
  2916.     foreach $target (@$list) {
  2917.     push @m, "
  2918. all :: $target
  2919.     $self->{NOECHO}\$(NOOP)
  2920.  
  2921. $target :: $plfile
  2922.     \$(PERL) -I\$(INST_ARCHLIB) -I\$(INST_LIB) -I\$(PERL_ARCHLIB) -I\$(PERL_LIB) $plfile $target
  2923. ";
  2924.     }
  2925.     }
  2926.     join "", @m;
  2927. }
  2928.  
  2929. =item realclean (o)
  2930.  
  2931. Defines the realclean target.
  2932.  
  2933. =cut
  2934.  
  2935. sub realclean {
  2936.     my($self, %attribs) = @_;
  2937.     my(@m);
  2938.     push(@m,'
  2939. # Delete temporary files (via clean) and also delete installed files
  2940. realclean purge ::  clean
  2941. ');
  2942.     # realclean subdirectories first (already cleaned)
  2943.     my $sub = "\t-cd %s && \$(TEST_F) %s && \$(MAKE) %s realclean\n";
  2944.     foreach(@{$self->{DIR}}){
  2945.     push(@m, sprintf($sub,$_,"$self->{MAKEFILE}.old","-f $self->{MAKEFILE}.old"));
  2946.     push(@m, sprintf($sub,$_,"$self->{MAKEFILE}",''));
  2947.     }
  2948.     push(@m, "    $self->{RM_RF} \$(INST_AUTODIR) \$(INST_ARCHAUTODIR)\n");
  2949.     if( $self->has_link_code ){
  2950.         push(@m, "    $self->{RM_F} \$(INST_DYNAMIC) \$(INST_BOOT)\n");
  2951.         push(@m, "    $self->{RM_F} \$(INST_STATIC)\n");
  2952.     }
  2953.     push(@m, "    $self->{RM_F} " . join(" ", values %{$self->{PM}}) . "\n")
  2954.     if keys %{$self->{PM}};
  2955.     my(@otherfiles) = ($self->{MAKEFILE},
  2956.                "$self->{MAKEFILE}.old"); # Makefiles last
  2957.     push(@otherfiles, $attribs{FILES}) if $attribs{FILES};
  2958.     push(@m, "    $self->{RM_RF} @otherfiles\n") if @otherfiles;
  2959.     push(@m, "    $attribs{POSTOP}\n")       if $attribs{POSTOP};
  2960.     join("", @m);
  2961. }
  2962.  
  2963. =item replace_manpage_separator
  2964.  
  2965. Takes the name of a package, which may be a nested package, in the
  2966. form Foo/Bar and replaces the slash with C<::>. Returns the replacement.
  2967.  
  2968. =cut
  2969.  
  2970. sub replace_manpage_separator {
  2971.     my($self,$man) = @_;
  2972.     if ($^O eq 'uwin') {
  2973.         $man =~ s,/+,.,g;
  2974.     } else {
  2975.         $man =~ s,/+,::,g;
  2976.     }
  2977.     $man;
  2978. }
  2979.  
  2980. =item static (o)
  2981.  
  2982. Defines the static target.
  2983.  
  2984. =cut
  2985.  
  2986. sub static {
  2987. # --- Static Loading Sections ---
  2988.  
  2989.     my($self) = shift;
  2990.     '
  2991. ## $(INST_PM) has been moved to the all: target.
  2992. ## It remains here for awhile to allow for old usage: "make static"
  2993. #static :: '.$self->{MAKEFILE}.' $(INST_STATIC) $(INST_PM)
  2994. static :: '.$self->{MAKEFILE}.' $(INST_STATIC)
  2995.     '.$self->{NOECHO}.'$(NOOP)
  2996. ';
  2997. }
  2998.  
  2999. =item static_lib (o)
  3000.  
  3001. Defines how to produce the *.a (or equivalent) files.
  3002.  
  3003. =cut
  3004.  
  3005. sub static_lib {
  3006.     my($self) = @_;
  3007. # Come to think of it, if there are subdirs with linkcode, we still have no INST_STATIC
  3008. #    return '' unless $self->needs_linking(); #might be because of a subdir
  3009.  
  3010.     return '' unless $self->has_link_code;
  3011.  
  3012.     my(@m);
  3013.     push(@m, <<'END');
  3014. $(INST_STATIC): $(OBJECT) $(MYEXTLIB) $(INST_ARCHAUTODIR)/.exists
  3015.     $(RM_RF) $@
  3016. END
  3017.     # If this extension has it's own library (eg SDBM_File)
  3018.     # then copy that to $(INST_STATIC) and add $(OBJECT) into it.
  3019.     push(@m, "\t$self->{CP} \$(MYEXTLIB) \$\@\n") if $self->{MYEXTLIB};
  3020.  
  3021.     push @m,
  3022. q{    $(AR) $(AR_STATIC_ARGS) $@ $(OBJECT) && $(RANLIB) $@
  3023.     $(CHMOD) $(PERM_RWX) $@
  3024.     }.$self->{NOECHO}.q{echo "$(EXTRALIBS)" > $(INST_ARCHAUTODIR)/extralibs.ld
  3025. };
  3026.     # Old mechanism - still available:
  3027.     push @m,
  3028. "\t$self->{NOECHO}".q{echo "$(EXTRALIBS)" >> $(PERL_SRC)/ext.libs
  3029. }    if $self->{PERL_SRC} && $self->{EXTRALIBS};
  3030.     push @m, "\n";
  3031.  
  3032.     push @m, $self->dir_target('$(INST_ARCHAUTODIR)');
  3033.     join('', "\n",@m);
  3034. }
  3035.  
  3036. =item staticmake (o)
  3037.  
  3038. Calls makeaperl.
  3039.  
  3040. =cut
  3041.  
  3042. sub staticmake {
  3043.     my($self, %attribs) = @_;
  3044.     my(@static);
  3045.  
  3046.     my(@searchdirs)=($self->{PERL_ARCHLIB}, $self->{SITEARCHEXP},  $self->{INST_ARCHLIB});
  3047.  
  3048.     # And as it's not yet built, we add the current extension
  3049.     # but only if it has some C code (or XS code, which implies C code)
  3050.     if (@{$self->{C}}) {
  3051.     @static = $self->catfile($self->{INST_ARCHLIB},
  3052.                  "auto",
  3053.                  $self->{FULLEXT},
  3054.                  "$self->{BASEEXT}$self->{LIB_EXT}"
  3055.                 );
  3056.     }
  3057.  
  3058.     # Either we determine now, which libraries we will produce in the
  3059.     # subdirectories or we do it at runtime of the make.
  3060.  
  3061.     # We could ask all subdir objects, but I cannot imagine, why it
  3062.     # would be necessary.
  3063.  
  3064.     # Instead we determine all libraries for the new perl at
  3065.     # runtime.
  3066.     my(@perlinc) = ($self->{INST_ARCHLIB}, $self->{INST_LIB}, $self->{PERL_ARCHLIB}, $self->{PERL_LIB});
  3067.  
  3068.     $self->makeaperl(MAKE    => $self->{MAKEFILE},
  3069.              DIRS    => \@searchdirs,
  3070.              STAT    => \@static,
  3071.              INCL    => \@perlinc,
  3072.              TARGET    => $self->{MAP_TARGET},
  3073.              TMP    => "",
  3074.              LIBPERL    => $self->{LIBPERL_A}
  3075.             );
  3076. }
  3077.  
  3078. =item subdir_x (o)
  3079.  
  3080. Helper subroutine for subdirs
  3081.  
  3082. =cut
  3083.  
  3084. sub subdir_x {
  3085.     my($self, $subdir) = @_;
  3086.     my(@m);
  3087.     qq{
  3088.  
  3089. subdirs ::
  3090.     $self->{NOECHO}cd $subdir && \$(MAKE) all \$(PASTHRU)
  3091.  
  3092. };
  3093. }
  3094.  
  3095. =item subdirs (o)
  3096.  
  3097. Defines targets to process subdirectories.
  3098.  
  3099. =cut
  3100.  
  3101. sub subdirs {
  3102. # --- Sub-directory Sections ---
  3103.     my($self) = shift;
  3104.     my(@m,$dir);
  3105.     # This method provides a mechanism to automatically deal with
  3106.     # subdirectories containing further Makefile.PL scripts.
  3107.     # It calls the subdir_x() method for each subdirectory.
  3108.     foreach $dir (@{$self->{DIR}}){
  3109.     push(@m, $self->subdir_x($dir));
  3110. ####    print "Including $dir subdirectory\n";
  3111.     }
  3112.     if (@m){
  3113.     unshift(@m, "
  3114. # The default clean, realclean and test targets in this Makefile
  3115. # have automatically been given entries for each subdir.
  3116.  
  3117. ");
  3118.     } else {
  3119.     push(@m, "\n# none")
  3120.     }
  3121.     join('',@m);
  3122. }
  3123.  
  3124. =item test (o)
  3125.  
  3126. Defines the test targets.
  3127.  
  3128. =cut
  3129.  
  3130. sub test {
  3131. # --- Test and Installation Sections ---
  3132.  
  3133.     my($self, %attribs) = @_;
  3134.     my $tests = $attribs{TESTS};
  3135.     if (!$tests && -d 't') {
  3136.     $tests = $Is_Win32 ? join(' ', <t\\*.t>) : 't/*.t';
  3137.     }
  3138.     # note: 'test.pl' name is also hardcoded in init_dirscan()
  3139.     my(@m);
  3140.     push(@m,"
  3141. TEST_VERBOSE=0
  3142. TEST_TYPE=test_\$(LINKTYPE)
  3143. TEST_FILE = test.pl
  3144. TEST_FILES = $tests
  3145. TESTDB_SW = -d
  3146.  
  3147. testdb :: testdb_\$(LINKTYPE)
  3148.  
  3149. test :: \$(TEST_TYPE)
  3150. ");
  3151.     push(@m, map("\t$self->{NOECHO}cd $_ && \$(TEST_F) $self->{MAKEFILE} && \$(MAKE) test \$(PASTHRU)\n",
  3152.          @{$self->{DIR}}));
  3153.     push(@m, "\t$self->{NOECHO}echo 'No tests defined for \$(NAME) extension.'\n")
  3154.     unless $tests or -f "test.pl" or @{$self->{DIR}};
  3155.     push(@m, "\n");
  3156.  
  3157.     push(@m, "test_dynamic :: pure_all\n");
  3158.     push(@m, $self->test_via_harness('$(FULLPERL)', '$(TEST_FILES)')) if $tests;
  3159.     push(@m, $self->test_via_script('$(FULLPERL)', '$(TEST_FILE)')) if -f "test.pl";
  3160.     push(@m, "\n");
  3161.  
  3162.     push(@m, "testdb_dynamic :: pure_all\n");
  3163.     push(@m, $self->test_via_script('$(FULLPERL) $(TESTDB_SW)', '$(TEST_FILE)'));
  3164.     push(@m, "\n");
  3165.  
  3166.     # Occasionally we may face this degenerate target:
  3167.     push @m, "test_ : test_dynamic\n\n";
  3168.  
  3169.     if ($self->needs_linking()) {
  3170.     push(@m, "test_static :: pure_all \$(MAP_TARGET)\n");
  3171.     push(@m, $self->test_via_harness('./$(MAP_TARGET)', '$(TEST_FILES)')) if $tests;
  3172.     push(@m, $self->test_via_script('./$(MAP_TARGET)', '$(TEST_FILE)')) if -f "test.pl";
  3173.     push(@m, "\n");
  3174.     push(@m, "testdb_static :: pure_all \$(MAP_TARGET)\n");
  3175.     push(@m, $self->test_via_script('./$(MAP_TARGET) $(TESTDB_SW)', '$(TEST_FILE)'));
  3176.     push(@m, "\n");
  3177.     } else {
  3178.     push @m, "test_static :: test_dynamic\n";
  3179.     push @m, "testdb_static :: testdb_dynamic\n";
  3180.     }
  3181.     join("", @m);
  3182. }
  3183.  
  3184. =item test_via_harness (o)
  3185.  
  3186. Helper method to write the test targets
  3187.  
  3188. =cut
  3189.  
  3190. sub test_via_harness {
  3191.     my($self, $perl, $tests) = @_;
  3192.     $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
  3193.     "\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";
  3194. }
  3195.  
  3196. =item test_via_script (o)
  3197.  
  3198. Other helper method for test.
  3199.  
  3200. =cut
  3201.  
  3202. sub test_via_script {
  3203.     my($self, $perl, $script) = @_;
  3204.     $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
  3205.     qq{\t$perl}.q{ -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) }.qq{$script
  3206. };
  3207. }
  3208.  
  3209. =item tool_autosplit (o)
  3210.  
  3211. Defines a simple perl call that runs autosplit. May be deprecated by
  3212. pm_to_blib soon.
  3213.  
  3214. =cut
  3215.  
  3216. sub tool_autosplit {
  3217. # --- Tool Sections ---
  3218.  
  3219.     my($self, %attribs) = @_;
  3220.     my($asl) = "";
  3221.     $asl = "\$AutoSplit::Maxlen=$attribs{MAXLEN};" if $attribs{MAXLEN};
  3222.     q{
  3223. # Usage: $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto
  3224. AUTOSPLITFILE = $(PERL) "-I$(PERL_ARCHLIB)" "-I$(PERL_LIB)" -e 'use AutoSplit;}.$asl.q{autosplit($$ARGV[0], $$ARGV[1], 0, 1, 1) ;'
  3225. };
  3226. }
  3227.  
  3228. =item tools_other (o)
  3229.  
  3230. Defines SHELL, LD, TOUCH, CP, MV, RM_F, RM_RF, CHMOD, UMASK_NULL in
  3231. the Makefile. Also defines the perl programs MKPATH,
  3232. WARN_IF_OLD_PACKLIST, MOD_INSTALL. DOC_INSTALL, and UNINSTALL.
  3233.  
  3234. =cut
  3235.  
  3236. sub tools_other {
  3237.     my($self) = shift;
  3238.     my @m;
  3239.     my $bin_sh = $Config{sh} || '/bin/sh';
  3240.     push @m, qq{
  3241. SHELL = $bin_sh
  3242. };
  3243.  
  3244.     for (qw/ CHMOD CP LD MV NOOP RM_F RM_RF TEST_F TOUCH UMASK_NULL DEV_NULL/ ) {
  3245.     push @m, "$_ = $self->{$_}\n";
  3246.     }
  3247.  
  3248.     push @m, q{
  3249. # The following is a portable way to say mkdir -p
  3250. # To see which directories are created, change the if 0 to if 1
  3251. MKPATH = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e mkpath
  3252.  
  3253. # This helps us to minimize the effect of the .exists files A yet
  3254. # better solution would be to have a stable file in the perl
  3255. # distribution with a timestamp of zero. But this solution doesn't
  3256. # need any changes to the core distribution and works with older perls
  3257. EQUALIZE_TIMESTAMP = $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -MExtUtils::Command -e eqtime
  3258. };
  3259.  
  3260.  
  3261.     return join "", @m if $self->{PARENT};
  3262.  
  3263.     push @m, q{
  3264. # Here we warn users that an old packlist file was found somewhere,
  3265. # and that they should call some uninstall routine
  3266. WARN_IF_OLD_PACKLIST = $(PERL) -we 'exit unless -f $$ARGV[0];' \\
  3267. -e 'print "WARNING: I have found an old package in\n";' \\
  3268. -e 'print "\t$$ARGV[0].\n";' \\
  3269. -e 'print "Please make sure the two installations are not conflicting\n";'
  3270.  
  3271. UNINST=0
  3272. VERBINST=1
  3273.  
  3274. MOD_INSTALL = $(PERL) -I$(INST_LIB) -I$(PERL_LIB) -MExtUtils::Install \
  3275. -e "install({@ARGV},'$(VERBINST)',0,'$(UNINST)');"
  3276.  
  3277. DOC_INSTALL = $(PERL) -e '$$\="\n\n";' \
  3278. -e 'print "=head2 ", scalar(localtime), ": C<", shift, ">", " L<", shift, ">";' \
  3279. -e 'print "=over 4";' \
  3280. -e 'while (defined($$key = shift) and defined($$val = shift)){print "=item *";print "C<$$key: $$val>";}' \
  3281. -e 'print "=back";'
  3282.  
  3283. UNINSTALL =   $(PERL) -MExtUtils::Install \
  3284. -e 'uninstall($$ARGV[0],1,1); print "\nUninstall is deprecated. Please check the";' \
  3285. -e 'print " packlist above carefully.\n  There may be errors. Remove the";' \
  3286. -e 'print " appropriate files manually.\n  Sorry for the inconveniences.\n"'
  3287. };
  3288.  
  3289.     return join "", @m;
  3290. }
  3291.  
  3292. =item tool_xsubpp (o)
  3293.  
  3294. Determines typemaps, xsubpp version, prototype behaviour.
  3295.  
  3296. =cut
  3297.  
  3298. sub tool_xsubpp {
  3299.     my($self) = shift;
  3300.     return "" unless $self->needs_linking;
  3301.     my($xsdir)  = $self->catdir($self->{PERL_LIB},"ExtUtils");
  3302.     my(@tmdeps) = $self->catdir('$(XSUBPPDIR)','typemap');
  3303.     if( $self->{TYPEMAPS} ){
  3304.     my $typemap;
  3305.     foreach $typemap (@{$self->{TYPEMAPS}}){
  3306.         if( ! -f  $typemap ){
  3307.             warn "Typemap $typemap not found.\n";
  3308.         }
  3309.         else{
  3310.             push(@tmdeps,  $typemap);
  3311.         }
  3312.     }
  3313.     }
  3314.     push(@tmdeps, "typemap") if -f "typemap";
  3315.     my(@tmargs) = map("-typemap $_", @tmdeps);
  3316.     if( exists $self->{XSOPT} ){
  3317.      unshift( @tmargs, $self->{XSOPT} );
  3318.     }
  3319.  
  3320.  
  3321.     my $xsubpp_version = $self->xsubpp_version($self->catfile($xsdir,"xsubpp"));
  3322.  
  3323.     # What are the correct thresholds for version 1 && 2 Paul?
  3324.     if ( $xsubpp_version > 1.923 ){
  3325.     $self->{XSPROTOARG} = "" unless defined $self->{XSPROTOARG};
  3326.     } else {
  3327.     if (defined $self->{XSPROTOARG} && $self->{XSPROTOARG} =~ /\-prototypes/) {
  3328.         print STDOUT qq{Warning: This extension wants to pass the switch "-prototypes" to xsubpp.
  3329.     Your version of xsubpp is $xsubpp_version and cannot handle this.
  3330.     Please upgrade to a more recent version of xsubpp.
  3331. };
  3332.     } else {
  3333.         $self->{XSPROTOARG} = "";
  3334.     }
  3335.     }
  3336.  
  3337.     my $xsubpp = $self->{CAPI} ? "xsubpp -object_capi" : "xsubpp";
  3338.  
  3339.     return qq{
  3340. XSUBPPDIR = $xsdir
  3341. XSUBPP = \$(XSUBPPDIR)/$xsubpp
  3342. XSPROTOARG = $self->{XSPROTOARG}
  3343. XSUBPPDEPS = @tmdeps
  3344. XSUBPPARGS = @tmargs
  3345. };
  3346. };
  3347.  
  3348. sub xsubpp_version
  3349. {
  3350.     my($self,$xsubpp) = @_;
  3351.     return $Xsubpp_Version if defined $Xsubpp_Version; # global variable
  3352.  
  3353.     my ($version) ;
  3354.  
  3355.     # try to figure out the version number of the xsubpp on the system
  3356.  
  3357.     # first try the -v flag, introduced in 1.921 & 2.000a2
  3358.  
  3359.     return "" unless $self->needs_linking;
  3360.  
  3361.     my $command = "$self->{PERL} -I$self->{PERL_LIB} $xsubpp -v 2>&1";
  3362.     print "Running $command\n" if $Verbose >= 2;
  3363.     $version = `$command` ;
  3364.     warn "Running '$command' exits with status " . ($?>>8) if $?;
  3365.     chop $version ;
  3366.  
  3367.     return $Xsubpp_Version = $1 if $version =~ /^xsubpp version (.*)/ ;
  3368.  
  3369.     # nope, then try something else
  3370.  
  3371.     my $counter = '000';
  3372.     my ($file) = 'temp' ;
  3373.     $counter++ while -e "$file$counter"; # don't overwrite anything
  3374.     $file .= $counter;
  3375.  
  3376.     open(F, ">$file") or die "Cannot open file '$file': $!\n" ;
  3377.     print F <<EOM ;
  3378. MODULE = fred PACKAGE = fred
  3379.  
  3380. int
  3381. fred(a)
  3382.         int     a;
  3383. EOM
  3384.  
  3385.     close F ;
  3386.  
  3387.     $command = "$self->{PERL} $xsubpp $file 2>&1";
  3388.     print "Running $command\n" if $Verbose >= 2;
  3389.     my $text = `$command` ;
  3390.     warn "Running '$command' exits with status " . ($?>>8) if $?;
  3391.     unlink $file ;
  3392.  
  3393.     # gets 1.2 -> 1.92 and 2.000a1
  3394.     return $Xsubpp_Version = $1 if $text =~ /automatically by xsubpp version ([\S]+)\s*/  ;
  3395.  
  3396.     # it is either 1.0 or 1.1
  3397.     return $Xsubpp_Version = 1.1 if $text =~ /^Warning: ignored semicolon/ ;
  3398.  
  3399.     # none of the above, so 1.0
  3400.     return $Xsubpp_Version = "1.0" ;
  3401. }
  3402.  
  3403. =item top_targets (o)
  3404.  
  3405. Defines the targets all, subdirs, config, and O_FILES
  3406.  
  3407. =cut
  3408.  
  3409. sub top_targets {
  3410. # --- Target Sections ---
  3411.  
  3412.     my($self) = shift;
  3413.     my(@m);
  3414.     push @m, '
  3415. #all ::    config $(INST_PM) subdirs linkext manifypods
  3416. ';
  3417.  
  3418.     push @m, '
  3419. all :: pure_all manifypods
  3420.     '.$self->{NOECHO}.'$(NOOP)
  3421.       unless $self->{SKIPHASH}{'all'};
  3422.     
  3423.     push @m, '
  3424. pure_all :: config pm_to_blib subdirs linkext
  3425.     '.$self->{NOECHO}.'$(NOOP)
  3426.  
  3427. subdirs :: $(MYEXTLIB)
  3428.     '.$self->{NOECHO}.'$(NOOP)
  3429.  
  3430. config :: '.$self->{MAKEFILE}.' $(INST_LIBDIR)/.exists
  3431.     '.$self->{NOECHO}.'$(NOOP)
  3432.  
  3433. config :: $(INST_ARCHAUTODIR)/.exists
  3434.     '.$self->{NOECHO}.'$(NOOP)
  3435.  
  3436. config :: $(INST_AUTODIR)/.exists
  3437.     '.$self->{NOECHO}.'$(NOOP)
  3438. ';
  3439.  
  3440.     push @m, qq{
  3441. config :: Version_check
  3442.     $self->{NOECHO}\$(NOOP)
  3443.  
  3444. } unless $self->{PARENT} or ($self->{PERL_SRC} && $self->{INSTALLDIRS} eq "perl") or $self->{NO_VC};
  3445.  
  3446.     push @m, $self->dir_target(qw[$(INST_AUTODIR) $(INST_LIBDIR) $(INST_ARCHAUTODIR)]);
  3447.  
  3448.     if (%{$self->{MAN1PODS}}) {
  3449.     push @m, qq[
  3450. config :: \$(INST_MAN1DIR)/.exists
  3451.     $self->{NOECHO}\$(NOOP)
  3452.  
  3453. ];
  3454.     push @m, $self->dir_target(qw[$(INST_MAN1DIR)]);
  3455.     }
  3456.     if (%{$self->{MAN3PODS}}) {
  3457.     push @m, qq[
  3458. config :: \$(INST_MAN3DIR)/.exists
  3459.     $self->{NOECHO}\$(NOOP)
  3460.  
  3461. ];
  3462.     push @m, $self->dir_target(qw[$(INST_MAN3DIR)]);
  3463.     }
  3464.  
  3465.     push @m, '
  3466. $(O_FILES): $(H_FILES)
  3467. ' if @{$self->{O_FILES} || []} && @{$self->{H} || []};
  3468.  
  3469.     push @m, q{
  3470. help:
  3471.     perldoc ExtUtils::MakeMaker
  3472. };
  3473.  
  3474.     push @m, q{
  3475. Version_check:
  3476.     }.$self->{NOECHO}.q{$(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) \
  3477.         -MExtUtils::MakeMaker=Version_check \
  3478.         -e "Version_check('$(MM_VERSION)')"
  3479. };
  3480.  
  3481.     join('',@m);
  3482. }
  3483.  
  3484. =item writedoc
  3485.  
  3486. Obsolete, deprecated method. Not used since Version 5.21.
  3487.  
  3488. =cut
  3489.  
  3490. sub writedoc {
  3491. # --- perllocal.pod section ---
  3492.     my($self,$what,$name,@attribs)=@_;
  3493.     my $time = localtime;
  3494.     print "=head2 $time: $what C<$name>\n\n=over 4\n\n=item *\n\n";
  3495.     print join "\n\n=item *\n\n", map("C<$_>",@attribs);
  3496.     print "\n\n=back\n\n";
  3497. }
  3498.  
  3499. =item xs_c (o)
  3500.  
  3501. Defines the suffix rules to compile XS files to C.
  3502.  
  3503. =cut
  3504.  
  3505. sub xs_c {
  3506.     my($self) = shift;
  3507.     return '' unless $self->needs_linking();
  3508.     '
  3509. .xs.c:
  3510.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs >xstmp.c && $(MV) xstmp.c $*.c
  3511. ';
  3512. }
  3513.  
  3514. =item xs_cpp (o)
  3515.  
  3516. Defines the suffix rules to compile XS files to C++.
  3517.  
  3518. =cut
  3519.  
  3520. sub xs_cpp {
  3521.     my($self) = shift;
  3522.     return '' unless $self->needs_linking();
  3523.     '
  3524. .xs.cpp:
  3525.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs >xstmp.c && $(MV) xstmp.c $*.cpp
  3526. ';
  3527. }
  3528.  
  3529. =item xs_o (o)
  3530.  
  3531. Defines suffix rules to go from XS to object files directly. This is
  3532. only intended for broken make implementations.
  3533.  
  3534. =cut
  3535.  
  3536. sub xs_o {    # many makes are too dumb to use xs_c then c_o
  3537.     my($self) = shift;
  3538.     return '' unless $self->needs_linking();
  3539.     '
  3540. .xs$(OBJ_EXT):
  3541.     $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSPROTOARG) $(XSUBPPARGS) $*.xs >xstmp.c && $(MV) xstmp.c $*.c
  3542.     $(CCCMD) $(CCCDLFLAGS) -I$(PERL_INC) $(DEFINE) $*.c
  3543. ';
  3544. }
  3545.  
  3546. =item perl_archive
  3547.  
  3548. This is internal method that returns path to libperl.a equivalent
  3549. to be linked to dynamic extensions. UNIX does not have one but OS2
  3550. and Win32 do.
  3551.  
  3552. =cut 
  3553.  
  3554. sub perl_archive
  3555. {
  3556.  return '$(PERL_INC)' . "/$Config{libperl}" if $^O eq "beos";
  3557.  return "";
  3558. }
  3559.  
  3560. =item export_list
  3561.  
  3562. This is internal method that returns name of a file that is
  3563. passed to linker to define symbols to be exported.
  3564. UNIX does not have one but OS2 and Win32 do.
  3565.  
  3566. =cut 
  3567.  
  3568. sub export_list
  3569. {
  3570.  return "";
  3571. }
  3572.  
  3573.  
  3574. 1;
  3575.  
  3576. =back
  3577.  
  3578. =head1 SEE ALSO
  3579.  
  3580. L<ExtUtils::MakeMaker>
  3581.  
  3582. =cut
  3583.  
  3584. __END__
  3585.