Page 1 of 1

Installation telldus-core-2.0.103 problems on Debian

Posted: Fri Mar 17, 2023 9:45 am
by hakelm
Trying to install telldus-core-2.0.103 on a Debian system I get the following

root@debian:/usr/src/telldus-core-2.0.103# cmake -DBUILD_LIBTELLDUS-CORE=0 -DBUILD_TDTOOL=0 -DBUILD_RFCMD_WITH_LIBFTDI=1 .
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
CONFUSE_LIBRARY
linked by target "telldusd" in directory /usr/src/telldus-core-2.0.103/service
FTDI_LIBRARY
linked by target "telldusd" in directory /usr/src/telldus-core-2.0.103/service

Simply doing
root@debian:/usr/src/telldus-core-2.0.103# cmake .
results in
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake files:
CONFUSE_LIBRARY
linked by target "telldusd" in directory /usr/src/telldus-core-2.0.103/service
FTDI_LIBRARY
linked by target "telldusd" in directory /usr/src/telldus-core-2.0.103/service

-- Configuring incomplete, errors occurred!

Anyone any advice?
Håkan

Re: Installation telldus-core-2.0.103 problems on Debian

Posted: Fri Mar 17, 2023 9:45 am
by micke.prag
First, by looking at the error message:
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
CONFUSE_LIBRARY
FTDI_LIBRARY
Simply, you are missing these dependencies. Install them and try again.

Second:
cmake -DBUILD_LIBTELLDUS-CORE=0 -DBUILD_TDTOOL=0 -DBUILD_RFCMD_WITH_LIBFTDI=1 .
Why are you building our unstable packages and then disable both telldus-core and tdtool?
These are both required for using the TellStick!

Re: Installation telldus-core-2.0.103 problems on Debian

Posted: Fri Mar 17, 2023 9:45 am
by hakelm
Tack för din hjälp. Jag hade emellertid också andra problem med min Debian så jag har bytt till Ubuntu 10 och nu fungerar allt som det skall.
Håkan