From: thib Date: Thu, 29 Aug 2002 17:32:49 +0000 (+0000) Subject: added library xnet (networking lib under solaris) X-Git-Tag: ver1564~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b947a9ae70377473a17636fa7e814641befc298;p=fcron added library xnet (networking lib under solaris) --- diff --git a/config.h.in b/config.h.in index c4d3c00..bcd2067 100644 --- a/config.h.in +++ b/config.h.in @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: config.h.in,v 1.44 2002-08-25 17:26:45 thib Exp $ */ + /* $Id: config.h.in,v 1.45 2002-08-29 17:34:14 thib Exp $ */ /* *********************************************************** */ @@ -378,3 +378,6 @@ /* Define if you have the shadow library (-lshadow or included in c library). */ #undef HAVE_LIBSHADOW + +/* Define if you have the xnet library (-lxnet). */ +#undef HAVE_LIBXNET diff --git a/configure.in b/configure.in index 8d44b7d..aeaa79f 100644 --- a/configure.in +++ b/configure.in @@ -58,6 +58,7 @@ AC_FUNC_MEMCMP AC_TYPE_SIGNAL AC_FUNC_STRFTIME AC_FUNC_WAIT3 +AC_CHECK_LIB(xnet, shutdown) AC_CHECK_FUNC(getloadavg, [getloadavg=1], [getloadavg=0]) AC_CHECK_LIB(kstat, kstat_open, [kstat=1], [kstat=0]) if test $getloadavg -eq 1; then