aboutsummaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2006-07-02 01:48:32 +0200
committerJunio C Hamano <junkio@cox.net>2006-07-02 17:14:44 -0700
commite2a38710941775761298d0bd7e6be2e7039fcd3d (patch)
tree546ba18ae953358f5f11ec83a624ad5dc397bbf1 /perl
parente6634ac9841f8df3ce1c0c461c677faf2d59af3e (diff)
downloadgit-e2a38710941775761298d0bd7e6be2e7039fcd3d.tar.gz
git-e2a38710941775761298d0bd7e6be2e7039fcd3d.tar.xz
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 <pasky@suse.cz> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'perl')
-rw-r--r--perl/Git.xs2
-rw-r--r--perl/Makefile.PL10
2 files changed, 5 insertions, 7 deletions
diff --git a/perl/Git.xs b/perl/Git.xs
index cb232618c..51bfac3bd 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 25ae54a51..97ee9af9c 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();