Delete vague Ubuntu-specific properties.
[spectral-waterfall.git] / configure.ac
blobef8397741ae81b944397ad33a2e1d87ffa89054f
1 AC_PREREQ([2.67])
2 AC_INIT([waterfall], [0.0.0], [bernd.jendrissek@gmail.com])
3 AM_INIT_AUTOMAKE([foreign])
4 AC_CONFIG_SRCDIR([waterfall.c])
5 AC_CONFIG_HEADERS([config.h])
7 # Checks for programs.
8 AC_PROG_CC
10 # Checks for libraries.
11 PKG_CHECK_MODULES([GTK], [gtk+-2.0])
12 AC_CHECK_LIB([m], [hypot])
13 AC_CHECK_LIB([fftw3], [fftw_execute], [], [AC_MSG_ERROR([You need to install FFTW])])
15 # Checks for header files.
17 # Checks for typedefs, structures, and compiler characteristics.
19 # Checks for library functions.
21 AC_CONFIG_FILES([Makefile])
22 AC_OUTPUT