summaryrefslogtreecommitdiff
path: root/Perl-RPM
diff options
context:
space:
mode:
authorrjray <devnull@localhost>2000-10-08 10:06:04 +0000
committerrjray <devnull@localhost>2000-10-08 10:06:04 +0000
commitfeaffd1820e9e5fdf3b2514f9a0da45a6b21bab4 (patch)
tree3576f14b0603fbc01498f861ab474cb6abd5ee05 /Perl-RPM
parenta9a33f8b735f528ceac6d5f44907ead6b3710cc1 (diff)
downloadlibrpm-tizen-feaffd1820e9e5fdf3b2514f9a0da45a6b21bab4.tar.gz
librpm-tizen-feaffd1820e9e5fdf3b2514f9a0da45a6b21bab4.tar.bz2
librpm-tizen-feaffd1820e9e5fdf3b2514f9a0da45a6b21bab4.zip
Added Package to bootstrap list
CVS patchset: 4191 CVS date: 2000/10/08 10:06:04
Diffstat (limited to 'Perl-RPM')
-rw-r--r--Perl-RPM/RPM.pm3
-rw-r--r--Perl-RPM/RPM.xs4
2 files changed, 5 insertions, 2 deletions
diff --git a/Perl-RPM/RPM.pm b/Perl-RPM/RPM.pm
index 9e5aca06c..a0e863139 100644
--- a/Perl-RPM/RPM.pm
+++ b/Perl-RPM/RPM.pm
@@ -10,7 +10,7 @@ require Exporter;
@ISA = qw(Exporter DynaLoader);
$VERSION = '0.29';
-$revision = do { my @r=(q$Revision: 1.10 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
+$revision = do { my @r=(q$Revision: 1.11 $=~/\d+/g); sprintf "%d."."%02d"x$#r,@r };
@EXPORT = qw(rpm_osname rpm_archname);
@EXPORT_OK = (@EXPORT, 'vercmp');
@@ -22,6 +22,7 @@ bootstrap_Constants($VERSION);
bootstrap_Header($VERSION);
bootstrap_Database($VERSION);
bootstrap_Error($VERSION);
+bootstrap_Package($VERSION);
1;
diff --git a/Perl-RPM/RPM.xs b/Perl-RPM/RPM.xs
index 683a09aff..84ca859b0 100644
--- a/Perl-RPM/RPM.xs
+++ b/Perl-RPM/RPM.xs
@@ -4,12 +4,13 @@
#include "RPM.h"
-static char * const rcsid = "$Id: RPM.xs,v 1.6 2000/08/02 08:45:16 rjray Exp $";
+static char * const rcsid = "$Id: RPM.xs,v 1.7 2000/10/08 10:06:20 rjray Exp $";
extern XS(boot_RPM__Constants);
extern XS(boot_RPM__Header);
extern XS(boot_RPM__Database);
extern XS(boot_RPM__Error);
+extern XS(boot_RPM__Package);
static HV* tag2num_priv;
static HV* num2tag_priv;
@@ -116,4 +117,5 @@ BOOT:
newXS("RPM::bootstrap_Header", boot_RPM__Header, file);
newXS("RPM::bootstrap_Database", boot_RPM__Database, file);
newXS("RPM::bootstrap_Error", boot_RPM__Error, file);
+ newXS("RPM::bootstrap_Package", boot_RPM__Package, file);
}