ckpass Code
Status: Alpha
Brought to you by:
hnc
# # configure.in # # This file is part of the ckpass project. # # Copyright (C) 2009 Heath N. Caldwell <hncaldwell@gmail.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # AC_PREREQ(2.59) AC_INIT([ckpass], [0.1], [hncaldwell@gmail.com]) AM_INIT_AUTOMAKE([1.12 foreign no-define]) 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