Changed the style of the diff headers (use "patch -p1" now).
[rsync/rsync-patches.git] / xattrs.diff
index e2b5bd2..7f8f60c 100644 (file)
@@ -2,14 +2,12 @@ Depends-On-Patch: acls.diff
 
 After applying this patch, run these commands for a successful build:
 
-    autoconf
-    autoheader
+    ./prepare-source
     ./configure --enable-acl-support --enable-xattr-support
-    make proto
     make
 
---- orig/Makefile.in   2005-11-07 04:31:05
-+++ Makefile.in        2005-11-07 04:38:36
+--- old/Makefile.in
++++ new/Makefile.in
 @@ -27,13 +27,13 @@ VERSION=@VERSION@
  
  HEADERS=byteorder.h config.h errcode.h proto.h rsync.h smb_acls.h lib/pool_alloc.h
@@ -26,8 +24,8 @@ After applying this patch, run these commands for a successful build:
  OBJS3=progress.o pipe.o
  DAEMON_OBJ = params.o loadparm.o clientserver.o access.o connection.o authenticate.o
  popt_OBJS=popt/findme.o  popt/popt.o  popt/poptconfig.o \
---- orig/backup.c      2004-10-06 00:13:09
-+++ backup.c   2005-03-03 01:20:46
+--- old/backup.c
++++ new/backup.c
 @@ -136,6 +136,7 @@ static int make_bak_dir(char *fullpath)
                                do_lchown(fullpath, st.st_uid, st.st_gid);
                                do_chmod(fullpath, st.st_mode);
@@ -52,9 +50,9 @@ After applying this patch, run these commands for a successful build:
        free(file);
  
        if (verbose > 1) {
---- orig/configure.in  2004-08-19 19:53:27
-+++ configure.in       2005-05-12 22:57:53
-@@ -827,6 +827,30 @@ samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_
+--- old/configure.in
++++ new/configure.in
+@@ -810,6 +810,30 @@ samba_cv_HAVE_ACL_GET_PERM_NP=yes,samba_
    AC_MSG_RESULT(no)
  )
  
@@ -85,8 +83,8 @@ After applying this patch, run these commands for a successful build:
  AC_CONFIG_FILES([Makefile lib/dummy zlib/dummy popt/dummy shconfig])
  AC_OUTPUT
  
---- orig/flist.c       2006-01-31 02:37:33
-+++ flist.c    2005-10-16 23:03:04
+--- old/flist.c
++++ new/flist.c
 @@ -969,6 +969,8 @@ static struct file_struct *send_file_nam
                return NULL;
        if (MAKE_ACL(file, fname) < 0)
@@ -124,9 +122,9 @@ After applying this patch, run these commands for a successful build:
  
        if (f >= 0) {
                recv_uid_list(f, flist);
---- orig/generator.c   2006-01-31 19:36:04
-+++ generator.c        2005-05-12 23:21:08
-@@ -907,6 +907,10 @@ static void recv_generator(char *fname, 
+--- old/generator.c
++++ new/generator.c
+@@ -908,6 +908,10 @@ static void recv_generator(char *fname, 
                if (f_out == -1)
                        SET_ACL(fname, file);
  #endif
@@ -137,8 +135,8 @@ After applying this patch, run these commands for a successful build:
                if (delete_during && f_out != -1 && !phase && dry_run < 2
                    && (file->flags & FLAG_DEL_HERE))
                        delete_in_dir(the_file_list, fname, file, &st);
---- orig/lib/sysxattr.c        2005-05-12 23:23:15
-+++ lib/sysxattr.c     2005-05-12 23:23:15
+--- old/lib/sysxattr.c
++++ new/lib/sysxattr.c
 @@ -0,0 +1,41 @@
 +/* Extended attribute support for rsync. */
 +/* This file Copyright (C) 2004 Red Hat, Inc. */
@@ -181,8 +179,8 @@ After applying this patch, run these commands for a successful build:
 +#else
 +
 +#endif /* No xattrs */
---- orig/lib/sysxattr.h        2005-05-12 23:56:31
-+++ lib/sysxattr.h     2005-05-12 23:56:31
+--- old/lib/sysxattr.h
++++ new/lib/sysxattr.h
 @@ -0,0 +1,9 @@
 +#if defined(HAVE_LINUX_XATTRS)
 +
@@ -193,8 +191,8 @@ After applying this patch, run these commands for a successful build:
 +#else
 +
 +#endif /* No xattrs */
---- orig/options.c     2006-02-02 11:45:46
-+++ options.c  2006-01-31 03:16:24
+--- old/options.c
++++ new/options.c
 @@ -45,6 +45,7 @@ int copy_links = 0;
  int preserve_links = 0;
  int preserve_hard_links = 0;
@@ -234,15 +232,17 @@ After applying this patch, run these commands for a successful build:
  
        /* Note that this field may not have type ino_t.  It depends
         * on the complicated interaction between largefile feature
-@@ -300,6 +304,7 @@ void usage(enum logcode F)
-   rprintf(F," -p, --perms                 preserve permissions\n");
-   rprintf(F," -E, --executability         preserve the file's executability\n");
+@@ -302,6 +306,9 @@ void usage(enum logcode F)
+ #ifdef SUPPORT_ACLS
    rprintf(F," -A, --acls                  preserve ACLs (implies --perms)\n");
+ #endif
++#ifdef SUPPORT_XATTRS
 +  rprintf(F," -X, --xattrs                preserve extended attributes (implies --perms)\n");
++#endif
    rprintf(F,"     --chmod=CHMOD           change destination permissions\n");
    rprintf(F," -o, --owner                 preserve owner (super-user only)\n");
    rprintf(F," -g, --group                 preserve group\n");
-@@ -419,6 +424,9 @@ static struct poptOption long_options[] 
+@@ -421,6 +428,9 @@ static struct poptOption long_options[] 
    {"acls",            'A', POPT_ARG_NONE,   0, 'A', 0, 0 },
    {"no-acls",          0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
    {"no-A",             0,  POPT_ARG_VAL,    &preserve_acls, 0, 0, 0 },
@@ -252,9 +252,9 @@ After applying this patch, run these commands for a successful build:
    {"times",           't', POPT_ARG_VAL,    &preserve_times, 1, 0, 0 },
    {"no-times",         0,  POPT_ARG_VAL,    &preserve_times, 0, 0, 0 },
    {"no-t",             0,  POPT_ARG_VAL,    &preserve_times, 0, 0, 0 },
-@@ -1084,6 +1092,17 @@ int parse_arguments(int *argc, const cha
+@@ -1085,6 +1095,17 @@ int parse_arguments(int *argc, const cha
                        return 0;
- #endif /* SUPPORT_ACLS */
+ #endif
  
 +              case 'X':
 +#ifdef SUPPORT_XATTRS
@@ -270,18 +270,20 @@ After applying this patch, run these commands for a successful build:
  
                default:
                        /* A large opt value means that set_refuse_options()
-@@ -1527,6 +1546,8 @@ void server_options(char **args,int *arg
-               argstr[x++] = 'H';
+@@ -1530,6 +1551,10 @@ void server_options(char **args,int *arg
        if (preserve_acls)
                argstr[x++] = 'A';
+ #endif
++#ifdef SUPPORT_XATTRS
 +      if (preserve_xattrs)
 +              argstr[x++] = 'X';
++#endif
        if (preserve_uid)
                argstr[x++] = 'o';
        if (preserve_gid)
---- orig/rsync.c       2006-01-31 19:35:44
-+++ rsync.c    2005-10-16 23:19:27
-@@ -162,12 +162,15 @@ int set_file_attrs(char *fname, struct f
+--- old/rsync.c
++++ new/rsync.c
+@@ -206,12 +206,15 @@ int set_file_attrs(char *fname, struct f
        }
  #endif
  
@@ -300,9 +302,9 @@ After applying this patch, run these commands for a successful build:
        }
  
        if (verbose > 1 && flags & ATTRS_REPORT) {
---- orig/rsync.h       2006-01-31 19:27:00
-+++ rsync.h    2005-10-16 23:19:44
-@@ -688,6 +688,38 @@ struct chmod_mode_struct;
+--- old/rsync.h
++++ new/rsync.h
+@@ -695,6 +695,38 @@ struct chmod_mode_struct;
  #endif /* SUPPORT_ACLS */
  #include "smb_acls.h"
  
@@ -341,8 +343,8 @@ After applying this patch, run these commands for a successful build:
  #include "proto.h"
  
  /* We have replacement versions of these if they're missing. */
---- orig/rsync.yo      2006-01-31 03:14:05
-+++ rsync.yo   2006-01-31 03:16:46
+--- old/rsync.yo
++++ new/rsync.yo
 @@ -318,6 +318,7 @@ to the detailed description below for a 
   -p, --perms                 preserve permissions
   -E, --executability         preserve executability
@@ -351,7 +353,7 @@ After applying this patch, run these commands for a successful build:
       --chmod=CHMOD           change destination permissions
   -o, --owner                 preserve owner (super-user only)
   -g, --group                 preserve group
-@@ -727,6 +728,11 @@ dit(bf(-A, --acls)) This option causes r
+@@ -751,6 +752,11 @@ dit(bf(-A, --acls)) This option causes r
  ACLs to be the same as the source ACLs.  This nonstandard option only
  works if the remote rsync also supports it.  bf(--acls) implies bf(--perms).
  
@@ -363,8 +365,8 @@ After applying this patch, run these commands for a successful build:
  dit(bf(--chmod)) This option tells rsync to apply one or more
  comma-separated "chmod" strings to the permission of the files in the
  transfer.  The resulting value is treated as though it was the permissions
---- orig/xattr.c       2005-10-16 23:25:12
-+++ xattr.c    2005-10-16 23:25:12
+--- old/xattr.c
++++ new/xattr.c
 @@ -0,0 +1,540 @@
 +/* Extended Attribute support for rsync */
 +/* Copyright (C) 2004 Red Hat, Inc */