summaryrefslogtreecommitdiff
path: root/configure.ac
blob: c9972eec139d4951cc10d6f504d99588e0ae1c6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
AC_INIT([leqm-nrt], [0.18], [luca.trisciani@dcp-werkstatt.ch])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
	Makefile
	src/Makefile
])
AC_CHECK_HEADERS([stdlib.h nistd.h stdio.h math.h sndfile.h unistd.h pthread.h string.h time.h ctype.h iso646.h])

AC_FUNC_MALLOC
AC_CHECK_FUNCS([clock_gettime memset powf])

AC_OUTPUT