1 # libmodbus package version number, (as distinct from shared library version)
2 # An odd micro number indicates in-progress development from Git
3 # An even micro number indicates a released version
5 # Making a point release:
6 # - increase libmodbus_version_micro to the next even number
9 # - increase libmodbus_version_minor to the next odd number
11 # Take care to update the libtool versioning when required (LIBMODBUS_LD_*).
12 # http://www.gnu.org/software/libtool/manual/html_node/Libtool-versioning.html
14 m4_define([libmodbus_version_major], [3])
15 m4_define([libmodbus_version_minor], [1])
16 m4_define([libmodbus_version_micro], [6])
18 m4_define([libmodbus_release_status],
19 [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot], [release])])
21 m4_define([libmodbus_version],
22 [libmodbus_version_major.libmodbus_version_minor.libmodbus_version_micro])
27 [https://github.com/stephane/libmodbus/issues],
29 [http://libmodbus.org/])
30 AC_CONFIG_SRCDIR([src/modbus.c])
31 AC_CONFIG_AUX_DIR([build-aux])
32 AM_INIT_AUTOMAKE([check-news foreign 1.11 -Wall -Wno-portability silent-rules tar-pax subdir-objects])
34 AC_USE_SYSTEM_EXTENSIONS
36 AC_CONFIG_MACRO_DIR([m4])
37 AM_SILENT_RULES([yes])
39 LIBMODBUS_VERSION_MAJOR=libmodbus_version_major
40 LIBMODBUS_VERSION_MINOR=libmodbus_version_minor
41 LIBMODBUS_VERSION_MICRO=libmodbus_version_micro
42 LIBMODBUS_VERSION=libmodbus_version
43 AC_SUBST(LIBMODBUS_VERSION_MAJOR)
44 AC_SUBST(LIBMODBUS_VERSION_MINOR)
45 AC_SUBST(LIBMODBUS_VERSION_MICRO)
46 AC_SUBST(LIBMODBUS_VERSION)
49 # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
50 LIBMODBUS_LD_CURRENT=6
51 LIBMODBUS_LD_REVISION=0
53 LIBMODBUS_LT_VERSION_INFO=$LIBMODBUS_LD_CURRENT:$LIBMODBUS_LD_REVISION:$LIBMODBUS_LD_AGE
54 AC_SUBST(LIBMODBUS_LT_VERSION_INFO)
73 AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "true")
74 AM_CONDITIONAL(OS_QNX, test "$os_qnx" = "true")
76 LT_INIT([disable-static win32-dll pic-only])
97 # Check whether to build docs / install man pages
98 AC_LIBMODBUS_CHECK_BUILD_DOC
100 # Cygwin defines IPTOS_LOWDELAY but can't handle that flag so it's necessary to
101 # workaround that problem and Cygwin doesn't define MSG_DONTWAIT.
102 AC_CHECK_DECLS([__CYGWIN__])
104 # Checks for library functions.
105 AC_CHECK_FUNCS([accept4 getaddrinfo gettimeofday inet_ntoa select socket strerror strlcpy])
107 # Required for MinGW with GCC v4.8.1 on Win7
108 AC_DEFINE(WINVER, 0x0501, _)
124 if test "$os_cygwin" = "false"; then
125 # Required for getaddrinfo (TCP IP - IPv6)
126 AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
127 if test "x$HAVE_WINSOCK2_H" = "xyes"; then
128 LIBS="$LIBS -lws2_32"
133 # Check for RS485 support (Linux kernel version 2.6.28+)
134 AC_CHECK_DECLS([TIOCSRS485], [], [], [[#include <sys/ioctl.h>]])
135 # Check for RTS flags
136 AC_CHECK_DECLS([TIOCM_RTS], [], [], [[#include <sys/ioctl.h>]])
138 # Wtype-limits is not supported by gcc 4.2 (default on recent Mac OS X)
140 -Wmissing-declarations -Wmissing-prototypes \
141 -Wnested-externs -Wpointer-arith \
142 -Wpointer-arith -Wsign-compare -Wchar-subscripts \
143 -Wstrict-prototypes -Wshadow \
145 AC_SUBST([my_CFLAGS])
149 AS_HELP_STRING([--disable-tests],
150 [Build tests (default: yes)]),,
152 AM_CONDITIONAL(BUILD_TESTS, [test $enable_tests != no])
154 AC_CONFIG_HEADERS([config.h tests/unit-test.h])
159 src/win32/modbus.dll.manifest
171 sysconfdir: ${sysconfdir}
173 includedir: ${includedir}
179 documentation: ${ac_libmodbus_build_doc}
180 tests: ${enable_tests}