Skip to content

Commit 2e518ba

Browse files
committed
make-file-list.sh: exclude the HPACK tools from MinGit
The HPACK tools `inflatehd` and `deflatehd` are provided by the nghttp2 project, but they are not actually necessary to let libcurl talk to HTTP/2 servers. In MinGit, they would have failed to start, anyways, as they depend on `libstdc++-6.dll`, which we exclude from MinGit. So let's not bundle them. These tools were the only users of `libjemalloc.dll`, which we therefore exclude at the same time. Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 4c2c744 commit 2e518ba

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

make-file-list.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,10 +197,12 @@ else
197197
-e '^/git-\(bash\|cmd\)\.exe$' \
198198
-e '^/mingw../bin/\(certtool\.exe\|create-shortcut\.exe\)$' \
199199
-e '^/mingw../bin/\(curl\.exe\|envsubst\.exe\|gettext\.exe\)$' \
200+
-e '^/mingw../bin/.*-\(inflate\|deflate\)hd\.exe$' \
200201
-e '^/mingw../bin/\(gettext\.sh\|gettextize\)$' \
201202
-e '^/mingw../bin/\(gitk\|git-upload-archive\.exe\)$' \
202203
-e '^/mingw../bin/lib\(atomic\|charset\)-.*\.dll$' \
203204
-e '^/mingw../bin/libgcc_s_seh-.*\.dll$' \
205+
-e '^/mingw../bin/libjemalloc\.dll$' \
204206
-e '^/mingw../bin/lib\(gomp\|jansson\|minizip\)-.*\.dll$' \
205207
-e '^/mingw../bin/libvtv.*\.dll$' \
206208
-e '^/mingw../bin/libpcreposix.*\.dll$' \

0 commit comments

Comments
 (0)