tts/configure.ac
2014-01-06 09:55:45 +00:00

16 lines
320 B
Text

AC_PREREQ([2.69])
AC_INIT([RT/TTS], [1.77-DEV], [felicity@loreley.flyingparchment.org.uk])
AC_CONFIG_SRCDIR([tts.c])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
AC_PROG_INSTALL
AX_WITH_CURSES
oLIBS="$LIBS"
LIBS="$LIBS $CURSES_LIB"
AC_CHECK_FUNCS([use_default_colors])
LIBS="$oLIBS"
AC_CONFIG_FILES([Makefile])
AC_OUTPUT