473,486 Members | 1,958 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

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.pm
C:\COBOL\BINR\nmake.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\perl.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\nmake.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\Test.pm
Writing c:\perl\lib\auto\Test\.packlist

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

Thanks,
Glenn

--
PLEASE NOTE: comp.infosystems.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.infosystems.www.authoring.cgi:
http://www.thinkspot.net/ciwac/howtopost.html

Jul 19 '05 #1
2 3639
bagsmode wrote:
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.pm
C:\COBOL\BINR\nmake.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\perl.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\nmake.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\Test.pm
Writing c:\perl\lib\auto\Test\.packlist

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

Thanks,
Glenn


BTW: the above was generated by the command:

perl -MCPAN -e "install Test"

~Glenn

--
PLEASE NOTE: comp.infosystems.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.infosystems.www.authoring.cgi:
http://www.thinkspot.net/ciwac/howtopost.html

Jul 19 '05 #2
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:
bagsmode wrote:
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.pm
C:\COBOL\BINR\nmake.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\perl.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\nmake.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\Test.pm
Writing c:\perl\lib\auto\Test\.packlist

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

Thanks,
Glenn


BTW: the above was generated by the command:

perl -MCPAN -e "install Test"

~Glenn


--
PLEASE NOTE: comp.infosystems.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.infosystems.www.authoring.cgi:
http://www.thinkspot.net/ciwac/howtopost.html

Jul 19 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
3812
by: Dave | last post by:
Hi Everyone, I am trying to import a package and then loop through the modules inside the package, but I'm running to a problem. Basically: ----- I have a package called...
0
1935
by: Nick Coghlan | last post by:
Anyone playing with the CPython interpreter's new command line switch might have noticed that it only works with top-level modules (i.e. scripts that are directly on sys.path). If the script is...
15
2558
by: Nick Coghlan | last post by:
Python 2.4's -m command line switch only works for modules directly on sys.path. Trying to use it with modules inside packages will fail with a "Module not found" error. This PEP aims to fix that...
7
2052
by: Jorgen Grahn | last post by:
I have a set of tests in different modules: test_foo.py, test_bar.py and so on. All of these use the simplest possible internal layout: a number of classes containing test*() methods, and the good...
4
1733
by: Misto . | last post by:
Hi folks! Short: There is a way to dumplicate a module ? I tried copy.deepcopy(module) but hangs with an error (also with standard modules ).. The only solution that I have by now is...
2
2026
by: James Buchanan | last post by:
Hi group, I'm preparing Python 2.4.2 for the upcoming Minix 3.x release, and I have problems with make. configure runs fine and creates the makefile, but right at the end ends with an error...
7
4276
by: Lauren Quantrell | last post by:
At running the risk of asking how big is too big... Is there a rule of thumb or a best practice that says I may have too many modules? I currently have a Access2K app with about 30 code modules,...
13
2320
by: Robin Haswell | last post by:
Hey people I'm an experience PHP programmer who's been writing python for a couple of weeks now. I'm writing quite a large application which I've decided to break down in to lots of modules...
173
5553
by: Zytan | last post by:
I've read the docs on this, but one thing was left unclear. It seems as though a Module does not have to be fully qualified. Is this the case? I have source that apparently shows this. Are...
3
1809
by: Mohamed Yousef | last post by:
Hello , The problem I'm asking about is how can imported modules be aware of other imported modules so they don't have to re-import them (avoiding importing problems and Consicing code and...
0
7099
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7123
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
6842
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7319
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5430
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
4864
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
1378
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
262
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.