Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

6 messages, 3 authors, 2016-06-15 · open the first message on its own page

Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Akira Kitada <hidden>
Date: 2016-06-15 22:49:44

Hello,

I'm hitting the following errors during Git 1.7.3.1 build on FreeBSD 4.
I didn't see this problem when I built 1.7.0.1 so I should be
introduced in the recent versions.
Is there any reports regarding this?

Thank you

$ ./configure && gmake -j 1 V=1
...
rm -f git-add--interactive git-add--interactive+ && \
	INSTLIBDIR=`MAKEFLAGS= gmake -C perl -s --no-print-directory instlibdir` && \
	sed -e '1{' \
	    -e '	s|#!.*perl|#!/usr/bin/perl|' \
	    -e '	h' \
	    -e '	s=.*=use lib (split(/:/, $ENV{GITPERLLIB} || "'"$INSTLIBDIR"'"));=' \
	    -e '	H' \
	    -e '	x' \
	    -e '}' \
	    -e 's/@@GIT_VERSION@@/1.7.3.1/g' \
	    git-add--interactive.perl >git-add--interactive+ && \
	chmod +x git-add--interactive+ && \
	mv git-add--interactive+ git-add--interactive
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
Writing perl.mak for Git
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
Writing perl.mak for Git
gmake[2]: *** [perl.mak] Error 1
gmake[1]: *** [instlibdir] Error 2
gmake: *** [git-add--interactive] Error 2

Re: Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Tay Ray Chuan <hidden>
Date: 2016-06-15 22:49:44

On Sun, Oct 10, 2010 at 10:52 AM, Akira Kitada [off-list ref] wrote:
Hello,

I'm hitting the following errors during Git 1.7.3.1 build on FreeBSD 4.
I didn't see this problem when I built 1.7.0.1 so I should be
introduced in the recent versions.
Is there any reports regarding this?

Thank you

$ ./configure && gmake -j 1 V=1
...
rm -f git-add--interactive git-add--interactive+ && \
       INSTLIBDIR=`MAKEFLAGS= gmake -C perl -s --no-print-directory instlibdir` && \
       sed -e '1{' \
           -e '        s|#!.*perl|#!/usr/bin/perl|' \
           -e '        h' \
           -e '        s=.*=use lib (split(/:/, $ENV{GITPERLLIB} || "'"$INSTLIBDIR"'"));=' \
           -e '        H' \
           -e '        x' \
           -e '}' \
           -e 's/@@GIT_VERSION@@/1.7.3.1/g' \
           git-add--interactive.perl >git-add--interactive+ && \
       chmod +x git-add--interactive+ && \
       mv git-add--interactive+ git-add--interactive
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
Writing perl.mak for Git
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
This looks like a problem with Perl. What version do you have?

You can check that with cpan - type "m ExtUtils::MakeMaker", and look
at the INST_VERSION line.

-- 
Cheers,
Ray Chuan

Re: Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Akira Kitada <hidden>
Date: 2016-06-15 22:49:44

Thanks for reply.

I use perl 5.8.9 and ExtUtils::MakeMaker is 6.48.

$ /usr/local/bin/perl -v | grep v5
This is perl, v5.8.9 built for i386-freebsd

What version of Perl does Git require to build?
It seems INSTALL does not mention it.

Thank you
On Sun, Oct 10, 2010 at 1:46 PM, Tay Ray Chuan [off-list ref] wrote:
On Sun, Oct 10, 2010 at 10:52 AM, Akira Kitada [off-list ref] wrote:
quoted
Hello,

I'm hitting the following errors during Git 1.7.3.1 build on FreeBSD 4.
I didn't see this problem when I built 1.7.0.1 so I should be
introduced in the recent versions.
Is there any reports regarding this?

Thank you

$ ./configure && gmake -j 1 V=1
...
rm -f git-add--interactive git-add--interactive+ && \
       INSTLIBDIR=`MAKEFLAGS= gmake -C perl -s --no-print-directory instlibdir` && \
       sed -e '1{' \
           -e '        s|#!.*perl|#!/usr/bin/perl|' \
           -e '        h' \
           -e '        s=.*=use lib (split(/:/, $ENV{GITPERLLIB} || "'"$INSTLIBDIR"'"));=' \
           -e '        H' \
           -e '        x' \
           -e '}' \
           -e 's/@@GIT_VERSION@@/1.7.3.1/g' \
           git-add--interactive.perl >git-add--interactive+ && \
       chmod +x git-add--interactive+ && \
       mv git-add--interactive+ git-add--interactive
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
Writing perl.mak for Git
'INSTALLSITEMAN3DIR' is not a known MakeMaker parameter name.
'INSTALL_BASE' is not a known MakeMaker parameter name.
This looks like a problem with Perl. What version do you have?

You can check that with cpan - type "m ExtUtils::MakeMaker", and look
at the INST_VERSION line.

--
Cheers,
Ray Chuan

Re: Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Tay Ray Chuan <hidden>
Date: 2016-06-15 22:49:44

Hi,

On Sun, Oct 10, 2010 at 1:25 PM, Akira Kitada [off-list ref] wrote:
I use perl 5.8.9 and ExtUtils::MakeMaker is 6.48.
Can you try upgrading it and running make again? I think the cpan
commads for it are "r" (show upgrades) and "upgrade".
$ /usr/local/bin/perl -v | grep v5
This is perl, v5.8.9 built for i386-freebsd

What version of Perl does Git require to build?
It seems INSTALL does not mention it.
Ah, Perl is used for git-add--interactive and git-svn.

-- 
Cheers,
Ray Chuan

Re: Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Akira Kitada <hidden>
Date: 2016-06-15 22:49:44

I upgraded ExtUtils::MakeMaker to 6.56 and ran make again but it
didn't fix the issue.

On Sun, Oct 10, 2010 at 2:48 PM, Tay Ray Chuan [off-list ref] wrote:
Hi,

On Sun, Oct 10, 2010 at 1:25 PM, Akira Kitada [off-list ref] wrote:
quoted
I use perl 5.8.9 and ExtUtils::MakeMaker is 6.48.
Can you try upgrading it and running make again? I think the cpan
commads for it are "r" (show upgrades) and "upgrade".
quoted
$ /usr/local/bin/perl -v | grep v5
This is perl, v5.8.9 built for i386-freebsd

What version of Perl does Git require to build?
It seems INSTALL does not mention it.
Ah, Perl is used for git-add--interactive and git-svn.

--
Cheers,
Ray Chuan

Re: Git 1.7.3.1 cannot be built on FreeBSD 4 with gcc 2.95

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2016-06-15 22:49:45

On Sun, Oct 10, 2010 at 06:03, Akira Kitada [off-list ref] wrote:
I upgraded ExtUtils::MakeMaker to 6.56 and ran make again but it
didn't fix the issue.
Try building with NO_PERL_MAKEMAKER=1
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help