Changes between Version 30 and Version 31 of Getting-Started/iPhone


Ignore:
Timestamp:
Nov 3, 2010 12:36:50 PM (13 years ago)
Author:
bennylp
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/iPhone

    v30 v31  
    6363Note that the exact paths may vary according to your SDK version. 
    6464 
    65 == OpenSSL == 
     65== OpenSSL Suport == 
    6666 
    6767Follow the instructions below to enable TLS transport by using OpenSSL: 
     
    6969 1. Specify OpenSSL location when running {{{configure-iphone}}}, for example (with Bash): 
    7070 {{{ 
    71 export OPENSSL=/Users/you/openssl/openssl_arm 
     71export OPENSSL=${HOME}/openssl/openssl_arm 
    7272export CFLAGS="-O2 -Wno-unused-label -I${OPENSSL}/include" 
    7373export LDFLAGS="-L${OPENSSL}/lib" 
     
    9494 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: 
    9595  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}}}) 
    9797 1. Build the app 
    9898