use wrapper for including expat

This is necessary for building on systems that don't store headers in /usr/include
This commit is contained in:
Frieder Hannenheim 2025-04-20 18:18:02 +02:00 committed by Richard Acayan
parent 42bb11379b
commit 30b6b0e636
No known key found for this signature in database
GPG key ID: 0346F4894879DB73
2 changed files with 2 additions and 1 deletions

View file

@ -10,7 +10,7 @@ fn main()
{
let builder = bindgen::builder();
let bindings = builder.header("/usr/include/expat.h")
let bindings = builder.header("include/wrapper.h")
.generate()
.expect("The libexpat headers must be installed");