|
@@ -1,14 +1,48 @@
|
|
-# -*- Autoconf -*-
|
|
|
|
-# Process this file with autoconf to produce a configure script.
|
|
|
|
|
|
+# libmodbus package version number, (as distinct from shared library version)
|
|
|
|
+# An odd micro number indicates in-progress development from Git
|
|
|
|
+# An even micro number indicates a released version
|
|
|
|
+#
|
|
|
|
+# Making a point release:
|
|
|
|
+# - increase mb_version_micro to the next even number
|
|
|
|
+#
|
|
|
|
+# After the release:
|
|
|
|
+# - increase mb_version_minor to the next odd number
|
|
|
|
+#
|
|
|
|
+# mb_version_ld increases at each new minor version because minor versions
|
|
|
|
+# are used to change API/ABI
|
|
|
|
+#
|
|
|
|
+m4_define([mb_version_major], [2])
|
|
|
|
+m4_define([mb_version_minor], [1])
|
|
|
|
+m4_define([mb_version_micro], [1])
|
|
|
|
+
|
|
|
|
+m4_define([mb_release_status],
|
|
|
|
+ [m4_if(m4_eval(mb_version_minor % 2), [1], [snapshot],
|
|
|
|
+ [release])])
|
|
|
|
+
|
|
|
|
+m4_define([mb_version], [mb_version_major.mb_version_minor.mb_version_micro])
|
|
|
|
+m4_define([mb_version_ld], [m4_eval(mb_version_major + mb_version_minor)])
|
|
|
|
|
|
AC_PREREQ(2.63)
|
|
AC_PREREQ(2.63)
|
|
-AC_INIT([libmodbus],[2.1.0],[stephane.raimbault@gmail.com])
|
|
|
|
|
|
+AC_INIT([libmodbus],[mb_version],[stephane.raimbault@gmail.com])
|
|
AC_CONFIG_SRCDIR([modbus/modbus.c])
|
|
AC_CONFIG_SRCDIR([modbus/modbus.c])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
AM_INIT_AUTOMAKE([1.11 foreign])
|
|
AM_INIT_AUTOMAKE([1.11 foreign])
|
|
# enable nice build output on automake1.11
|
|
# enable nice build output on automake1.11
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
|
|
|
|
|
|
|
|
+MB_VERSION_MAJOR=mb_version_major
|
|
|
|
+MB_VERSION_MINOR=mb_version_minor
|
|
|
|
+MB_VERSION_MICRO=mb_version_micro
|
|
|
|
+MB_VERSION=mb_version
|
|
|
|
+AC_SUBST(MB_VERSION_MAJOR)
|
|
|
|
+AC_SUBST(MB_VERSION_MINOR)
|
|
|
|
+AC_SUBST(MB_VERSION_MICRO)
|
|
|
|
+AC_SUBST(MB_VERSION)
|
|
|
|
+
|
|
|
|
+MB_VERSION_LD=mb_version_ld
|
|
|
|
+MB_LT_LDFLAGS="-version-info $MB_VERSION_LD:0:0"
|
|
|
|
+AC_SUBST(MB_LT_LDFLAGS)
|
|
|
|
+
|
|
# Checks for programs.
|
|
# Checks for programs.
|
|
AC_PROG_CC
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_PROG_CXX
|
|
@@ -39,7 +73,8 @@ AC_CHECK_FUNCS([gettimeofday inet_ntoa memset select socket strerror])
|
|
AC_CONFIG_FILES([
|
|
AC_CONFIG_FILES([
|
|
Makefile
|
|
Makefile
|
|
modbus/Makefile
|
|
modbus/Makefile
|
|
|
|
+ modbus/version.h
|
|
tests/Makefile
|
|
tests/Makefile
|
|
- modbus.pc
|
|
|
|
|
|
+ libmodbus.pc
|
|
])
|
|
])
|
|
AC_OUTPUT
|
|
AC_OUTPUT
|