diff options
author | tv <tv@971eb68f-4bfb-0310-8326-d2484c010a4c> | 2012-06-12 17:37:36 +0000 |
---|---|---|
committer | tv <tv@971eb68f-4bfb-0310-8326-d2484c010a4c> | 2012-06-12 17:37:36 +0000 |
commit | 6844e58d8dde9c7477f69be9b1e39727cac6bdfe (patch) | |
tree | 96dadc84356dea086b7eaae653775a2678812f6a | |
parent | e5ad3f774c0d1fa87e460cdeee2bd0d1c5ce1156 (diff) | |
download | perl-RPM4-6844e58d8dde9c7477f69be9b1e39727cac6bdfe.tar perl-RPM4-6844e58d8dde9c7477f69be9b1e39727cac6bdfe.tar.gz perl-RPM4-6844e58d8dde9c7477f69be9b1e39727cac6bdfe.tar.bz2 perl-RPM4-6844e58d8dde9c7477f69be9b1e39727cac6bdfe.tar.xz perl-RPM4-6844e58d8dde9c7477f69be9b1e39727cac6bdfe.zip |
make some functions that not implemented since switching to rpm-4.6 to die
they do nothing for 3.5 years by now...
git-svn-id: svn+ssh://haiku.zarb.org/home/projects/rpm4/svn/trunk@195 971eb68f-4bfb-0310-8326-d2484c010a4c
-rw-r--r-- | RPM4/NEWS | 1 | ||||
-rw-r--r-- | RPM4/src/RPM4.xs | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -1,3 +1,4 @@ +- functions that not are implemented since switching to rpm-4.6 now die - use rpm-4.6+ API, not rpm-4.4 compatibility one (fix some memleaks btw) diff --git a/RPM4/src/RPM4.xs b/RPM4/src/RPM4.xs index 4e62492..47de9dc 100644 --- a/RPM4/src/RPM4.xs +++ b/RPM4/src/RPM4.xs @@ -2143,23 +2143,27 @@ rpmsysinfodep(sysinfofile = NULL) char * sysinfofile PREINIT: PPCODE: + croak("rpmsysinfodep exists only in rpm5; unused anyway"); void rpmgetconfdep(path = NULL) char * path PREINIT: PPCODE: + croak("rpmgetconfdep exists only in rpm5; unused anyway"); void rpmcpuinfodep(path = NULL) char * path PREINIT: PPCODE: + croak("rpmcpuinfodep exists only in rpm5; unused anyway"); void rpmunamedep() PREINIT: PPCODE: + croak("rpmunamedep exists only in rpm5; unused anyway"); void rpmpipedep(cmd, tag = 0) |