diff options
author | throwaway96 <68320646+throwaway96@users.noreply.github.com> | 2023-09-27 15:17:48 -0400 |
---|---|---|
committer | throwaway96 <68320646+throwaway96@users.noreply.github.com> | 2023-10-02 04:43:10 -0400 |
commit | 7b88bb989c417f14a08eeb4b96c34bdd5110fac9 (patch) | |
tree | 84a1dc39ac3d1020e6379fb540a8ca1080a38dbc /tools/depends/target/curl/Makefile | |
parent | 2a669b4ab393a9c3cb843486b65c9f2b4cac6b69 (diff) |
build curl without libpsl dependency
Diffstat (limited to 'tools/depends/target/curl/Makefile')
-rw-r--r-- | tools/depends/target/curl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/depends/target/curl/Makefile b/tools/depends/target/curl/Makefile index 76ddb64e97..90a0cd83ca 100644 --- a/tools/depends/target/curl/Makefile +++ b/tools/depends/target/curl/Makefile @@ -5,7 +5,8 @@ DEPS = ../../Makefile.include Makefile CURL-VERSION ../../download-files.include CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \ ./configure --prefix=$(PREFIX) --disable-shared --disable-ldap \ --without-libssh2 --disable-ntlm-wb --enable-ipv6 --without-librtmp \ - --without-libidn2 --with-ca-fallback --with-ssl=$(PREFIX) --with-nghttp2=$(PREFIX) + --without-libidn2 --with-ca-fallback --with-ssl=$(PREFIX) \ + --with-nghttp2=$(PREFIX) --without-libpsl LIBDYLIB=$(PLATFORM)/lib/.libs/$(BYPRODUCT) |