Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save toolboc/19e5b4d8da35a892e71f to your computer and use it in GitHub Desktop.
Save toolboc/19e5b4d8da35a892e71f to your computer and use it in GitHub Desktop.
Apache-Qpid-Proton-0.6 with SSL Support on Intel Edison
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
@jerrychong25
Copy link

Thanks for the clear guidelines

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment