Hash :
db974c34
Author :
Date :
2015-07-15T20:00:21
fixup how OPENSSLDIR is derived and expanded As per http://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Installation-Directory-Variables.html we should not try to expand variables like sysconfdir in the configure script, but rather derive the correct value in the Makefiles instead. This fixes missing expansions as the preprocessor define.
| Git HTTP | https://git.kmx.io/kc3-lang/libressl.git |
|---|---|
| Git SSH | git@git.kmx.io:kc3-lang/libressl.git |
| Public access ? | public |
| Description |
LibreSSL Portable |
|
Users |
|
| Tags |
|
LibreSSL is a fork of OpenSSL 1.0.1g developed by the OpenBSD project. Our goal is to modernize the codebase, improve security, and apply best practice development processes from OpenBSD.
LibreSSL is API compatible with OpenSSL 1.0.1, but does not yet include all new APIs from OpenSSL 1.0.2 and later. LibreSSL also includes APIs not yet present in OpenSSL. The current common API subset is OpenSSL 1.0.1.
LibreSSL it is not ABI compatible with any release of OpenSSL, or necessarily earlier releases of LibreSSL. You will need to relink your programs to LibreSSL in order to use it, just as in moving between major versions of OpenSSL. LibreSSL’s installed library version numbers are incremented to account for ABI and API changes.
While primarily developed on and taking advantage of APIs available on OpenBSD, the LibreSSL portable project attempts to provide working alternatives for other operating systems, and assists with improving OS-native implementations where possible.
At the time of this writing, LibreSSL is know to build and work on:
LibreSSL also supports the following Windows environments:
Official release tarballs are available at your friendly neighborhood OpenBSD mirror in directory LibreSSL, although we suggest that you use a mirror.
The LibreSSL portable build framework is also mirrored in Github.
Please report bugs either to the public libressl@openbsd.org mailing list, or to the github issue tracker
Severe vulnerabilities or bugs requiring coordination with OpenSSL can be sent to the core team at libressl-security@openbsd.org.
If you have checked this source using Git, follow these initial steps to prepare the source tree for building:
Once you have a source tree from Git or FTP, run these commands to build and install the package on most systems.
./configure # see ./configure --help for configuration options
make check # runs builtin unit tests
make install # set DESTDIR= to install to an alternate location
Set the UNIX_STD environment variable to ‘2003’ before running ‘configure’ in order to build with the HP C/aC++ compiler. See the “standards(5)” man page for more details.
export UNIX_STD=2003
./configure
make
LibreSSL builds against relatively recent versions of Mingw-w64, not to be confused with the original mingw.org project. Mingw-w64 3.2 or later should work. See README.windows for more information