diff options
author | rjray <devnull@localhost> | 2001-04-27 09:07:08 +0000 |
---|---|---|
committer | rjray <devnull@localhost> | 2001-04-27 09:07:08 +0000 |
commit | 16eaf800759c4e5975645c7d909e82f51351ca7b (patch) | |
tree | 6834bc738ca0fe18128ce99a673e0c51e54149f1 /Perl-RPM | |
parent | ca82f7d8d847f45717ff689f9e919bb15bc0dd7e (diff) | |
download | librpm-tizen-16eaf800759c4e5975645c7d909e82f51351ca7b.tar.gz librpm-tizen-16eaf800759c4e5975645c7d909e82f51351ca7b.tar.bz2 librpm-tizen-16eaf800759c4e5975645c7d909e82f51351ca7b.zip |
Disable the version-checking on XS code for now, until I can figure out how
to do it correctly.
CVS patchset: 4715
CVS date: 2001/04/27 09:07:08
Diffstat (limited to 'Perl-RPM')
-rw-r--r-- | Perl-RPM/Makefile.PL | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Perl-RPM/Makefile.PL b/Perl-RPM/Makefile.PL index da82d43db..e88bed72c 100644 --- a/Perl-RPM/Makefile.PL +++ b/Perl-RPM/Makefile.PL @@ -1,6 +1,6 @@ #!/bin/perl -# $Id: Makefile.PL,v 1.20 2001/03/11 08:55:55 rjray Exp $ +# $Id: Makefile.PL,v 1.21 2001/04/27 09:07:08 rjray Exp $ use Config; use ExtUtils::MakeMaker; @@ -88,7 +88,7 @@ list near line 78. Stopped" WriteMakefile( NAME => 'RPM', DISTNAME => 'Perl-RPM', - VERSION_FROM => 'RPM.pm', + VERSION => '0.31', LIBS => $rpm_libs, DEFINE => $rpm_defines, PM => \%PM, @@ -97,7 +97,8 @@ WriteMakefile( OBJECT => $OBJECT, INC => "-I. -I$rpm_libdir", DIR => [], -# XSOPT => '-nolinenumbers', +# XSOPT => '-noversioncheck -nolinenumbers', + XSOPT => '-noversioncheck', dist => { COMPRESS => 'gzip -9f' }, clean => { FILES => $CLEAN } ); |