# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT([mq], [1.0], []) AC_CONFIG_SRCDIR([src/mq.c]) AC_CONFIG_HEADERS([config.h]) AM_INIT_AUTOMAKE # Checks for programs. AC_PROG_CC # Checks for libraries. # Checks for header files. AC_CHECK_HEADERS([stdint.h stdlib.h string.h sys/time.h fcntl.h sys/stat.h mqueue.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_MODE_T AC_TYPE_UINT8_T # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([gettimeofday localtime_r strerror mq_open]) AC_OUTPUT(Makefile src/Makefile)