[asterisk-commits] lmadsen: branch 1.4 r234615 - /branches/1.4/doc/imapstorage.txt

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Dec 14 11:05:05 CST 2009


Author: lmadsen
Date: Mon Dec 14 11:05:01 2009
New Revision: 234615

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=234615
Log:
Update IMAP build documentation.
Update the IMAP build documentation to show how to build on 64-bit
platforms.


(issue #16433)
Reported by: shrift
Tested by: lmadsen

Modified:
    branches/1.4/doc/imapstorage.txt

Modified: branches/1.4/doc/imapstorage.txt
URL: http://svnview.digium.com/svn/asterisk/branches/1.4/doc/imapstorage.txt?view=diff&rev=234615&r1=234614&r2=234615
==============================================================================
--- branches/1.4/doc/imapstorage.txt (original)
+++ branches/1.4/doc/imapstorage.txt Mon Dec 14 11:05:01 2009
@@ -58,13 +58,23 @@
 is outside the scope of this document.
 
 Building the c-client library is fairly straightforward; for example, on a
-Debian system there are two possibilities:
+Debian system there are a few possibilities:
 
 1) if you will not be using SSL to connect to the IMAP server:
    $ make slx SSLTYPE=none
 
 2) if you will be using SSL to connect to the IMAP server:
    $ make slx EXTRACFLAGS="-I/usr/include/openssl"
+
+Additionally, you may wish to build on a 64-bit machine, in which case you
+need to add -fPIC to EXTRACFLAGS. So, building on a 64-bit machine with
+SSL support would look something like:
+
+$ make slx EXTRACFLAGS="-fPIC -I/usr/include/openssl"
+
+Or without SSL support:
+
+$ make slx SSLTYPE=none EXTRACFLAGS=-fPIC
 
 Once this completes you can proceed with the Asterisk build; there is no
 need to run 'make install'.




More information about the asterisk-commits mailing list