[PR #859] [CLOSED] Compilation for Python on OpenVMS #1458

Closed
opened 2026-01-29 20:54:13 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/google/brotli/pull/859
Author: @vorfol
Created: 10/20/2020
Status: Closed

Base: masterHead: openvms


📝 Commits (4)

📊 Changes

63 files changed (+1020 additions, -0 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 c/common/constants.c (+4 -0)
📝 c/common/constants.h (+4 -0)
📝 c/common/context.c (+4 -0)
📝 c/common/dictionary.c (+8 -0)
📝 c/common/platform.c (+4 -0)
📝 c/common/transform.c (+4 -0)
📝 c/dec/bit_reader.c (+4 -0)
📝 c/dec/decode.c (+16 -0)
📝 c/dec/huffman.c (+4 -0)
📝 c/dec/state.c (+8 -0)
📝 c/dec/state.h (+8 -0)
📝 c/enc/backward_references.c (+68 -0)
📝 c/enc/backward_references.h (+12 -0)
📝 c/enc/backward_references_hq.c (+36 -0)
📝 c/enc/backward_references_hq.h (+16 -0)
📝 c/enc/bit_cost.c (+24 -0)
📝 c/enc/bit_cost.h (+8 -0)
📝 c/enc/block_splitter.c (+44 -0)
📝 c/enc/block_splitter.h (+12 -0)

...and 43 more files

📄 Description

The project is compiled on OpenVMS. At the moment the OpenVMS compiler does not allow "./" in the include path.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/google/brotli/pull/859 **Author:** [@vorfol](https://github.com/vorfol) **Created:** 10/20/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `openvms` --- ### 📝 Commits (4) - [`da1118b`](https://github.com/google/brotli/commit/da1118be7a3a18ef7c70747393af92f16ecbfe07) compilation passed - [`cf96dd1`](https://github.com/google/brotli/commit/cf96dd1e28e9ecef1ce01ef44647a17345bae355) erroneous replacement - [`4a62b32`](https://github.com/google/brotli/commit/4a62b32c5df4f43d9ecf4004f58356a146996982) stdint for diff crtl versions - [`22b73c0`](https://github.com/google/brotli/commit/22b73c0ff6db7af62c9bcdf35373d5eaff6ea2ff) fix inttypes ### 📊 Changes **63 files changed** (+1020 additions, -0 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `c/common/constants.c` (+4 -0) 📝 `c/common/constants.h` (+4 -0) 📝 `c/common/context.c` (+4 -0) 📝 `c/common/dictionary.c` (+8 -0) 📝 `c/common/platform.c` (+4 -0) 📝 `c/common/transform.c` (+4 -0) 📝 `c/dec/bit_reader.c` (+4 -0) 📝 `c/dec/decode.c` (+16 -0) 📝 `c/dec/huffman.c` (+4 -0) 📝 `c/dec/state.c` (+8 -0) 📝 `c/dec/state.h` (+8 -0) 📝 `c/enc/backward_references.c` (+68 -0) 📝 `c/enc/backward_references.h` (+12 -0) 📝 `c/enc/backward_references_hq.c` (+36 -0) 📝 `c/enc/backward_references_hq.h` (+16 -0) 📝 `c/enc/bit_cost.c` (+24 -0) 📝 `c/enc/bit_cost.h` (+8 -0) 📝 `c/enc/block_splitter.c` (+44 -0) 📝 `c/enc/block_splitter.h` (+12 -0) _...and 43 more files_ </details> ### 📄 Description The project is compiled on OpenVMS. At the moment the OpenVMS compiler does not allow "./" in the include path. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 20:54:13 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/brotli#1458