summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2008-01-04Remove now useless nested function in debugeditPanu Matilainen1-9/+3
2007-12-19Add rpm_data_t (and _constdata_t) for header data, use everywherePanu Matilainen2-5/+5
- consistent, easy to grep for and change... - bogus consts removed where spotted
2007-12-18Cast to silence gcc..Panu Matilainen1-1/+1
2007-12-18Remove bogus const from rpmGlob argv return typePanu Matilainen2-7/+7
- it's malloced and must be freed by caller
2007-12-14Bogus const removal continued...Panu Matilainen1-1/+1
2007-12-14Bunch of const char* correctionsPanu Matilainen1-7/+7
- functions returning string constants as char * etc...
2007-12-14More size_t type pedantryPanu Matilainen1-2/+2
2007-12-13Use rpm_tagtype_t everywhere for rpm (header) tagtype typePanu Matilainen1-7/+10
- typedef'ed as uint32_t, doesn't matter much but negative types dont exist - easy to grep, easy to change... - define RPM_FORCEFREE_TYPE instead of -1 "magic" for forcing headerFreeData (ugh), easier to grep for and change than "-1"
2007-12-13Use rpm_tag_t everywhere for rpm (header) tag typePanu Matilainen1-2/+1
- typedef'ed as int32_t for now, negative values used in some places for error cases - easy to grep, easy to change... - add RPMTAG_NOT_FOUND define, used in place of -1 "magic",
2007-12-08Switch to <rpm/foo.h> style for public headersPanu Matilainen9-38/+38
- adjust include paths accordingly
2007-12-02Move rpmsenseFlag enums to rpmds where they logically belongPanu Matilainen2-0/+2
2007-12-03Use regular POSIX functions instead of "RPC" clonesPanu Matilainen1-2/+2
- we only care about local files
2007-12-01More rpmlead exorcizingPanu Matilainen1-6/+4
- remove unnecessary type parameter to writeRPM(), header knows what it is - remove unnecessary lead argument to readRPM(), it's unused anyway - drop lead from cpioSourceArchive struct
2007-11-30Move logging related macros rpmlog, adjust includesPanu Matilainen1-0/+1
2007-11-27One missed legacy includePanu Matilainen1-1/+1
2007-11-26Remove #include "lib/signature.h" (unused)Ralf Corsépius1-1/+0
2007-11-26Eliminate type "byte"Ralf Corsépius1-1/+1
2007-11-23Expand private include file names to be relative to $(top_srcdir)Ralf Corsépius9-12/+12
2007-11-23Move rpmGlob() from macros to rpmfileutil.hPanu Matilainen1-3/+3
- macros is all just macros now - internal copy of popt stuff needs to go...
2007-11-23Use #include <x.h> syntax to include public headers.Ralf Corsépius8-32/+32
2007-11-22Include system.hRalf Corsépius1-0/+2
2007-11-19Lose rpmerr.h for goodPanu Matilainen2-2/+2
2007-11-19Replace all RPMERR_* etc uses with corresponding RPMLOG_* levelsPanu Matilainen2-6/+6
2007-11-15Debugedit needs crypto initialization too..Panu Matilainen1-0/+2
2007-11-07Silence bunch of compiler warnings from test programsPanu Matilainen2-3/+3
2007-11-07Remove bunch of unnecessary misc.h includes, document othersPanu Matilainen3-3/+2
2007-11-02Use NSS instead of beecrypt for encryption (Tomas Mraz)Panu Matilainen1-21/+20
2007-11-01Include "legacy.h" not <rpmdb/legacy.h>Panu Matilainen1-1/+1
2007-10-31Add rpmtsPrintSuggests() method for now, use instead of ts internals muckingPanu Matilainen1-14/+2
- temporary measure to get rid of silly RPMTS_INTERNAL uses, the whole solve/suggestion thingie needs love or ripping... - clean up the suggestions in rpmtsClean() instead of while printing
2007-10-29Remove local def of uint32_t, uint16_t.Ralf Corsépius1-5/+3
Include <stdint.h>. Use size_t for sizes.
2007-10-28Include "rpmfc.h" instead of <rpmfc.h>.Ralf Corsépius1-1/+1
2007-10-28Include "rpmbuild.h" instead of <rpmbuild.h>.Ralf Corsépius1-1/+1
2007-10-28Include "rpmlib.h" instead of <rpmlib.h>.Ralf Corsépius4-4/+4
2007-10-28Include "rpmds.h" instead of <rpmds.h>.Ralf Corsépius1-1/+1
2007-10-28Include "rpmcli.h" instead of <rpmcli.h>.Ralf Corsépius2-2/+2
2007-10-28Include "rpmio.h" instead of <rpmio.h>.Ralf Corsépius1-1/+1
2007-10-28Include "fts.h" instead of <fts.h>.Ralf Corsépius1-1/+1
2007-10-28Include "argv.h" instead of <argv.h>.Ralf Corsépius1-1/+1
2007-10-28Include "rpmdb.h" instead of <rpmdb.h>.Ralf Corsépius1-1/+1
2007-10-28Include "rpmmacro.h" instead of <rpmmacro.h>.Ralf Corsépius2-2/+2
2007-10-28Include "rpmurl.h" instead of <rpmurl.h>.Ralf Corsépius1-1/+1
2007-10-26Eliminate [u|]int_[8|16|32]. Use c99 stdint.h types instead.Ralf Corsépius5-36/+36
2007-10-18debugedit mishandles empty DW_AT_comp_dir (Roland McGrath)Panu Matilainen1-5/+10
- fpc seems to produce DW_AT_comp_dir with value "" (empty string). This is dubious, but debugedit makes it even worse by getting confused by it.
2007-10-18debugedit mishandles DW_FORM_ref_addr (Roland McGrath)Panu Matilainen1-1/+1
2007-10-09Make rpmerr.h private, include directly where needed.Panu Matilainen2-0/+2
2007-10-09Oops, one missed rpmError() user..Panu Matilainen1-3/+3
2007-10-09Replace all uses of RPMMESS_NORMAL with RPMLOG_NOTICEPanu Matilainen1-2/+2
2007-10-09Replace all uses of RPMMESS_ERROR with RPMLOG_ERRPanu Matilainen2-6/+6
2007-10-09Replace all uses of RPMMESS_DEBUG with RPMLOG_DEBUGPanu Matilainen1-2/+2
2007-10-09Replace all rpmMessage() uses with rpmlog()Panu Matilainen3-10/+10