Extended CW API option not added to oscam.version file
Extended CW API option was added some months ago (before it was just a define), but we forgot to add it in the oscam.version
Fix below can be applied to fix this
Only is added when dvbapi is activated as well, because only then the option matters.
Thanks for adding it,
Kind regards, Clemens
From f01d0708bd9b9f37fe614ad67a2c15c60177132f Mon Sep 17 00:00:00 2001
From: Clemens1234 <clemens0@proton.me>
Date: Thu, 9 May 2024 17:23:50 +0200
Subject: [PATCH] Extended oscam.version with WITH_EXTENDED_CW option
---
oscam.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/oscam.c b/oscam.c
index 181ca6b2..be9967dc 100644
--- a/oscam.c
+++ b/oscam.c
@@ -392,6 +392,7 @@ static void write_versionfile(bool use_stdout)
write_conf(HAVE_DVBAPI, "DVB API support");
if(config_enabled(HAVE_DVBAPI))
{
+ write_conf(WITH_EXTENDED_CW, "DVB API with extended CW API support");
if(config_enabled(MODULE_STREAMRELAY))
{
write_conf(true, "DVB API with Stream Relay support");
--
2.43.0
0001-Extended-oscam.version-with-WITH_EXTENDED_CW-option.patch
Edited by Clemens1234