[go: up one dir, main page]

Menu

[r1]: / configure.in  Maximize  Restore  History

Download this file

16 lines (10 with data), 413 Bytes

AC_PREREQ(2.59)

AC_INIT([ckpass], [0.1], [hncaldwell@gmail.com])

AM_INIT_AUTOMAKE([1.9 foreign])

AC_PROG_CC

AC_CHECK_LIB([c], [main], [], AC_MSG_ERROR(requires libc))
AC_CHECK_LIB([ncurses], [main], [], AC_MSG_ERROR(requires libncurses))
AC_CHECK_LIB([form], [main], [], AC_MSG_ERROR(requires libform))
AC_CHECK_LIB([kpass], [main], [], AC_MSG_ERROR(requires libkpass))

AC_CONFIG_FILES([Makefile])
AC_OUTPUT