1 dnl 2 dnl Copyright (c) 2013 Fujitsu Ltd. 3 dnl Author: DAN LI <li.dan (a] cn.fujitsu.com> 4 dnl 5 dnl This program is free software; you can redistribute it and/or modify 6 dnl it under the terms of the GNU General Public License as published by 7 dnl the Free Software Foundation; either version 2 of the License, or 8 dnl (at your option) any later version. 9 dnl 10 dnl This program is distributed in the hope that it will be useful, 11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of 12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See 13 dnl the GNU General Public License for more details. 14 dnl 15 dnl You should have received a copy of the GNU General Public License 16 dnl along with this program; if not, write to the Free Software 17 dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 18 dnl 19 20 dnl 21 dnl LTP_CHECK_XFS_QUOTACTL 22 dnl ---------------------------- 23 dnl 24 AC_DEFUN([LTP_CHECK_XFS_QUOTACTL],[dnl 25 AC_MSG_CHECKING([for XFS quota (xfs/xqm.h)]) 26 AC_LINK_IFELSE([AC_LANG_SOURCE([ 27 #define _GNU_SOURCE 28 #include <xfs/xqm.h> 29 #include <sys/quota.h> 30 int main(void) { 31 struct fs_quota_stat qstat; 32 return quotactl(QCMD(Q_XGETQSTAT, USRQUOTA), "/dev/null", geteuid(), 33 (caddr_t) &qstat); 34 }])],[has_xfs_quota="yes"]) 35 36 if test "x$has_xfs_quota" = xyes; then 37 AC_DEFINE(HAVE_XFS_QUOTA,1,[Define to 1 if you have xfs quota]) 38 AC_MSG_RESULT(yes) 39 else 40 AC_MSG_RESULT(no) 41 fi 42 ]) 43