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

remotecontrol requires de-selected zeromq #50

Closed
andimik opened this issue Jun 12, 2022 · 1 comment
Closed

remotecontrol requires de-selected zeromq #50

andimik opened this issue Jun 12, 2022 · 1 comment

Comments

@andimik
Copy link
Contributor

andimik commented Jun 12, 2022

zeromq seemed to be mandatory ...

$ ./configure --disable-output-uhd --disable-zeromq
[...]

***********************************************

  Features
  Enabled:  soapysdr
  Disabled:  prof trace output_uhd zeromq easydabv3 limesdr bladerf


  Options
  Active:  supports_march_native
  Disabled:  enable_fast_math

***********************************************
$ make
make  all-am
make[1]: Verzeichnis „/home/andreas/apps/ODR-DabMod“ wird betreten
[...]
  CXX      src/odr_dabmod-Utils.o
  CXX      lib/odr_dabmod-RemoteControl.o
In file included from lib/RemoteControl.cpp:32:
lib/zmq.hpp:72:10: fatal error: zmq.h: Datei oder Verzeichnis nicht gefunden
   72 | #include <zmq.h>
      |          ^~~~~~~
compilation terminated.
make[1]: *** [Makefile:1472: lib/odr_dabmod-RemoteControl.o] Fehler 1
make[1]: Verzeichnis „/home/andreas/apps/ODR-DabMod“ wird verlassen
make: *** [Makefile:661: all] Fehler 2

This fixes it:

$ diff RemoteControl.cpp RemoteControl.cpp_bak 
32,34c32
< #if defined(HAVE_ZEROMQ)
<     #include "zmq.hpp"
< #endif
---
> #include "zmq.hpp"

see 0f86d69

@andimik
Copy link
Contributor Author

andimik commented Jun 12, 2022

Fixed in #49

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

2 participants