Go to file
Dmitry Eremin-Solenikov afcd515b99 update.sh: remove linked manpages on uninstall
Add additional code to remove linked manpages on uninstall. Since we do
linking manually, automake will not remove them for us.

Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2014-12-07 18:07:53 -06:00
apps simplify building the apps Makefile 2014-12-06 11:20:56 -06:00
crypto disable inline assembly on Windows for now 2014-12-07 18:02:06 -06:00
include add support for building libtls 2014-12-06 09:13:56 -06:00
man sync man links from upstream 2014-12-07 13:12:41 -06:00
ssl read all library versions directly from files 2014-12-06 18:59:25 -06:00
tests update and mask unit tests when running on win32 2014-12-03 17:02:29 -06:00
tls read all library versions directly from files 2014-12-06 18:59:25 -06:00
.gitignore Update .gitignore 2014-12-07 18:07:52 -06:00
AUTHORS initial top-level import 2014-07-10 06:07:09 -05:00
autogen.sh initial top-level import 2014-07-10 06:07:09 -05:00
ChangeLog update changelog for libtls 2014-12-06 09:29:22 -06:00
config Add an OpenSSL compatible ./config wrapper 2014-10-31 07:35:06 -05:00
configure.ac Enable optimized crypto operations for x86_64 2014-12-07 16:26:28 -06:00
dist.sh simplify packaging for libtls. 2014-12-06 10:21:23 -06:00
libcrypto.pc.in add platform libraries to libcompat's LIBADD list 2014-07-12 03:34:08 -05:00
libressl.pub Add the public signing key so it can be fetched from github 2014-07-14 20:50:52 -06:00
libssl.pc.in add platform libraries to libcompat's LIBADD list 2014-07-12 03:34:08 -05:00
libtls.pc.in add support for building libtls 2014-12-06 09:13:56 -06:00
Makefile.am add support for building libtls 2014-12-06 09:13:56 -06:00
Makefile.am.common remove obsolete define 2014-12-06 17:47:44 -06:00
NEWS initial top-level import 2014-07-10 06:07:09 -05:00
OPENBSD_BRANCH tie master libressl branch to openbsd master 2014-07-31 22:08:30 -05:00
openssl.pc.in add platform libraries to libcompat's LIBADD list 2014-07-12 03:34:08 -05:00
README update README to reflect current porting approach 2014-11-03 01:18:32 -06:00
update.sh update.sh: remove linked manpages on uninstall 2014-12-07 18:07:53 -06:00
VERSION bump version 2014-10-22 11:16:39 -05:00

This package is the official portable version of LibreSSL
	(http://www.libressl.org).

LibreSSL is a fork of OpenSSL developed by the OpenBSD project
(http://www.openbsd.org). LibreSSL is developed on OpenBSD. This
package then adds portability shims for other operating systems.

Official release tarballs are available at your friendly neighborhood
OpenBSD mirror in directory LibreSSL, e.g.:

	http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/

although we suggest that you use a mirror:

	http://www.openbsd.org/ftp.html

The LibreSSL portable build framework is also mirrored in Github:

	https://github.com/libressl-portable/portable

If you have checked this source using Git, follow these initial steps to
prepare the source tree for building:

 1. ensure you have the following packages installed:
	automake, autoconf, bash, git, libtool, perl, pod2man
 2. run './autogen.sh' to prepare the source tree for building
    or run './dist.sh' to prepare a tarball.

Once you have a source tree from Git or FTP, run these commands to build and
install the package:

  ./configure   # see ./configure --help for configuration options
  make check    # runs builtin unit tests
  make install  # set DESTDIR= to install to an alternate location

The resulting library and 'openssl' utility is largely API-compatible with
OpenSSL 1.0.1. However, it is not ABI compatible - you will need to relink your
programs to LibreSSL in order to use it, just as in moving from OpenSSL 0.9.8
to 1.0.1.

The project attempts to provide working alternatives for operating systems with
limited or broken security primitives (e.g. arc4random(3), issetugid(2)) and
assists with improving OS-native implementations where possible.

LibreSSL portable will build on any reasonably modern version of Linux,
Solaris, or OSX with a standards-compliant compiler and C library.