diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
commit | 220a96f9926788ed531717f78e44fdf1e7ab3b34 (patch) | |
tree | 406f65eea71fabd8cf66c2bd1108ec63f8c349ee /package/davfs2/patches | |
parent | 38af8185ea05a1c5d1abb32a68a025e3b4afa4d6 (diff) |
rework architecture / embedded systems concept
Make configuration of new targets cheap.
Just add a new file in target/arch/sys-enabled/foo.
See other files for syntax. While doing runtime tests
with the new infrastructure I've updated a lot of other
stuff:
- gcc 4.5.2
- uClibc 0.9.32-rc1 (NPTL)
- strongswan, php, miredo, parted, util-linux-ng, e2fsprogs
I promise, this is the last big fat commit this year ;)
Diffstat (limited to 'package/davfs2/patches')
-rw-r--r-- | package/davfs2/patches/patch-src_cache_c | 10 | ||||
-rw-r--r-- | package/davfs2/patches/patch-src_dav_fuse_c | 10 |
2 files changed, 20 insertions, 0 deletions
diff --git a/package/davfs2/patches/patch-src_cache_c b/package/davfs2/patches/patch-src_cache_c new file mode 100644 index 000000000..dd03ed67c --- /dev/null +++ b/package/davfs2/patches/patch-src_cache_c @@ -0,0 +1,10 @@ +--- davfs2-1.4.6.orig/src/cache.c 2009-11-15 11:15:17.000000000 +0100 ++++ davfs2-1.4.6/src/cache.c 2010-12-27 22:02:47.000000000 +0100 +@@ -55,7 +55,6 @@ + #ifdef HAVE_SYS_TYPES_H + #include <sys/types.h> + #endif +-#include <sys/xattr.h> + + #include <ne_alloc.h> + #include <ne_string.h> diff --git a/package/davfs2/patches/patch-src_dav_fuse_c b/package/davfs2/patches/patch-src_dav_fuse_c new file mode 100644 index 000000000..fca0e83f2 --- /dev/null +++ b/package/davfs2/patches/patch-src_dav_fuse_c @@ -0,0 +1,10 @@ +--- davfs2-1.4.6.orig/src/dav_fuse.c 2010-02-16 20:29:49.000000000 +0100 ++++ davfs2-1.4.6/src/dav_fuse.c 2010-12-27 22:02:24.000000000 +0100 +@@ -33,6 +33,7 @@ + #ifdef HAVE_STDINT_H + #include <stdint.h> + #endif ++#include <stdlib.h> + #include <string.h> + #ifdef HAVE_SYSLOG_H + #include <syslog.h> |