summaryrefslogtreecommitdiff
path: root/libcurl/README-DEV
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-04-01 21:48:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-04-05 15:12:58 +0300
commit1ff5c0d21aeccc82f07cecbba20c8725f9db53e2 (patch)
tree31da60b5f25a55646cc6f6f6530f671e63692fd5 /libcurl/README-DEV
parent3b321915f741f148189439a2d3bba837d4e8e4c1 (diff)
Upgrade to 7.76.0
Diffstat (limited to 'libcurl/README-DEV')
-rw-r--r--libcurl/README-DEV4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcurl/README-DEV b/libcurl/README-DEV
index cea97e1..623a560 100644
--- a/libcurl/README-DEV
+++ b/libcurl/README-DEV
@@ -20,10 +20,10 @@ and comment out (with #) the _curl_jmpenv symbol in it since it causes the
Note that re-creating libcurl/curl_config.h from scratch every time we upgrade
to a new upstream version would be a real pain. Instead we can only (un)define
the newly introduced macros, comparing the already defined and currently used
-macro sets. For the comparison we can use config-win32.h and auto-generated on
+macro sets. For the comparison we can use config-*.h and auto-generated on
Linux upstream's curl_config.h:
-$ for m in `cat <upstream-build-dir>/lib/curl_config.h libcurl/lib/config-win32.h | \
+$ for m in `cat <upstream-build-dir>/lib/curl_config.h libcurl/lib/config-*.h | \
sed -n 's/^.*#\s*\(define\|undef\)\s\{1,\}\([_A-Z0-9]\{1,\}\)\(\s.*\)\{0,1\}$/\2/p' | \
sort -u`; do
if grep -q -e "\b$m\b" `find -L . ../curl -name '*.h' -a ! -name curl_config.h -a ! -name 'config-*.h' -o -name '*.c'`; then