From mboxrd@z Thu Jan  1 00:00:00 1970
Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org)
	by finch.gentoo.org with esmtp (Exim 4.60)
	(envelope-from <gentoo-commits+bounces-368769-garchives=archives.gentoo.org@lists.gentoo.org>)
	id 1QoyrZ-0000Sk-QS
	for garchives@archives.gentoo.org; Thu, 04 Aug 2011 14:25:29 +0000
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D6EEF21C21E;
	Thu,  4 Aug 2011 14:24:47 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	by pigeon.gentoo.org (Postfix) with ESMTP id A7A8A21C21E
	for <gentoo-commits@lists.gentoo.org>; Thu,  4 Aug 2011 14:24:47 +0000 (UTC)
Received: from pelican.gentoo.org (unknown [66.219.59.40])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 220051B4017
	for <gentoo-commits@lists.gentoo.org>; Thu,  4 Aug 2011 14:24:47 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
	by pelican.gentoo.org (Postfix) with ESMTP id 104CB8004B
	for <gentoo-commits@lists.gentoo.org>; Thu,  4 Aug 2011 14:24:46 +0000 (UTC)
From: "Petteri Räty" <betelgeuse@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Petteri Räty" <betelgeuse@gentoo.org>
Message-ID: <98a8eb47739b8b9f1182ec3d2867fa425e10fd1c.betelgeuse@gentoo>
Subject: [gentoo-commits] proj/libbash:master commit in: /
X-VCS-Repository: proj/libbash
X-VCS-Files: Makefile.am configure.ac
X-VCS-Directories: /
X-VCS-Committer: betelgeuse
X-VCS-Committer-Name: Petteri Räty
X-VCS-Revision: 98a8eb47739b8b9f1182ec3d2867fa425e10fd1c
Date: Thu,  4 Aug 2011 14:24:46 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: quoted-printable
X-Archives-Salt: 
X-Archives-Hash: 9d31e7c4dd7be0815e6660ad9cfadfc4

commit:     98a8eb47739b8b9f1182ec3d2867fa425e10fd1c
Author:     Mu Qiao <qiaomuf <AT> gentoo <DOT> org>
AuthorDate: Wed Aug  3 11:01:44 2011 +0000
Commit:     Petteri R=C3=A4ty <betelgeuse <AT> gentoo <DOT> org>
CommitDate: Thu Aug  4 14:15:15 2011 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=3Dproj/libbash.git;a=
=3Dcommit;h=3D98a8eb47

Build: add ABI version

---
 Makefile.am  |    1 +
 configure.ac |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 63cabda..9a11e03 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -287,6 +287,7 @@ libbash_la_CXXFLAGS +=3D -Wconversion -Wsign-conversi=
on
 endif
 libbash_la_CFLAGS =3D $(AM_CFLAGS) -fvisibility=3Dhidden
 libbash_la_LIBADD =3D libparser.la libwalker.la
+libbash_la_LDFLAGS =3D -version-info $(LIBBASH_SO_VERSION)
=20
 EXTRA_DIST =3D bashast/bashast.g \
 			 bashast/libbashWalker.g \

diff --git a/configure.ac b/configure.ac
index c5bbbb1..c05d21d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -24,6 +24,7 @@ AM_INIT_AUTOMAKE([foreign parallel-tests color-tests su=
bdir-objects 1.11])
 AM_SILENT_RULES([yes])
 AC_PROG_CXX
 LT_INIT
+AC_SUBST([LIBBASH_SO_VERSION], [0:0:0])
=20
 AC_ARG_ENABLE([developer],
 			  [AS_HELP_STRING([--enable-developer],[enables various QA checks])])