configure.ac 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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
  4. #
  5. # Making a point release:
  6. # - increase libmodbus_version_micro to the next even number
  7. #
  8. # After the release:
  9. # - increase libmodbus_version_minor to the next odd number
  10. #
  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
  13. #
  14. m4_define([libmodbus_version_major], [3])
  15. m4_define([libmodbus_version_minor], [0])
  16. m4_define([libmodbus_version_micro], [0])
  17. m4_define([libmodbus_release_status],
  18. [m4_if(m4_eval(libmodbus_version_minor % 2), [1], [snapshot],
  19. [release])])
  20. m4_define([libmodbus_version],
  21. [libmodbus_version_major.libmodbus_version_minor.libmodbus_version_micro])
  22. AC_PREREQ([2.63])
  23. AC_INIT([libmodbus],[libmodbus_version],
  24. [https://github.com/stephane/libmodbus/issues])
  25. AC_CONFIG_SRCDIR([src/modbus.c])
  26. AC_CONFIG_HEADERS([config.h])
  27. AM_INIT_AUTOMAKE([foreign])
  28. # enable nice build output on automake1.11
  29. m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
  30. LIBMODBUS_VERSION_MAJOR=libmodbus_version_major
  31. LIBMODBUS_VERSION_MINOR=libmodbus_version_minor
  32. LIBMODBUS_VERSION_MICRO=libmodbus_version_micro
  33. LIBMODBUS_VERSION=libmodbus_version
  34. AC_SUBST(LIBMODBUS_VERSION_MAJOR)
  35. AC_SUBST(LIBMODBUS_VERSION_MINOR)
  36. AC_SUBST(LIBMODBUS_VERSION_MICRO)
  37. AC_SUBST(LIBMODBUS_VERSION)
  38. # ABI version
  39. # http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
  40. LIBMODBUS_LD_CURRENT=5
  41. LIBMODBUS_LD_REVISION=0
  42. LIBMODBUS_LD_AGE=0
  43. LIBMODBUS_LT_VERSION_INFO=$LIBMODBUS_LD_CURRENT:$LIBMODBUS_LD_REVISION:$LIBMODBUS_LD_AGE
  44. AC_SUBST(LIBMODBUS_LT_VERSION_INFO)
  45. AC_CANONICAL_HOST
  46. # Check whether we are building for Win32
  47. os_win32="false"
  48. case "${host_os}" in
  49. *mingw32*)
  50. os_win32="true"
  51. ;;
  52. esac
  53. AM_CONDITIONAL(OS_WIN32, test "$os_win32" = "true")
  54. # Checks for programs.
  55. AC_PROG_CC
  56. AC_PROG_CXX
  57. AC_PROG_MAKE_SET
  58. LT_INIT([disable-static win32-dll])
  59. AC_CHECK_HEADERS([ \
  60. termios.h \
  61. sys/time.h \
  62. time.h \
  63. unistd.h \
  64. errno.h \
  65. limits.h \
  66. fcntl.h \
  67. sys/types.h \
  68. sys/socket.h \
  69. sys/ioctl.h \
  70. netinet/in.h \
  71. netinet/tcp.h \
  72. arpa/inet.h \
  73. netdb.h \
  74. linux/serial.h \
  75. ])
  76. # Check whether to build docs / install man pages
  77. AC_LIBMODBUS_CHECK_DOC_BUILD
  78. # Checks for header files.
  79. AC_HEADER_STDC
  80. # Checks for typedefs, structures, and compiler characteristics.
  81. AC_C_CONST
  82. AC_TYPE_SIZE_T
  83. AC_HEADER_TIME
  84. # AC_TYPE_UINT*_T: not supported by autoconf-2.59 of CentOS 5.3
  85. # AC_TYPE_UINT16_T
  86. # AC_TYPE_UINT32_T
  87. # AC_TYPE_UINT8_T
  88. # Cygwin defines IPTOS_LOWDELAY but can't handle that flag so it's necessary to
  89. # workaround that problem and Cygwin doesn't define MSG_DONTWAIT.
  90. AC_CHECK_DECLS([__CYGWIN__])
  91. # Checks for library functions.
  92. AC_FUNC_FORK
  93. AC_CHECK_FUNCS([gettimeofday inet_ntoa memset select socket strerror strlcpy getaddrinfo])
  94. # Add -Wall -Werror for GCC if not already there
  95. if test "x$GCC" = "xyes"; then
  96. case " $CFLAGS " in
  97. *[[\ \ ]]-Wall[[\ \ ]]*) ;;
  98. *) CFLAGS="$CFLAGS -Wall" ;;
  99. esac
  100. fi
  101. if test "x$GCC" = "xyes"; then
  102. case " $CFLAGS " in
  103. *[[\ \ ]]-Werror[[\ \ ]]*) ;;
  104. *) CFLAGS="$CFLAGS -Werror" ;;
  105. esac
  106. fi
  107. # Required for getaddrinfo (TCP PI - IPv6)
  108. AC_CHECK_HEADERS([winsock2.h], HAVE_WINSOCK2_H=yes)
  109. if test "x$HAVE_WINSOCK2_H" = "xyes"; then
  110. LIBS="$LIBS -lws2_32"
  111. AC_SUBST(LIBS)
  112. fi
  113. # Check for RS485 support (Linux kernel version 2.6.28+)
  114. AC_CHECK_DECLS([TIOCSRS485], [], [], [[#include <sys/ioctl.h>]])
  115. AC_CONFIG_FILES([
  116. Makefile
  117. src/Makefile
  118. src/modbus-version.h
  119. doc/Makefile
  120. tests/Makefile
  121. libmodbus.pc
  122. libmodbus.spec
  123. ])
  124. AC_OUTPUT