From 7da474beda3db94d27514f894d1a07bceadbbc8c Mon Sep 17 00:00:00 2001 From: Ben Hutchings Date: Sun, 19 May 2019 17:17:33 +0100 Subject: [PATCH] cpupower: Bump soname version Several functions in the libcpupower API were renamed or removed in Linux 4.7, and again in 5.1. This is a backward-incompatible ABI change, so the library soname should change from libcpupower.so.0 to libcpupower.so.2. Fixes: ac5a181d065d ("cpupower: Add cpuidle parts into library") Signed-off-by: Ben Hutchings Gbp-Pq: Topic bugfix/all Gbp-Pq: Name cpupower-bump-soname-version.patch --- tools/power/cpupower/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/power/cpupower/Makefile b/tools/power/cpupower/Makefile index 9063fca480b..071fb4df0a3 100644 --- a/tools/power/cpupower/Makefile +++ b/tools/power/cpupower/Makefile @@ -53,8 +53,8 @@ DESTDIR ?= # and _should_ modify the PACKAGE_BUGREPORT definition VERSION= $(shell ./utils/version-gen.sh) -LIB_MAJ= 0.0.1 -LIB_MIN= 0 +LIB_MAJ= 2.0.1 +LIB_MIN= 2 PACKAGE = cpupower PACKAGE_BUGREPORT = linux-pm@vger.kernel.org -- 2.30.2