summaryrefslogtreecommitdiff
path: root/lib/libalpm/alpm.c
diff options
context:
space:
mode:
authorNagy Gabor <ngaba@bibl.u-szeged.hu>2008-02-29 21:52:57 +0100
committerDan McGee <dan@archlinux.org>2008-03-01 17:02:05 -0600
commit49197b7492d61bf1fc6bef59a708f4f586f32edb (patch)
tree2d886ebbd3fca56d14ceecba0af4c05f79e803e2 /lib/libalpm/alpm.c
parent73ac9f7b27c3da538dad0f59c28f67badbb43a64 (diff)
New alpm_version function
Now pacman frontend uses this function instead of the compile-time libalpm version number. Signed-off-by: Nagy Gabor <ngaba@bibl.u-szeged.hu> [Dan: fix one more spot where LIB_VERSION was used] Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.c')
-rw-r--r--lib/libalpm/alpm.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c
index 473993a0..fb19d076 100644
--- a/lib/libalpm/alpm.c
+++ b/lib/libalpm/alpm.c
@@ -81,4 +81,9 @@ int SYMEXPORT alpm_release(void)
* @brief Various libalpm functions
*/
+/* Get the version of library */
+const char SYMEXPORT *alpm_version(void) {
+ return(LIB_VERSION);
+}
+
/* vim: set ts=2 sw=2 noet: */