diff options
Diffstat (limited to 'testing/curl/build')
-rwxr-xr-x | testing/curl/build | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/curl/build b/testing/curl/build new file mode 100755 index 00000000..dc9e2625 --- /dev/null +++ b/testing/curl/build @@ -0,0 +1,21 @@ +#!/bin/sh -e + +./configure \ + --prefix=/usr \ + --enable-ipv6 \ + --enable-unix-sockets \ + --enable-hidden-symbols \ + --without-libidn \ + --without-libidn2 \ + --disable-manual \ + --disable-ldap \ + --disable-ares \ + --without-libidn \ + --without-librtmp \ + --without-icu \ + --without-libpsl \ + --with-pic \ + --with-bearssl + +make curl_LDFLAGS=-all-static +make DESTDIR="$1" install |