Leser: 16
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.
C:\Dokumente und Einstellungen\root>cd C:\zwischen\CGI-Application-Plugin-HTComp
iled-1.03
path\CGI-Application-Plugin-HTCompiled-1.03>perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for CGI::Application::Plugin::HTCompiled
path\CGI-Application-Plugin-HTCompiled-1.03>nmake
Microsoft (R) Program Maintenance Utility Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.
cp lib/CGI/Application/Plugin/HTCompiled.pm blib\lib\CGI\Application\Plugin\HTCo
mpiled.pm
path\CGI-Application-Plugin-HTCompiled-1.03>nmake test
Microsoft (R) Program Maintenance Utility Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.
C:\Perl\bin\perl.exe "-MExtUtils::Command::MM" "-e" "test_harness(0, 'bl
ib\lib', 'blib\arch')" t/*.t
t/00-load................ok
t/01-load_tmpl...........ok
t/02-extend_load_tmpl....ok
t/pod-coverage...........ok
t/pod....................ok
All tests successful.
Files=5, Tests=13, 0 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
path\CGI-Application-Plugin-HTCompiled-1.03>nmake install
Microsoft (R) Program Maintenance Utility Version 1.50
Copyright (c) Microsoft Corp 1988-94. All rights reserved.
Can't coerce array into hash at C:/Perl/lib/ExtUtils/Install.pm line 556.
NMAKE : fatal error U1077: 'C:\WINDOWS\system32\cmd.exe' : return code '0x2'
Stop.
path\CGI-Application-Plugin-HTCompiled-1.03>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
path\CGI-Application-Plugin-HTCompiled-1.03>perl Build.PL
Checking whether your kit is complete...
Looks good
Checking prerequisites...
Looks good
Creating new 'Build' script for 'CGI-Application-Plugin-HTCompiled' version '1.0
3'
path\CGI-Application-Plugin-HTCompiled-1.03>./Build
Der Befehl "." ist entweder falsch geschrieben oder
konnte nicht gefunden werden.
path\CGI-Application-Plugin-HTCompiled-1.03>Build
Manifying blib\lib/CGI/Application/Plugin/HTCompiled.pm -> blib\libdoc\CGI.Appli
cation.Plugin.HTCompiled.3
HTMLifying blib\lib\CGI\Application\Plugin\HTCompiled.pm -> blib\libhtml\site\li
b\CGI\Application\Plugin\HTCompiled.html
path\CGI-Application-Plugin-HTCompiled-1.03>Build test
t\00-load................ok
t\01-load_tmpl...........ok
t\02-extend_load_tmpl....ok
t\pod-coverage...........ok
t\pod....................ok
All tests successful.
Files=5, Tests=13, 1 wallclock secs ( 0.00 cusr + 0.00 csys = 0.00 CPU)
path\CGI-Application-Plugin-HTCompiled-1.03>Build install
Installing C:\Perl\site\lib\CGI\Application\Plugin\HTCompiled.pm
Installing C:\Perl\man\man3\CGI.Application.Plugin.HTCompiled.3
Installing C:\Perl\html\site\lib\CGI\Application\Plugin\HTCompiled.html
Writing C:\Perl\site\lib\auto\CGI\Application\Plugin\HTCompiled\.packlist
path\CGI-Application-Plugin-HTCompiled-1.03>Build dist
2009-10-14T19:59:41 reneeWie sieht denn Deine Build.PL aus?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'CGI::Application::Plugin::HTCompiled',
license => 'perl',
dist_author => 'Mark Stosberg<mark@summersault.com>',
dist_version_from => 'lib/CGI/Application/Plugin/HTCompiled.pm',
requires => {
'Test::More' => 0,
'Test::Exception' => 0,
'CGI::Application' => '>= 4.31',
'HTML::Template::Compiled' => 0,
'UNIVERSAL' => 0,
},
create_makefile_pl => 'traditional',
create_readme => 1,
add_to_cleanup => [ 'CGI-Application-Plugin-HTCompiled-*' ],
);
$builder->create_build_script();
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Note: this file was auto-generated by Module::Build::Compat version 0.340201
use ExtUtils::MakeMaker;
WriteMakefile
(
'PL_FILES' => {},
'INSTALLDIRS' => 'site',
'NAME' => 'CGI::Application::Plugin::HTCompiled',
'EXE_FILES' => [],
'VERSION_FROM' => 'lib/CGI/Application/Plugin/HTCompiled.pm',
'PREREQ_PM' => {
'Test::More' => 0,
'HTML::Template::Compiled' => 0,
'CGI::Application' => '>= 4.31',
'UNIVERSAL' => 0,
'Test::Exception' => 0
}
)
;
2009-10-15T13:05:34 pktmWie das mit dem aufnehmen ist, weiß ich nicht. Sowie ich das mitbekommen habe, hat halt tatsächlich jemand TestApp2 reserbiert. Aber das muss man doch richtig per pause machen. Nur das vorhandensein in der App reicht nicht.
QuoteZum Thema in den Namensraum stecken: Führt das nicht zu Problemen, wenn man ein Modul CGI::Application::TestApp definiert, dass dan von CGI::Application erbt? Mal testen...