aboutsummaryrefslogtreecommitdiff
path: root/Perl/Makefile.PL.in
diff options
context:
space:
mode:
authorlecoanet2003-10-01 14:15:03 +0000
committerlecoanet2003-10-01 14:15:03 +0000
commit4d56feef2236d64aec841a0eb1a55b31053ac07c (patch)
treedc2984a560bb7084a2bdb4bd3233c66c6f02c9ac /Perl/Makefile.PL.in
parent85e22a84f866e6be5bf9394dcc09ba7b31b21803 (diff)
downloadtkzinc-4d56feef2236d64aec841a0eb1a55b31053ac07c.zip
tkzinc-4d56feef2236d64aec841a0eb1a55b31053ac07c.tar.gz
tkzinc-4d56feef2236d64aec841a0eb1a55b31053ac07c.tar.bz2
tkzinc-4d56feef2236d64aec841a0eb1a55b31053ac07c.tar.xz
Suppression du fichier devenu obsol�te dans la future chaine de compil Perl
Diffstat (limited to 'Perl/Makefile.PL.in')
-rw-r--r--Perl/Makefile.PL.in37
1 files changed, 0 insertions, 37 deletions
diff --git a/Perl/Makefile.PL.in b/Perl/Makefile.PL.in
deleted file mode 100644
index 1bb352c..0000000
--- a/Perl/Makefile.PL.in
+++ /dev/null
@@ -1,37 +0,0 @@
-#
-#
-use Tk::MMutil;
-use Tk::Config;
-
-Tk::MMutil::TkExtMakefile(
- 'CC' => 'gcc',
- 'LD' => 'gcc',
- 'CCCDLFLAGS' => '-fPIC',
- 'NAME' => 'Tk::Zinc',
- 'OBJECT' => '$(O_FILES)',
- 'VERSION_FROM' => 'Zinc.pm',
- 'XS_VERSION' => $Tk::Config::VERSION,
-## 'INSTALLDIRS' => 'vendor',
- 'INC' => "-I. -I@PERL_TK_LIB@/pTk",
- 'LIBS' => ["-L/usr/X11R6/lib -lX11 -L.. -l@PACKAGE@@VERSION@"],
- );
-
-sub MY::test_via_harness {
- my($self, $perl, $tests) = @_;
-# The following uncommented line disable the load of libTkzincx.yyy.so
-# during the "make test". What is the reason of this line is totally obscure
-# for me. C.Mertz 22/sept/2003
-#
-# $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
- "\t$perl".q! -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) -e 'use Test::Harness qw(&runtests $$verbose); $$verbose=$(TEST_VERBOSE); runtests @ARGV;' !."$tests\n";
-}
-
-
-# as this method is very similar to the previous one, I applied the same patch,
-# even if it seems not being used for building Tk::Zinc C.Mertz 22/sept/2003
-sub MY::test_via_script {
- my($self, $perl, $script) = @_;
-# $perl = "PERL_DL_NONLAZY=1 $perl" unless $Is_Win32;
- qq{\t$perl}.q{ -I$(INST_ARCHLIB) -I$(INST_LIB) -I$(PERL_ARCHLIB) -I$(PERL_LIB) }.qq{$script
-};
-}