From 78377d73f9347b19241de1f62885d7caf9142db0 Mon Sep 17 00:00:00 2001 From: Arjen Baart Date: Sat, 26 Oct 2019 10:28:08 +0200 Subject: [PATCH] Library version 0.2 --- AUTHORS | 1 + NEWS | 1 + configure.ac | 4 ++-- src/Makefile.am | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 AUTHORS create mode 100644 NEWS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..18a8088 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Arjen Baart diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..ae51f8d --- /dev/null +++ b/NEWS @@ -0,0 +1 @@ +no news diff --git a/configure.ac b/configure.ac index 3c53ac7..1d282cb 100644 --- a/configure.ac +++ b/configure.ac @@ -3,10 +3,10 @@ AC_PREREQ([2.69]) AC_INIT([libACL], [0.2], [arjen@androemda.nl]) -AM_INIT_AUTOMAKE([-Wall foreign]) +AC_CONFIG_SRCDIR([src/date.cpp]) +AM_INIT_AUTOMAKE AC_CONFIG_MACRO_DIRS([m4]) AC_CONFIG_FILES([Makefile src/Makefile test/Makefile doc/Makefile]) -AC_CONFIG_SRCDIR([src/date.cpp]) AC_CONFIG_HEADERS([config.h]) # Checks for programs. diff --git a/src/Makefile.am b/src/Makefile.am index 7e1d3cc..ba6837c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -2,5 +2,6 @@ lib_LTLIBRARIES = libACL.la libACL_la_SOURCES = string.cpp regex.cpp date.cpp parsedate.c dateyacc.y datelex.c \ hour.cpp utc.cpp +libACL_la_LDFLAGS = -version-info 0:2:0 include_HEADERS = String.h date.h -- 2.20.1