From f425519443f98a486de117e86e77a6e59c8f20a1 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Sat, 1 Oct 2011 12:03:44 +0100 Subject: libpulse: Always return a three part version number in API calls. For both the headers and the library we should provide clean, three part strings as this has been what we've previously done in the past and some external systems apparently rely on this format. While it's not something we've officially commented on before, there is no real advantage to us to change it so let's not try to tidy things up too much considering some third party apps (e.g. Skype) seem to dislike a two part version string. --- src/pulse/context.c | 2 +- src/pulse/version.h.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pulse/context.c b/src/pulse/context.c index 25d04a1e..af144aa8 100644 --- a/src/pulse/context.c +++ b/src/pulse/context.c @@ -1281,7 +1281,7 @@ pa_operation* pa_context_set_name(pa_context *c, const char *name, pa_context_su } const char* pa_get_library_version(void) { - return PACKAGE_VERSION; + return pa_get_headers_version(); } const char* pa_context_get_server(pa_context *c) { diff --git a/src/pulse/version.h.in b/src/pulse/version.h.in index 7e00c5e1..1be4c753 100644 --- a/src/pulse/version.h.in +++ b/src/pulse/version.h.in @@ -35,7 +35,7 @@ PA_C_DECL_BEGIN /** Return the version of the header files. Keep in mind that this is a macro and not a function, so it is impossible to get the pointer of it. */ -#define pa_get_headers_version() ("@PACKAGE_VERSION@") +#define pa_get_headers_version() ("@PA_MAJOR@.@PA_MINOR@.0") /** Return the version of the library the current application is * linked to. */ -- cgit v1.2.3