diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 13 insertions, 4 deletions
@@ -94,10 +94,19 @@ make | |||
94 | sudo make install | 94 | sudo make install |
95 | ``` | 95 | ``` |
96 | 96 | ||
97 | By default, OpenSSL will be used. If you prefer GnuTLS, configure with | 97 | By default, OpenSSL will be used as TLS/SSL library. If you prefer GnuTLS, |
98 | `--disable-openssl` like this: | 98 | configure with `--with-gnutls` like this: |
99 | ```bash | 99 | ```bash |
100 | ./autogen.sh --disable-openssl | 100 | ./autogen.sh --with-gnutls |
101 | ``` | ||
102 | |||
103 | MbedTLS is also supported and can be enabled by passing `--with-mbedtls` to | ||
104 | configure. If mbedTLS is not installed in a default location, you need to set | ||
105 | the environment variables `mbedtls_INCLUDES` to the path that contains the | ||
106 | MbedTLS headers and `mbedtls_LIBDIR` to set the library path. Optionally, | ||
107 | `mbedtls_LIBS` can be used to set the library names directly. Example: | ||
108 | ```bash | ||
109 | ./autogen.sh --with-mbedtls mbedtls_INCLUDES=/opt/local/include mbedtls_LIBDIR=/opt/local/lib | ||
101 | ``` | 110 | ``` |
102 | 111 | ||
103 | ## Usage | 112 | ## Usage |
@@ -179,4 +188,4 @@ iPadOS, tvOS, watchOS, and macOS are trademarks of Apple Inc. | |||
179 | This project is an independent software and has not been authorized, sponsored, | 188 | This project is an independent software and has not been authorized, sponsored, |
180 | or otherwise approved by Apple Inc. | 189 | or otherwise approved by Apple Inc. |
181 | 190 | ||
182 | README Updated on: 2020-06-12 | 191 | README Updated on: 2021-07-27 |