From: Ilya Zakharevich Date: Tue, 26 Jun 2001 04:22:25 +0000 (-0400) Subject: static build X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5f929d0c0da8cd6ab656225ff6a3f15d20352856;p=p5sagit%2Fp5-mst-13.2.git static build Message-ID: <20010626042225.A2604@math.ohio-state.edu> p4raw-id: //depot/perl@10952 --- diff --git a/ext/List/Util/Makefile.PL b/ext/List/Util/Makefile.PL index e2b7be9..93f1d4f 100644 --- a/ext/List/Util/Makefile.PL +++ b/ext/List/Util/Makefile.PL @@ -42,6 +42,18 @@ sub xs_o { # many makes are too dumb to use xs_c then c_o '; } +sub top_targets { # many makes are too dumb to use xs_c then c_o + my($self) = shift; + my $out = $self->SUPER::top_targets(@_); + $out . +' + +ListUtil.c: Util.c + @$(NOOP) + +'; +} + __EOMM__ } } diff --git a/lib/ExtUtils.t b/lib/ExtUtils.t index aafe609..9ab6acf 100644 --- a/lib/ExtUtils.t +++ b/lib/ExtUtils.t @@ -397,7 +397,6 @@ if ($?) { if ($Config{usedl}) { print "ok 4\n"; } else { - push @files, "perl$Config{exe_ext}"; my $makeperl = "$make perl"; print "# make = '$makeperl'\n"; $makeout = `$makeperl`; diff --git a/lib/ExtUtils/MM_Unix.pm b/lib/ExtUtils/MM_Unix.pm index 573147c..a237382 100644 --- a/lib/ExtUtils/MM_Unix.pm +++ b/lib/ExtUtils/MM_Unix.pm @@ -466,7 +466,7 @@ EOT push(@otherfiles, qw[./blib $(MAKE_APERL_FILE) $(INST_ARCHAUTODIR)/extralibs.all perlmain.c tmon.out mon.out core core.*perl.*.? *perl.core so_locations pm_to_blib - *$(OBJ_EXT) *$(LIB_EXT) perl.exe + *$(OBJ_EXT) *$(LIB_EXT) perl.exe perl perl$(EXE_EXT) $(BOOTSTRAP) $(BASEEXT).bso $(BASEEXT).def lib$(BASEEXT).def $(BASEEXT).exp diff --git a/os2/Makefile.SHs b/os2/Makefile.SHs index 9efc864..9ae99cd 100644 --- a/os2/Makefile.SHs +++ b/os2/Makefile.SHs @@ -231,18 +231,52 @@ sys_harness: perl_sys !NO!SUBS! -# Now we need to find directories in ./ext/ which are two level deep +# Now we need to find directories in ./ext/ which are up to 3 level deep +# Currently (2001/06) there is no directories 4 levels deep. +# (Only directories so that there is no Makefile.PL some levels up matter.) dirs='' +ddirs='' preci='ext/%/Makefile.aout ' for d in ext/* do - # echo "Checking '$d'..." - f="`echo $d/*/Makefile.PL`" - # SDBFile/sdbm, skip kid makefile - if test ! -e "$d/Makefile.PL" -a ! "$f" = ""; then - dirs="$dirs $d" - preci="$preci $d/%/Makefile.aout" + # echo "...Checking '$d'..." + # skip the kid if the parent exists: cmp SDBFile/sdbm, done by MakeMaker + if test ! -e "$d/Makefile.PL"; then + # Need to treat subdirectories manually + # echo "...Checking subdirs of '$d'..." + d_treated='' + for dd in $d/* + do + if test ! -d $dd; then + continue + fi + if test -e "$dd/Makefile.PL"; then + if test "X$d_treated" = "X"; then + d_treated=1 + # echo "...Found parentless 2-level deep Makefile.PL's in $d/*/:" $d/*/Makefile.PL + dirs="$dirs $d" + preci="$preci $d/%/Makefile.aout" + fi + else + # Need to treat subsubdirectories manually + dd_treated='' + for ddd in $dd/* + do + if test ! -d $ddd; then + continue + fi + if test -e "$ddd/Makefile.PL"; then + if test "X$dd_treated" = "X"; then + dd_treated=1 + # echo "...Found parentless 3-level deep Makefile.PL's in $dd/*/:" $dd/*/Makefile.PL + ddirs="$ddirs $dd" + preci="$preci $dd/%/Makefile.aout" + fi + fi + done + fi + done fi done @@ -251,13 +285,31 @@ $spitshell >>Makefile <>Makefile <>Makefile <