From owner-freebsd-ports@FreeBSD.ORG Sat Feb 21 10:12:33 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EE2E11065676 for ; Sat, 21 Feb 2009 10:12:33 +0000 (UTC) (envelope-from scdbackup@gmx.net) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 4572D8FC16 for ; Sat, 21 Feb 2009 10:12:33 +0000 (UTC) (envelope-from scdbackup@gmx.net) Received: (qmail invoked by alias); 21 Feb 2009 10:12:31 -0000 Received: from 165.126.46.212.adsl.ncore.de (HELO 212.46.126.165) [212.46.126.165] by mail.gmx.net (mp071) with SMTP; 21 Feb 2009 11:12:31 +0100 X-Authenticated: #2145628 X-Provags-ID: V01U2FsdGVkX180rcgx+r804V2/OwT5yRqKJUfAM8JXNmThZWO8zG n/L7c5fsJd9GRF Date: Sat, 21 Feb 2009 11:12:51 +0100 From: "Thomas Schmitt" To: freebsd-ports@freebsd.org References: In-Reply-To: Message-Id: <102727491131834@212.46.126.165> X-Y-GMX-Trusted: 0 X-FuHaFi: 0.63 Subject: Re: Problem with .so numbering on FreeBSD in contrast to Linux X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Feb 2009 10:12:34 -0000 Hi, it looks like the problem is indeed in ltmain.sh of my source packages. The decisive code piece is not the one from my last mail but this freebsd-elf) major=".$current" versuffix=".$current"; ;; which i replaced by this (learned from case linux) freebsd-elf) major=.`expr $current - $age` versuffix="$major.$age" ;; Input parameters are: current=31, age=27, revision=0. So this now leads to installation of libburn.so.4.27 which i believe complies to policies-shlib.html. Next questions: Is freebsd-aout of any importance nowadays ? Is there a reason known why i should keep the cumbersome increment of major in that case ? freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; Have a nice day :) Thomas