summaryrefslogtreecommitdiff
path: root/build/rpmbuild.h
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-08-19 22:27:44 +0000
committerjbj <devnull@localhost>2002-08-19 22:27:44 +0000
commitae8428475cbfde3af746d51a056e0655fe6269d8 (patch)
tree6d173ac13fbc11799ea49d3dd70d5b8ee452283a /build/rpmbuild.h
parent105f7a517cd13b7c40b359548a9c75cbd00ed9c4 (diff)
downloadlibrpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.gz
librpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.tar.bz2
librpm-tizen-ae8428475cbfde3af746d51a056e0655fe6269d8.zip
- add --with-efence to configure, check install/upgrade with efence.
- beecrypt: short hex string conversion overflows target buffer. - mark "successors only" packages in transaction. - reap scriptlets with SIGCHLD handler. - rename PSM_t to rpmpsm, add methods and refcounts to manage. - remove %%configure/%%makeinstall from arch-os/macros, default is OK. - don't export MALLOC_CHECK_ to scriptlets. - squeaky clean memory leak checking. - always malloc rpmfi structure, refcounts are correct in rpmtsRun(). - skip redundant /sbin/ldconfig scripts on upgrade (if possible). CVS patchset: 5645 CVS date: 2002/08/19 22:27:44
Diffstat (limited to 'build/rpmbuild.h')
-rw-r--r--build/rpmbuild.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/build/rpmbuild.h b/build/rpmbuild.h
index 2f42550fc..798583675 100644
--- a/build/rpmbuild.h
+++ b/build/rpmbuild.h
@@ -363,7 +363,8 @@ int lookupPackage(Spec spec, /*@null@*/ const char * name, int flag,
* @param spec spec file control structure
* @return package control structure
*/
-/*@only@*/ Package newPackage(Spec spec)
+/*@only@*/
+Package newPackage(Spec spec)
/*@modifies spec->packages, spec->packages->next @*/;
/** \ingroup rpmbuild
@@ -371,16 +372,20 @@ int lookupPackage(Spec spec, /*@null@*/ const char * name, int flag,
* @param packages package control structure chain
* @return NULL
*/
-/*@null@*/ Package freePackages(/*@only@*/ /*@null@*/ Package packages)
- /*@modifies packages @*/;
+/*@null@*/
+Package freePackages(/*@only@*/ /*@null@*/ Package packages)
+ /*@globals fileSystem @*/
+ /*@modifies packages, fileSystem @*/;
/** \ingroup rpmbuild
* Destroy package control structure.
* @param pkg package control structure
* @return NULL
*/
-/*@null@*/ Package freePackage(/*@only@*/ /*@null@*/ Package pkg)
- /*@modifies pkg @*/;
+/*@null@*/
+Package freePackage(/*@only@*/ /*@null@*/ Package pkg)
+ /*@globals fileSystem @*/
+ /*@modifies pkg, fileSystem @*/;
/** \ingroup rpmbuild
* Add dependency to header, filtering duplicates.