-
Notifications
You must be signed in to change notification settings - Fork 313
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
An incompatibility was introduced with gpsd api 11 #330
Comments
Fix for Issue wb2osz#330 An incompatibility was introduced again when using gpsd api 11 from gpsd: 3.22.1~dev (revision release-3.22-332-g743585cc3) Increasing the Changing GPSD_API_MAJOR_VERSION > 11 to 12 solves this.
Changing "GPSD_API_MAJOR_VERSION > 11" to "GPSD_API_MAJOR_VERSION > 12", solved the issue for me. It compiled with a few warnings, but it works. Thank you!!! |
Could you be more specific about what you mean "it works?" |
Compatibility has been tested up through gpsd 3.25 in the dev branch. |
direwolf/src/dwgpsd.c
Line 63 in b66c21d
Seems to be a regression from issue #222 and #295
An incompatibility was introduced again when using gpsd api 11 from gpsd: 3.22.1~dev (revision release-3.22-332-g743585cc3)
Increasing the
Changing GPSD_API_MAJOR_VERSION > 11 to 12 solves this.
#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 12
This issue exists in the dev branch
Maybe there is a cleaner way of implementing this fix.
The text was updated successfully, but these errors were encountered: