-
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
direwolf will not compile with gpsd 3.23.1 #357
Comments
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 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 // An incompatibility was introduced with version 7 -#if GPSD_API_MAJOR_VERSION < 5 || GPSD_API_MAJOR_VERSION > 11 |
Changing that one line might allow it to compile properly but... |
I'm compiling it now and will give it a try to see if the basics work |
This has been fixed in the dev branch. |
@wb2osz thanks for the fix, is |
The "dev" branch is stable and I don't know of any regressions. |
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
The text was updated successfully, but these errors were encountered: