diff options
author | wiz <wiz@pkgsrc.org> | 2006-05-30 21:27:07 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-05-30 21:27:07 +0000 |
commit | 96ec9e7eab356f66bf4a213602478c6ed10c20a3 (patch) | |
tree | 210f869f27437e72446457228270b350cee694ad /archivers/unrar/Makefile | |
parent | c42d34de31bf5caa2c382e4ea52995bc5d6ba9be (diff) | |
download | pkgsrc-96ec9e7eab356f66bf4a213602478c6ed10c20a3.tar.gz |
Update to 3.6.4:
diff -r 3.6.3/extract.cpp 3.6.4/extract.cpp
431c431,434
< if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2]))
---
> char DiskLetter=toupper(DestFileName[0]);
>
> if (AbsPaths && DestFileName[1]=='_' && IsPathDiv(DestFileName[2]) &&
> DiskLetter>='A' && DiskLetter<='Z')
diff -r 3.6.3/version.hpp 3.6.4/version.hpp
3,4c3,4
< #define RARVER_BETA 3
< #define RARVER_DAY 8
---
> #define RARVER_BETA 4
> #define RARVER_DAY 25
Diffstat (limited to 'archivers/unrar/Makefile')
-rw-r--r-- | archivers/unrar/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/unrar/Makefile b/archivers/unrar/Makefile index 3ce342d3ed6..b804d23a0a2 100644 --- a/archivers/unrar/Makefile +++ b/archivers/unrar/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.43 2006/05/17 21:49:30 wiz Exp $ +# $NetBSD: Makefile,v 1.44 2006/05/30 21:27:07 wiz Exp $ -DISTNAME= unrarsrc-3.6.3 +DISTNAME= unrarsrc-3.6.4 PKGNAME= ${DISTNAME:S/src//} CATEGORIES= archivers MASTER_SITES= http://www.rarlab.com/rar/ \ |