summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/alpm.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2011-07-01 18:01:38 +0200
committerAllan McRae <allan@archlinux.org>2011-07-01 18:01:38 +0200
commitf818f570c555668314fa9ca657fba2fe3ffd8bd4 (patch)
treeb29d4e2c79f732ae5021b32a0c36b118d50b65aa /lib/libalpm/alpm.h
parenteb39a9482b711d58a6c12840800f2372dee0c120 (diff)
downloadpacman-f818f570c555668314fa9ca657fba2fe3ffd8bd4.tar.gz
pacman-f818f570c555668314fa9ca657fba2fe3ffd8bd4.tar.xz
Prefix alpm_depmod_t members with ALPM
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r--lib/libalpm/alpm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index e8e15205..b8726af9 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -63,17 +63,17 @@ typedef enum _alpm_pkgreason_t {
/** Types of version constraints in dependency specs. */
typedef enum _alpm_depmod_t {
/** No version constraint */
- PM_DEP_MOD_ANY = 1,
+ ALPM_DEP_MOD_ANY = 1,
/** Test version equality (package=x.y.z) */
- PM_DEP_MOD_EQ,
+ ALPM_DEP_MOD_EQ,
/** Test for at least a version (package>=x.y.z) */
- PM_DEP_MOD_GE,
+ ALPM_DEP_MOD_GE,
/** Test for at most a version (package<=x.y.z) */
- PM_DEP_MOD_LE,
+ ALPM_DEP_MOD_LE,
/** Test for greater than some version (package>x.y.z) */
- PM_DEP_MOD_GT,
+ ALPM_DEP_MOD_GT,
/** Test for less than some version (package<x.y.z) */
- PM_DEP_MOD_LT
+ ALPM_DEP_MOD_LT
} alpm_depmod_t;
/**