Page 6 of 6

Re: OsCam Changelots

Posted: 09 Oct 2024, 15:21
by Hannibal_Lecter
New Update:09.10.2024
Changeset 11845 (44d9b86c)

Fix build error with non C99 capable toolchains
* Fix build error with non C99 builds..

module-webif.c: In function ‘send_oscam_scanusb’:
module-webif.c:7167:2: error: ‘for’ loop initial declarations are only allowed in C99 mode..
for (uint8_t i = 0; i < (sizeof(elems) / sizeof(elems[0])); i+=5)..
module-webif.c:7167:2: note: use option -std=c99 or -std=gnu99 to compile your code..

* pipeline: add build test for ancient and latest toolchains..
ancient: oldest version of gcc, glibc, library..
latest: latest version of gcc, glibc, library..

Thx WXbet