Sunday, May 5, 2024
 Popular · Latest · Hot · Upcoming
2
rated 0 times [  2] [ 0]  / answers: 1 / hits: 3870  / 3 Years ago, wed, september 22, 2021, 9:12:58

Trying to compile openzwave-control-panel.
But getting the following error:



user@ubuntu1004desktop:~/openzwave-control-panel$ make
g++ -o ozwcp -g ozwcp.o webserver.o zwavelib.o ../libmicrohttpd/src/daemon/.libs/libmicrohttpd.a -pthread -framework IOKit -framework CoreFoundation
g++: ../libmicrohttpd/src/daemon/.libs/libmicrohttpd.a: No such file or directory
g++: IOKit: No such file or directory
g++: CoreFoundation: No such file or directory
make: *** [ozwcp] Error 1


(yes, I have libmicrohttpd, but there is no .libs folder)



Also, I can not configure the sources:



user@ubuntu1004desktop:~/libmicrohttpd$ ./configure
bash: ./configure: No such file or directory


How to compile that?


More From » 10.04

 Answers
4

For the libmicrohttpd folder you need to run autoreconf -fi



You'll need to have autoconf, libtool and texinfo installed as well before running autoreconf -fi.



This should generate a correct configure file



However "IOKit" and "CoreFoundation" are specific MacOS libraries. My suggestion is to look at the Makefile - you will probably find that you have to comment out specific MacOS lines and uncomment out lines to allow you to compile for Linux.


[#43611] Thursday, September 23, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
trousransla

Total Points: 285
Total Questions: 112
Total Answers: 113

Location: Spain
Member since Thu, Dec 23, 2021
2 Years ago
;