summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* changelog: Release curl 7.74.0-3HEADcurl/7.74.0-3masterPatrick McDermott2021-01-051-1/+1
|
* libcurl.4-dev: Provide /usr/bin/curl-configPatrick McDermott2021-01-053-2/+2
|
* libcurl.4:$arch: Drop conflict with libcurl.4Patrick McDermott2021-01-052-1/+9
|
* changelog: Release curl 7.74.0-2curl/7.74.0-2Patrick McDermott2021-01-041-1/+1
|
* build: Make a couple more options explicitPatrick McDermott2021-01-041-0/+2
|
* curl.4-common: Fix missing COPYING and THANKSPatrick McDermott2021-01-032-2/+3
|
* build: Disable stuffPatrick McDermott2021-01-032-1/+46
| | | | | | The --without-* options should have no effect, as the referenced libraries are not installed at build time. This just makes things more explicit.
* libcurl.4:$arch: Conflict with libcurl.4Patrick McDermott2021-01-032-0/+3
| | | | | | | | | Fixes: Collected errors: * check_data_file_clashes: Package libcurl.4:amd64-linux-glibc wants to install file /usr/lib/amd64-linux-glibc/libcurl.so.4 But that file is already provided by package * libcurl.4 * opkg_install_cmd: Cannot install package curl.
* build: Disable building of static libraryPatrick McDermott2021-01-031-1/+1
| | | | It was already not installed.
* curl.4-common: Fix sectionPatrick McDermott2021-01-032-1/+8
|
* control: B-D: filePatrick McDermott2021-01-031-0/+1
|
* changelog: Release curl 7.74.0-1curl/7.74.0-1Patrick McDermott2021-01-031-1/+1
|
* libcurl.4: Work around oh-shlibdeps limitationPatrick McDermott2021-01-031-1/+2
| | | | | | It can't find packages that provide libraries that are managed by update-alternatives. It should dereference links, then search for packages that provide the regular files.
* patches: Fix undefined referencesPatrick McDermott2021-01-032-0/+53
| | | | | | | | | | | | | | | | | Fixes: CCLD curl /usr/bin/ld: ../lib/.libs/libcurl.so: undefined reference to `wolfSSL_set_session' /usr/bin/ld: ../lib/.libs/libcurl.so: undefined reference to `wolfSSL_get_session' /usr/bin/ld: ../lib/.libs/libcurl.so: undefined reference to `wolfTLSv1_1_client_method' collect2: error: ld returned 1 exit status make[3]: *** [Makefile:996: curl] Error 1 make[3]: Leaving directory '/prokit/sessions/705511104/wd/tmp/src/src' make[2]: *** [Makefile:2155: all-recursive] Error 1 make[2]: Leaving directory '/prokit/sessions/705511104/wd/tmp/src/src' make[1]: *** [Makefile:996: all-recursive] Error 1 make[1]: Leaving directory '/prokit/sessions/705511104/wd/tmp/src' make: *** [../build:12: build] Error 2
* patches: Fix undeclared symbolsPatrick McDermott2021-01-032-0/+361
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes: CC vtls/libcurl_la-wolfssl.lo vtls/wolfssl.c: In function 'do_file_type': vtls/wolfssl.c:207:12: error: 'SSL_FILETYPE_PEM' undeclared (first use in this function); did you mean 'WOLFSSL_FILETYPE_PEM'? return SSL_FILETYPE_PEM; ^~~~~~~~~~~~~~~~ WOLFSSL_FILETYPE_PEM vtls/wolfssl.c:207:12: note: each undeclared identifier is reported only once for each function it appears in vtls/wolfssl.c:211:12: error: 'SSL_FILETYPE_ASN1' undeclared (first use in this function); did you mean 'WOLFSSL_FILETYPE_ASN1'? return SSL_FILETYPE_ASN1; ^~~~~~~~~~~~~~~~~ WOLFSSL_FILETYPE_ASN1 vtls/wolfssl.c: In function 'wolfssl_connect_step1': vtls/wolfssl.c:407:50: error: 'SSL_VERIFY_PEER' undeclared (first use in this function); did you mean 'WOLFSSL_VERIFY_PEER'? SSL_CONN_CONFIG(verifypeer)?SSL_VERIFY_PEER: ^~~~~~~~~~~~~~~ WOLFSSL_VERIFY_PEER vtls/wolfssl.c:408:50: error: 'SSL_VERIFY_NONE' undeclared (first use in this function); did you mean 'WOLFSSL_VERIFY_NONE'? SSL_VERIFY_NONE, ^~~~~~~~~~~~~~~ WOLFSSL_VERIFY_NONE vtls/wolfssl.c: In function 'wolfssl_connect_step2': vtls/wolfssl.c:564:15: error: 'SSL_FAILURE' undeclared (first use in this function); did you mean 'WOLFSSL_FAILURE'? if(ret == SSL_FAILURE) ^~~~~~~~~~~ WOLFSSL_FAILURE vtls/wolfssl.c:598:8: error: 'SSL_ERROR_WANT_READ' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_READ'? if(SSL_ERROR_WANT_READ == detail) { ^~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_READ vtls/wolfssl.c:602:13: error: 'SSL_ERROR_WANT_WRITE' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_WRITE'? else if(SSL_ERROR_WANT_WRITE == detail) { ^~~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_WRITE vtls/wolfssl.c: In function 'wolfssl_send': vtls/wolfssl.c:814:10: error: 'SSL_ERROR_WANT_READ' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_READ'? case SSL_ERROR_WANT_READ: ^~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_READ vtls/wolfssl.c:815:10: error: 'SSL_ERROR_WANT_WRITE' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_WRITE'? case SSL_ERROR_WANT_WRITE: ^~~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_WRITE vtls/wolfssl.c: In function 'wolfssl_recv': vtls/wolfssl.c:862:10: error: 'SSL_ERROR_ZERO_RETURN' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_ZERO_RETURN'? case SSL_ERROR_ZERO_RETURN: /* no more data */ ^~~~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_ZERO_RETURN vtls/wolfssl.c:864:10: error: 'SSL_ERROR_WANT_READ' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_READ'? case SSL_ERROR_WANT_READ: ^~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_READ vtls/wolfssl.c:865:10: error: 'SSL_ERROR_WANT_WRITE' undeclared (first use in this function); did you mean 'WOLFSSL_ERROR_WANT_WRITE'? case SSL_ERROR_WANT_WRITE: ^~~~~~~~~~~~~~~~~~~~ WOLFSSL_ERROR_WANT_WRITE vtls/wolfssl.c: In function 'Curl_wolfssl_init': vtls/wolfssl.c:903:29: error: 'SSL_SUCCESS' undeclared (first use in this function); did you mean 'WOLFSSL_SUCCESS'? return (wolfSSL_Init() == SSL_SUCCESS); ^~~~~~~~~~~ WOLFSSL_SUCCESS make[3]: *** [Makefile:2675: vtls/libcurl_la-wolfssl.lo] Error 1 make[3]: Leaving directory '/prokit/sessions/448429946/wd/tmp/src/lib' make[2]: *** [Makefile:1077: all] Error 2 make[2]: Leaving directory '/prokit/sessions/448429946/wd/tmp/src/lib' make[1]: *** [Makefile:996: all-recursive] Error 1 make[1]: Leaving directory '/prokit/sessions/448429946/wd/tmp/src' make: *** [../build:12: build] Error 2
* libcurl.4: Depend on nss-certdata-server-authPatrick McDermott2020-12-292-1/+4
| | | | Also update changelog.
* control: B-D on pkgconf (for finding wolfSSL)Patrick McDermott2020-12-271-1/+1
|
* release: New script (copied from gcc-8)Patrick McDermott2020-12-271-0/+13
|
* curl, libcurl.4: Use oh-shlibdepsPatrick McDermott2020-12-275-3/+6
|
* libcurl.4-dev: Arch-qualify libcurl.4 depPatrick McDermott2020-12-271-1/+2
|
* curl.4-common: New common packagePatrick McDermott2020-12-277-4/+15
|
* curl-doc: Rename to curl.4-docPatrick McDermott2020-12-273-0/+1
|
* Reword package descriptionsPatrick McDermott2020-12-276-26/+34
|
* Organize packages into sectionsPatrick McDermott2020-12-276-1/+6
|
* libcurl.4: Distribute COPYING and THANKS docsPatrick McDermott2020-12-271-0/+2
|
* copyright: UpdatePatrick McDermott2020-12-271-49/+341
|
* extract-copyright-comments: New scriptPatrick McDermott2020-12-271-0/+216
| | | | Copied from busybox.
* build: Use wolfSSL and NSS CA certificatesPatrick McDermott2020-12-272-1/+7
|
* libcurl.4-dev: Remove static libraryPatrick McDermott2020-12-273-1/+2
|
* copyright: Update distribution packaging copyrightPatrick McDermott2020-12-271-1/+1
|
* control: Update maintainerPatrick McDermott2020-12-272-2/+2
|
* .gitignore: Exclude keyring.gpg and .*Patrick McDermott2020-12-262-5/+4
| | | | And remove keyring.gpg.
* source.mk: Update keyPatrick McDermott2020-12-261-1/+1
|
* control: Update homepagePatrick McDermott2020-12-262-1/+2
|
* changelog: New upstream versionPatrick McDermott2020-12-261-0/+6
|
* source.mk: Switch to xzPatrick McDermott2020-12-262-2/+2
|
* source.mk: Update URLPatrick McDermott2020-12-262-2/+2
|
* source.mk: Rewrite (based on m4's)Patrick McDermott2020-12-262-16/+33
|
* changelog: Release curl 7.38.0-1curl/7.38.0-1P. J. McDermott2014-10-131-1/+1
|
* curl-doc: Fix versioned DependsP. J. McDermott2014-10-121-1/+1
|
* curl, libcurl.4: Depend on libz.1P. J. McDermott2014-10-122-1/+2
|
* copyright: New fileP. J. McDermott2014-10-121-0/+133
|
* Add binary packagesP. J. McDermott2014-10-1210-0/+53
|
* build: Add "install" targetP. J. McDermott2014-10-121-0/+9
|
* build: Add "build" targetP. J. McDermott2014-10-121-0/+5
|
* control: Add libz.1-dev to Build-DependsP. J. McDermott2014-10-121-1/+2
|
* Initial commitP. J. McDermott2014-10-127-0/+45