dnl $Id: afs-check.m4,v 1.2 2003-01-29 00:16:30 srittau Exp $ dnl Autoconf macro to check whether AFS support should be enabled AC_DEFUN([NETATALK_AFS_CHECK], [ AFS_LIBS= AFS_CFLAGS= AC_ARG_ENABLE(afs, [ --enable-afs enable AFS support], [ if test "x$enableval" = "xyes"; then AC_CHECK_LIB(afsauthent, pioctl, , AC_MSG_ERROR([AFS installation not found]) ) AFS_LIBS=-lafsauthent AC_DEFINE(AFS, 1, [Define if AFS should be used]) fi ] ) AC_SUBST(AFS_LIBS) AC_SUBST(AFS_CFLAGS) ])