Fix an issue where the pattern doesn't advance,
[quincer.git] / configure.ac
blobcf54896b97d0264e8d769cdc3f35ca450c581d54
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
4 AC_PREREQ([2.69])
5 AC_INIT([quincer], [0.1], [erikmack@gmail.com])
6 AC_CONFIG_SRCDIR([src/main.c])
7 AC_CONFIG_HEADERS([config.h])
8 AM_INIT_AUTOMAKE([-Wall -Werror foreign])
10 # Checks for programs.
11 AC_PROG_CC
12 AM_PROG_LEX
13 AC_PROG_RANLIB
14 AM_PROG_AR
16 AC_CONFIG_FILES([
17   Makefile
18   src/Makefile
19   test/Makefile
22 # Checks for libraries.
23 AC_CHECK_LIB(jack,jack_info)
25 # Checks for header files.
26 AC_CHECK_HEADERS([jack/jack.h])
28 # Checks for typedefs, structures, and compiler characteristics.
30 # Checks for library functions.
32 AC_OUTPUT