~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to macros/quota-check.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2004-01-19 12:43:49 UTC
  • Revision ID: james.westby@ubuntu.com-20040119124349-es563jbp0hk0ae51
Tags: upstream-1.6.4
ImportĀ upstreamĀ versionĀ 1.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
dnl $Id: quota-check.m4,v 1.1 2001/12/01 15:25:54 srittau Exp $
 
2
dnl Autoconf macro to check for quota support
 
3
dnl FIXME: This is in now way complete.
 
4
 
 
5
AC_DEFUN([AC_CHECK_QUOTA], [
 
6
        QUOTA_LIBS=
 
7
        AC_CHECK_LIB(rpcsvc, main, [QUOTA_LIBS=-lrpcsvc])
 
8
        AC_SUBST(QUOTA_LIBS)
 
9
])
 
10