From: Michael Orlitzky Date: Fri, 2 Mar 2018 14:14:35 +0000 (-0500) Subject: autotools: bump the package and library versions to v0.2.0 and v1.0.0. X-Git-Tag: v0.2.0 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=refs%2Ftags%2Fv0.2.0 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. --- 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