From e2a38710941775761298d0bd7e6be2e7039fcd3d Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 2 Jul 2006 01:48:32 +0200 Subject: [PATCH] Git.pm: Avoid ppport.h This makes us not include ppport.h which seems not to give us anything real anyway; it is useful for checking for portability warts but since Devel::PPPort is a portability wart itself, we shouldn't require it for build. You can check for portability problems by calling make check in perl/. Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- perl/Git.xs | 2 -- perl/Makefile.PL | 10 +++++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/perl/Git.xs b/perl/Git.xs index cb232618c8..51bfac3bd5 100644 --- a/perl/Git.xs +++ b/perl/Git.xs @@ -15,8 +15,6 @@ #include "perl.h" #include "XSUB.h" -#include "ppport.h" - #undef die diff --git a/perl/Makefile.PL b/perl/Makefile.PL index 25ae54a515..97ee9af9c9 100644 --- a/perl/Makefile.PL +++ b/perl/Makefile.PL @@ -5,6 +5,11 @@ sub MY::postamble { instlibdir: @echo '$(INSTALLSITEARCH)' +check: + perl -MDevel::PPPort -le 'Devel::PPPort::WriteFile(".ppport.h")' && \ + perl .ppport.h --compat-version=5.6.0 Git.xs && \ + rm .ppport.h + MAKE_FRAG } @@ -24,8 +29,3 @@ WriteMakefile( MYEXTLIB => '../libgit.a', INC => '-I. -I..', ); - - -use Devel::PPPort; - --s 'ppport.h' or Devel::PPPort::WriteFile(); -- 2.11.4.GIT