dnl Process this file with autoconf to produce a configure script. AC_INIT(quota.c) AC_PROG_CC AC_PROG_INSTALL AC_CANONICAL_HOST case $host_os in solaris*) AC_DEFINE(SOLARIS) ;; irix*) AC_DEFINE(IRIX) ;; netbsd*) AC_DEFINE(NETBSD) ;; linux*) AC_DEFINE(LINUX) ;; osf*) AC_DEFINE(OSF) ;; *) AC_MSG_ERROR(Unknown operating system) ;; esac AC_CHECK_HEADERS(rpc/clnt_soc.h) AC_CHECK_LIB(rpcsvc, xdr_getquota_rslt, :, RQUOTA_OBJS=rquota_xdr.o RQUOTA_JUNK="rquota.x rquota_xdr.c rquota.h rquota_clnt.c rquota_svc.c") AC_SUBST(RQUOTA_OBJS) AC_SUBST(RQUOTA_JUNK) AC_MSG_CHECKING(if struct dqblk refers to inodes or files) AC_TRY_COMPILE([#include "quota.h"],[struct dqblk dqb; dqb.dqb_curinodes = 1; ], [AC_MSG_RESULT(inodes) AC_DEFINE(DQBLK_USES_INODES)], AC_MSG_RESULT(files)) AC_MSG_CHECKING(name of struct dqblk block time limit field) AC_TRY_COMPILE([#include "quota.h"],[struct dqblk dqb; dqb.dqb_btime = 1; ], [AC_MSG_RESULT(dqb_btime) AC_DEFINE(DQBLK_USES_TIME)], AC_MSG_RESULT(dqb_btimelimit)) AC_MSG_CHECKING(for gqr_status in struct getquota_rslt) AC_TRY_COMPILE([ #include #ifdef HAVE_RPC_CLNT_SOC_H #include #endif #include #include ], [struct getquota_rslt gqr; gqr.gqr_status = Q_OK;], [AC_MSG_RESULT(yes) AC_DEFINE(GQR_RQUOTA_USES_GQR_STATUS)], AC_MSG_RESULT(no)) AC_MSG_CHECKING(for gqr_rquota in struct getquota_rslt) AC_TRY_COMPILE([ #include #ifdef HAVE_RPC_CLNT_SOC_H #include #endif #include #include ], [struct getquota_rslt gqr; gqr.gqr_rquota.rq_bsize = 1;], [AC_MSG_RESULT(yes) AC_DEFINE(GQR_RQUOTA_USES_GQR_RQUOTA)], AC_MSG_RESULT(no)) ATHENA_UTIL_COM_ERR ATHENA_AFS_REQUIRED ATHENA_KRB4_REQUIRED ATHENA_HESIOD_REQUIRED AC_OUTPUT(Makefile)