> Hi
>
> it seems can't build with starawberry perl.
>
> strawberry perl don' have ExtUtils/xsubpp
>
> Below is a patch. Please check it.
>
> https://gist.github.com/1215667
>
> diff -r 1d5e7413d728 src/Make_ming.mak
> --- a/src/Make_ming.mak Thu Sep 08 23:24:14 2011 +0200
> +++ b/src/Make_ming.mak Wed Sep 14 10:47:48 2011 +0900
> @@ -110,6 +110,14 @@
> PERLLIBS=$(PERLLIB)/Core
> endif
>
> +XSUBPP=$(PERLLIB)/ExtUtils/xsubpp
> +XSUBPP_EXISTS=$(shell perl -e "print 1 unless -e '$(XSUBPP)'")
> +ifeq "$(XSUBPP_EXISTS)" ""
> +XSUBPP=perl $(XSUBPP)
> +else
> +XSUBPP=xsubpp
> +endif
> +
Unless I'm missing something, I think this hunk should move up 2 lines
so that the XSUBPP definitions are within the almost-out-of-context:
ifdef PERL
...
endif
--
Best,
Ben
> Thanks your notice! updated it.
> https://gist.github.com/1215667
I love github, but I've never used gists. So I figured I'd try it. I
updated gistfile11 in this forked gist:
https://gist.github.com/1215848#file_gistfile11
to add a missing parenthesis on line 34. Not sure if there's a nice way
for you to pull the change. Otherwise, just add the parenthesis, I
s'pose.
--
Best,
Ben