-
Notifications
You must be signed in to change notification settings - Fork 392
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
Obsolete dependency on gthread-2.0 #76
Comments
So you're right, |
Ok, so I think I see what you mean. In
But we might be able to change this to something like:
Well, I'm kind of surprised this is a problem for you. On Ubuntu 16.04, |
Fixes lcm-proj#76. Updated dependency of glib-2.0 to require version 2.32 or higher, where possible. I'm not sure if it's possible to express this for the Windows build.
Fixes lcm-proj#76. Updated dependency of glib-2.0 to require version 2.32 or higher, where possible. I'm not sure if it's possible to express this for the Windows build.
In lcm.c there is
if (!g_thread_supported ()) g_thread_init (NULL);
Sinceg_thread_supported
is defined to1
, functiong_thread_init
is never called and removed by the optimizing compiler. It anyway would do nothing, since in gthread-impl.c it is:Therefore the dependency on gthread-2.0 can be removed.
The text was updated successfully, but these errors were encountered: