diff build.rs @ 84:a638a45e5f1f

do some real irritating i32/u32 juggling to make bindgen happy
author Paul Fisher <paul@pfish.zone>
date Tue, 10 Jun 2025 02:35:11 -0400
parents 9fc778c03bff
children
line wrap: on
line diff
--- a/build.rs	Tue Jun 10 01:56:41 2025 -0400
+++ b/build.rs	Tue Jun 10 02:35:11 2025 -0400
@@ -17,7 +17,7 @@
             .allowlist_function("pam_get_authtok")
             .allowlist_function("pam_end")
             .dynamic_link_require_all(true)
-            .default_macro_constant_type(MacroTypeVariation::Signed);
+            .default_macro_constant_type(MacroTypeVariation::Unsigned);
 
         let linux_builder = common_builder
             .clone()