29e005e52f
- gettext: use -I${COOKBOOK_HOST_SYSROOT}/share/aclocal instead of
/usr/share/aclocal so autoreconf picks up the Redox-patched libtool 2.5.4
macros instead of the host system's libtool 2.6.1, fixing version mismatch
at build time
- libxau: add ACLOCAL=true AUTOMAKE=true AUTOHEADER=true to make invocations
to prevent automake regeneration when host autotools version differs from
what the source expects
- build-redbear.sh: make pre-cook failures non-fatal (warn only) and run with
COOKBOOK_OFFLINE=false so packages that need source fetching can succeed
- redox-drm: restore source from git history (was deleted in dc6805430);
update Cargo.toml version 0.1.0 -> 0.2.4 and dependency constraints to
match current project version
23 lines
779 B
TOML
23 lines
779 B
TOML
[package]
|
|
name = "redox-drm"
|
|
version = "0.2.4"
|
|
edition = "2021"
|
|
description = "DRM scheme daemon for Redox OS — provides GPU modesetting and buffer management"
|
|
|
|
[dependencies]
|
|
redox-driver-sys = { version = "0.2", path = "../../../drivers/redox-driver-sys/source" }
|
|
linux-kpi = { version = "0.2", path = "../../../drivers/linux-kpi/source" }
|
|
libredox = "0.1"
|
|
redox_syscall = { version = "0.8", features = ["std"] }
|
|
syscall04 = { package = "redox_syscall", version = "0.4" }
|
|
redox-scheme = "0.11"
|
|
daemon = { path = "../../../../../recipes/core/base/source/daemon" }
|
|
log = "0.4"
|
|
thiserror = "2"
|
|
bitflags = "2"
|
|
getrandom = "0.2"
|
|
|
|
[patch.crates-io]
|
|
redox-driver-sys = { path = "../../../drivers/redox-driver-sys/source" }
|
|
linux-kpi = { path = "../../../drivers/linux-kpi/source" }
|