[go: up one dir, main page]

Menu

Diff of /configure.in [000000] .. [r1]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/configure.in
@@ -0,0 +1,15 @@
+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