Last active
September 20, 2017 09:14
-
-
Save bagder/79dc1e3ea6f72a006e503520c5ef731f to your computer and use it in GitHub Desktop.
fresh curl checkout and build on debian
This file contains hidden or 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
# install the basics | |
sudo apt install autoconf automake libtool libssl-dev libssh2-1-dev libz-dev libnghttp2-dev libpsl-dev | |
mkdir $HOME/src | |
cd $HOME/src | |
git clone https://github.com/curl/curl.git | |
cd curl | |
./buildconf | |
./configure --enable-debug --enable-maintainer-mode --disable-shared | |
make -sj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment