Hi Will,
After all, I tried as follows, and tests passed!!!
* download Alien-JPCRE2-0.008000.tar.gz
* ptar -zxvf Alien-JPCRE2-0.008000.tar.gz
* cd Alien-JPCRE2-0.008000
* perl Makefile.PL MAKE=gmake
* gmake
* gmake test
Here is a log at that time(File name: Strawberry-P5-20-3-Manual-install-result-Alien-JPCRE2-0_008000_tar_gz.log).
I appreciate your kind response.
Thank you,
--
twata
On 2017-7月-26 水 15:25:07, WBRASWELL wrote:
Show quoted text> twata,
>
> This is NOT an error:
>
> "fatal error: jpcre2.hpp: No such file or directory"
>
> Although it certainly looks like an error, and I agree that it is
> deceptively error-like, this is actually one of the steps in Alien's
> build process where it tries to compile a file using jpcre2.hpp in
> order to test if JPCRE2 is installed, and since it fails to compile
> then it correctly proceeds to the download-and-build stage.
>
> This is the REAL error:
>
> dmake.exe: Error executing 'rem': No such file or directory
> dmake.exe: Error code -1, while making 'blibdirs'
>
> As far as I understand, dmake no longer works for building Perl-
> related software, so now you must use gmake only. I am not an expert
> in Windows so I could be mistaken, all I know is that dmake simply
> does not work.
>
> You can hopefully achieve this by making sure gmake is installed,
> either manually or via `cpanm Alien::gmake`, then set you MAKE
> environmental variable to equal "gmake".
>
> So, please try the whole process again with gmake and let me know if
> it works.
>
> Thanks,
> ~ Will