mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
* Fix compile errors/warnings.
* Update .cvsignore files a bit.
This commit is contained in:
parent
f8cd4858ca
commit
73402a1459
@ -16,3 +16,6 @@ libtool
|
||||
ltmain.sh
|
||||
missing
|
||||
stamp-h1
|
||||
|
||||
tags
|
||||
cscope.out
|
||||
|
@ -1,4 +1,3 @@
|
||||
Makefile
|
||||
Makefile.in
|
||||
*.3
|
||||
*.8
|
||||
man3
|
||||
|
@ -1146,7 +1146,6 @@ alpm_list_t *alpm_get_upgrades()
|
||||
|
||||
/* now do normal upgrades */
|
||||
for(i = _alpm_db_get_pkgcache(handle->db_local, INFRQ_NONE); i; i = i->next) {
|
||||
int cmp;
|
||||
int replace=0;
|
||||
pmpkg_t *local = i->data;
|
||||
pmpkg_t *spkg = NULL;
|
||||
|
@ -31,13 +31,14 @@
|
||||
#include <locale.h>
|
||||
#include <errno.h>
|
||||
/* pacman */
|
||||
#include "package.h"
|
||||
#include "log.h"
|
||||
#include "util.h"
|
||||
#include "error.h"
|
||||
#include "alpm_list.h"
|
||||
#include "package.h"
|
||||
#include "db.h"
|
||||
#include "handle.h"
|
||||
#include "versioncmp.h"
|
||||
#include "alpm.h"
|
||||
|
||||
pmpkg_t *_alpm_pkg_new(const char *name, const char *version)
|
||||
|
@ -3,6 +3,4 @@ Makefile.in
|
||||
*.gmo
|
||||
POTFILES
|
||||
stamp-po
|
||||
|
||||
remove-potcdate.sin
|
||||
remove-potcdate.sed
|
||||
|
@ -27,7 +27,7 @@
|
||||
#include "package.h"
|
||||
|
||||
int _alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep);
|
||||
int _alpm_versioncmp(const char *a, const char *b)
|
||||
int _alpm_versioncmp(const char *a, const char *b);
|
||||
|
||||
|
||||
#endif
|
||||
|
@ -3,6 +3,4 @@ Makefile.in
|
||||
*.gmo
|
||||
POTFILES
|
||||
stamp-po
|
||||
|
||||
remove-potcdate.sin
|
||||
remove-potcdate.sed
|
||||
|
@ -2,5 +2,4 @@
|
||||
.libs
|
||||
Makefile
|
||||
Makefile.in
|
||||
convertdb
|
||||
vercmp
|
||||
|
Loading…
Reference in New Issue
Block a user