Last active
December 20, 2015 11:28
-
-
Save callemall/6123205 to your computer and use it in GitHub Desktop.
Setting up needed files for doing SOAP calls in C++. Install from an account that has appropriate system privileges.
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
wget http://curl.haxx.se/download/curl-7.21.3.tar.gz | |
gunzip curl-7.21.3.tar.gz | |
tar -xvvf curl-7.21.3.tar | |
cd curl-7.21.3 | |
./configure --prefix=/usr | |
make | |
make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment