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

direwolf will not compile with gpsd 3.23.1 #357

Closed
km4ack opened this issue Oct 25, 2021 · 6 comments
Closed

direwolf will not compile with gpsd 3.23.1 #357

km4ack opened this issue Oct 25, 2021 · 6 comments

Comments

@km4ack
Copy link

km4ack commented Oct 25, 2021

If gpsd 3.23.1 is installed on a raspberry pi, direwolf will not compile. I get the error:

dwgpsd.c:64:2: error: #error libgps API version might be incompatible.
#error libgps API version might be incompatible.

Without gpsd 3.23.1 installed, direwolf builds as it should. These are the steps I am taking to build direwolf:
sudo apt-get install -y libasound2-dev cmake libudev-dev
git clone https://www.github.com/wb2osz/direwolf
cd direwolf
mkdir build && cd build
cmake ..
make -j 4
sudo make install
make install-conf

@dranch
Copy link
Collaborator

dranch commented Oct 25, 2021

It seems that the GPSD project (again) made a disruptive API change and are now at "major version 12". They've done this several times w/o clear reasons why they couldn't have just updated the MINOR version:

#Line 96
https://gitlab.com/gpsd/gpsd/-/blob/master/include/gps.h

Here is a patch for Direwolf to try allowing the new gpsd release. Your Direwolf function with a GPS will need to be tested to confirm things still work as expected for features like PBEACON, etc:

--- src/dwgpsd.c.orig 2021-10-25 08:17:34.183149193 -0700
+++ src/dwgpsd.c 2021-10-25 08:18:01.835491625 -0700
@@ -58,9 +58,9 @@

// An incompatibility was introduced with version 7
-// and again with 9 and again with 10.
+// and again with 9 and again with 10 and again with 11

-#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 11
+#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 12
#error libgps API version might be incompatible.
#endif

@wb2osz
Copy link
Owner

wb2osz commented Oct 25, 2021

Changing that one line might allow it to compile properly but...
There have been cases where changing the line mentioned above allowed it to compile properly but it failed miserably at run time.
dwgpsd.c code is littered with conditional compilation based on the API version.
It is likely that some other change will be needed to make it run properly.

@dranch
Copy link
Collaborator

dranch commented Oct 25, 2021

I'm compiling it now and will give it a try to see if the basics work

@wb2osz
Copy link
Owner

wb2osz commented Jan 2, 2022

This has been fixed in the dev branch.

@wb2osz wb2osz closed this as completed Jan 2, 2022
@yuvadm
Copy link

yuvadm commented Jun 19, 2022

@wb2osz thanks for the fix, is dev stable enough to be used or should users wait for that patch to land in master?

@wb2osz
Copy link
Owner

wb2osz commented Jun 20, 2022

The "dev" branch is stable and I don't know of any regressions.
Try using the "dev" branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants