Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gtk4 0.9.6 fails to build since ffi::GTK_DEBUG_BUILDER_TRACE is missing #1979

Open
sophie-h opened this issue Feb 19, 2025 · 7 comments
Open
Labels
bug Something isn't working

Comments

@sophie-h
Copy link
Contributor

I guess gtk4 0.9.6 should depend on gtk4-sys 0.9.6

@sophie-h sophie-h added the bug Something isn't working label Feb 19, 2025
@bilelmoussaoui
Copy link
Member

actually the problem is that GTK_DEBUG_BUILDER_TRACE should be behind a v4_18 feature gate

@sophie-h
Copy link
Contributor Author

But if you enable v4_18 in gtk4, it would still fail without gtk4-sys, right? So both are an issue?

@bilelmoussaoui
Copy link
Member

if the version is added to upstream gtk, the feature gate is also added to the sys crate.

@sophie-h
Copy link
Contributor Author

if the version is added to upstream gtk, the feature gate is also added to the sys crate.

So if you use gtk4/v4_18 0.9.6 it would use gtk4-sys/v4_18 0.9.5 and the constant would still be missing, right?

@sdroege
Copy link
Member

sdroege commented Feb 19, 2025

Yes gtk4 needs to depend on the correct version of gtk4-sys

@bilelmoussaoui
Copy link
Member

Indeed, my bad. I wonder how feasible to automate that from the workspace Cargo.toml.

@control-owl
Copy link

control-owl commented Mar 15, 2025

Hi there. Your discussion... I do not get it, but I want to understand. I have same problem since latest gtk4 crate.

gtk4 = { version = "0.9.6", features = ["gnome_46"] }

But I resolve this problem by editing source code of gtk4 and in file gtk4-0.9.6/src/auto/flags.rs:297:36 I just replace GTK_DEBUG_BUILDER_TRACE with GTK_DEBUG_BUILDER.

Why when I do this, it is working? Why ?

Did someone named this variable wrong ? Or there is bigger problem.

What about my workaround?

--

Also when I use gtk4 = { version = "0.9.6", features = ["gnome_47"] } then I get 2 new errors:

error[E0425]: cannot find function `gdk_color_state_get_oklab` in crate `ffi`
    --> /home/xxx/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gdk4-0.9.3/src/auto/color_state.rs:43:38
     |
43   |         unsafe { from_glib_full(ffi::gdk_color_state_get_oklab()) }
     |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `gdk_color_state_get_srgb`
     |
    ::: /home/xxx/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gdk4-sys-0.9.5/src/lib.rs:4053:5
     |
4053 |     pub fn gdk_color_state_get_srgb() -> *mut GdkColorState;
     |     -------------------------------------------------------- similarly named function `gdk_color_state_get_srgb` defined here

error[E0425]: cannot find function `gdk_color_state_get_oklch` in crate `ffi`
    --> /home/xxx/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gdk4-0.9.3/src/auto/color_state.rs:50:38
     |
50   |         unsafe { from_glib_full(ffi::gdk_color_state_get_oklch()) }
     |                                      ^^^^^^^^^^^^^^^^^^^^^^^^^ help: a function with a similar name exists: `gdk_color_state_get_srgb`
     |
    ::: /home/xxx/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/gdk4-sys-0.9.5/src/lib.rs:4053:5
     |
4053 |     pub fn gdk_color_state_get_srgb() -> *mut GdkColorState;
     |     -------------------------------------------------------- similarly named function `gdk_color_state_get_srgb` defined here

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

4 participants