Darrell Anderson via tde-devels wrote: > I am compiling 14.1.4 packages for Slackware 15.0. ktorrent fails to > build with the following fatal error: > > ktorrent-trinity-14.1.4/src/libktorrent/torrent/cachefile.cpp:44:10: > fatal error: settings.h: No such file or directory > > I'm using cmake. I've created a PR that fixes the issue on my machine, are you able to give it a go? You should be able to download the patch (also attached) and apply it to the r14.1.x branch with no issue. PR: https://mirror.git.trinitydesktop.org/gitea/TDE/ktorrent/pulls/35 PATCH: https://mirror.git.trinitydesktop.org/gitea/TDE/ktorrent/pulls/35.patch mio
From b487fef767004ce414a66f49aa6dabd4b86be4c6 Mon Sep 17 00:00:00 2001 From: mio <stigma@xxxxxxxxxxx> Date: Sat, 10 May 2025 12:53:48 +1000 Subject: [PATCH] Fix CMake FTBFS Signed-off-by: mio <stigma@xxxxxxxxxxx> --- src/libktorrent/torrent/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libktorrent/torrent/CMakeLists.txt b/src/libktorrent/torrent/CMakeLists.txt index 5760582..ae73ea8 100644 --- a/src/libktorrent/torrent/CMakeLists.txt +++ b/src/libktorrent/torrent/CMakeLists.txt @@ -27,3 +27,5 @@ tde_add_library( torrent STATIC_PIC AUTOMOC kademlia-static interfaces-static DEPENDENCIES torrent-static ) + +add_dependencies(torrent-static SettingsH) -- 2.20.1
____________________________________________________ tde-devels mailing list -- devels@xxxxxxxxxxxxxxxxxx To unsubscribe send an email to devels-leave@xxxxxxxxxxxxxxxxxx Web mail archive available at https://mail.trinitydesktop.org/mailman3/hyperkitty/list/devels@xxxxxxxxxxxxxxxxxx