Files
Ikey Doherty 0d0cf2f373 Initial commit of vm-timing-report
Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
2014-07-24 13:30:53 +01:00

22 lines
584 B
Plaintext

AC_INIT([vm-timing-report], 1, [michael.i.doherty@intel.com], [vm-timing-report], [https://github.com/ikeydoherty/vm-timing-report/])
AM_INIT_AUTOMAKE([-Wno-portability no-dist-gzip dist-xz foreign subdir-objects])
AC_PROG_CC
AC_PROG_CC_STDC
LT_PREREQ(2.2)
AC_CONFIG_HEADERS([config.h])
AC_PREFIX_DEFAULT(/usr/local)
AM_SILENT_RULES([yes])
LT_INIT([disable-static])
# Requirements
AC_CHECK_LIB([pthread], [pthread_create])
AC_CHECK_LIB([rt], [clock_gettime])
AC_TYPE_UINT16_T
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_TYPE_UINT8_T
AC_HEADER_STDBOOL
AC_CONFIG_FILES([Makefile])
AC_OUTPUT