curl update to 7.73.0 breaks ABI?
Christian Weisgerber
naddy at mips.inka.de
Tue Oct 20 13:15:16 UTC 2020
Kevin Oberman:
> > Since 7.73.0, all of lib/curl_get_line.c is behind this:
> >
> > #if !defined(CURL_DISABLE_COOKIES) && !defined(CURL_DISABLE_ALTSVC)
>
> Not sure why the choice in the presentation of the #if. I'd demornganize it
> for clarity.
> #if defined(CURL_DISABLE_COOKIES) || defined(CURL_DISABLE_ALTSVC)
Wrong, that would be:
#if !(defined(CURL_DISABLE_COOKIES) || defined(CURL_DISABLE_ALTSVC))
--
Christian "naddy" Weisgerber naddy at mips.inka.de
More information about the freebsd-gnome
mailing list