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
8============ 8============
9 9
10Development Packages of: 10Development Packages of:
11 libgnutls or openssl 11 OpenSSL or GnuTLS
12 libplist 12 libplist
13 libusbmuxd 13 libusbmuxd
14 14
@@ -20,7 +20,7 @@ Software:
20 autoconf 20 autoconf
21 libtool 21 libtool
22 pkg-config 22 pkg-config
23 gcc 23 gcc or clang
24 24
25Optional: 25Optional:
26 cython (Python bindings) 26 cython (Python bindings)
@@ -34,6 +34,16 @@ To compile run:
34 make 34 make
35 sudo make install 35 sudo make install
36 36
37If you require a custom prefix or other option being passed to ./configure
38you can pass them directly to ./autogen.sh like this:
39 ./autogen.sh --prefix=/opt/local --enable-debug-code
40 make
41 sudo make install
42
43By default, OpenSSL will be used. If you prefer GnuTLS, configure with
44 --disable-openssl like this:
45 ./autogen.sh --disable-openssl
46
37Who/What/Where? 47Who/What/Where?
38=============== 48===============
39 49
@@ -47,7 +57,7 @@ Code (Mirror):
47 git clone https://github.com/libimobiledevice/libimobiledevice.git 57 git clone https://github.com/libimobiledevice/libimobiledevice.git
48 58
49Tickets: 59Tickets:
50 http://github.com/libimobiledevice/libimobiledevice/issues 60 https://github.com/libimobiledevice/libimobiledevice/issues
51 61
52Mailing List: 62Mailing List:
53 http://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel 63 http://lists.libimobiledevice.org/mailman/listinfo/libimobiledevice-devel
@@ -66,4 +76,4 @@ libimobiledevice is an independent software library and has not been
66authorized, sponsored, or otherwise approved by Apple Inc. 76authorized, sponsored, or otherwise approved by Apple Inc.
67 77
68README Updated on: 78README Updated on:
69 2015-01-28 79 2017-04-28