From: Chris Billington Subject: Re: new: net/parla & net/deltachat-rpc-server: DeltaChat instant messaging To: Mikolaj Kucharski Cc: openbsd-ports Mailing List Date: Fri, 26 Jun 2026 17:01:49 +0800 Mikolaj Kucharski wrote: > On Thu, Jun 25, 2026 at 05:25:07PM +0800, Chris Billington wrote: >> Thanks- my mistake I had forgotten to re-enable that. >> It takes 90 minutes or so to build on my old hardware. >> Uncommenting the BUILD_DEPENDS += databases/sqlcipher should allow you to >> continue testing. >> >> Chris >> > > Just FYI, I think it should be lib depends and wantlibs should be > updated to to reflect the dependency: > > $ deltachat-rpc-server --help > ld.so: deltachat-rpc-server: can't load library 'libsqlcipher.so.3.3' > Killed > > Strange, I can't reproduce that. With sqlcipher as BUILD_DEPENDS it builds and runs successfully for me. The relevant line in Cargo.toml is rusqlite = { workspace = true, features = ["sqlcipher"] } which is supposed to use pkg-config to find and build against system sqlcipher. Rebuilding with LIB_DEPENDS/WANTLIB registered the sqlcipher dependency in +CONTENTS correctly. Thanks! Chris