Last active
February 28, 2016 15:28
-
-
Save toolboc/19e5b4d8da35a892e71f to your computer and use it in GitHub Desktop.
Apache-Qpid-Proton-0.6 with SSL Support on Intel Edison
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
opkg install openssl-dev openssl | |
wget http://www.cmake.org/files/v3.1/cmake-3.1.0.tar.gz | |
tar -xvzf cmake-3.1.0.tar.gz | |
cd cmake-3.1.0 | |
./bootsrap | |
make | |
make install | |
cd .. | |
wget http://softlayer-dal.dl.sourceforge.net/project/libuuid/libuuid-1.0.3.tar.gz | |
tar -xvzf libuuid-1.0.3.tar.gz | |
cd libuuid-1.0.3 | |
./configure --prefix=/usr/ | |
make | |
make install | |
cd .. | |
wget http://archive.apache.org/dist/qpid/proton/0.6/qpid-proton-0.6.tar.gz | |
tar -xvzf qpid-proton-0.6.tar.gz | |
cd qpid-proton-0.6 | |
mkdir build | |
cd build | |
# Set the install prefix. You may need to adjust depending on your | |
# system. | |
cmake -DCMAKE_INSTALL_PREFIX=/usr .. | |
# Note that this step will require root privileges. | |
make install | |
cd .. | |
cd .. | |
#Verify libqpid-proton is in pkg list | |
pkg-config --list-all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the clear guidelines