summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2021-07-27 03:36:45 +0200
committerGravatar Nikias Bassen2021-07-27 03:36:45 +0200
commitab1c815340afc2883c9ef08795eebd9bed1858c5 (patch)
treea188e92dfdff14e501bf42b5d880155468cffbdd /README.md
parent19eca85f90d9950596e1c6021d7b0f89407f5d7f (diff)
downloadlibimobiledevice-ab1c815340afc2883c9ef08795eebd9bed1858c5.tar.gz
libimobiledevice-ab1c815340afc2883c9ef08795eebd9bed1858c5.tar.bz2
Add support for MbedTLS
Diffstat (limited to 'README.md')
-rw-r--r--README.md17
1 files changed, 13 insertions, 4 deletions
diff --git a/README.md b/README.md
index 71d7754..2f561aa 100644
--- a/README.md
+++ b/README.md
@@ -94,10 +94,19 @@ make
94sudo make install 94sudo make install
95``` 95```
96 96
97By default, OpenSSL will be used. If you prefer GnuTLS, configure with 97By default, OpenSSL will be used as TLS/SSL library. If you prefer GnuTLS,
98`--disable-openssl` like this: 98configure with `--with-gnutls` like this:
99```bash 99```bash
100./autogen.sh --disable-openssl 100./autogen.sh --with-gnutls
101```
102
103MbedTLS is also supported and can be enabled by passing `--with-mbedtls` to
104configure. If mbedTLS is not installed in a default location, you need to set
105the environment variables `mbedtls_INCLUDES` to the path that contains the
106MbedTLS 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.
179This project is an independent software and has not been authorized, sponsored, 188This project is an independent software and has not been authorized, sponsored,
180or otherwise approved by Apple Inc. 189or otherwise approved by Apple Inc.
181 190
182README Updated on: 2020-06-12 191README Updated on: 2021-07-27