readme.txt 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. Portable UnRAR version
  2. 1. General
  3. This package includes freeware Unrar C++ source and a few makefiles
  4. (makefile.bcc, makefile.msc+msc.dep, makefile.unix). Unrar source
  5. is subset of RAR and generated from RAR source automatically,
  6. by a small program removing blocks like '#ifndef UNRAR ... #endif'.
  7. Such method is not perfect and you may find some RAR related
  8. stuff unnecessary in Unrar, especially in header files.
  9. If you wish to port Unrar to a new platform, you may need to edit
  10. '#define LITTLE_ENDIAN' in os.hpp and data type definitions
  11. in rartypes.hpp.
  12. if computer architecture does not allow not aligned data access,
  13. you need to undefine ALLOW_NOT_ALIGNED_INT and define
  14. STRICT_ALIGNMENT_REQUIRED in os.h. Note that it will increase memory
  15. requirements.
  16. If you use Borland C++ makefile (makefile.bcc), you need to define
  17. BASEPATHCC environment (or makefile) variable containing
  18. the path to Borland C++ installation.
  19. Makefile.unix contains numerous compiler option sets.
  20. GCC Linux is selected by default. If you need to compile Unrar
  21. for other platforms, uncomment corresponding lines.
  22. UnRAR.vcproj and UnRARDll.vcproj are projects for Microsoft Visual C++.
  23. UnRARDll.vcproj lets to build unrar.dll library.
  24. 2. Unrar binaries
  25. If you compiled Unrar for OS, which is not present in "Downloads"
  26. and "RAR extras" on www.rarlab.com, we will appreciate if you send
  27. us the compiled executable to place it to our site.
  28. 3. Acknowledgements
  29. This source includes parts of code written by the following authors:
  30. Dmitry Shkarin PPMII v.H text compression
  31. Dmitry Subbotin Carryless rangecoder
  32. Szymon Stefanek AES encryption
  33. Brian Gladman AES encryption
  34. Steve Reid SHA-1 hash function
  35. Marcus Herbert makefile.unix file
  36. Tomasz Klim fixes for libunrar.so
  37. Robert Riebisch makefile.dj and patches for DJGPP
  38. 4. Legal stuff
  39. Unrar source may be used in any software to handle RAR archives
  40. without limitations free of charge, but cannot be used to re-create
  41. the RAR compression algorithm, which is proprietary. Distribution
  42. of modified Unrar source in separate form or as a part of other
  43. software is permitted, provided that it is clearly stated in
  44. the documentation and source comments that the code may not be used
  45. to develop a RAR (WinRAR) compatible archiver.
  46. More detailed license text is available in license.txt.