Does the supplier claim their package is portable?
How is it calling mkfifo? If through system you could get an mkfifo from Here (haven't tried that myself). It then depends on how it is using the 'fifo'. On UNIX a fifo is accessed using the ordinary file access commands, opened, read and written just as if it was a regular file (seek won't work though). On Windows there is a client-server model - for the server almost everything is different to UNIX (probably why POSIX::mkfifo is not implemented on Windows). The client can access the pipe as normal - except it actually does a Windows login. On Windows Named pipes are kernel objects - they do not persist after a reboot and they do not exist on a filesystem. On UNIX named pipes have an inode and survive a reboot (not that you ever need to reboot a UNIX machine you understand).

Some other IPC method needs to be used. Can we see how the fifo is being used?
Update: Looking at the source for Alvis::TreeTagger it appears to be UNIX specific - it has hard-coded UNIX style path names in. I don't know TreeTagger, but looking at the .pm code it looks like it just redirects stdin and stdout to named pipes. So (unless I'm missing something) you should be able to drive it using ordinary anonymous pipes, see perlipc.

In reply to Re: run TreeTagger in Windows by cdarke
in thread run TreeTagger in Windows by lilli

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.