diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-09-24 18:02:01 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-09-24 12:24:44 +0200 |
commit | 67230c43db5eb955c89ccc89d8e8d8aca1f35a1c (patch) | |
tree | ae11b06e90a152078aa2340e55c517a433f84da7 | |
parent | 13c28787ad22454ddd19e06ae680b8d5abb986c0 (diff) | |
download | samba-67230c43db5eb955c89ccc89d8e8d8aca1f35a1c.tar.gz samba-67230c43db5eb955c89ccc89d8e8d8aca1f35a1c.tar.bz2 samba-67230c43db5eb955c89ccc89d8e8d8aca1f35a1c.zip |
build: Fix detection of quotas on macos
This is a weird one. While visually OK, the . in sys/types.h was not
made up of the typical ASCII character, so of course did not find
types.h!
Andrew Bartlett
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Mon Sep 24 12:24:45 CEST 2012 on sn-devel-104
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 89e813e414..489b0173e9 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4641,7 +4641,7 @@ if test x"$samba_cv_HAVE_QUOTACTL_4B" = x"yes"; then samba_cv_sysquotas_file="lib/sysquotas_4B.c" AC_CHECK_MEMBERS([struct dqblk.dqb_curbytes], # Darwin bytecount style [ AC_DEFINE([HAVE_STRUCT_DQBLK_DQB_CURBYTES],[1],[darwin style quota bytecount])],, - [#include <sys/typeѕ.h> + [#include <sys/types.h> #include <sys/quota.h>]) fi |