From 4377ba611b05659716456502975c738870428864 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 25 Jan 2013 20:05:12 -0500 Subject: [PATCH] Bump configure.ac to version 0.0.4. Add -Wall -Werror to the automake command line. Add the test suite to Makefile.am (will generate a `make check` target). --- Makefile.am | 1 + autogen.sh | 2 +- configure.ac | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 6f455d7..5ba858c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,3 +1,4 @@ SUBDIRS = src EXTRA_DIST = doc run-tests.sh man_MANS = doc/man/apply-default-acl.1 +TESTS = run-tests.sh diff --git a/autogen.sh b/autogen.sh index 76fa304..cabc6bd 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ # Regenerate the junk that autotools wants to have around. aclocal -automake --foreign --add-missing +automake --foreign --add-missing -Wall -Werror autoconf diff --git a/configure.ac b/configure.ac index 2df766b..0ec9c63 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([apply-default-acl], [0.0.3], [michael@orlitzky.com]) +AC_INIT([apply-default-acl], [0.0.4], [michael@orlitzky.com]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/apply-default-acl.c]) AC_CONFIG_FILES([Makefile src/Makefile]) -- 2.43.2