build curl that support http3 from source code

Posted by zhuizhuhaomeng Blog on August 26, 2023

I build the curl on ubuntu-20. You need to change the dependences if you want to build on other OSes.

install the dependences first

1
2
3
4
5
6
7
8
 sudo apt-get install -y libsystemd-dev
 sudo apt-get install -y cython
 sudo apt-get install -y cython3
 sudo apt-get install -y libcunit1-dev
 sudo apt-get install -y libev-dev
 sudo apt-get install -y libc-ares-dev
 sudo apt-get install -y libpython3-dev libpython2-dev
 sudo apt-get install -y libjansson-dev

build from the source

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/bin/bash

git clone --depth 1 -b openssl-3.0.0+quic https://github.com/quictls/openssl
git clone https://github.com/ngtcp2/nghttp3
git clone https://github.com/nghttp2/nghttp2
git clone https://github.com/ngtcp2/ngtcp2
git clone https://github.com/curl/curl

function build_openssl()
{
    cd openssl
    ./config enable-tls1_3 --prefix=/opt/curl-h3/openssl-quic
    make -j$(nproc) -v
    sudo make install
    sudo ln -s /opt/curl-h3/openssl-quic/lib64 /opt/curl-h3/openssl-quic/lib
    cd ..
}

function build_nghttp3()
{
    cd nghttp3
    autoreconf -fi
    ./configure --prefix=/opt/curl-h3/nghttp3 --enable-lib-only
    make -j$(nproc) -v
    sudo make install
    cd ..
}

function build_ngtcp2()
{
    cd ngtcp2
    autoreconf -fi
    ./configure PKG_CONFIG_PATH=/opt/curl-h3/openssl-quic/lib/pkgconfig:/opt/curl-h3/nghttp3/lib/pkgconfig LDFLAGS="-Wl,-rpath,/opt/curl-h3/openssl-quic/lib" --prefix=/opt/curl-h3/ngtcp2 --enable-lib-only
    make -j$(nproc) -v
    sudo make install
    cd ..
}

function build_nghttp2()
{
    cd nghttp2
    autoreconf -ivf
    CPPFLAGS="-I/opt/curl-h3/openssl-quic/include/" CFLAGS="-I/opt/curl-h3/openssl-quic/include/include/" LDFLAGS="-L/opt/curl-h3/openssl-quic/lib/ -lssl -lcrypto -Wl,-rpath,/opt/curl-h3/openssl-quic/lib" ./configure --prefix=/opt/curl-h3/nghttp2
    make -j$(nproc) -v
    sudo make install
    cd ..
}

function build_curl()
{
    cd curl
    autoreconf -fi
    LDFLAGS="-L/opt/curl-h3/libidn2/lib -L/opt/curl-h3/nghttp2/lib -L/opt/curl-h3/lib -L/opt/curl-h3/nghttp3/lib -L/opt/curl-h3/ngtcp2/lib -Wl,-rpath,/opt/curl-h3/libidn2/lib:/opt/curl-h3/lib:/opt/curl-h3/openssl-quic/lib:/opt/curl-h3/nghttp3/lib:/opt/curl-h3/ngtcp2/lib:/opt/curl-h3/nghttp2/lib" ./configure --with-openssl=/opt/curl-h3/openssl-quic --with-nghttp2=/opt/curl-h3/nghttp2 --with-nghttp3=/opt/curl-h3/nghttp3 --with-ngtcp2=/opt/curl-h3/ngtcp2 --with-libidn2 --prefix=/opt/curl-h3 --disable-static --enable-symbol-hiding --enable-ipv6 
    make -j$(nproc) -v
    sudo make install
    cd ..
}

build_openssl
build_nghttp3
build_ngtcp2
build_nghttp2
build_curl

create a tarball

tar -czf curl-h3.tar.gz /opt/curl-h3

install on the target machine

sudo tar -C / -xf curl-h3.tar.gz