From 7f130986437d66922072518ff340faca468a1e58 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 2 Mar 2018 09:14:35 -0500 Subject: [PATCH] autotools: bump the package and library versions to v0.2.0 and v1.0.0. Since the apply_default_acl_ex() function has been removed from the public API, a new libadacl.so.1 is needed. --- configure.ac | 2 +- src/Makefile.am | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 52ab720..2bc57eb 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.68]) -AC_INIT([apply-default-acl], [0.1.5], [michael@orlitzky.com]) +AC_INIT([apply-default-acl], [0.2.0], [michael@orlitzky.com]) AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz]) AC_CONFIG_SRCDIR([src/apply-default-acl.c]) AC_CONFIG_FILES([Makefile src/Makefile]) diff --git a/src/Makefile.am b/src/Makefile.am index dd95ec1..0aa6054 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,5 +3,8 @@ libadacl_la_SOURCES = libadacl.c libadacl.h libadacl_la_LIBADD = -lacl include_HEADERS = libadacl.h +# The apply_default_acl_ex() function was dropped in v0.2.0. +libadacl_la_LDFLAGS = -version-info 1:0:0 + bin_PROGRAMS = apply-default-acl apply_default_acl_LDADD = libadacl.la -- 2.43.2