Hmmm.. try replacing line 17 in Play/Net/Makefile.PL by
#if (try_compile("-c ../config/Net.c")) # comment this line out
if (0)
This should skip checking for NAS (which you probably haven't installed anyway) and see if the configure works then.
| [reply] [d/l] |
ok, thanks.
shouldn't it be :
if (1)
??
so, it made the makefile (although i got a lot of : "Note(porbably harmless) no library found for ...." messages)
can i now use cygwin to finish the job ?
as i said, i'm not really sure how to use cygwin for this..
thanks, b
| [reply] [d/l] |
Provided you have gcc installed under cygwin, you can open a bash shell and do:
perl Makefile.PL
make && make test && make install
The && here indicate that you'll only install if the tests succeed (just like in perl).
Under cygwin, you generally follow the UNIX installation instructions, and it should work. I'm installing cygwin at the moment, so I'll give it a try myself. (Will take some time to download everything, though)
| [reply] [d/l] |