From daf9b26398d5673c474bce3fde71be2b6b40a2fc Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 2 Mar 2018 15:20:27 -0500 Subject: [PATCH] autotools: bump the package and library versions to v0.3.0 and v2.0.0. The apply_default_acl() function now takes a third "recursive" parameter, so the library gets a new version. --- configure.ac | 2 +- src/Makefile.am | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 2bc57eb..9f6d1ef 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ([2.68]) -AC_INIT([apply-default-acl], [0.2.0], [michael@orlitzky.com]) +AC_INIT([apply-default-acl], [0.3.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 0aa6054..94a4c1d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -3,8 +3,9 @@ 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 +# The apply_default_acl_ex() function was dropped in v0.2.0, +# and the "recursive" parameter was added in v0.3.0. +libadacl_la_LDFLAGS = -version-info 2:0:0 bin_PROGRAMS = apply-default-acl apply_default_acl_LDADD = libadacl.la -- 2.43.2