Skip to content

Instantly share code, notes, and snippets.

@Isopach
Forked from fideloper/update_curl.sh
Last active April 8, 2018 06:52
Show Gist options
  • Save Isopach/eb43c20fd175089eb24bfbf3c2c4ae32 to your computer and use it in GitHub Desktop.
Save Isopach/eb43c20fd175089eb24bfbf3c2c4ae32 to your computer and use it in GitHub Desktop.
Update curl on Ubuntu 16.04.4
#! /usr/bin/env bash
# Install any build dependencies needed for curl
sudo apt-get build-dep curl
# Get latest (as of Feb 25, 2016) libcurl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2
tar -xvjf curl-7.50.2.tar.bz2
cd curl-7.50.2
# The usual steps for building an app from source
# ./configure
# ./make
# sudo make install
./configure
make
sudo make install
# Resolve any issues of C-level lib
# location caches ("shared library cache")
sudo ldconfig
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment