mirror of
https://framagit.org/bortzmeyer/echoping
synced 2024-11-09 01:10:38 +00:00
15 lines
386 B
Plaintext
15 lines
386 B
Plaintext
dnl $Id$
|
|
|
|
m4_include([../../configure-common.ac])
|
|
AM_INIT_AUTOMAKE(foreign)
|
|
AC_CONFIG_HEADERS(config.h)
|
|
|
|
m4_include([../configure-plugins.ac])
|
|
|
|
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)
|
|
|