Skip to content

Commit a104b24

Browse files
committed
Wrap lines in paragraphs, for plaintext readability.
1 parent f5b6369 commit a104b24

File tree

1 file changed

+31
-8
lines changed

1 file changed

+31
-8
lines changed

README.md

Lines changed: 31 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,34 +9,57 @@ Auditing for TLS certificates.
99

1010
- A working C++11 compiler.
1111

12-
- [OpenSSL](https://www.openssl.org/source/), at least 1.0.0q, preferably 1.0.1l or 1.0.2 (and up)
12+
- [OpenSSL](https://www.openssl.org/source/), at least 1.0.0q,
13+
preferably 1.0.1l or 1.0.2 (and up)
1314

14-
The checking of SCTs included in the [RFC 6962](http://tools.ietf.org/html/rfc6962) TLS extension is only included in OpenSSL 1.0.2. As of this writing, this version is not yet released, so this means hand building the `OpenSSL_1_0_2-stable` branch from the [OpenSSL git repository](https://www.openssl.org/source/repos.html).
15+
The checking of SCTs included in the
16+
[RFC 6962](http://tools.ietf.org/html/rfc6962) TLS extension is only
17+
included in OpenSSL 1.0.2. As of this writing, this version is not yet
18+
released, so this means hand building the `OpenSSL_1_0_2-stable`
19+
branch from the
20+
[OpenSSL git repository](https://www.openssl.org/source/repos.html).
1521

1622
- [googlemock](https://code.google.com/p/googlemock/) (tested with 1.7.0)
1723

1824
Gmock provides a bundled version of gtest, which will also be used.
1925

20-
Unpack googlemock, but do not build it. Upstream recommends to build a new copy from source for each package to be tested. We follow this advice in our `Makefile`, which builds gmock/gtest automatically.
26+
Unpack googlemock, but do not build it. Upstream recommends to build a
27+
new copy from source for each package to be tested. We follow this
28+
advice in our `Makefile`, which builds gmock/gtest automatically.
2129

22-
Some systems make the googlemock source available as a package; on Debian, this is in the google-mock package, which puts it in `/usr/src/gmock`. Our `Makefile` looks in that location by default, but if your googlemock sources are in a different location, set the `GMOCKDIR` environment variable to point at them.
30+
Some systems make the googlemock source available as a package; on
31+
Debian, this is in the google-mock package, which puts it in
32+
`/usr/src/gmock`. Our `Makefile` looks in that location by default,
33+
but if your googlemock sources are in a different location, set the
34+
`GMOCKDIR` environment variable to point at them.
2335

24-
If you are on FreeBSD, you may need to apply the patch in gtest.patch to the gtest subdirectory of gmock.
36+
If you are on FreeBSD, you may need to apply the patch in gtest.patch
37+
to the gtest subdirectory of gmock.
2538

2639
- [protobuf](https://github.com/google/protobuf) (tested with 2.5.0)
27-
- [gflags](https://code.google.com/p/gflags/) (tested with 1.6 and 2.0)
40+
- [gflags](https://code.google.com/p/gflags/) (tested with 1.6
41+
and 2.0)
2842
- [glog](https://code.google.com/p/google-glog/) (tested with 0.3.1)
2943

3044
Make sure to install glog **after** gflags, to avoid linking errors.
3145

3246
- [sqlite3](http://www.sqlite.org/)
3347
- [JSON-C](https://github.com/json-c/json-c/), at least 0.11
3448

35-
You can specify a JSON-C library in a non-standard location using the `JSONCLIBDIR` environment variable. Version 0.10 would work as well, except the `json_object_iterator.h` header is not properly copied when installing. If you can install the missing header manually, it should work.
49+
You can specify a JSON-C library in a non-standard location using the
50+
`JSONCLIBDIR` environment variable. Version 0.10 would work as well,
51+
except the `json_object_iterator.h` header is not properly copied when
52+
installing. If you can install the missing header manually, it should
53+
work.
3654

3755
- [libevent](http://libevent.org/) (tested with 2.0.21-stable)
3856

39-
You can specify a non-installed locally built library using the `LIBEVENTDIR` environment variable to point to the local build. Note that the FreeBSD port version 2.0.21_2 does not appear to work correctly (it only listens on IPv6 for the HTTP server) - for that platform we had to build from the source, specifically commit 6dba1694c89119c44cef03528945e5a5978ab43a.
57+
You can specify a non-installed locally built library using the
58+
`LIBEVENTDIR` environment variable to point to the local build. Note
59+
that the FreeBSD port version 2.0.21_2 does not appear to work
60+
correctly (it only listens on IPv6 for the HTTP server) - for that
61+
platform we had to build from the source, specifically commit
62+
6dba1694c89119c44cef03528945e5a5978ab43a.
4063

4164
- [ldns](http://www.nlnetlabs.nl/projects/ldns/)
4265
- [ant](http://ant.apache.org/)

0 commit comments

Comments
 (0)