summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2017-04-28 20:58:53 +0200
committerGravatar Nikias Bassen2017-04-28 20:58:53 +0200
commit53fede06af98e24e26939127fcc71c6acfaf4c12 (patch)
treee9b0565854879875b04fd824dc9b39132a90efa2
parent0cf6bb6f5bece0885c6e4806b5e62ec4296ab75e (diff)
downloadlibimobiledevice-53fede06af98e24e26939127fcc71c6acfaf4c12.tar.gz
libimobiledevice-53fede06af98e24e26939127fcc71c6acfaf4c12.tar.bz2
Updated README with some notes about configuration options
-rw-r--r--README18
1 files changed, 14 insertions, 4 deletions
diff --git a/README b/README
index 972cfa8..efc09c0 100644
--- a/README
+++ b/README
@@ -8,7 +8,7 @@ Requirements
============
Development Packages of:
- libgnutls or openssl
+ OpenSSL or GnuTLS
libplist
libusbmuxd
@@ -20,7 +20,7 @@ Software:
autoconf
libtool
pkg-config
- gcc
+ gcc or clang
Optional:
cython (Python bindings)
@@ -34,6 +34,16 @@ To compile run:
make
sudo make install
+If you require a custom prefix or other option being passed to ./configure
+you can pass them directly to ./autogen.sh like this:
+ ./autogen.sh --prefix=/opt/local --enable-debug-code
+ make
+ sudo make install
+
+By default, OpenSSL will be used. If you prefer GnuTLS, configure with
+ --disable-openssl like this:
+ ./autogen.sh --disable-openssl
+
Who/What/Where?
===============
@@ -47,7 +57,7 @@ Code (Mirror):
git clone https://github.com/libimobiledevice/libimobiledevice.git
Tickets:
- http://github.com/libimobiledevice/libimobiledevice/issues
+ https://github.com/libimobiledevice/libimobiledevice/issues
Mailing List:
http://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel
@@ -66,4 +76,4 @@ libimobiledevice is an independent software library and has not been
authorized, sponsored, or otherwise approved by Apple Inc.
README Updated on:
- 2015-01-28
+ 2017-04-28