Changes between Version 30 and Version 31 of Getting-Started/iPhone
- Timestamp:
- Nov 3, 2010 12:36:50 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Getting-Started/iPhone
v30 v31 63 63 Note that the exact paths may vary according to your SDK version. 64 64 65 == OpenSSL ==65 == OpenSSL Suport == 66 66 67 67 Follow the instructions below to enable TLS transport by using OpenSSL: … … 69 69 1. Specify OpenSSL location when running {{{configure-iphone}}}, for example (with Bash): 70 70 {{{ 71 export OPENSSL= /Users/you/openssl/openssl_arm71 export OPENSSL=${HOME}/openssl/openssl_arm 72 72 export CFLAGS="-O2 -Wno-unused-label -I${OPENSSL}/include" 73 73 export LDFLAGS="-L${OPENSSL}/lib" … … 94 94 1. In XCode project setting of your application (for example, ipjsua), add {{{libssl.a}}} and {{{libcrypto.a}}} from OpenSSL ARM directory to the project's Libraries: 95 95 a. In '''Group & Files''' pane, expand '''ipjsua''', then right click '''Libraries''', and select '''Add -> Existing Files...'''. 96 a. Find {{{libssl.a}}} and {{{libcrypto.a}}} from OpenSSL ARM directory (for example, {{{ /Users/you/openssl/openssl_arm}}})96 a. Find {{{libssl.a}}} and {{{libcrypto.a}}} from OpenSSL ARM directory (for example, {{{${HOME}/openssl/openssl_arm}}}) 97 97 1. Build the app 98 98