summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 47eca930aa8e5d430e91486b7dd26dc25e099e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
AC_INIT([latency], [1.3], [freddy77@gmail.com])
AM_INIT_AUTOMAKE([serial-tests -Wall -Werror foreign])
AC_PROG_CC
AM_PROG_AR
AC_PROG_RANLIB
AC_CONFIG_HEADERS([config.h])
AC_CHECK_MEMBERS(
	[struct tcphdr.th_sum, struct tcphdr.check, struct udphdr.uh_sum, struct udphdr.check],
	[], [],
	[[#include <netinet/udp.h>
#include <netinet/tcp.h>]])
AC_CONFIG_FILES([Makefile tests/Makefile latency.spec])
AC_OUTPUT