nmake--installing modules

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bagsmode

    nmake--installing modules

    Hi,

    I'm trying to figure out how to load modules that I don't already have.
    I tried loading module Test, and I kept getting an error with the
    nmake.exe that was being used (running on Win98 here). I found a
    different version in my MS VC++ directories and replaced the path it was
    using with the VC++ one. Now, I don't get the errors, however, it gets
    to the point of writing the .packlist and just hangs, goes no further.

    Any help would be greatly appreciated.

    Here's what I have from the DOS window:
    =============== =============== =============== ===========

    Test-1.24/ChangeLog
    Test-1.24/Makefile.PL
    Test-1.24/MANIFEST.SKIP
    Test-1.24/README

    CPAN.pm: Going to build S/SB/SBURKE/Test-1.24.tar.gz

    Checking if your kit is complete...
    Looks good
    Writing Makefile for Test

    Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

    cp lib/Test.pm blib\lib\Test.p m
    C:\COBOL\BINR\n make.exe -- OK
    Running make test

    Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

    C:\Perl\bin\per l.exe -Mblib -Ic:\perl\lib -Ic:\perl\lib -e "use
    Test::Ha
    rness qw(&runtests $verbose); $verbose=0; runtests @ARGV;" t\fail.t
    t\mix.t t\on
    fail.t t\qr.t t\skip.t t\success.t t\todo.t
    Using C:/.cpan/build/Test-1.24/blib
    t\fail......... .....ok
    t\mix.......... .....ok
    t\onfail....... .....ok
    t\qr........... .....ok
    t\skip......... .....ok
    t\success...... .....ok, 1/11 skipped: just testing skip()
    t\todo......... .....ok
    All tests successful, 1 subtest skipped.
    Files=7, Tests=40, 2 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
    C:\COBOL\BINR\n make.exe test -- OK
    Running make install

    Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    Copyright (C) Microsoft Corp 1988-1998. All rights reserved.

    Installing C:\perl\lib\Tes t.pm
    Writing c:\perl\lib\aut o\Test\.packlis t

    =============== =============== =============== ===========

    Thanks,
    Glenn

    --
    PLEASE NOTE: comp.infosystem s.www.authoring.cgi is a
    SELF-MODERATED newsgroup. aa.net and boutell.com are
    NOT the originators of the articles and are NOT responsible
    for their content.

    HOW TO POST to comp.infosystem s.www.authoring.cgi:


  • bagsmode

    #2
    Re: nmake--installing modules

    bagsmode wrote:[color=blue]
    > Hi,
    >
    > I'm trying to figure out how to load modules that I don't already have.
    > I tried loading module Test, and I kept getting an error with the
    > nmake.exe that was being used (running on Win98 here). I found a
    > different version in my MS VC++ directories and replaced the path it was
    > using with the VC++ one. Now, I don't get the errors, however, it gets
    > to the point of writing the .packlist and just hangs, goes no further.
    >
    > Any help would be greatly appreciated.
    >
    > Here's what I have from the DOS window:
    > =============== =============== =============== ===========
    >
    > Test-1.24/ChangeLog
    > Test-1.24/Makefile.PL
    > Test-1.24/MANIFEST.SKIP
    > Test-1.24/README
    >
    > CPAN.pm: Going to build S/SB/SBURKE/Test-1.24.tar.gz
    >
    > Checking if your kit is complete...
    > Looks good
    > Writing Makefile for Test
    >
    > Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    > Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
    >
    > cp lib/Test.pm blib\lib\Test.p m
    > C:\COBOL\BINR\n make.exe -- OK
    > Running make test
    >
    > Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    > Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
    >
    > C:\Perl\bin\per l.exe -Mblib -Ic:\perl\lib -Ic:\perl\lib -e "use
    > Test::Ha
    > rness qw(&runtests $verbose); $verbose=0; runtests @ARGV;" t\fail.t
    > t\mix.t t\on
    > fail.t t\qr.t t\skip.t t\success.t t\todo.t
    > Using C:/.cpan/build/Test-1.24/blib
    > t\fail......... .....ok
    > t\mix.......... .....ok
    > t\onfail....... .....ok
    > t\qr........... .....ok
    > t\skip......... .....ok
    > t\success...... .....ok, 1/11 skipped: just testing skip()
    > t\todo......... .....ok
    > All tests successful, 1 subtest skipped.
    > Files=7, Tests=40, 2 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
    > C:\COBOL\BINR\n make.exe test -- OK
    > Running make install
    >
    > Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
    > Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
    >
    > Installing C:\perl\lib\Tes t.pm
    > Writing c:\perl\lib\aut o\Test\.packlis t
    >
    > =============== =============== =============== ===========
    >
    > Thanks,
    > Glenn
    >[/color]

    BTW: the above was generated by the command:

    perl -MCPAN -e "install Test"

    ~Glenn

    --
    PLEASE NOTE: comp.infosystem s.www.authoring.cgi is a
    SELF-MODERATED newsgroup. aa.net and boutell.com are
    NOT the originators of the articles and are NOT responsible
    for their content.

    HOW TO POST to comp.infosystem s.www.authoring.cgi:


    Comment

    • bagsmode

      #3
      Re: nmake--installing modules

      BTW, thanks to Martin Thurn for helping me out with this.
      Instead of putting the install w/in the -e option, he suggested:

      perl -MCPAN -e shell
      CPAN> install <module>

      This worked just fine.

      Thanks again :)

      bagsmode wrote:[color=blue]
      > bagsmode wrote:
      >[color=green]
      >> Hi,
      >>
      >> I'm trying to figure out how to load modules that I don't already
      >> have. I tried loading module Test, and I kept getting an error with
      >> the nmake.exe that was being used (running on Win98 here). I found a
      >> different version in my MS VC++ directories and replaced the path it
      >> was using with the VC++ one. Now, I don't get the errors, however, it
      >> gets to the point of writing the .packlist and just hangs, goes no
      >> further.
      >>
      >> Any help would be greatly appreciated.
      >>
      >> Here's what I have from the DOS window:
      >> =============== =============== =============== ===========
      >>
      >> Test-1.24/ChangeLog
      >> Test-1.24/Makefile.PL
      >> Test-1.24/MANIFEST.SKIP
      >> Test-1.24/README
      >>
      >> CPAN.pm: Going to build S/SB/SBURKE/Test-1.24.tar.gz
      >>
      >> Checking if your kit is complete...
      >> Looks good
      >> Writing Makefile for Test
      >>
      >> Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
      >> Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
      >>
      >> cp lib/Test.pm blib\lib\Test.p m
      >> C:\COBOL\BINR\n make.exe -- OK
      >> Running make test
      >>
      >> Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
      >> Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
      >>
      >> C:\Perl\bin\per l.exe -Mblib -Ic:\perl\lib -Ic:\perl\lib -e
      >> "use Test::Ha
      >> rness qw(&runtests $verbose); $verbose=0; runtests @ARGV;" t\fail.t
      >> t\mix.t t\on
      >> fail.t t\qr.t t\skip.t t\success.t t\todo.t
      >> Using C:/.cpan/build/Test-1.24/blib
      >> t\fail......... .....ok
      >> t\mix.......... .....ok
      >> t\onfail....... .....ok
      >> t\qr........... .....ok
      >> t\skip......... .....ok
      >> t\success...... .....ok, 1/11 skipped: just testing skip()
      >> t\todo......... .....ok
      >> All tests successful, 1 subtest skipped.
      >> Files=7, Tests=40, 2 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00
      >> CPU)
      >> C:\COBOL\BINR\n make.exe test -- OK
      >> Running make install
      >>
      >> Microsoft (R) Program Maintenance Utility Version 6.00.8168.0
      >> Copyright (C) Microsoft Corp 1988-1998. All rights reserved.
      >>
      >> Installing C:\perl\lib\Tes t.pm
      >> Writing c:\perl\lib\aut o\Test\.packlis t
      >>
      >> =============== =============== =============== ===========
      >>
      >> Thanks,
      >> Glenn
      >>[/color]
      >
      > BTW: the above was generated by the command:
      >
      > perl -MCPAN -e "install Test"
      >
      > ~Glenn
      >[/color]

      --
      PLEASE NOTE: comp.infosystem s.www.authoring.cgi is a
      SELF-MODERATED newsgroup. aa.net and boutell.com are
      NOT the originators of the articles and are NOT responsible
      for their content.

      HOW TO POST to comp.infosystem s.www.authoring.cgi:


      Comment

      Working...