wiz
645a66e3d2
Update to 3.7.8, changes unknown.
2007-11-25 23:16:14 +00:00
wiz
274fdc1966
Update to 3.7.5:
...
Changes undocumented, probably just bug fixes (diff is small).
2007-05-03 12:42:52 +00:00
wiz
b0d20dcf88
Update to 3.7.4:
...
Changes in \\ handling.
2007-03-08 18:25:26 +00:00
wiz
93d94d44e1
Update to 3.7.3.
...
Changes: secret, as always.
From the diffs it looks like some big-endian fixes and other small changes.
2007-02-05 23:03:50 +00:00
wiz
f05dc35ca8
Update to 3.7.2. Changes look like better character encoding support,
...
but no ChangeLog exists, so who knows...
2007-01-15 22:36:41 +00:00
joerg
aea9f31ecd
DESTDIR support.
2006-11-14 13:50:13 +00:00
obache
e896edb7fe
Rename variable MAKEFILE to MAKE_FILE.
2006-09-09 02:41:53 +00:00
wiz
045ef30e65
Update to 3.6.8:
...
diff -r 3.6.7/version.hpp 3.6.8/version.hpp
3,5c3,5
< #define RARVER_BETA 7
< #define RARVER_DAY 13
< #define RARVER_MONTH 7
---
> #define RARVER_BETA 0
> #define RARVER_DAY 5
> #define RARVER_MONTH 8
2006-08-22 18:23:46 +00:00
wiz
11e7f85fdf
Update to 3.6.7:
...
diff -r 3.6.6/dll.cpp 3.6.7/dll.cpp
56d55
< delete Data;
57a57
> delete Data;
62d61
< delete Data;
63a63
> delete Data;
diff -r 3.6.6/version.hpp 3.6.7/version.hpp
3,4c3,4
< #define RARVER_BETA 6
< #define RARVER_DAY 3
---
> #define RARVER_BETA 7
> #define RARVER_DAY 13
2006-07-17 17:15:24 +00:00
wiz
350ae37a28
Update to 3.6.6:
...
diff -r 3.6.5/consio.cpp 3.6.6/consio.cpp
124c124
< #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc)
---
> #elif defined(_EMX) || defined(_BEOS) || defined(__sparc) || defined(sparc) || defined (__VMS)
diff -r 3.6.5/file.cpp 3.6.6/file.cpp
435c435
< #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE)
---
> #if defined(_LARGEFILE_SOURCE) && !defined(_OSF_SOURCE) && !defined(__VMS)
diff -r 3.6.5/filefn.cpp 3.6.6/filefn.cpp
303c303
< #endif
---
> #else
304a305
> #endif
diff -r 3.6.5/list.cpp 3.6.6/list.cpp
67c67,70
< switch(Arc.GetHeaderType())
---
> int HeaderType=Arc.GetHeaderType();
> if (HeaderType==ENDARC_HEAD)
> break;
> switch(HeaderType)
diff -r 3.6.5/rar.cpp 3.6.6/rar.cpp
16a17
>
20c21,22
< #ifndef SFX_MODULE
---
>
> #if !defined(_SFX_RTL_) && !defined(_WIN_32)
21a24
> #endif
23,25c26,27
< #ifdef _EMX
< EnumConfigPaths(argv[0],-1);
< #endif
---
> #if !defined(SFX_MODULE) && defined(_EMX)
> EnumConfigPaths(argv[0],-1);
diff -r 3.6.5/sha1.cpp 3.6.6/sha1.cpp
210c210
< unsigned char ch='\200';
---
> unsigned char ch=(unsigned char)'\200';
diff -r 3.6.5/unicode.cpp 3.6.6/unicode.cpp
18c18
< if (wcstombs(Dest,Src,DestSize)==-1)
---
> if (wcstombs(Dest,Src,DestSize)==(size_t)-1)
56c56
< if (mbstowcs(Dest,Src,DestSize)==-1)
---
> if (mbstowcs(Dest,Src,DestSize)==(size_t)-1)
diff -r 3.6.5/version.hpp 3.6.6/version.hpp
3,5c3,5
< #define RARVER_BETA 5
< #define RARVER_DAY 15
< #define RARVER_MONTH 6
---
> #define RARVER_BETA 6
> #define RARVER_DAY 3
> #define RARVER_MONTH 7
2006-07-10 16:09:59 +00:00
wiz
bbf17ad590
Update to 3.6.5, diff to 3.6.4:
...
601a602,604
> else
> {
> }
diff -r 3.6.4/extract.cpp unrar/extract.cpp
31,32c31,46
< while (ExtractArchive(Cmd)==EXTRACT_ARC_REPEAT)
< ;
---
> while (true)
> {
> char PrevCmdPassword[MAXPASSWORD];
> strcpy(PrevCmdPassword,Cmd->Password);
>
> EXTRACT_ARC_CODE Code=ExtractArchive(Cmd);
>
> /*
> restore Cmd->Password which could be changed in IsArchive() call
> for next header encrypted archive
> */
> strcpy(Cmd->Password,PrevCmdPassword);
>
> if (Code!=EXTRACT_ARC_REPEAT)
> break;
> }
143a158
>
diff -r 3.6.4/extract.hpp unrar/extract.hpp
8a9,10
> EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd);
>
34d35
< EXTRACT_ARC_CODE ExtractArchive(CommandData *Cmd);
diff -r 3.6.4/version.hpp unrar/version.hpp
3,5c3,5
< #define RARVER_BETA 4
< #define RARVER_DAY 25
< #define RARVER_MONTH 5
---
> #define RARVER_BETA 5
> #define RARVER_DAY 15
> #define RARVER_MONTH 6
2006-07-03 20:40:48 +00:00
wiz
96ec9e7eab
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
2006-05-30 21:27:07 +00:00
wiz
1680ecb8a0
Update to 3.6.3: changes unknown.
2006-05-17 21:49:30 +00:00
wiz
93ebdaf6d2
Update to 3.6.2, no changelog available.
2006-04-28 16:24:27 +00:00
rillig
a64786e18f
Fixed pkglint warnings.
2006-02-11 11:12:05 +00:00
wiz
7711caee49
Update to 3.5.4.
...
No changelog available, but probably includes:
o fixed two vulnerabilities, which could be exploited with
specially crafted ACE and UUE/XXE archives;
2005-10-12 13:59:19 +00:00
wiz
d6c9a62d35
Fix compilation on Solaris/i386. From Gilles Dauphin in PR 30902.
2005-09-17 20:37:29 +00:00
wiz
972a9eb3d6
Update to 3.5.3.
...
Diff to previous version is only 215 lines, no change log available.
2005-09-05 00:44:49 +00:00
wiz
c03cbe16b3
Update to 3.5.2, changes unknown.
2005-05-21 15:30:06 +00:00
agc
f1a84844c6
Add RMD160 digests in addition to SHA1 ones.
2005-02-23 14:45:22 +00:00
adam
b1a90e71ed
Changes 3.4.3:
...
* bug fixes and improvements
2004-11-04 10:15:57 +00:00
wiz
3f32f93e66
Add ftp master site.
2004-10-27 17:02:00 +00:00
xtraeme
99f8e812b3
USE_GCC_SHLIB is deprecated.
2004-07-31 03:48:30 +00:00
minskim
5a4e75ef0d
Enable pkgviews installation.
2004-07-28 02:47:34 +00:00
grant
16b9021dbf
this package doesn't have a configure target.
2004-07-03 13:30:29 +00:00
grant
5ce0ba183f
USE_LANGUAGES=c++
2004-04-18 09:21:55 +00:00
snj
3f1741b61c
Fix compilation of the SHA1 code on sparc64 by giving each round its
...
own function.
2004-03-30 23:36:45 +00:00
grant
3ad43a6467
indent block
2004-03-27 14:21:21 +00:00
tv
d5fd979bf8
Add Interix to non-largefile opsystems. Obey CPPFLAGS.
2004-03-11 21:39:17 +00:00
wiz
e4c1da2caf
Update to 3.3.6:
...
Some fixes for the libunrar.so (not installed) and Win32 changes.
Two parts of the diff look like they might be minor bugfixes.
[No changelog available...]
2004-02-27 15:28:20 +00:00
agc
dc52048e01
Move WRKSRC definition away from the first paragraph in a Makefile.
2004-01-20 12:07:06 +00:00
wiz
2738faa1e1
Update to 3.3.4. Changes not found.
2004-01-19 20:18:02 +00:00
seb
e47e17b61d
Undo last unwanted commit.
2004-01-02 16:05:13 +00:00
seb
51b4487a57
Remove info files from PLIST files.
2004-01-02 16:03:11 +00:00
fredb
edd110d687
Update to unrar-3.2.3. The only change, is that it fixes the build under
...
gcc-3* a slightly different way than patch-ab did.
2003-10-09 00:07:27 +00:00
fredb
8520e945aa
Conditionally override ${DEFINES}, which is normally set in the default
...
makefile, to unset -D_LARGEFILE_SOURCE in the least intrusive way for
supported platforms which don't have ftello() and fseeko() -- currently
only NetBSD-1.5*. Closes PR pkg/23085 by Markus Kurek.
2003-10-08 23:54:07 +00:00
grant
ab50b3bf90
this pkg needs gcc shared libs.
2003-09-12 12:41:47 +00:00
grant
91f00f1cbc
s/netbsd.org/NetBSD.org/
2003-07-17 21:21:03 +00:00
jmmv
cf2e12e813
Fix build when using gcc3.
2003-07-17 20:21:30 +00:00
wiz
83a75a1b15
Comment out CXXFLAGS so that the value of the environment variable is used.
...
Requested by Adam Ciarcinski.
2003-05-23 09:19:01 +00:00
wiz
9b235397a2
Update to 3.2.2, from Juan RP in PR 21629.
...
Changes: minor bugfixes (complete diff to last version is <40 lines).
2003-05-20 15:26:47 +00:00
wiz
71ed229463
Remove sentence about license (in licenses/ dir), and |fmt.
2003-05-19 07:37:24 +00:00
martin
5c09a23e76
The LICENSE.TXT file actually is called license.txt.
2003-05-19 07:26:58 +00:00
salo
039f65ff53
PKGREVISION++
...
- remove dependency on GNU make
- this package doesn't really use buildlink2
- pass CFLAGS
2003-05-11 12:37:33 +00:00
wiz
d46b8ef063
Update to 3.2.1. Main news is better precision for time stamps; new option:
...
ts<m,c,a>[N] Save or restore file time (modification, creation, access)
2003-05-08 09:55:31 +00:00
wiz
58d8da7264
Update to 3.1.3, bugfix release.
2003-01-13 10:55:11 +00:00
wiz
385e088ac2
The RAR author was so considerate to add the version number to the
...
tar ball when asked. "Update" to 3.1.0 (same version as before).
2002-10-17 18:27:13 +00:00
wiz
60ce572bb2
Update to 3.01, prompted by the changed distribution file reported
...
by Robert Vargason in PR 18680.
Changes are unknown; diff of the old and new sources doesn't look strange,
but doesn't tell me enough either.
2002-10-17 16:28:31 +00:00
abs
018332daf1
Make this compile again. It doesn't use any non system libraries or includes
...
so shouldn't need to the buildlink magic.
2002-08-29 11:13:56 +00:00
jlam
1c57323789
Merge packages from the buildlink2 branch back into the main trunk that
...
have been converted to USE_BUILDLINK2.
2002-08-25 21:48:57 +00:00