[Hamlib-developer] [Hamlib/Hamlib] 15147d: Fix kendwood_priv_data definition
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Michael B. <no...@gi...> - 2024-12-25 04:40:06
|
Branch: refs/heads/Hamlib-4.6 Home: https://github.com/Hamlib/Hamlib Commit: 15147d2c048df27d305c28cfed562185b62197d5 https://github.com/Hamlib/Hamlib/commit/15147d2c048df27d305c28cfed562185b62197d5 Author: Bradford D. Boyle <bra...@gm...> Date: 2024-12-25 (Wed, 25 Dec 2024) Changed paths: M rigs/kenwood/kenwood.h Log Message: ----------- Fix kendwood_priv_data definition When compiling Hamlib 4.6 on Alpine Linux, the build fails with the following error message: kenwood.h:186:5: error: unknown type name 'mode_t'; did you mean 'rmode_t'? According to the man page for mode_t (on Debian), the standard C library provides this type and it is an integer type. The struct member last_mode_pc is compared with curr_mode which has type rmode_t so this commit updates the definition to use this type. With this change, Hamlib 4.6 builds successfully on Alpine Linux 3.21.0. Commit: ffff4e210daa52e0356c1964bd6240371edd3440 https://github.com/Hamlib/Hamlib/commit/ffff4e210daa52e0356c1964bd6240371edd3440 Author: Michael Black <mdb...@ya...> Date: 2024-12-24 (Tue, 24 Dec 2024) Changed paths: M rigs/kenwood/kenwood.h Log Message: ----------- Merge pull request #1642 from bradfordboyle/fix-kenwood-mode Fix kendwood_priv_data definition Compare: https://github.com/Hamlib/Hamlib/compare/c9031ca4d7d1...ffff4e210daa To unsubscribe from these emails, change your notification settings at https://github.com/Hamlib/Hamlib/settings/notifications |