diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-05-09 09:31:37 -0300 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-05-09 15:04:40 +0200 |
commit | c94a5431372e35221ba54b462c6d160dac03cdb5 (patch) | |
tree | d285a4099a168f2b0581152f9d0f8d7b5dfb37bf /package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch | |
parent | 19d02733368b1bd30da03ccdfff4eefa98b6da82 (diff) | |
download | buildroot-c94a5431372e35221ba54b462c6d160dac03cdb5.tar.gz buildroot-c94a5431372e35221ba54b462c6d160dac03cdb5.zip |
samba4: update to upstream patches
Update the package to use patches that have been applied upstream and
update their status comment accordingly.
f_fsid checks have been fixed via upstream patch that allows the cache
to work properly on the result.
Builtin heimdal tools can be worked around via the --bundled-libraries
option to disable those components (even if they are not libraries it
can be done that way).
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch')
-rw-r--r-- | package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch b/package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch deleted file mode 100644 index 9dc3185e3c..0000000000 --- a/package/samba4/samba4-0002-build-don-t-execute-statfs-and-f_fsid-checks.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 5e0bafd6504916dd7de5b1ae90e7253d11498435 Mon Sep 17 00:00:00 2001 -From: Gustavo Zacarias <gustavo@zacarias.com.ar> -Date: Mon, 20 Jan 2014 10:17:19 -0300 -Subject: [PATCH 1/5] build: don't execute statfs and f_fsid checks - -There's no need to execute the statfs and statfs.f_fsid checks, the -return value is of no consequence since it's undefined in some -platforms and prevents cross-compiling. - -Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> ---- - source3/wscript | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/source3/wscript b/source3/wscript -index 4fe49fa..e81a47b 100644 ---- a/source3/wscript -+++ b/source3/wscript -@@ -476,8 +476,7 @@ return acl_get_perm_np(permset_d, perm); - conf.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);', - 'HAVE_STATFS_F_FSID', - msg="vfs_fileid: checking for statfs() and struct statfs.f_fsid", -- headers='sys/types.h sys/statfs.h', -- execute=True) -+ headers='sys/types.h sys/statfs.h') - - if conf.CONFIG_SET('HAVE_FALLOCATE'): - conf.CHECK_CODE(''' --- -1.8.3.2 - |