#AC_PREREQ([2.65]) AC_INIT([pa-sink-ctl], [0.1], [web2p10@wemelug.de]) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/pa-sink-ctl.c]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile src/Makefile]) # Checks for programs. AC_PROG_CC AC_PROG_INSTALL AC_PROG_MAKE_SET # Checks for libraries. AC_CHECK_LIB([ncurses], [newwin], [CURSES_LIBS=-lncurses], [echo "Error: you need ncurses!"; exit 1]) PKG_CHECK_MODULES(PULSE, [libpulse], [], [echo "Error: you need libpulse!"; exit 1]) AC_SUBST(CURSES_LIBS) AC_SUBST(PULSE_CFLAGS) AC_SUBST(PULSE_LIBS) # Checks for header files. AC_CHECK_HEADERS([stdio.h stdlib.h string.h ncurses.h pulse/pulseaudio.h]) # Checks for typedefs, structures, and compiler characteristics. AC_TYPE_UINT32_T # Checks for library functions. AC_FUNC_REALLOC AC_CHECK_FUNCS([strdup]) AC_OUTPUT