diff options
author | artoka <arto.katajasalo@digia.com> | 2011-11-01 12:47:10 (GMT) |
---|---|---|
committer | Casper van Donderen <casper.vandonderen@nokia.com> | 2011-11-01 13:07:48 (GMT) |
commit | c4cd84b3cccab731a0ff54e79ae0a5800b28b2a3 (patch) | |
tree | 30a4d742fba6b91b562f8a723d31e645e88deeb0 /doc/src/network-programming/ssl.qdoc | |
parent | cb7ec7c0a6bca8a49809fbbcf6082e34184d8f88 (diff) | |
download | Qt-c4cd84b3cccab731a0ff54e79ae0a5800b28b2a3.zip Qt-c4cd84b3cccab731a0ff54e79ae0a5800b28b2a3.tar.gz Qt-c4cd84b3cccab731a0ff54e79ae0a5800b28b2a3.tar.bz2 |
Documentation error in SSL document
The order of setting environment variable OPENSSL_LIBS and configure was wrong. OPENSSL_LIBS is now instructed to be set first before configure.
Task-number: QTBUG-14521
Merge-request: 2698
Reviewed-by: Casper van Donderen <casper.vandonderen@nokia.com>
Diffstat (limited to 'doc/src/network-programming/ssl.qdoc')
-rw-r--r-- | doc/src/network-programming/ssl.qdoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/network-programming/ssl.qdoc b/doc/src/network-programming/ssl.qdoc index 0bbcd8a..ab84a29 100644 --- a/doc/src/network-programming/ssl.qdoc +++ b/doc/src/network-programming/ssl.qdoc @@ -58,7 +58,7 @@ system: \code - ./configure -openssl-linked OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' + OPENSSL_LIBS='-L/opt/ssl/lib -lssl -lcrypto' ./configure -openssl-linked \endcode To disable SSL support in a Qt build, configure Qt with the \c{-no-openssl} |