0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/doc/guides/maintaining-zlib.md
Nitin Kumar 988f5bf6fb
doc: fix typo in maintaining-zlib guide
PR-URL: https://github.com/nodejs/node/pull/32292
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Rich Trott <rtrott@gmail.com>
2020-03-30 09:35:15 +02:00

893 B

Maintaining zlib

This copy of zlib comes from the Chromium team's zlib fork which incorporated performance improvements not currently available in standard zlib.

Updating zlib

Update zlib:

git clone https://chromium.googlesource.com/chromium/src/third_party/zlib
cp deps/zlib/zlib.gyp deps/zlib/win32/zlib.def deps
rm -rf deps/zlib zlib/.git
mv zlib deps/
mv deps/zlib.gyp deps/zlib/
mkdir deps/zlib/win32
mv deps/zlib.def deps/zlib/win32
sed -i -- 's_^#include "chromeconf.h"_//#include "chromeconf.h"_' deps/zlib/zconf.h

Check that Node.js still builds and tests.

It may be necessary to update deps/zlib/zlib.gyp if any significant changes have occurred upstream.

Committing zlib

Add zlib: git add --all deps/zlib

Commit the changes with a message like

deps: update zlib to upstream d7f3ca9

Updated as described in doc/guides/maintaining-zlib.md.