From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- src/plugins/quota/quota-fs.h | 51 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/plugins/quota/quota-fs.h (limited to 'src/plugins/quota/quota-fs.h') diff --git a/src/plugins/quota/quota-fs.h b/src/plugins/quota/quota-fs.h new file mode 100644 index 0000000..8508cdf --- /dev/null +++ b/src/plugins/quota/quota-fs.h @@ -0,0 +1,51 @@ +#ifndef QUOTA_FS_H +#define QUOTA_FS_H + +#if defined (HAVE_STRUCT_DQBLK_CURBLOCKS) || \ + defined (HAVE_STRUCT_DQBLK_CURSPACE) +# define HAVE_FS_QUOTA +#endif + +#ifdef HAVE_QUOTA_OPEN +/* absolute path to avoid confusion with ./quota.h */ +# include "/usr/include/quota.h" /* NetBSD with libquota */ +#endif + +#ifdef HAVE_SYS_QUOTA_H +# include /* Linux, HP-UX */ +#elif defined(HAVE_SYS_FS_UFS_QUOTA_H) +# include /* Solaris */ +#elif defined(HAVE_UFS_UFS_QUOTA_H) +# include /* BSDs */ +#elif defined(HAVE_JFS_QUOTA_H) +# include /* AIX */ +# ifdef HAVE_SYS_FS_QUOTA_COMMON_H +# include /* quotactl() */ +# endif +#else +# undef HAVE_FS_QUOTA +#endif + +#ifdef HAVE_QUOTACTL +# ifdef HAVE_SYS_QUOTA_H +# ifndef _HPUX_SOURCE +# define FS_QUOTA_LINUX +# else +# define FS_QUOTA_HPUX +# endif +# else +# define FS_QUOTA_BSDAIX +# endif +#elif defined (HAVE_Q_QUOTACTL) +# define FS_QUOTA_SOLARIS +#else +# undef HAVE_FS_QUOTA +#endif + +#ifdef HAVE_QUOTA_OPEN /* NetBSD with libquota */ +# define FS_QUOTA_NETBSD +# define HAVE_FS_QUOTA +# undef FS_QUOTA_LINUX /* obtained because we also have */ +#endif + +#endif -- cgit v1.2.3