Fix up libtool version-info logic

This commit is contained in:
Evan Miller
2020-09-05 10:50:24 -04:00
parent 6e08ad5ae9
commit 9f41e03278
3 changed files with 11 additions and 3 deletions

View File

@@ -1,10 +1,18 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT([mdbtools],[0.8.2],[mdbtools-dev@lists.sourceforge.net])
AC_INIT([mdbtools],[0.9.0-beta],[https://github.com/mdbtools/mdbtools/issues],[],[https://github.com/mdbtools/mdbtools])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_SRCDIR(src/extras/mdb-dump.c)
AM_INIT_AUTOMAKE
MDBTOOLS_VERSION_MAJOR=0
MDBTOOLS_VERSION_MINOR=9
MDBTOOLS_VERSION_MICRO=0
# Update this logic when the major version changes
VERSION_INFO=`expr $MDBTOOLS_VERSION_MINOR - 6`:$MDBTOOLS_VERSION_MICRO
AC_SUBST(VERSION_INFO)
AM_MAINTAINER_MODE([enable])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])