echoping/SRC/plugins/whois/configure.ac

20 lines
442 B
Plaintext
Raw Normal View History

dnl $Id$
AC_INIT(whois.c)
AM_INIT_AUTOMAKE(example, 6.0-BETA)
AC_CONFIG_HEADERS(config.h)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
m4_include([../configure-plugins.ac])
2004-05-27 12:12:06 +00:00
WHOIS_BUILD=1
AC_CHECK_FUNCS(poptGetContext,,
[AC_CHECK_LIB(popt,poptGetContext,,[AC_MSG_WARN([No popt development environment found, not building this plugin]) && WHOIS_BUILD=0])])
AC_SUBST(WHOIS_BUILD,$WHOIS_BUILD)
AC_OUTPUT(Makefile)