Skip to content

Commit 1ab9c08

Browse files
committed
Disable QTC for vendored builds as it causes stability issues
1 parent 2a86e5b commit 1ab9c08

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["qpdf-sys", "qpdf-rs"]
44

55
[workspace.package]
6-
version = "0.3.2"
6+
version = "0.3.3"
77
authors = ["Dmitry Pankratov <dmitry@pankratov.net>"]
88
edition = "2021"
99
repository = "https://github.com/ancwrd1/qpdf-rs"

qpdf-sys/build.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ fn base_build() -> cc::Build {
186186
build
187187
.warnings(false)
188188
.extra_warnings(false)
189-
.define("POINTERHOLDER_TRANSITION", "0")
189+
.define("POINTERHOLDER_TRANSITION", "4")
190+
.define("QPDF_DISABLE_QTC", "1")
190191
.include(root.join("include"));
191192

192193
build

0 commit comments

Comments
 (0)