[Hamlib-commits] Hamlib -- Ham radio control libraries branch master updated. 95cd7391a22cf9963bfc9
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: n0nb <n0...@us...> - 2025-09-19 13:37:16
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Hamlib -- Ham radio control libraries". The branch, master has been updated via 95cd7391a22cf9963bfc984d8ad2fbec9659d3f8 (commit) via 567d6f27f496d4680fa84e831033a57b360e4138 (commit) via 7ed63e2e20e15d71429310edc02791853c5a7580 (commit) via fb04375e3689506529e334b514fd36bc2d579f0d (commit) from d4401112d06d1a85440ed216684d44f579cc15fe (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 95cd7391a22cf9963bfc984d8ad2fbec9659d3f8 Merge: d4401112d 567d6f27f Author: Nate Bargmann <n0...@n0...> Date: Fri Sep 19 08:07:16 2025 -0500 Merge GitHub PR #1917 commit 567d6f27f496d4680fa84e831033a57b360e4138 Author: Daniele Forsi IU5HKX <iu...@gm...> Date: Thu Sep 18 19:18:15 2025 +0200 Add rule to build libmisc.la diff --git a/c++/Makefile.am b/c++/Makefile.am index b1e9d03a7..51b8fab8e 100644 --- a/c++/Makefile.am +++ b/c++/Makefile.am @@ -16,4 +16,7 @@ TESTS = $(check_PROGRAMS) $(top_builddir)/src/libhamlib.la: $(MAKE) -C $(top_builddir)/src/ libhamlib.la +$(top_builddir)/lib/libmisc.la: + $(MAKE) -C $(top_builddir)/lib/ libmisc.la + endif commit 7ed63e2e20e15d71429310edc02791853c5a7580 Author: Daniele Forsi IU5HKX <iu...@gm...> Date: Thu Sep 18 18:52:33 2025 +0200 Fix build failure when trying to build simulators on a clean tree Fixes: make[1]: *** No rule to make target '../lib/libmisc.la', needed by 'simatd578'. Stop. Steps to reproduce: make clean make -j12 -C simulators check diff --git a/simulators/Makefile.am b/simulators/Makefile.am index 2dd759f64..a87f73f67 100644 --- a/simulators/Makefile.am +++ b/simulators/Makefile.am @@ -101,3 +101,6 @@ EXTRA_DIST = sim.h simft990.dat $(top_builddir)/src/libhamlib.la: $(MAKE) -C $(top_builddir)/src/ libhamlib.la + +$(top_builddir)/lib/libmisc.la: + $(MAKE) -C $(top_builddir)/lib/ libmisc.la commit fb04375e3689506529e334b514fd36bc2d579f0d Author: Daniele Forsi IU5HKX <iu...@gm...> Date: Wed Sep 17 21:47:36 2025 +0200 Fix build failure when trying to build tests on a clean tree Fixes: make: *** No rule to make target '../lib/libmisc.la', needed by 'rigctl'. Steps to reproduce: make clean make -j12 -C tests diff --git a/tests/Makefile.am b/tests/Makefile.am index bfc57de9c..f46194546 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -127,6 +127,9 @@ TESTS = $(check_SCRIPTS) $(top_builddir)/src/libhamlib.la: $(MAKE) -C $(top_builddir)/src/ libhamlib.la +$(top_builddir)/lib/libmisc.la: + $(MAKE) -C $(top_builddir)/lib/ libmisc.la + testrig.sh: echo 'LD_LIBRARY_PATH=$(top_builddir)/src/.libs:$(top_builddir)/dummy/.libs ./testrig 1' > testrig.sh chmod +x ./testrig.sh ----------------------------------------------------------------------- Summary of changes: c++/Makefile.am | 3 +++ simulators/Makefile.am | 3 +++ tests/Makefile.am | 3 +++ 3 files changed, 9 insertions(+) hooks/post-receive -- Hamlib -- Ham radio control libraries |