Don't use PerlApp; therefore, don't know if this is relevant, but since your messages include a reference to the --add command

File\Spec\Unix.pm:
warn: auto\File\Spec\Unix\Unix.dll not found
refby: perlapp --add
....
from the AS doc re PerlApp9.3 here's some possibly relevant information:



--add modules
    List additional modules to include in the application. PerlApp also attempts to include 
    modules that the listed modules depend on. Multiple modules can be separated by whitespace 
    or a semicolon. This option can be repeated. For example: 

        perlapp myscript.pl --add IO::Socket --add XML::Parser::Expat

    ...would include IO::Socket and XML::Parser in your application.

    The --add option supports the following wildcard notations: --add Module::* includes Module::Foo, 
    but neither Module itself nor Module::Foo::Bar. --add Module::** includes Module::Foo and 
    Module::Foo::Bar, but not Module. --add Module:: works the same as --add Module;Module::**, 
    including all of Module, Module::Foo and Module::Foo::Bar. Note that you may have to quote 
    the * character to prevent wildcard expansion by your command shell.

    PerlApp uses built-in heuristics to determine any additional modules that may be required at 
    runtime. When building an executable, missing modules are displayed as errors. In a few cases, 
    however, the heuristics are used to downgrade errors to warnings. PerlApp issues warnings 
    for the following:

      + Windows executables built without Unix, Mac, VMS and OS/2 modules 
        ....

A bit more information about your script and source might win you better help from those more knowledgable of PerlApp than I.


++$anecdote ne $data


In reply to Re: Unix.dll not Found in PerlApp by ww
in thread Unix.dll not Found in PerlApp by Cmdr Colstel

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.