From 54af52f87d6d9547629bb336c365943ff9bb4876 Mon Sep 17 00:00:00 2001 From: Nagy Gabor Date: Fri, 29 Feb 2008 21:52:57 +0100 Subject: New alpm_version function Now pacman frontend uses this function instead of the compile-time libalpm version number. Signed-off-by: Nagy Gabor [Dan: fix one more spot where LIB_VERSION was used] Signed-off-by: Dan McGee (cherry picked from commit 49197b7492d61bf1fc6bef59a708f4f586f32edb) --- src/pacman/pacman.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 377ea3fe..d6997689 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -150,7 +150,7 @@ static void usage(int op, const char * const myname) static void version(void) { printf("\n"); - printf(" .--. Pacman v%s - libalpm v%s\n", PACKAGE_VERSION, LIB_VERSION); + printf(" .--. Pacman v%s - libalpm v%s\n", PACKAGE_VERSION, alpm_version()); printf("/ _.-' .-. .-. .-. Copyright (C) 2002-2008 Judd Vinet \n"); printf("\\ '-. '-' '-' '-'\n"); printf(" '--'\n"); @@ -183,8 +183,8 @@ static void setuseragent(void) struct utsname un; uname(&un); - snprintf(agent, 100, "pacman/" PACKAGE_VERSION " (%s %s) libalpm/" LIB_VERSION, - un.sysname, un.machine); + snprintf(agent, 100, "pacman/%s (%s %s) libalpm/%s", + PACKAGE_VERSION, un.sysname, un.machine, alpm_version()); setenv("HTTP_USER_AGENT", agent, 0); } -- cgit v1.2.3-24-g4f1b