diff options
author | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2020-08-31 12:25:08 +0000 |
---|---|---|
committer | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2020-08-31 12:25:08 +0000 |
commit | 63fb19083cb623b54a9aacfff9f5f30f70fe041b (patch) | |
tree | 63dd39490ae111b69a48989fc021f87f01fb2433 /archivers/xarchiver/files/patch-src_tar.c | |
parent | Fix build ("ld: error: duplicate symbol: RAM"). (diff) |
- Update to 0.5.4.15
- Default GTK version to gtk3 to match the version used by xfce
- Remove the GTK version from COMMENT
- This version also fixes the build with clang11
Submitted by: woodsb02
Differential Revision: D25520
Diffstat (limited to 'archivers/xarchiver/files/patch-src_tar.c')
-rw-r--r-- | archivers/xarchiver/files/patch-src_tar.c | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/archivers/xarchiver/files/patch-src_tar.c b/archivers/xarchiver/files/patch-src_tar.c deleted file mode 100644 index 3722360be86b..000000000000 --- a/archivers/xarchiver/files/patch-src_tar.c +++ /dev/null @@ -1,56 +0,0 @@ ---- src/tar.c.orig 2016-07-19 21:54:07 UTC -+++ src/tar.c -@@ -334,7 +334,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else -@@ -353,7 +353,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else -@@ -372,7 +372,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else -@@ -391,7 +391,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else -@@ -410,7 +410,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else -@@ -429,7 +429,7 @@ gboolean xa_tar_extract(XArchive *archiv - #else - archive->overwrite ? " --overwrite" : " --keep-old-files", - #endif -- archive->tar_touch ? " --touch" : "", -+ archive->tar_touch ? " -m" : "", - " -C ",archive->extraction_path," ",names->str,NULL); - } - else |