----- Forwarded message from "Craig A. Berry" <[EMAIL PROTECTED]> -----

From: "Craig A. Berry" <[EMAIL PROTECTED]>
Date: Tue, 19 Nov 2002 22:06:45 -0600
To: Michael G Schwern <[EMAIL PROTECTED]>
Subject: Re: MM snapshot status on VMS (was Re: [PATCH MM 6.05] ppd and hints
 portability nits)
User-Agent: Mozilla/5.0 (X11; U; OpenVMS Digital_Personal_WorkStation_; en-US; rv:1.1) 
Gecko/20020828

OK, next iteration, with

$ type .patch
2002-11-19T16-35-04-0500


First you need something like this to get MM_VMS.pm to compile:

--- MM_VMS.pm;-0        Tue Nov 19 15:33:39 2002
+++ MM_VMS.pm   Tue Nov 19 21:48:43 2002
@@ -1410,11 +1410,11 @@
             ? @{$attribs{FILES}}
             : split /\s+/, $attribs{FILES};

-       foreach my $word (@fileist) {
-           if (my($key) = $word =~ m#^\$\((.*)\)$# and
-                ref $self->{$key} eq 'ARRAY')
+       foreach my $word (@filelist) {
+           if ($word =~ m#^\$\((.*)\)$# and
+                ref $self->{$1} eq 'ARRAY')
             {
-               push(@otherfiles, @{$self->{$key}});
+               push(@otherfiles, @{$self->{$1}});
            }
            else { push(@otherfiles, $word); }
        }
[end]

Here's what I think was wrong but except for the typo I'm hardly the 
best authority:

1.) @fileist --> @filelist
2.) my($key) forces list context but the result of a match can only be 
stored in a scalar lvalue
3.) The result of a match is just a boolean, not the thing matched, so 
$key would never have the unadorned macro name but that should be in $1.

After that it can run its own Makefile.PL, but

$ mmk
%MMK-F-CANTUPD, cannot update target [.BLIB.LIB.EXTUTILS] - sources unknown
$ mms
%MMS-F-LEXNULLNAME, Encountered null filename on line 300.

descrip.mms attached.  Line 300 is one of the config targets.  I think 
the problem is that the definition of EXISTS_EXT is missing.  Haven't 
had time to track down why yet.

FYI, anonymous cvs access doesn't seem to be working (it used to).  The 
login works ok but the checkout fails with a setgid error:

$ cvs -d ":pserver:[EMAIL PROTECTED]:/home/schwern/cvs" "login"
(Logging in to [EMAIL PROTECTED])
CVS password:

$ cvs -d ":pserver:[EMAIL PROTECTED]:/home/schwern/cvs" co 
"ExtUtils-MakeMaker"
setgid failed: Operation not permitted
cvs [checkout aborted]: authorization failed: server makemaker.org 
rejected access

That's it for now.  I may not get back to this until Thursday.

Michael G Schwern wrote:
>On Mon, Nov 18, 2002 at 07:20:11PM -0600, Craig A. Berry wrote:
>
>>I haven't had a chance to dig into the test failures yet, but here's 
>>where things are with a just-downloaded snapshot.  Hopefully more later.
>
>
>Please include your Descrip.mms with your reports.  I can usually figure
>things out better from that.
>
>Latest snapshot has taken into account the VMS newline problem and failing
>tests will show the generated oneliner to make it easier to figure out what
>happened.


# This Makefile is for the ExtUtils::MakeMaker extension to perl.
#
# It was generated automatically by MakeMaker version
# 6.05 (Revision: 1.77) from the contents of
# Makefile.PL. Don't edit this file, edit Makefile.PL instead.
#
#       ANY CHANGES MADE HERE WILL BE LOST!
#
#   MakeMaker ARGV: ()
#
#   MakeMaker Parameters:

#     EXE_FILES => [q[bin/instmodsh]]
#     INSTALLDIRS => q[perl]
#     NAME => q[ExtUtils::MakeMaker]
#     PREREQ_PM => { Test::Harness=>q[2], File::Spec=>q[0.8], File::Basename=>q[0], 
DirHandle=>q[0] }
#     VERSION_FROM => q[lib/ExtUtils/MakeMaker.pm]

# --- MakeMaker post_initialize section:


# --- MakeMaker const_config section:

# These definitions are from config.sh (via /perl_root/lib/VMS_AXP/5_8_0/Config.pm)

# They may have been overridden via Makefile.PL or on the command line
AR = 
CC = CC/DECC
CCCDLFLAGS = 
CCDLFLAGS = 
DLEXT = exe
DLSRC = dl_vms.c
LD = Link
LDDLFLAGS = /Share
LDFLAGS = /NoTrace/NoMap
LIBC = \(DECCRTL\)
LIB_EXT = .olb
OBJ_EXT = .obj
OSNAME = VMS
OSVERS = V7.3
RANLIB = 
SO = exe
EXE_EXT = .exe
FULL_AR = 


# --- MakeMaker constants section:
AR_STATIC_ARGS = cr
NAME = ExtUtils::MakeMaker
DISTNAME = ExtUtils-MakeMaker
NAME_SYM = ExtUtils_MakeMaker
VERSION = 6.05
VERSION_SYM = 6_05
XS_VERSION = 6.05
INST_BIN = [.blib.bin]
INST_LIB = [.blib.lib]
INST_ARCHLIB = [.blib.arch]
INST_SCRIPT = [.blib.script]
INSTALLDIRS = perl
PREFIX = perl_root:
SITEPREFIX = perl_root:
VENDORPREFIX = 
INSTALLPRIVLIB = perl_root:[lib]
INSTALLSITELIB = perl_root:[lib.site_perl]
INSTALLARCHLIB = perl_root:[lib.VMS_AXP.5_8_0]
INSTALLSITEARCH = perl_root:[lib.site_perl.VMS_AXP]
INSTALLBIN = perl_root:[000000]
INSTALLSITEBIN = perl_root:[bin.VMS_AXP]
INSTALLSCRIPT = perl_root:[utils]
PERL_LIB = perl_root:[lib]
PERL_ARCHLIB = perl_root:[lib.VMS_AXP.5_8_0]
SITELIBEXP = perl_root:[lib.site_perl]
SITEARCHEXP = perl_root:[lib.site_perl.VMS_AXP]
LIBPERL_A = libperl.olb
FIRST_MAKEFILE = Descrip.MMS
MAKEFILE = Descrip.MMS
MAKEFILE_OLD = Descrip.MMS_old
MAKE_APERL_FILE = Makeaperl.MMS
PERLMAINCC = $(CC)
PERL_INC = perl_root:[lib.VMS_AXP.5_8_0.CORE]
PERL = MCR perl_root:[000000]perl.exe
FULLPERL = MCR perl_root:[000000]perl.exe
PERLRUN = $(PERL) "-ID0:[CRAIG.EXTUTILS-MAKEMAKER-SNAP.lib]"
FULLPERLRUN = $(FULLPERL) "-ID0:[CRAIG.EXTUTILS-MAKEMAKER-SNAP.lib]"
PERLRUNINST = $(PERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)"
FULLPERLRUNINST = $(FULLPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)"
ABSPERL = $(PERL)
ABSPERLRUN = $(ABSPERL)
ABSPERLRUNINST = $(ABSPERLRUN) "-I$(INST_ARCHLIB)" "-I$(INST_LIB)"
PERL_CORE = 0
NOECHO = @ 
NOOP = Continue

VERSION_MACRO = VERSION
DEFINE_VERSION = "$(VERSION_MACRO)=""$(VERSION)"""
XS_VERSION_MACRO = XS_VERSION
XS_DEFINE_VERSION = "$(XS_VERSION_MACRO)=""$(XS_VERSION)"""

MAKEMAKER = perl_root:[lib.ExtUtils]MakeMaker.pm
MM_VERSION = 6.05
MM_REVISION = 1.77
MM_VMS_REVISION = 5.66

# FULLEXT = Pathname for extension directory (eg DBD/Oracle).
# BASEEXT = Basename part of FULLEXT. May be just equal FULLEXT.
# PARENT_NAME = NAME without BASEEXT and no trailing :: (eg Foo::Bar)
# DLBASE  = Basename part of dynamic library. May be just equal BASEEXT.
FULLEXT = [.ExtUtils.MakeMaker]
VERSION_FROM = [.lib.ExtUtils]MakeMaker.pm
OBJECT = 
LDFROM = $(OBJECT)
BASEEXT = MakeMaker
PARENT_NAME = ExtUtils
DLBASE = PL_ExtUtils__MakeMaker
DEFINE = 
LINKTYPE = dynamic


# Handy lists of source code files:
XS_FILES = 
C_FILES  = 
O_FILES  = 
H_FILES  = 
MAN1PODS = 
MAN3PODS = [.lib.extutils.command]mm.pm [.lib.extutils.makemaker]faq.pod 
[.lib.extutils]command.pm \
        [.lib.extutils]install.pm [.lib.extutils]installed.pm 
[.lib.extutils]liblist.pm \
        [.lib.extutils]makemaker.pm [.lib.extutils]manifest.pm 
[.lib.extutils]mkbootstrap.pm \
        [.lib.extutils]mksymlists.pm [.lib.extutils]mm.pm [.lib.extutils]mm_any.pm 
[.lib.extutils]mm_beos.pm \
        [.lib.extutils]mm_cygwin.pm [.lib.extutils]mm_dos.pm 
[.lib.extutils]mm_macos.pm \
        [.lib.extutils]mm_nw5.pm [.lib.extutils]mm_os2.pm [.lib.extutils]mm_unix.pm 
[.lib.extutils]mm_uwin.pm \
        [.lib.extutils]mm_vms.pm [.lib.extutils]mm_win32.pm [.lib.extutils]mm_win95.pm 
\
        [.lib.extutils]my.pm [.lib.extutils]packlist.pm [.lib.extutils]testlib.pm

INST_MAN1DIR = [.blib.man1]
MAN1EXT = rno
INSTALLMAN1DIR = perl_root:[man.man1]
INSTALLSITEMAN1DIR = perl_root:[man.man1]
INST_MAN3DIR = [.blib.man3]
MAN3EXT = rno
INSTALLMAN3DIR = perl_root:[man.man3]
INSTALLSITEMAN3DIR = perl_root:[man.man3]

makemakerdflt : all
        $(NOECHO) $(NOOP)

..SUFFIXES :
..SUFFIXES : $(OBJ_EXT) .c .cpp .cxx .xs

# Here is the Config.pm that we are using/depend on
CONFIGDEP = $(PERL_ARCHLIB)Config.pm, $(PERL_INC)config.h $(VERSION_FROM)

# Where to put things:
INST_LIBDIR      = [.blib.lib.ExtUtils]
INST_ARCHLIBDIR  = [.blib.arch.ExtUtils]

INST_AUTODIR     = [.blib.lib.auto.ExtUtils.MakeMaker]
INST_ARCHAUTODIR = [.blib.arch.auto.ExtUtils.MakeMaker]

INST_STATIC =
INST_DYNAMIC =
INST_BOOT =
EXPORT_LIST = $(BASEEXT).opt
PERL_ARCHIVE = PERL_ROOT:[000000]PERLSHR.EXE

TO_INST_PM = [.lib.extutils.command]mm.pm [.lib.extutils.liblist]kid.pm 
[.lib.extutils.makemaker]faq.pod \
        [.lib.extutils]command.pm [.lib.extutils]install.pm 
[.lib.extutils]installed.pm \
        [.lib.extutils]liblist.pm [.lib.extutils]makemaker.pm 
[.lib.extutils]manifest.pm \
        [.lib.extutils]manifest.skip [.lib.extutils]mkbootstrap.pm 
[.lib.extutils]mksymlists.pm \
        [.lib.extutils]mm.pm [.lib.extutils]mm_any.pm [.lib.extutils]mm_beos.pm 
[.lib.extutils]mm_cygwin.pm \
        [.lib.extutils]mm_dos.pm [.lib.extutils]mm_macos.pm [.lib.extutils]mm_nw5.pm 
[.lib.extutils]mm_os2.pm \
        [.lib.extutils]mm_unix.pm [.lib.extutils]mm_uwin.pm [.lib.extutils]mm_vms.pm 
[.lib.extutils]mm_win32.pm \
        [.lib.extutils]mm_win95.pm [.lib.extutils]my.pm [.lib.extutils]packlist.pm 
[.lib.extutils]testlib.pm

PM_TO_BLIB = [.lib.extutils]mm_vms.pm [.blib.lib.extutils]mm_vms.pm 
[.lib.extutils]mm_cygwin.pm \
        [.blib.lib.extutils]mm_cygwin.pm [.lib.extutils]command.pm 
[.blib.lib.extutils]command.pm \
        [.lib.extutils]mm_dos.pm [.blib.lib.extutils]mm_dos.pm 
[.lib.extutils]mm_nw5.pm \
        [.blib.lib.extutils]mm_nw5.pm [.lib.extutils]install.pm 
[.blib.lib.extutils]install.pm \
        [.lib.extutils]manifest.skip [.blib.lib.extutils]manifest.skip 
[.lib.extutils.liblist]kid.pm \
        [.blib.lib.extutils.liblist]kid.pm [.lib.extutils]packlist.pm 
[.blib.lib.extutils]packlist.pm \
        [.lib.extutils.command]mm.pm [.blib.lib.extutils.command]mm.pm 
[.lib.extutils]mm_win32.pm \
        [.blib.lib.extutils]mm_win32.pm [.lib.extutils]mksymlists.pm 
[.blib.lib.extutils]mksymlists.pm \
        [.lib.extutils]manifest.pm [.blib.lib.extutils]manifest.pm 
[.lib.extutils]mm_win95.pm \
        [.blib.lib.extutils]mm_win95.pm [.lib.extutils]mm_beos.pm 
[.blib.lib.extutils]mm_beos.pm \
        [.lib.extutils]mm_uwin.pm [.blib.lib.extutils]mm_uwin.pm 
[.lib.extutils]mm_macos.pm \
        [.blib.lib.extutils]mm_macos.pm [.lib.extutils.makemaker]faq.pod 
[.blib.lib.extutils.makemaker]faq.pod \
        [.lib.extutils]makemaker.pm [.blib.lib.extutils]makemaker.pm 
[.lib.extutils]mm_any.pm \
        [.blib.lib.extutils]mm_any.pm [.lib.extutils]mkbootstrap.pm 
[.blib.lib.extutils]mkbootstrap.pm \
        [.lib.extutils]mm.pm [.blib.lib.extutils]mm.pm [.lib.extutils]testlib.pm 
[.blib.lib.extutils]testlib.pm \
        [.lib.extutils]liblist.pm [.blib.lib.extutils]liblist.pm 
[.lib.extutils]mm_unix.pm \
        [.blib.lib.extutils]mm_unix.pm [.lib.extutils]my.pm [.blib.lib.extutils]my.pm \
        [.lib.extutils]mm_os2.pm [.blib.lib.extutils]mm_os2.pm 
[.lib.extutils]installed.pm \
        [.blib.lib.extutils]installed.pm


# --- MakeMaker tool_autosplit section:

# Usage : $(AUTOSPLITFILE) FileToSplit AutoDirToSplitInto
AUTOSPLITFILE = $(PERLRUN) -e "use AutoSplit;autosplit($ARGV[0], $ARGV[1], 0, 1, 1) ;"


# --- MakeMaker tool_xsubpp section:


# --- MakeMaker tools_other section:

# Assumes $(MMS) invokes MMS or MMK
# (It is assumed in some cases later that the default makefile name
# (Descrip.MMS for MM[SK]) is used.)
USEMAKEFILE = /Descrip=
USEMACROS = /Macro=(
MACROEND = )
SHELL = Posix
TOUCH = $(PERLRUN) "-MExtUtils::Command" -e touch
CHMOD = $(PERLRUN) "-MExtUtils::Command" -e chmod
CP = Copy/NoConfirm
MV = Rename/NoConfirm
RM_F  = $(PERLRUN) "-MExtUtils::Command" -e rm_f
RM_RF = $(PERLRUN) "-MExtUtils::Command" -e rm_rf
SAY = Write Sys$Output
UMASK_NULL = ! 
MKPATH = Create/Directory
EQUALIZE_TIMESTAMP = $(PERL) -we "open F,qq{>$ARGV[1]};close 
F;utime(0,(stat($ARGV[0]))[9]+1,$ARGV[1])"
WARN_IF_OLD_PACKLIST = $(PERL) -e "if (-f $ARGV[0]){print qq[WARNING : Old package 
found ($ARGV[0]); please check for collisions\n]}"
MOD_INSTALL = $(PERLRUN) "-MExtUtils::Install" -e "install({split(' ',<STDIN>)},1);"
DOC_INSTALL = $(PERL) -e "@ARGV=split(/\|/,<STDIN>);print '=head2 
',scalar(localtime),' : C<',shift,qq[>\n\n=over 4\n\n];while($key=shift && 
$val=shift){print qq[=item *\n\nC<$key : $val>\n\n];}print qq[=back\n\n]"
UNINSTALL = $(PERLRUN) "-MExtUtils::Install" -e "uninstall($ARGV[0],1,1);"


# --- MakeMaker dist section:
ZIPFLAGS = -Vu
TO_UNIX = $(NOECHO) $(NOOP)
TAR = tar
POSTOP = $(NOECHO) $(NOOP)
ZIP = zip
CI = ci -u
DIST_DEFAULT = zipdist
SHAR = vms_share
COMPRESS = gzip
DIST_CP = best
PREOP = $(NOECHO) $(NOOP)
TARFLAGS = cvf
DISTVNAME = $(DISTNAME)-$(VERSION)
SUFFIX = -gz
RCS_LABEL = rcs -Nv$(VERSION_SYM): -q


# --- MakeMaker macro section:


# --- MakeMaker depend section:


# --- MakeMaker cflags section:

CCFLAGS = /Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=.obj 
/NOANSI_ALIAS/float=ieee/ieee=denorm_results/Define=($(DEFINE_VERSION),$(XS_DEFINE_VERSION))/Include=($(PERL_INC))
OPTIMIZE = /NoList
PERLTYPE = 


# --- MakeMaker const_loadlibs section:


# --- MakeMaker const_cccmd section:


# --- MakeMaker post_constants section:


# --- MakeMaker pasthru section:

PASTHRU = LIB="$(LIB)",\
        LIBPERL_A="$(LIBPERL_A)",\
        LINKTYPE="$(LINKTYPE)",\
        PREFIX="$(PREFIX)",\
        OPTIMIZE="$(OPTIMIZE)",\
        PASTHRU_DEFINE="$(PASTHRU_DEFINE)",\
        PASTHRU_INC="$(PASTHRU_INC)"


# --- MakeMaker c_o section:


# --- MakeMaker xs_c section:


# --- MakeMaker xs_o section:


# --- MakeMaker top_targets section:

all :: pure_all
        $(NOECHO) $(NOOP)

pure_all :: config pm_to_blib subdirs linkext
        $(NOECHO) $(NOOP)

subdirs :: $(MYEXTLIB)
        $(NOECHO) $(NOOP)

config :: $(MAKEFILE) $(INST_LIBDIR)$(EXISTS_EXT)
        $(NOECHO) $(NOOP)

config :: $(INST_ARCHAUTODIR)$(EXISTS_EXT)
        $(NOECHO) $(NOOP)

config :: $(INST_AUTODIR)$(EXISTS_EXT)
        $(NOECHO) $(NOOP)

$(INST_AUTODIR).exists :: perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h
        $(NOECHO) $(MKPATH) $(INST_AUTODIR)
        $(NOECHO) $(EQUALIZE_TIMESTAMP) perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h 
$(INST_AUTODIR).exists

$(INST_LIBDIR).exists :: perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h
        $(NOECHO) $(MKPATH) $(INST_LIBDIR)
        $(NOECHO) $(EQUALIZE_TIMESTAMP) perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h 
$(INST_LIBDIR).exists

$(INST_ARCHAUTODIR).exists :: perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h
        $(NOECHO) $(MKPATH) $(INST_ARCHAUTODIR)
        $(NOECHO) $(EQUALIZE_TIMESTAMP) perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h 
$(INST_ARCHAUTODIR).exists

config :: $(INST_MAN3DIR)$(EXISTS_EXT)
        $(NOECHO) $(NOOP)

$(INST_MAN3DIR).exists :: perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h
        $(NOECHO) $(MKPATH) $(INST_MAN3DIR)
        $(NOECHO) $(EQUALIZE_TIMESTAMP) perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h 
$(INST_MAN3DIR).exists

help :
        perldoc ExtUtils::MakeMaker


# --- MakeMaker linkext section:

linkext :: $(LINKTYPE)
        $(NOECHO) $(NOOP)


# --- MakeMaker dlsyms section:


# --- MakeMaker dynamic section:

## $(INST_PM) has been moved to the all : target.
## It remains here for awhile to allow for old usage : "make dynamic"
dynamic :: $(MAKEFILE) $(INST_DYNAMIC) $(INST_BOOT)
        $(NOECHO) $(NOOP)


# --- MakeMaker dynamic_bs section:

BOOTSTRAP =


# --- MakeMaker dynamic_lib section:


# --- MakeMaker static section:

## $(INST_PM) has been moved to the all : target.
## It remains here for awhile to allow for old usage : "make static"
static :: $(MAKEFILE) $(INST_STATIC)
        $(NOECHO) $(NOOP)


# --- MakeMaker static_lib section:


# --- MakeMaker manifypods section:

# --- Begin manifypods section :
POD2MAN_EXE = $(PERLRUN) "-MExtUtils::Command::MM" -e "pod2man @ARGV" "--"


manifypods : pure_all  \
        [.lib.extutils]mm_vms.pm \
        [.lib.extutils]mm_cygwin.pm \
        [.lib.extutils]command.pm \
        [.lib.extutils]mm_dos.pm \
        [.lib.extutils]mm_nw5.pm \
        [.lib.extutils]install.pm \
        [.lib.extutils]packlist.pm \
        [.lib.extutils.command]mm.pm \
        [.lib.extutils]mm_win32.pm \
        [.lib.extutils]mksymlists.pm \
        [.lib.extutils]manifest.pm \
        [.lib.extutils]mm_win95.pm \
        [.lib.extutils]mm_beos.pm \
        [.lib.extutils]mm_uwin.pm \
        [.lib.extutils]mm_macos.pm \
        [.lib.extutils.makemaker]faq.pod \
        [.lib.extutils]makemaker.pm \
        [.lib.extutils]mm_any.pm \
        [.lib.extutils]mkbootstrap.pm \
        [.lib.extutils]mm.pm \
        [.lib.extutils]testlib.pm \
        [.lib.extutils]liblist.pm \
        [.lib.extutils]mm_unix.pm \
        [.lib.extutils]my.pm \
        [.lib.extutils]mm_os2.pm \
        [.lib.extutils]installed.pm
        $(NOECHO) $(POD2MAN_EXE) --section=1 --perm_rw=$(PERM_RW) 
        $(NOECHO) $(POD2MAN_EXE) --section=3 --perm_rw=$(PERM_RW)  \
          [.lib.extutils]mm_vms.pm \
            [.blib.man3]extutils__mm_vms.$(MAN3EXT) \
          [.lib.extutils]mm_cygwin.pm \
            [.blib.man3]extutils__mm_cygwin.$(MAN3EXT) \
          [.lib.extutils]command.pm \
            [.blib.man3]extutils__command.$(MAN3EXT) \
          [.lib.extutils]mm_dos.pm \
            [.blib.man3]extutils__mm_dos.$(MAN3EXT) \
          [.lib.extutils]mm_nw5.pm \
            [.blib.man3]extutils__mm_nw5.$(MAN3EXT) \
          [.lib.extutils]install.pm \
            [.blib.man3]extutils__install.$(MAN3EXT) \
          [.lib.extutils]packlist.pm \
            [.blib.man3]extutils__packlist.$(MAN3EXT) \
          [.lib.extutils.command]mm.pm \
            [.blib.man3]extutils__command__mm.$(MAN3EXT) \
          [.lib.extutils]mm_win32.pm \
            [.blib.man3]extutils__mm_win32.$(MAN3EXT) \
          [.lib.extutils]mksymlists.pm \
            [.blib.man3]extutils__mksymlists.$(MAN3EXT) \
          [.lib.extutils]manifest.pm \
            [.blib.man3]extutils__manifest.$(MAN3EXT) \
          [.lib.extutils]mm_win95.pm \
            [.blib.man3]extutils__mm_win95.$(MAN3EXT) \
          [.lib.extutils]mm_beos.pm \
            [.blib.man3]extutils__mm_beos.$(MAN3EXT) \
          [.lib.extutils]mm_uwin.pm \
            [.blib.man3]extutils__mm_uwin.$(MAN3EXT) \
          [.lib.extutils]mm_macos.pm \
            [.blib.man3]extutils__mm_macos.$(MAN3EXT) \
          [.lib.extutils.makemaker]faq.pod \
            [.blib.man3]extutils__makemaker__faq.$(MAN3EXT) \
          [.lib.extutils]makemaker.pm \
            [.blib.man3]extutils__makemaker.$(MAN3EXT) \
          [.lib.extutils]mm_any.pm \
            [.blib.man3]extutils__mm_any.$(MAN3EXT) \
          [.lib.extutils]mkbootstrap.pm \
            [.blib.man3]extutils__mkbootstrap.$(MAN3EXT) \
          [.lib.extutils]mm.pm \
            [.blib.man3]extutils__mm.$(MAN3EXT) \
          [.lib.extutils]testlib.pm \
            [.blib.man3]extutils__testlib.$(MAN3EXT) \
          [.lib.extutils]liblist.pm \
            [.blib.man3]extutils__liblist.$(MAN3EXT) \
          [.lib.extutils]mm_unix.pm \
            [.blib.man3]extutils__mm_unix.$(MAN3EXT) \
          [.lib.extutils]my.pm \
            [.blib.man3]extutils__my.$(MAN3EXT) \
          [.lib.extutils]mm_os2.pm \
            [.blib.man3]extutils__mm_os2.$(MAN3EXT) \
          [.lib.extutils]installed.pm \
            [.blib.man3]extutils__installed.$(MAN3EXT)


# --- End manifypods section --- #



# --- MakeMaker processPL section:


# --- MakeMaker installbin section:

EXE_FILES = [.bin]instmodsh

realclean ::
        $(RM_F)  $(INST_SCRIPT)instmodsh


$(INST_SCRIPT)instmodsh : [.bin]instmodsh $(MAKEFILE) [.blib.script]$(EXISTS_EXT)
        $(CP) [.bin]instmodsh $(INST_SCRIPT)instmodsh


[.blib.script].exists :: perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h
        $(NOECHO) $(MKPATH) [.blib.script]
        $(NOECHO) $(EQUALIZE_TIMESTAMP) perl_root:[lib.VMS_AXP.5_8_0.CORE]perl.h 
[.blib.script].exists


# --- MakeMaker subdirs section:

# none

# --- MakeMaker clean_subdirs section:
clean_subdirs :
        $(NOECHO)$(NOOP)


# --- MakeMaker clean section:

# Delete temporary files but do not touch installed files. We don't delete
# the Descrip.MMS here so that a later make realclean still has it to use.
clean :: clean_subdirs
        $(RM_F) *.Map *.Dmp *.Lis *.cpp *.$(DLEXT) *$(OBJ_EXT) *$(LIB_EXT) *.Opt 
$(BOOTSTRAP) $(BASEEXT).bso .MM_Tmp
        $(RM_RF)  perlmain.c [.blib.arch.auto.ExtUtils.MakeMaker]extralibs.all 
pm_to_blib.ts
        $(RM_RF) extralibs.ld blib Makeaperl.MMS


# --- MakeMaker realclean section:

# Delete temporary files (via clean) and also delete installed files
realclean :: clean
        $(RM_RF) $(INST_AUTODIR) $(INST_ARCHAUTODIR)
        $(RM_RF) $(DISTVNAME)
        $(RM_F)  [.blib.lib.extutils]mm_uwin.pm
        $(RM_F) [.blib.lib.extutils]mm_unix.pm [.blib.lib.extutils]mm_any.pm
        $(RM_F) [.blib.lib.extutils]mm_vms.pm [.blib.lib.extutils]packlist.pm
        $(RM_F) Descrip.MMS [.blib.lib.extutils]install.pm
        $(RM_F) [.blib.lib.extutils]installed.pm [.blib.lib.extutils]mksymlists.pm
        $(RM_F) [.blib.lib.extutils.liblist]kid.pm Descrip.MMS_old
        $(RM_F) [.blib.lib.extutils]mm_beos.pm [.blib.lib.extutils]testlib.pm
        $(RM_F) [.blib.lib.extutils]mm_win95.pm [.blib.lib.extutils]mm_dos.pm
        $(RM_F) [.blib.lib.extutils]my.pm [.blib.lib.extutils]mkbootstrap.pm
        $(RM_F) [.blib.lib.extutils]mm_win32.pm [.blib.lib.extutils]mm.pm
        $(RM_F) [.blib.lib.extutils.command]mm.pm [.blib.lib.extutils]mm_os2.pm
        $(RM_F) [.blib.lib.extutils]mm_nw5.pm [.blib.lib.extutils]mm_cygwin.pm
        $(RM_F) [.blib.lib.extutils.makemaker]faq.pod [.blib.lib.extutils]manifest.skip
        $(RM_F) [.blib.lib.extutils]manifest.pm [.blib.lib.extutils]mm_macos.pm
        $(RM_F) [.blib.lib.extutils]command.pm [.blib.lib.extutils]makemaker.pm
        $(RM_F) [.blib.lib.extutils]liblist.pm


# --- MakeMaker dist_basics section:
distclean :: realclean distcheck
        $(NOECHO) $(NOOP)

distcheck :
        $(PERLRUN) "-MExtUtils::Manifest=fullcheck" -e fullcheck

skipcheck :
        $(PERLRUN) "-MExtUtils::Manifest=skipcheck" -e skipcheck

manifest :
        $(PERLRUN) "-MExtUtils::Manifest=mkmanifest" -e mkmanifest

veryclean : realclean
        $(RM_F) *~ *.orig */*~ */*.orig



# --- MakeMaker dist_core section:

dist : $(DIST_DEFAULT)
        $(NOECHO) $(PERLRUN) "-l" -e "print 'Warning : Makefile possibly out of date 
with $(VERSION_FROM)'-
  if -e '$(VERSION_FROM)' and -M '$(VERSION_FROM)' < -M '$(MAKEFILE)';"

tardist : $(DISTVNAME).tar$(SUFFIX)
        $(NOECHO) $(NOOP)

uutardist : $(DISTVNAME).tar$(SUFFIX)
        uuencode $(DISTVNAME).tar$(SUFFIX) \\
                $(DISTVNAME).tar$(SUFFIX) > \\
                $(DISTVNAME).tar$(SUFFIX)_uu

$(DISTVNAME).tar$(SUFFIX) : distdir
        $(PREOP)
        $(TO_UNIX)
        $(TAR) "$(TARFLAGS)" $(DISTVNAME).tar [.$(DISTVNAME)...]
        $(RM_RF) $(DISTVNAME)
        $(COMPRESS) $(DISTVNAME).tar
        $(POSTOP)

zipdist : $(DISTVNAME).zip
        $(NOECHO) $(NOOP)

$(DISTVNAME).zip : distdir
        $(PREOP)
        $(ZIP) "$(ZIPFLAGS)" $(MMS$TARGET) [.$(DISTVNAME)...]*.*;
        $(RM_RF) $(DISTVNAME)
        $(POSTOP)

shdist : distdir
        $(PREOP)
        $(SHAR) [.$(DISTVNAME...]*.*; $(DISTVNAME).share
        $(RM_RF) $(DISTVNAME)
        $(POSTOP)


# --- MakeMaker dist_dir section:
distdir :
        $(RM_RF) $(DISTVNAME)
        $(PERLRUN) "-MExtUtils::Manifest=manicopy,maniread" \
                -e "manicopy(maniread(),'$(DISTVNAME)', '$(DIST_CP)');"



# --- MakeMaker dist_test section:

disttest : distdir
        startdir = F$Environment("Default")
        Set Default [.$(DISTVNAME)]
        $(ABSPERLRUN) Makefile.PL
        $(MMS)$(MMSQUALIFIERS)
        $(MMS)$(MMSQUALIFIERS) test
        Set Default 'startdir'


# --- MakeMaker dist_ci section:

ci :
        $(PERLRUN) "-MExtUtils::Manifest=maniread" \
          -e "@all = keys %{ maniread() };" \
          -e "print("Executing $(CI) @all\n"); system(qq{$(CI) @all});" \
          -e "print("Executing $(RCS_LABEL) ...\n"); system(qq{$(RCS_LABEL) @all});"


# --- MakeMaker install section:

install :: all pure_install doc_install
        $(NOECHO) $(NOOP)

install_perl :: all pure_perl_install doc_perl_install
        $(NOECHO) $(NOOP)

install_site :: all pure_site_install doc_site_install
        $(NOECHO) $(NOOP)

pure_install :: pure_$(INSTALLDIRS)_install
        $(NOECHO) $(NOOP)

doc_install :: doc_$(INSTALLDIRS)_install
        $(NOECHO) $(SAY) "Appending installation info to 
$(INSTALLARCHLIB)perllocal.pod"

pure__install : pure_site_install
        $(NOECHO) $(SAY) "INSTALLDIRS not defined, defaulting to INSTALLDIRS=site"

doc__install : doc_site_install
        $(NOECHO) $(SAY) "INSTALLDIRS not defined, defaulting to INSTALLDIRS=site"

# This hack brought to you by DCL's 255-character command line limit
pure_perl_install ::
        $(NOECHO) $(PERLRUN) "-MFile::Spec" -e "print 'read 
'.File::Spec->catfile('$(PERL_ARCHLIB)','auto','$(FULLEXT)','.packlist').' '" >.MM_tmp
        $(NOECHO) $(PERLRUN) "-MFile::Spec" -e "print 'write 
'.File::Spec->catfile('$(INSTALLARCHLIB)','auto','$(FULLEXT)','.packlist').' '" 
>>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_LIB) $(INSTALLPRIVLIB) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_ARCHLIB) $(INSTALLARCHLIB) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_BIN) $(INSTALLBIN) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_SCRIPT) $(INSTALLSCRIPT) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN1DIR) $(INSTALLMAN1DIR) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN3DIR) $(INSTALLMAN3DIR) '" >>.MM_tmp
        $(MOD_INSTALL) <.MM_tmp
        $(NOECHO) Delete/NoLog/NoConfirm .MM_tmp;
        $(NOECHO) $(WARN_IF_OLD_PACKLIST) 
perl_root:[lib.site_perl.VMS_AXP.auto.ExtUtils.MakeMaker].packlist

# Likewise
pure_site_install ::
        $(NOECHO) $(PERLRUN) "-MFile::Spec" -e "print 'read 
'.File::Spec->catfile('$(SITEARCHEXP)','auto','$(FULLEXT)','.packlist').' '" >.MM_tmp
        $(NOECHO) $(PERLRUN) "-MFile::Spec" -e "print 'write 
'.File::Spec->catfile('$(INSTALLSITEARCH)','auto','$(FULLEXT)','.packlist').' '" 
>>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_LIB) $(INSTALLSITELIB) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_ARCHLIB) $(INSTALLSITEARCH) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_BIN) $(INSTALLSITEBIN) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_SCRIPT) $(INSTALLSCRIPT) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN1DIR) $(INSTALLSITEMAN1DIR) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN3DIR) $(INSTALLSITEMAN3DIR) '" >>.MM_tmp
        $(MOD_INSTALL) <.MM_tmp
        $(NOECHO) Delete/NoLog/NoConfirm .MM_tmp;
        $(NOECHO) $(WARN_IF_OLD_PACKLIST) 
perl_root:[lib.VMS_AXP.5_8_0.auto.ExtUtils.MakeMaker].packlist

pure_vendor_install ::
        $(NOECHO) $(PERL) -e "print '$(INST_LIB) $(INSTALLVENDORLIB) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_ARCHLIB) $(INSTALLVENDORARCH) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_BIN) $(INSTALLVENDORBIN) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_SCRIPT) $(INSTALLSCRIPT) '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN1DIR) $(INSTALLVENDORMAN1DIR) '" 
>>.MM_tmp
        $(NOECHO) $(PERL) -e "print '$(INST_MAN3DIR) $(INSTALLVENDORMAN3DIR) '" 
>>.MM_tmp
        $(MOD_INSTALL) <.MM_tmp
        $(NOECHO) Delete/NoLog/NoConfirm .MM_tmp;

# Ditto
doc_perl_install ::
        $(NOECHO) $(PERL) -e "print 'Module $(NAME)|installed 
into|$(INSTALLPRIVLIB)|'" >.MM_tmp
        $(NOECHO) $(PERL) -e "print 
'LINKTYPE|$(LINKTYPE)|VERSION|$(VERSION)|EXE_FILES|$(EXE_FILES)|'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print 'bin/instmodsh '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print q[@ARGV=split(/\|/,<STDIN>);]" >.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[print '=head2 ',scalar(localtime),' : 
C<',shift,qq[>\n\n=over 4\n\n];]" >>.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[while(($key=shift) && ($val=shift)) ]" >>.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[{print qq[=item *\n\nC<$key : $val>\n\n];}print 
qq[=back\n\n];]" >>.MM2_tmp
        $(NOECHO) $(PERL) .MM2_tmp <.MM_tmp 
>>perl_root:[lib.VMS_AXP.5_8_0]perllocal.pod
        $(NOECHO) Delete/NoLog/NoConfirm .MM_tmp;,.MM2_tmp;

# And again
doc_site_install ::
        $(NOECHO) $(PERL) -e "print 'Module $(NAME)|installed 
into|$(INSTALLSITELIB)|'" >.MM_tmp
        $(NOECHO) $(PERL) -e "print 
'LINKTYPE|$(LINKTYPE)|VERSION|$(VERSION)|EXE_FILES|$(EXE_FILES)|'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print 'bin/instmodsh '" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print q[@ARGV=split(/\|/,<STDIN>);]" >.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[print '=head2 ',scalar(localtime),' : 
C<',shift,qq[>\n\n=over 4\n\n];]" >>.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[while(($key=shift) && ($val=shift)) ]" >>.MM2_tmp
        $(NOECHO) $(PERL) -e "print q[{print qq[=item *\n\nC<$key : $val>\n\n];}print 
qq[=back\n\n];]" >>.MM2_tmp
        $(NOECHO) $(PERL) .MM2_tmp <.MM_tmp 
>>perl_root:[lib.VMS_AXP.5_8_0]perllocal.pod
        $(NOECHO) Delete/NoLog/NoConfirm .MM_tmp;,.MM2_tmp;

doc_vendor_install ::


uninstall :: uninstall_from_$(INSTALLDIRS)dirs
        $(NOECHO) $(NOOP)

uninstall_from_perldirs ::
        $(NOECHO) $(UNINSTALL) 
perl_root:[lib.VMS_AXP.5_8_0.auto.ExtUtils.MakeMaker].packlist
        $(NOECHO) $(SAY) "Uninstall is now deprecated and makes no actual changes."
        $(NOECHO) $(SAY) "Please check the list above carefully for errors, and 
manually remove"
        $(NOECHO) $(SAY) "the appropriate files.  Sorry for the inconvenience."

uninstall_from_sitedirs ::
        $(NOECHO) $(UNINSTALL) 
perl_root:[lib.site_perl.VMS_AXP.auto.ExtUtils.MakeMaker].packlist

        $(NOECHO) $(SAY) "Uninstall is now deprecated and makes no actual changes."
        $(NOECHO) $(SAY) "Please check the list above carefully for errors, and 
manually remove"
        $(NOECHO) $(SAY) "the appropriate files.  Sorry for the inconvenience."


# --- MakeMaker force section:
# Phony target to force checking subdirectories.
FORCE :
        $(NOECHO) $(NOOP)


# --- MakeMaker perldepend section:


# --- MakeMaker makefile section:

# We take a very conservative approach here, but it\'s worth it.
# We move $(MAKEFILE) to $(MAKEFILE)_old here to avoid gnu make looping.
$(MAKEFILE) : Makefile.PL $(CONFIGDEP)
        $(NOECHO) $(SAY) "$(MAKEFILE) out-of-date with respect to $(MMS$SOURCE_LIST)"
        $(NOECHO) $(SAY) "Cleaning current config before rebuilding $(MAKEFILE) ..."
        - $(MV) $(MAKEFILE) $(MAKEFILE)_old
        - $(MMS)$(MMSQUALIFIERS) $(USEMAKEFILE)$(MAKEFILE_OLD) clean
        $(PERLRUN) Makefile.PL 
        $(NOECHO) $(SAY) "$(MAKEFILE) has been rebuilt."
        $(NOECHO) $(SAY) "Please run $(MMS) to build the extension."


# --- MakeMaker staticmake section:

# --- MakeMaker makeaperl section ---
MAP_TARGET    = perl

$(MAKE_APERL_FILE) : $(FIRST_MAKEFILE)
        $(NOECHO) $(SAY) "Writing ""$(MMS$TARGET)"" for this $(MAP_TARGET)"
        $(NOECHO) $(PERLRUNINST) \
                Makefile.PL DIR= \
                MAKEFILE=$(MAKE_APERL_FILE) LINKTYPE=static \
                MAKEAPERL=1 NORECURS=1 

$(MAP_TARGET) :: $(MAKE_APERL_FILE)
        $(MMS)$(MMSQUALIFIERS)$(USEMAKEFILE)$(MAKE_APERL_FILE) static $(MMS$TARGET)



# --- MakeMaker test section:

TEST_VERBOSE = 0
TEST_TYPE = test_$(LINKTYPE)
TEST_FILE = test.pl
TESTDB_SW = -d

test :: $(TEST_TYPE)
        $(NOECHO) $(NOOP)

testdb :: testdb_$(LINKTYPE)
        $(NOECHO) $(NOOP)


test_dynamic :: pure_all
        $(FULLPERLRUN) "-MExtUtils::Command::MM" "-e" "test_harness($(TEST_VERBOSE), 
'$(INST_LIB)', '$(INST_ARCHLIB)')" t/*.t

testdb_dynamic :: pure_all
        $(FULLPERLRUN) "$(TESTDB_SW)" "-I$(INST_LIB)" "-I$(INST_ARCHLIB)" $(TEST_FILE)

test_ : test_dynamic

test_static :: test_dynamic
        $(NOECHO) $(NOOP)

testdb_static :: testdb_dynamic
        $(NOECHO) $(NOOP)


# --- MakeMaker ppd section:
# Creates a PPD (Perl Package Description) for a binary distribution.
ppd :
        $(NOECHO) $(PERLRUN)  -e "print qq{<SOFTPKG NAME=""$(DISTNAME)"" 
VERSION=""6,05,0,0"">\n\t<TITLE>$(DISTNAME)</TITLE>\n\t<ABSTRACT></ABSTRACT>\n\t<AUTHOR></AUTHOR>}.""\n"""
 >  $(DISTNAME).ppd
        $(NOECHO) $(PERLRUN)  -e "print qq{\t<IMPLEMENTATION>\n\t\t<DEPENDENCY 
NAME=""DirHandle"" VERSION=""0,0,0,0"" />\n\t\t<DEPENDENCY NAME=""File-Basename"" 
VERSION=""0,0,0,0"" />\n\t\t<DEPENDENCY NAME=""File-Spec"" VERSION=""0,8,0,0"" 
/>\n\t\t<DEPENDENCY NAME=""Test-Harness"" VERSION=""2,0,0,0"" />\n}" >> $(DISTNAME).ppd
        $(NOECHO) $(PERLRUN)  -e "print qq{\t\t<OS NAME=""$(OSNAME)"" 
/>\n\t\t<ARCHITECTURE NAME=""VMS_AXP-ithread"" />\n\t\t<CODEBASE HREF="""" 
/>\n\t</IMPLEMENTATION>\n</SOFTPKG>\n}" >> $(DISTNAME).ppd


# --- MakeMaker pm_to_blib section:

# Dummy target to match Unix target name; we use pm_to_blib.ts as
# timestamp file to avoid repeated invocations under VMS
pm_to_blib : pm_to_blib.ts
        $(NOECHO) $(NOOP)

# As always, keep under DCL's 255-char limit
pm_to_blib.ts : $(TO_INST_PM)
        $(NOECHO) $(RM_F) .MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_vms.pm 
[.blib.lib.extutils]mm_vms.pm [.lib.extutils]command.pm [.blib.lib.extutils]command.pm 
[.lib.extutils]mm_cygwin.pm [.blib.lib.extutils]mm_cygwin.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_nw5.pm 
[.blib.lib.extutils]mm_nw5.pm [.lib.extutils]mm_dos.pm [.blib.lib.extutils]mm_dos.pm 
[.lib.extutils]install.pm [.blib.lib.extutils]install.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]manifest.skip 
[.blib.lib.extutils]manifest.skip [.lib.extutils]packlist.pm 
[.blib.lib.extutils]packlist.pm [.lib.extutils.liblist]kid.pm 
[.blib.lib.extutils.liblist]kid.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils.command]mm.pm 
[.blib.lib.extutils.command]mm.pm [.lib.extutils]mm_win32.pm 
[.blib.lib.extutils]mm_win32.pm [.lib.extutils]mksymlists.pm 
[.blib.lib.extutils]mksymlists.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]manifest.pm 
[.blib.lib.extutils]manifest.pm [.lib.extutils]mm_win95.pm 
[.blib.lib.extutils]mm_win95.pm [.lib.extutils]mm_beos.pm 
[.blib.lib.extutils]mm_beos.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_uwin.pm 
[.blib.lib.extutils]mm_uwin.pm [.lib.extutils]mm_macos.pm 
[.blib.lib.extutils]mm_macos.pm [.lib.extutils.makemaker]faq.pod 
[.blib.lib.extutils.makemaker]faq.pod'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_any.pm 
[.blib.lib.extutils]mm_any.pm [.lib.extutils]makemaker.pm 
[.blib.lib.extutils]makemaker.pm [.lib.extutils]mkbootstrap.pm 
[.blib.lib.extutils]mkbootstrap.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm.pm [.blib.lib.extutils]mm.pm 
[.lib.extutils]testlib.pm [.blib.lib.extutils]testlib.pm [.lib.extutils]my.pm 
[.blib.lib.extutils]my.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_unix.pm 
[.blib.lib.extutils]mm_unix.pm [.lib.extutils]liblist.pm 
[.blib.lib.extutils]liblist.pm [.lib.extutils]installed.pm 
[.blib.lib.extutils]installed.pm'" >>.MM_tmp
        $(NOECHO) $(PERL) -e "print ' [.lib.extutils]mm_os2.pm 
[.blib.lib.extutils]mm_os2.pm'" >>.MM_tmp
        $(PERLRUN) "-MExtUtils::Install" -e "pm_to_blib({split(' 
',<STDIN>)},'[.blib.lib.auto]','$(PM_FILTER)')" <.MM_tmp
        $(NOECHO) $(RM_F) .MM_tmp
        $(NOECHO) $(TOUCH) pm_to_blib.ts


# --- MakeMaker selfdocument section:


# --- MakeMaker postamble section:


# End.


----- End forwarded message -----

-- 

Michael G. Schwern   <[EMAIL PROTECTED]>    http://www.pobox.com/~schwern/
Perl Quality Assurance      <[EMAIL PROTECTED]>         Kwalitee Is Job One
Jesus hates me.
        http://www.unamerican.com/

Reply via email to