added Makefile
[leqm-nrt.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3
4 AC_INIT([leqm-nrt], [0.17], [luca.trisciani@dcp-werkstatt.ch])
5 AC_CONFIG_SRCDIR([src])
6 AC_CONFIG_AUX_DIR([build-aux])
7 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
8 AC_CONFIG_FILES([Makefile src/Makefile])
9 # Checks for programs.
10 AC_PROG_CC
11
12 # Checks for libraries.
13
14 # Checks for header files.
15 AC_CHECK_HEADERS([stdlib.h unistd.h stdio.h math.h sndfile.h unistd.h pthread.h string.h time.h ctype.h])
16
17 # Checks for typedefs, structures, and compiler characteristics.
18
19 # Checks for library functions.
20 AC_FUNC_MALLOC
21 AC_CHECK_FUNCS([clock_gettime memset])
22
23 AC_OUTPUT