From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: libwnck Date: Wed, 24 Feb 2016 16:17:41 +0100 Message-ID: <20160224151741.GA23190@solar> References: <20160223113138.GA19907@solar> <20160224160618.1e9d8676@alarmpi> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50523) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYbCH-0004GN-7D for guix-devel@gnu.org; Wed, 24 Feb 2016 10:17:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aYbCD-0003KQ-V4 for guix-devel@gnu.org; Wed, 24 Feb 2016 10:17:49 -0500 Received: from mailrelay7.public.one.com ([91.198.169.215]:18851) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aYbCD-0003K3-Jm for guix-devel@gnu.org; Wed, 24 Feb 2016 10:17:45 -0500 Content-Disposition: inline In-Reply-To: <20160224160618.1e9d8676@alarmpi> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Fabian Harfert Cc: guix-devel@gnu.org On Wed, Feb 24, 2016 at 04:06:18PM +0100, Fabian Harfert wrote: > the name libwnck-1 is right. The library files have this name and the > pkg-config file refers to that. This is because it uses Gtk+ 2.x and > has a different API than libwnck-3. I don't know why they chose this > versioning, but it's their decision. Well, these are the sonames, which need not be related to the program version. A package with a given version may ship arbitrary libraries with arbitrary sonames. For instance, gmp-6.1 and gmp-6.0 ship libgmp.so.10 and libgmpxx.so.4. Nevertheless, we still call all variables gmp and gmp-6.0, respectively. So here we should also use libwnck-2. Notice that the variable name is something that humans edit, whereas we need not care about sonames that are handled by some magic. Andreas