summaryrefslogtreecommitdiff
path: root/archivers/p7zip/patches
diff options
context:
space:
mode:
authorwiz <wiz>2005-02-07 14:11:26 +0000
committerwiz <wiz>2005-02-07 14:11:26 +0000
commit7b882776c9d6f0ff510e93215ce9e7a2cac74e7e (patch)
treed0ef4ed737377699a5f4e6dcce7fa024156f65c3 /archivers/p7zip/patches
parent12955721650e10fdcd93fc162f23f7bb63265ae9 (diff)
downloadpkgsrc-7b882776c9d6f0ff510e93215ce9e7a2cac74e7e.tar.gz
Update to 4.14.01:
Version 4.14.01 =============== - huge speed up for multi CPUs machines (Thanks to loderunner - http://sourceforge.net/users/loderunner/). - some code cleanup - Fix problems with link files or directories. - "7z a dummy -tgzip -so Doc.txt > archive.gz" now works. - in the messages, the path separator is now '/' instead of '\'. Version 4.14 ============ - From Windows version of 7-zip 4.14 : - STL using was reduced - 7za now supports Split(001) archives - "7za | more" now works - Bugs item #1093095 : Usage banner now says "7za" (instead of "7z") when the binary is "7za" - use of AString instead of std::string (no more need of #include <string>") - makefile.linux_gcc_2.95_no_need_for_libstdc added to build 7za for the p7zip*_bin.tar.bz2 package. 7za provided by p7zip*_bin.tar.bz2 is build on Debian 3.0 with gcc 2.95.4 and should now find the locale on all kinds of Linux (Debian, Fedora, Mandrake, ...).
Diffstat (limited to 'archivers/p7zip/patches')
-rw-r--r--archivers/p7zip/patches/patch-aa4
-rw-r--r--archivers/p7zip/patches/patch-ab8
2 files changed, 6 insertions, 6 deletions
diff --git a/archivers/p7zip/patches/patch-aa b/archivers/p7zip/patches/patch-aa
index 37e9cd7313b..ebf224d9d36 100644
--- a/archivers/p7zip/patches/patch-aa
+++ b/archivers/p7zip/patches/patch-aa
@@ -1,6 +1,6 @@
-$NetBSD: patch-aa,v 1.4 2004/12/26 02:43:38 wiz Exp $
+$NetBSD: patch-aa,v 1.5 2005/02/07 14:13:29 wiz Exp $
---- makefile.machine.orig 2004-12-03 22:00:37.000000000 +0100
+--- makefile.machine.orig 2005-01-23 16:18:54.000000000 +0100
+++ makefile.machine
@@ -1,8 +1,7 @@
diff --git a/archivers/p7zip/patches/patch-ab b/archivers/p7zip/patches/patch-ab
index 2d9346a5b9c..273a88a2cb8 100644
--- a/archivers/p7zip/patches/patch-ab
+++ b/archivers/p7zip/patches/patch-ab
@@ -1,11 +1,11 @@
-$NetBSD: patch-ab,v 1.2 2004/11/23 14:57:52 wiz Exp $
+$NetBSD: patch-ab,v 1.3 2005/02/07 14:13:29 wiz Exp $
---- myWindows/myFindFile.cpp.orig 2004-11-11 21:03:42.000000000 +0100
+--- myWindows/myFindFile.cpp.orig 2005-01-17 00:16:56.000000000 +0100
+++ myWindows/myFindFile.cpp
-@@ -146,7 +146,8 @@ extern "C" HANDLE WINAPI FindFirstFileA(
+@@ -197,7 +197,8 @@ extern "C" HANDLE WINAPI FindFirstFileA(
}
}
- TRACEN((printf("FindFirstFileA : closedir(dirp=%p)\n",retour->dirp)))
+ TRACEN((printf("FindFirstFileA : closedir-2(dirp=%p)\n",retour->dirp)))
- closedir(retour->dirp);
+ if (retour->dirp)
+ closedir(retour->dirp);