Re: [PATCH v3 4/4] imap-send: use curl by default

2017-08-24 Thread Nicolas Morey-Chaisemartin
Le 23/08/2017 à 22:28, Junio C Hamano a écrit : > Nicolas Morey-Chaisemartin writes: > >> Now that curl is enable by default, > s/enable/&d/; > > But it is unclear what the above really means. You certainly do not > mean that [PATCH 1-3/4] somewhere tweaked our Makefile to always use > libcurl

Re: [PATCH v3 4/4] imap-send: use curl by default

2017-08-23 Thread Junio C Hamano
Nicolas Morey-Chaisemartin writes: > Now that curl is enable by default, s/enable/&d/; But it is unclear what the above really means. You certainly do not mean that [PATCH 1-3/4] somewhere tweaked our Makefile to always use libcurl and makes Git fail to build without it, but the above sounds

[PATCH v3 4/4] imap-send: use curl by default

2017-08-22 Thread Nicolas Morey-Chaisemartin
Now that curl is enable by default, use the curl implementation for imap too. The goal is to validate feature parity between the legacy and the curl implementation, deprecate thee legacy implementation later on and in the long term, hopefully drop it altogether. Signed-off-by: Nicolas Morey-Chaise