This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Provide a fixed $DynaLoader::XS_VERSION of 1.05, to fix bug #32539
[perl5.git] / ext / DynaLoader / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4     NAME => 'DynaLoader',
5     LINKTYPE    => 'static',
6     DEFINE      => '-DPERL_CORE -DLIBC="$(LIBC)"',
7     MAN3PODS    => {},  # Pods will be built by installman.
8     SKIP        => [qw(dynamic dynamic_lib dynamic_bs)],
9     XSPROTOARG => '-noprototypes',              # XXX remove later?
10     VERSION_FROM => 'DynaLoader_pm.PL',
11     XS_VERSION  => '1.05',
12     PL_FILES    => {'DynaLoader_pm.PL'=>'DynaLoader.pm',
13                     'XSLoader_pm.PL'=>'XSLoader.pm'},
14     PM          => {'DynaLoader.pm' => '$(INST_LIBDIR)/DynaLoader.pm',
15                     'XSLoader.pm' => '$(INST_LIBDIR)/XSLoader.pm'},
16     depend      => {'DynaLoader.o' => 'dlutils.c'},
17     clean       => {FILES => 'DynaLoader.c DynaLoader.xs DynaLoader.pm ' .
18                              'XSLoader.pm'},
19 );
20
21 sub MY::postamble {
22         '
23 DynaLoader.xs: $(DLSRC)
24         $(RM_F) $@
25         $(CP) $? $@
26
27 # Perform very simple tests just to check for major gaffs.
28 # We can\'t do much more for platforms we are not executing on.
29 test-xs:
30         for i in dl_*xs; \
31             do $(PERL) -I$(PERL_ARCHLIB) -I$(PERL_LIB) $(XSUBPP) $(XSUBPPARGS) $$i > /dev/null; \
32         done
33 ';
34 }
35