Skip to content

Latest commit

 

History

History
54 lines (44 loc) · 1.42 KB

INSTALL.md

File metadata and controls

54 lines (44 loc) · 1.42 KB

Installation

Build Prerequisites

  • GCC or Intel Compiler for Linux / macOS / Unix.
  • MinGW or MS VC++ for Windows.
  • (optionally) gettext library for internationalization
  • (optionally) OpenSSL for optimized algorithms

Build and install

To compile and install the program use command

./configure && make && make install

The compiled program and library can be tested by command make test test-lib

To compile using MS VC++, take the project file from /win32/vc-2010/ directory.

Enabling features

RHash can use optimized algorithms of MD5, SHA1, SHA2 from the OpenSSL library. To link OpenSSL at run-time (preffered way), configure RHash as

./configure --enable-openssl-runtime

To link it at load-time, use options

./configure --enable-openssl --disable-openssl-runtime

Internationalization support can be compiled and installed by commands

./configure --enable-gettext
make install install-gmo

Run ./configure --help for a full list of configuration options.

Building an OS native package

When building a package for an OS Repository, one should correctly specify system directories, e.g.:

./configure --sysconfdir=/etc --exec-prefix=/usr

Example of installing RHash with shared and static LibRHash library:

./configure --enable-lib-static
make install install-lib-so-link