Return-Path: Delivered-To: apmail-activemq-dev-archive@www.apache.org Received: (qmail 26422 invoked from network); 23 Aug 2008 15:17:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 Aug 2008 15:17:13 -0000 Received: (qmail 9609 invoked by uid 500); 23 Aug 2008 15:17:11 -0000 Delivered-To: apmail-activemq-dev-archive@activemq.apache.org Received: (qmail 9588 invoked by uid 500); 23 Aug 2008 15:17:11 -0000 Mailing-List: contact dev-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list dev@activemq.apache.org Received: (qmail 9577 invoked by uid 99); 23 Aug 2008 15:17:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Aug 2008 08:17:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 23 Aug 2008 15:16:22 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id AAA11234C1B4 for ; Sat, 23 Aug 2008 08:16:52 -0700 (PDT) Message-ID: <51806961.1219504612697.JavaMail.jira@brutus> Date: Sat, 23 Aug 2008 08:16:52 -0700 (PDT) From: "Timothy Bish (JIRA)" To: dev@activemq.apache.org Subject: [jira] Updated: (AMQCPP-158) libtool release and version-info arguments need to be set correctly In-Reply-To: <26183517.1197661286891.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/activemq/browse/AMQCPP-158?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Timothy Bish updated AMQCPP-158: -------------------------------- Fix Version/s: 2.3 (was: 2.2.1) > libtool release and version-info arguments need to be set correctly > ------------------------------------------------------------------- > > Key: AMQCPP-158 > URL: https://issues.apache.org/activemq/browse/AMQCPP-158 > Project: ActiveMQ C++ Client > Issue Type: Bug > Affects Versions: 2.1.2 > Environment: Debian > Reporter: Daniel Pocock > Assignee: Nathan Mittler > Fix For: 2.3 > > > When make is invoked, libtool is asked to build the library with this command line: > /bin/sh ../../libtool --tag=CXX --mode=link g++ -ansi -pedantic -W -Wall -fPIC -fstrict-aliasing -Wstrict-aliasing=2 -Wno-long-long -g -O2 -version-info 2:1:2 -release 2.1.2 -o libactivemq-cpp.la -rpath /usr/lib activemq/core/libactivemq_cpp_la-ActiveMQConsumer.lo ........... > Notice the `-release 2.1.2' argument to libtool? Using a unique release number with each build means that applications will only run with one specific build, and no others. > Perhaps `-release 2' might be more appropriate? This would mean that an application that expects version 2.1.1 would still be willing to link with 2.2.0 (for example) at runtime. Alternatively, it may be better to omit the release argument, and just use version-info. > The -version-info argument allows more fine-grained control - however, it is not meant to be written as MAJOR:MINOR:REVISION. The three values mean `version:revision:age', where: > - version = ABI version, an integer that is increment whenever binary compatibility changes > - revision = implementation (this number is incremented when there is a code change that does not impact the binary interface) > - age = how many previous versions are binary compatible, e.g if age = 2, then version, (version - 1) and (version - 2) are all binary compatible - the age value specified for this library (2) suggests that it is binary compatible to the original version (0). > ABI version numbers are not the same as product version numbers. If the product number is 2.1.2, that does not mean the -version-info argument is 2:1:2. > I have created some pages on the wiki to discuss version and packaging issues; these issues need to be agreed upon by the community before a version scheme can be implemented in the build system. > I am willing to work on the details and contribute a patch for this once there has been some consensus on which is the best versioning scheme to adopt and what level of binary compatibility is expected. > Wiki pages: > http://cwiki.apache.org/confluence/display/AMQCPP/ActiveMQ-CPP+product+version+number > http://cwiki.apache.org/confluence/display/AMQCPP/ActiveMQ-CPP%2C+libtool+and+packaging+notes -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.