For Programmers: Free Programming Magazines  


Home > Archive > PERL Modules > May 2004 > PAR executables not honoring perl5opt









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author PAR executables not honoring perl5opt
Eric Bohlman

2004-05-24, 5:32 pm

I just installed PAR 0.81 on my ActivePerl 5.6.1 for Win32 (build 629).
When I use pp to create an executable, everything works fine if I don't
have perl5opt set to include any modules (I normally have it set to -MWild
in order to include automatic wildcard expansion; Wild.pm is located in
\perl\lib and works correctly for ordinary Perl code). However, if I do
have it set, the pp-generated executable always complains that it can't
locate Wild.pm, even if I gave a -M Wild.pm option to pp. Wild.pm is,
however, in the /lib directory of the executable archive (as well as a
*lot* of modules that shouldn't be there).

I'm *guessing* that the executable is looking for Wild.pm before it's had a
chance to unpack the archive and therefore can't find it. Is there any way
around this?

The code I'm compiling is:

#!perl -w
use strict;
use DBI;
my $dbh = DBI->connect("dbi:SQLite:dbname=/util/ex1","","");
print $dbh->{sqlite_version},"\n";
my $sth=$dbh->prepare("select * from tbl1;");
$sth->execute();
while (my $res=$sth->fetchrow_hashref) {
foreach my $key (keys %$res) {
print "$key: $res->{$key} | ";
}
print "\n";
}
$dbh->disconnect();

The executable runs correctly if perl5opt isn't set. The directory of the
executable is (*long*! Note that all of DBD is included, as well as LWP
and other code that I'm not using):

C:\perlprogs>unzip -l sqlt.exe
Archive: sqlt.exe
Length Date Time Name
-------- ---- ---- ----
27304 05-24-04 15:06 lib/AnyData.pm
4373 05-24-04 15:06 lib/AnyData/Storage/TiedHash.pm
4715 05-24-04 15:06 lib/AutoLoader.pm
13113 05-24-04 15:06 lib/Benchmark.pm
2827 05-24-04 15:06 lib/Carp.pm
8527 05-24-04 15:06 lib/Carp/Heavy.pm
6809 05-24-04 15:06 lib/Class/Struct.pm
10066 05-24-04 15:06 lib/Compress/Zlib.pm
24798 05-24-04 15:06 lib/Config.pm
9972 05-24-04 15:06 lib/Cwd.pm
19216 05-24-04 15:06 lib/DBD/AnyData.pm
6713 05-24-04 15:06 lib/DBD/CSV.pm
20643 05-24-04 15:06 lib/DBD/DBM.pm
11052 05-24-04 15:06 lib/DBD/ExampleP.pm
15010 05-24-04 15:06 lib/DBD/File.pm
2917 05-24-04 15:06 lib/DBD/NullP.pm
7167 05-24-04 15:06 lib/DBD/ODBC.pm
37714 05-24-04 15:06 lib/DBD/RAM.pm
7245 05-24-04 15:06 lib/DBD/SQLite.pm
5734 05-24-04 15:06 lib/DBD/Sponge.pm
19563 05-24-04 15:06 lib/DBD/Sprite.pm
18341 05-24-04 15:06 lib/DBD/XBase.pm
6371 05-24-04 15:06 lib/DBD/mysql.pm
57195 05-24-04 15:06 lib/DBI.pm
24189 05-24-04 15:06 lib/DBI/PurePerl.pm
18679 05-24-04 15:06 lib/DBI/SQL/Nano.pm
15551 05-24-04 15:06 lib/Data/Dumper.pm
13883 05-24-04 15:06 lib/DynaLoader.pm
2840 05-24-04 15:06 lib/Errno.pm
2279 05-24-04 15:06 lib/Exporter.pm
5767 05-24-04 15:06 lib/Exporter/Heavy.pm
3535 05-24-04 15:06 lib/Fcntl.pm
5097 05-24-04 15:06 lib/File/Basename.pm
4158 05-24-04 15:06 lib/File/DosGlob.pm
4439 05-24-04 15:06 lib/File/Glob.pm
383 05-24-04 15:06 lib/File/Spec.pm
5506 05-24-04 15:06 lib/File/Spec/Unix.pm
6850 05-24-04 15:06 lib/File/Spec/Win32.pm
1297 05-24-04 15:06 lib/File/stat.pm
2248 05-24-04 15:06 lib/FileHandle.pm
9727 05-24-04 15:06 lib/HTML/Entities.pm
3345 05-24-04 15:06 lib/HTML/HeadParser.pm
2970 05-24-04 15:06 lib/HTML/Parser.pm
14962 05-24-04 15:06 lib/HTTP/Cookies.pm
2059 05-24-04 15:06 lib/HTTP/Cookies/Netscape.pm
6408 05-24-04 15:06 lib/HTTP/Date.pm
8709 05-24-04 15:06 lib/HTTP/Headers.pm
1588 05-24-04 15:06 lib/HTTP/Headers/Util.pm
6774 05-24-04 15:06 lib/HTTP/Message.pm
2177 05-24-04 15:06 lib/HTTP/Request.pm
6982 05-24-04 15:06 lib/HTTP/Request/Common.pm
5096 05-24-04 15:06 lib/HTTP/Response.pm
2997 05-24-04 15:06 lib/HTTP/Status.pm
340 05-24-04 15:06 lib/IO.pm
2595 05-24-04 15:06 lib/IO/Dir.pm
1519 05-24-04 15:06 lib/IO/File.pm
7930 05-24-04 15:06 lib/IO/Handle.pm
3514 05-24-04 15:06 lib/IO/Pipe.pm
744 05-24-04 15:06 lib/IO/Sable.pm
4313 05-24-04 15:06 lib/IO/Select.pm
6632 05-24-04 15:06 lib/IO/Socket.pm
6554 05-24-04 15:06 lib/IO/Socket/INET.pm
1468 05-24-04 15:06 lib/IO/Socket/UNIX.pm
70332 05-24-04 15:06 lib/JSprite.pm
237 05-24-04 15:06 lib/LWP.pm
3372 05-24-04 15:06 lib/LWP/ConnCache.pm
1245 05-24-04 15:06 lib/LWP/Debug.pm
4509 05-24-04 15:06 lib/LWP/MediaTypes.pm
278 05-24-04 15:06 lib/LWP/MemberMixin.pm
4768 05-24-04 15:06 lib/LWP/Protocol.pm
10629 05-24-04 15:06 lib/LWP/Protocol/http.pm
8487 05-24-04 15:06 lib/LWP/Protocol/http10.pm
1329 05-24-04 15:06 lib/LWP/Protocol/https.pm
1871 05-24-04 15:06 lib/LWP/Protocol/https10.pm
669 05-24-04 15:06 lib/LWP/Protocol/nogo.pm
21726 05-24-04 15:06 lib/LWP/UserAgent.pm
2265 05-24-04 15:06 lib/MIME/Base64.pm
5214 05-24-04 15:06 lib/MLDBM.pm
11777 05-24-04 15:06 lib/Math/BigInt.pm
3431 05-24-04 15:06 lib/Net/Config.pm
6497 05-24-04 15:06 lib/Net/Domain.pm
474 05-24-04 15:06 lib/Net/HTTP.pm
12573 05-24-04 15:06 lib/Net/HTTP/Methods.pm
1144 05-24-04 15:06 lib/Net/HTTPS.pm
19764 05-24-04 15:06 lib/POSIX.pm
2602 05-24-04 15:06 lib/SQL/Dialects/ANSI.pm
742 05-24-04 15:06 lib/SQL/Dialects/AnyData.pm
619 05-24-04 15:06 lib/SQL/Dialects/CSV.pm
1633 05-24-04 15:06 lib/SQL/Eval.pm
60036 05-24-04 15:06 lib/SQL/Parser.pm
62518 05-24-04 15:06 lib/SQL/Statement.pm
385 05-24-04 15:06 lib/SelectSaver.pm
5416 05-24-04 15:06 lib/Socket.pm
1975 05-24-04 15:06 lib/Symbol.pm
8768 05-24-04 15:06 lib/Term/Cap.pm
7482 05-24-04 15:06 lib/Text/CSV_XS.pm
3347 05-24-04 15:06 lib/Text/ParseWords.pm
425 05-24-04 15:06 lib/Thread.pm
1332 05-24-04 15:06 lib/Tie/Hash.pm
3438 05-24-04 15:06 lib/Time/Local.pm
332 05-24-04 15:06 lib/UNIVERSAL.pm
6249 05-24-04 15:06 lib/URI.pm
1573 05-24-04 15:06 lib/URI/Escape.pm
3980 05-24-04 15:06 lib/URI/URL.pm
2135 05-24-04 15:06 lib/URI/WithBase.pm
114 05-24-04 15:06 lib/URI/_foreign.pm
5856 05-24-04 15:06 lib/URI/_generic.pm
264 05-24-04 15:06 lib/URI/_login.pm
1868 05-24-04 15:06 lib/URI/_query.pm
431 05-24-04 15:06 lib/URI/_segment.pm
2384 05-24-04 15:06 lib/URI/_server.pm
1063 05-24-04 15:06 lib/URI/_userpass.pm
1793 05-24-04 15:06 lib/URI/data.pm
2272 05-24-04 15:06 lib/URI/file.pm
1236 05-24-04 15:06 lib/URI/ftp.pm
2529 05-24-04 15:06 lib/URI/gopher.pm
790 05-24-04 15:06 lib/URI/http.pm
126 05-24-04 15:06 lib/URI/https.pm
3508 05-24-04 15:06 lib/URI/ldap.pm
1358 05-24-04 15:06 lib/URI/mailto.pm
1525 05-24-04 15:06 lib/URI/news.pm
126 05-24-04 15:06 lib/URI/nntp.pm
1271 05-24-04 15:06 lib/URI/pop.pm
134 05-24-04 15:06 lib/URI/rlogin.pm
240 05-24-04 15:06 lib/URI/rsync.pm
156 05-24-04 15:06 lib/URI/snews.pm
133 05-24-04 15:06 lib/URI/telnet.pm
232 05-24-04 15:06 lib/Wild.pm
1633 05-24-04 15:06 lib/Win32.pm
23650 05-24-04 15:06 lib/XBase.pm
7329 05-24-04 15:06 lib/XBase/Base.pm
42353 05-24-04 15:06 lib/XBase/Index.pm
7140 05-24-04 15:06 lib/XBase/Memo.pm
20516 05-24-04 15:06 lib/XBase/SQL.pm
12192 05-24-04 15:06 lib/XML/Parser.pm
13048 05-24-04 15:06 lib/XML/Parser/Expat.pm
3202 05-24-04 15:06 lib/XSLoader.pm
0 05-24-04 15:06 lib/auto/Compress/Zlib/Zlib.bs
106496 04-27-04 18:06 lib/auto/Compress/Zlib/Zlib.dll
818 04-27-04 18:06 lib/auto/Compress/Zlib/Zlib.exp
144 05-24-04 15:06 lib/auto/Compress/Zlib/autosplit.ix
0 07-01-00 01:18 lib/auto/DBD/ODBC/ODBC.bs
57344 07-01-00 01:18 lib/auto/DBD/ODBC/ODBC.dll
778 07-01-00 01:18 lib/auto/DBD/ODBC/ODBC.exp
0 12-10-03 16:12 lib/auto/DBD/SQLite/SQLite.bs
299008 02-16-04 00:47 lib/auto/DBD/SQLite/SQLite.dll
804 02-16-04 00:48 lib/auto/DBD/SQLite/SQLite.exp
138 05-24-04 15:06 lib/auto/DBD/Sprite/autosplit.ix
0 05-24-04 15:06 lib/auto/DBD/mysql/mysql.bs
122880 06-05-00 18:32 lib/auto/DBD/mysql/mysql.dll
796 06-05-00 18:32 lib/auto/DBD/mysql/mysql.exp
0 08-06-03 18:11 lib/auto/DBI/DBI.bs
118784 04-28-04 15:45 lib/auto/DBI/DBI.dll
719 04-28-04 15:45 lib/auto/DBI/DBI.exp
20392 03-09-04 09:23 lib/auto/DBI/DBIXS.h
17811 02-26-04 17:24 lib/auto/DBI/Driver.xst
3314 02-15-04 16:39 lib/auto/DBI/Driver_xst.h
2943 02-15-04 17:15 lib/auto/DBI/dbd_xsh.h
3752 04-28-04 15:45 lib/auto/DBI/dbi_sql.h
14789 04-28-04 15:45 lib/auto/DBI/dbipport.h
1896 03-09-04 07:31 lib/auto/DBI/dbivport.h
0 08-20-01 12:28 lib/auto/Data/Dumper/Dumper.bs
28672 08-20-01 12:28 lib/auto/Data/Dumper/Dumper.dll
815 08-20-01 12:28 lib/auto/Data/Dumper/Dumper.exp
232 05-24-04 15:06 lib/auto/DynaLoader/autosplit.ix
1338 05-24-04 15:06 lib/auto/DynaLoader/dl_expandspec.al
569 05-24-04 15:06 lib/auto/DynaLoader/dl_find_symbol_anywhere.al
4447 05-24-04 15:06 lib/auto/DynaLoader/dl_findfile.al
0 08-20-01 12:28 lib/auto/Fcntl/Fcntl.bs
24576 08-20-01 12:28 lib/auto/Fcntl/Fcntl.dll
754 08-20-01 12:28 lib/auto/Fcntl/Fcntl.exp
0 05-24-04 15:06 lib/auto/File/Glob/Glob.bs
24576 08-20-01 12:29 lib/auto/File/Glob/Glob.dll
789 08-20-01 12:29 lib/auto/File/Glob/Glob.exp
140 05-24-04 15:06 lib/auto/File/Glob/autosplit.ix
0 08-20-01 12:31 lib/auto/HTML/Parser/Parser.bs
40960 03-20-02 00:43 lib/auto/HTML/Parser/Parser.dll
812 03-20-02 00:44 lib/auto/HTML/Parser/Parser.exp
0 08-20-01 12:28 lib/auto/IO/IO.bs
24576 08-20-01 12:28 lib/auto/IO/IO.dll
696 08-20-01 12:28 lib/auto/IO/IO.exp
0 08-20-01 12:32 lib/auto/MIME/Base64/Base64.bs
20480 08-20-01 12:32 lib/auto/MIME/Base64/Base64.dll
812 08-20-01 12:32 lib/auto/MIME/Base64/Base64.exp
0 05-24-04 15:06 lib/auto/POSIX/POSIX.bs
77824 08-20-01 12:28 lib/auto/POSIX/POSIX.dll
754 08-20-01 12:28 lib/auto/POSIX/POSIX.exp
346 05-24-04 15:06 lib/auto/POSIX/abs.al
364 05-24-04 15:06 lib/auto/POSIX/alarm.al
394 05-24-04 15:06 lib/auto/POSIX/assert.al
367 05-24-04 15:06 lib/auto/POSIX/atan2.al
361 05-24-04 15:06 lib/auto/POSIX/atexit.al
340 05-24-04 15:06 lib/auto/POSIX/atof.al
340 05-24-04 15:06 lib/auto/POSIX/atoi.al
340 05-24-04 15:06 lib/auto/POSIX/atol.al
2365 05-24-04 15:06 lib/auto/POSIX/autosplit.ix
345 05-24-04 15:06 lib/auto/POSIX/bsearch.al
350 05-24-04 15:06 lib/auto/POSIX/calloc.al
366 05-24-04 15:06 lib/auto/POSIX/chdir.al
378 05-24-04 15:06 lib/auto/POSIX/chmod.al
389 05-24-04 15:06 lib/auto/POSIX/chown.al
348 05-24-04 15:06 lib/auto/POSIX/clearerr.al
384 05-24-04 15:06 lib/auto/POSIX/closedir.al
346 05-24-04 15:06 lib/auto/POSIX/cos.al
405 05-24-04 15:06 lib/auto/POSIX/creat.al
335 05-24-04 15:06 lib/auto/POSIX/div.al
345 05-24-04 15:06 lib/auto/POSIX/errno.al
345 05-24-04 15:06 lib/auto/POSIX/execl.al
350 05-24-04 15:06 lib/auto/POSIX/execle.al
350 05-24-04 15:06 lib/auto/POSIX/execlp.al
345 05-24-04 15:06 lib/auto/POSIX/execv.al
350 05-24-04 15:06 lib/auto/POSIX/execve.al
350 05-24-04 15:06 lib/auto/POSIX/execvp.al
357 05-24-04 15:06 lib/auto/POSIX/exit.al
346 05-24-04 15:06 lib/auto/POSIX/exp.al
351 05-24-04 15:06 lib/auto/POSIX/fabs.al
337 05-24-04 15:06 lib/auto/POSIX/fclose.al
391 05-24-04 15:06 lib/auto/POSIX/fcntl.al
343 05-24-04 15:06 lib/auto/POSIX/fdopen.al
327 05-24-04 15:06 lib/auto/POSIX/feof.al
337 05-24-04 15:06 lib/auto/POSIX/ferror.al
337 05-24-04 15:06 lib/auto/POSIX/fflush.al
332 05-24-04 15:06 lib/auto/POSIX/fgetc.al
344 05-24-04 15:06 lib/auto/POSIX/fgetpos.al
332 05-24-04 15:06 lib/auto/POSIX/fgets.al
338 05-24-04 15:06 lib/auto/POSIX/fileno.al
330 05-24-04 15:06 lib/auto/POSIX/fopen.al
344 05-24-04 15:06 lib/auto/POSIX/fork.al
366 05-24-04 15:06 lib/auto/POSIX/fprintf.al
355 05-24-04 15:06 lib/auto/POSIX/fputc.al
355 05-24-04 15:06 lib/auto/POSIX/fputs.al
354 05-24-04 15:06 lib/auto/POSIX/fread.al
340 05-24-04 15:06 lib/auto/POSIX/free.al
364 05-24-04 15:06 lib/auto/POSIX/freopen.al
381 05-24-04 15:06 lib/auto/POSIX/fscanf.al
334 05-24-04 15:06 lib/auto/POSIX/fs.al
344 05-24-04 15:06 lib/auto/POSIX/fsetpos.al
456 05-24-04 15:06 lib/auto/POSIX/fstat.al
334 05-24-04 15:06 lib/auto/POSIX/ftell.al
360 05-24-04 15:06 lib/auto/POSIX/fwrite.al
357 05-24-04 15:06 lib/auto/POSIX/getc.al
366 05-24-04 15:06 lib/auto/POSIX/getchar.al
509 05-24-04 15:06 lib/auto/POSIX/getcwd.al
355 05-24-04 15:06 lib/auto/POSIX/getegid.al
359 05-24-04 15:06 lib/auto/POSIX/getenv.al
355 05-24-04 15:06 lib/auto/POSIX/geteuid.al
350 05-24-04 15:06 lib/auto/POSIX/getgid.al
378 05-24-04 15:06 lib/auto/POSIX/getgrgid.al
379 05-24-04 15:06 lib/auto/POSIX/getgrnam.al
409 05-24-04 15:06 lib/auto/POSIX/getgroups.al
370 05-24-04 15:06 lib/auto/POSIX/getlogin.al
362 05-24-04 15:06 lib/auto/POSIX/getpgrp.al
346 05-24-04 15:06 lib/auto/POSIX/getpid.al
362 05-24-04 15:06 lib/auto/POSIX/getppid.al
379 05-24-04 15:06 lib/auto/POSIX/getpwnam.al
378 05-24-04 15:06 lib/auto/POSIX/getpwuid.al
348 05-24-04 15:06 lib/auto/POSIX/gets.al
346 05-24-04 15:06 lib/auto/POSIX/getuid.al
367 05-24-04 15:06 lib/auto/POSIX/gmtime.al
362 05-24-04 15:06 lib/auto/POSIX/isatty.al
365 05-24-04 15:06 lib/auto/POSIX/kill.al
348 05-24-04 15:06 lib/auto/POSIX/labs.al
354 05-24-04 15:06 lib/auto/POSIX/ldiv.al
382 05-24-04 15:06 lib/auto/POSIX/link.al
6752 05-24-04 15:06 lib/auto/POSIX/load_imports.al
385 05-24-04 15:06 lib/auto/POSIX/localtime.al
346 05-24-04 15:06 lib/auto/POSIX/log.al
363 05-24-04 15:06 lib/auto/POSIX/longjmp.al
350 05-24-04 15:06 lib/auto/POSIX/malloc.al
362 05-24-04 15:06 lib/auto/POSIX/memchr.al
357 05-24-04 15:06 lib/auto/POSIX/memcmp.al
356 05-24-04 15:06 lib/auto/POSIX/memcpy.al
361 05-24-04 15:06 lib/auto/POSIX/memmove.al
356 05-24-04 15:06 lib/auto/POSIX/memset.al
383 05-24-04 15:06 lib/auto/POSIX/mkdir.al
360 05-24-04 15:06 lib/auto/POSIX/offsetof.al
435 05-24-04 15:06 lib/auto/POSIX/opendir.al
362 05-24-04 15:06 lib/auto/POSIX/perror.al
353 05-24-04 15:06 lib/auto/POSIX/pow.al
381 05-24-04 15:06 lib/auto/POSIX/printf.al
350 05-24-04 15:06 lib/auto/POSIX/putc.al
365 05-24-04 15:06 lib/auto/POSIX/putchar.al
350 05-24-04 15:06 lib/auto/POSIX/puts.al
354 05-24-04 15:06 lib/auto/POSIX/qsort.al
385 05-24-04 15:06 lib/auto/POSIX/raise.al
358 05-24-04 15:06 lib/auto/POSIX/rand.al
378 05-24-04 15:06 lib/auto/POSIX/readdir.al
355 05-24-04 15:06 lib/auto/POSIX/realloc.al
371 05-24-04 15:06 lib/auto/POSIX/remove.al
394 05-24-04 15:06 lib/auto/POSIX/rename.al
375 05-24-04 15:06 lib/auto/POSIX/rewind.al
390 05-24-04 15:06 lib/auto/POSIX/rewinddir.al
370 05-24-04 15:06 lib/auto/POSIX/rmdir.al
376 05-24-04 15:06 lib/auto/POSIX/scanf.al
338 05-24-04 15:06 lib/auto/POSIX/setbuf.al
357 05-24-04 15:06 lib/auto/POSIX/setgid.al
362 05-24-04 15:06 lib/auto/POSIX/setjmp.al
357 05-24-04 15:06 lib/auto/POSIX/setuid.al
343 05-24-04 15:06 lib/auto/POSIX/setvbuf.al
378 05-24-04 15:06 lib/auto/POSIX/siglongjmp.al
377 05-24-04 15:06 lib/auto/POSIX/sigsetjmp.al
346 05-24-04 15:06 lib/auto/POSIX/sin.al
364 05-24-04 15:06 lib/auto/POSIX/sleep.al
384 05-24-04 15:06 lib/auto/POSIX/sprintf.al
352 05-24-04 15:06 lib/auto/POSIX/sqrt.al
322 05-24-04 15:06 lib/auto/POSIX/srand.al
374 05-24-04 15:06 lib/auto/POSIX/sscanf.al
359 05-24-04 15:06 lib/auto/POSIX/stat.al
357 05-24-04 15:06 lib/auto/POSIX/strcat.al
362 05-24-04 15:06 lib/auto/POSIX/strchr.al
357 05-24-04 15:06 lib/auto/POSIX/strcmp.al
356 05-24-04 15:06 lib/auto/POSIX/strcpy.al
379 05-24-04 15:06 lib/auto/POSIX/strcspn.al
389 05-24-04 15:06 lib/auto/POSIX/strerror.al
361 05-24-04 15:06 lib/auto/POSIX/strlen.al
362 05-24-04 15:06 lib/auto/POSIX/strncat.al
362 05-24-04 15:06 lib/auto/POSIX/strncmp.al
361 05-24-04 15:06 lib/auto/POSIX/strncpy.al
355 05-24-04 15:06 lib/auto/POSIX/strpbrk.al
368 05-24-04 15:06 lib/auto/POSIX/strrchr.al
350 05-24-04 15:06 lib/auto/POSIX/strspn.al
380 05-24-04 15:06 lib/auto/POSIX/strstr.al
350 05-24-04 15:06 lib/auto/POSIX/strtok.al
370 05-24-04 15:06 lib/auto/POSIX/system.al
344 05-24-04 15:06 lib/auto/POSIX/time.al
345 05-24-04 15:06 lib/auto/POSIX/tmpfile.al
363 05-24-04 15:06 lib/auto/POSIX/tolower.al
363 05-24-04 15:06 lib/auto/POSIX/toupper.al
361 05-24-04 15:06 lib/auto/POSIX/umask.al
338 05-24-04 15:06 lib/auto/POSIX/ungetc.al
371 05-24-04 15:06 lib/auto/POSIX/unlink.al
393 05-24-04 15:06 lib/auto/POSIX/utime.al
351 05-24-04 15:06 lib/auto/POSIX/vfprintf.al
346 05-24-04 15:06 lib/auto/POSIX/vprintf.al
351 05-24-04 15:06 lib/auto/POSIX/vsprintf.al
346 05-24-04 15:06 lib/auto/POSIX/wait.al
388 05-24-04 15:06 lib/auto/POSIX/waitpid.al
0 07-01-00 01:14 lib/auto/SQL/Statement/Statement.bs
49152 07-01-00 01:14 lib/auto/SQL/Statement/Statement.dll
845 07-01-00 01:14 lib/auto/SQL/Statement/Statement.exp
0 08-20-01 12:28 lib/auto/Socket/Socket.bs
24576 08-20-01 12:28 lib/auto/Socket/Socket.dll
765 08-20-01 12:28 lib/auto/Socket/Socket.exp
0 02-15-01 00:12 lib/auto/Text/CSV_XS/CSV_XS.bs
24576 02-15-01 00:12 lib/auto/Text/CSV_XS/CSV_XS.dll
812 02-15-01 00:12 lib/auto/Text/CSV_XS/CSV_XS.exp
0 08-20-01 12:29 lib/auto/Thread/Thread.bs
24576 08-20-01 12:29 lib/auto/Thread/Thread.dll
765 08-20-01 12:29 lib/auto/Thread/Thread.exp
0 08-20-01 12:35 lib/auto/Win32/Win32.bs
28672 08-20-01 12:35 lib/auto/Win32/Win32.dll
754 08-20-01 12:35 lib/auto/Win32/Win32.exp
0 02-07-01 23:23 lib/auto/XML/Parser/Expat/Expat.bs
65536 02-07-01 23:23 lib/auto/XML/Parser/Expat/Expat.dll
859 02-07-01 23:23 lib/auto/XML/Parser/Expat/Expat.exp
0 08-20-01 12:29 lib/auto/re/re.bs
90112 08-20-01 12:29 lib/auto/re/re.dll
696 08-20-01 12:29 lib/auto/re/re.exp
1319 05-24-04 15:06 lib/base.pm
293 05-24-04 15:06 lib/bytes.pm
109 08-20-01 12:10 lib/bytes_heavy.pl
2999 05-24-04 15:06 lib/constant.pm
4468 05-24-04 15:06 lib/fields.pm
202 05-24-04 15:06 lib/integer.pm
4356 05-24-04 15:06 lib/overload.pm
1189 05-24-04 15:06 lib/re.pm
445 05-24-04 15:06 lib/strict.pm
1652 05-24-04 15:06 lib/vars.pm
12037 05-24-04 15:06 lib/warnings.pm
803 05-24-04 15:06 lib/warnings/register.pm
355 02-04-04 21:03 script/sqlt
250 05-24-04 15:06 script/main.pl
8866 05-24-04 15:06 MANIFEST
216 05-24-04 15:06 META.yml
-------- -------
2543820 374 files
Autrijus Tang

2004-05-25, 3:32 pm

Eric Bohlman <ebohlman@earthlink.net> wrote in message news:<Xns94F39C749BF7ebohlmanomsdevcom@130.133.1.4>...
> I just installed PAR 0.81 on my ActivePerl 5.6.1 for Win32 (build 629).
> When I use pp to create an executable, everything works fine if I don't


Hi. Please bring problem reports to the RT tracking system at
<bug-par@rt.cpan.org> (preferred), or the PAR mailing list at
<par@perl.org>, so we can process them there.

Thanks,
/Autrijus/
Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2008 codecomments.com