summaryrefslogtreecommitdiffstats
path: root/lib/curl_endian.c
Commit message (Collapse)AuthorAgeFilesLines
* curl 2022-10-26 (cd95ee9f)Curl Upstream2022-10-311-1/+3
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit cd95ee9f771361acf241629d2fe5507e308082a2 (curl-7_86_0).
* curl 2021-09-14 (8e82f2a0)Curl Upstream2021-09-151-42/+0
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit 8e82f2a04a238c54ba91e553e9a8452e6d405965 (curl-7_79_0).
* curl 2021-05-26 (6b951a69)Curl Upstream2021-05-271-3/+3
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit 6b951a6928811507d493303b2878e848c077b471 (curl-7_77_0).
* curl 2020-12-09 (e0528597)Curl Upstream2020-12-091-2/+2
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit e052859759b34d0e05ce0f17244873e5cd7b457b (curl-7_74_0).
* curl 2020-03-04 (b8d13668)Curl Upstream2020-03-041-1/+1
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit b8d1366852fd0034374c5de1e4968c7a224f77cc (curl-7_69_0).
* curl 2019-05-22 (885ce314)Curl Upstream2019-05-221-5/+5
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit 885ce31401b6789c959131754b1e5ae518964072 (curl-7_65_0).
* curl 2017-06-14 (54b636f1)Curl Upstream2017-06-141-113/+1
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit 54b636f14546d3fde9f9c67c3b32701d78563161 (curl-7_54_1).
* curl 2016-12-22 (44b9b4d4)Curl Upstream2017-02-071-9/+9
| | | | | | | | Code extracted from: https://github.com/curl/curl.git at commit 44b9b4d4f56d6f6de92c89636994c03984e9cd01 (curl-7_52_1).
* curl 2016-08-03 (f2cb3a01)Curl Upstream2016-08-031-1/+1
| | | | | | | | Code extracted from: https://github.com/bagder/curl.git at commit f2cb3a01192d36395d16acec6cdb93446ca6fd45 (curl-7_50_1).
* curl 7.44.0 (reduced)Curl Upstream2015-08-121-0/+236
Extract upstream curl using the following shell code. url=git://github.com/bagder/curl.git && v=7.44.0 && r=1a7f66a3 && paths=" CMake/* CMakeLists.txt COPYING include/curl/*.h include/curl/curlbuild.h.cmake lib/*.c lib/*.h lib/CMakeLists.txt lib/Makefile.inc lib/curl_config.h.cmake lib/libcurl.rc lib/vtls/*.c lib/vtls/*.h " && mkdir curl-$v-g$r-reduced && git clone $url curl-git && date=$(cd curl-git && git log -n 1 --format='%cd' $r) && (cd curl-git && git checkout $r && git archive --format=tar $r -- $paths) | (cd curl-$v-g$r-reduced && tar xv && rm lib/config-*.h) && echo "g$r date: $date"