⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.93
Server IP:
65.108.141.171
Server:
Linux server.heloix.com 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
nodejs
/
contributing
/
Edit File: maintaining-zlib.md
# 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: ```bash 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 ```text deps: update zlib to upstream d7f3ca9 Updated as described in doc/contributing/maintaining-zlib.md. ```
Simpan