tamiko      15/05/26 23:41:12

  Added:                tarsync-0.2.1-gcc5.patch
  Log:
  fix compilation with gcc-5.1, bug #548314
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
BD3A97A3)

Revision  Changes    Path
1.1                  app-arch/tarsync/files/tarsync-0.2.1-gcc5.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/tarsync/files/tarsync-0.2.1-gcc5.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/tarsync/files/tarsync-0.2.1-gcc5.patch?rev=1.1&content-type=text/plain

Index: tarsync-0.2.1-gcc5.patch
===================================================================
diff --git a/excludes.c b/excludes.c
index b7c928d..fa43cef 100644
--- a/excludes.c
+++ b/excludes.c
@@ -106,7 +106,7 @@ build_exclude(fnm_exclude **ex_ptr, const char *pattern)
 }
 
 
-inline int
+int
 match_excludes(const char *dir, const char *file, fnm_exclude **excludes)
 {
        char *p;
diff --git a/main.c b/main.c
index 84feed4..2c2da3e 100644
--- a/main.c
+++ b/main.c
@@ -42,8 +42,8 @@ int remove_node(const char *path, struct stat *st);
 int ensure_files_layout(const tar_entry **ttar, const unsigned int ttar_count, 
tar_entry ***missing, 
        unsigned int *missing_count, tar_entry ***existing, unsigned int 
*existing_count,
        fnm_exclude **excludes);
-inline int check_existing_node(const struct dirent *de, const tar_entry *t, 
struct stat *st);
-inline int enforce_owner(const char *path, const tar_entry *t, struct stat 
*st);
+int check_existing_node(const struct dirent *de, const tar_entry *t, struct 
stat *st);
+int enforce_owner(const char *path, const tar_entry *t, struct stat *st);
 int copy_whole_file(cfile *tar_cfh, const tar_entry *ttent);
 
 static int check_mtime = 1;
@@ -669,7 +669,7 @@ recursively_delete_dir(const char *path)
        return ret;
 }
 
-inline int
+int
 check_existing_node(const struct dirent *de, const tar_entry *t, struct stat 
*st)
 {
        int type;
@@ -685,7 +685,7 @@ check_existing_node(const struct dirent *de, const 
tar_entry *t, struct stat *st
        return 0;
 }
 
-inline int
+int
 enforce_owner(const char *path, const tar_entry *t, struct stat *st)
 {
        struct stat st2;
diff --git a/tar.c b/tar.c
index 792ccd4..42dc8e7 100644
--- a/tar.c
+++ b/tar.c
@@ -40,7 +40,7 @@ int check_str_chksum(const char *block)
 
 /* possibly this could be done different, what of endptr of strtol?
    Frankly I worry about strtol trying to go too far and causing a segfault, 
due to tar fields not always having trailing \0 */
-inline unsigned long octal_str2long(const char *string, unsigned int length)
+unsigned long octal_str2long(const char *string, unsigned int length)
 {
        if(string[length]) {
                char *ptr = strndup(string, length);




Reply via email to