From b4342503d52b1efea57c6f80ba3660a2b38d8d20 Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 5 Jan 2026 10:50:32 +0000 Subject: [PATCH 1/2] Sort Makefile lines --- Makefile.am | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile.am b/Makefile.am index 21851ae..4dbede3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,20 +7,20 @@ SOURCES = \ knots/promise.scm \ knots/queue.scm \ knots/resource-pool.scm \ + knots/thread-pool.scm \ knots/timeout.scm \ - knots/web-server.scm \ - knots/thread-pool.scm + knots/web-server.scm SCM_TESTS = \ tests/non-blocking.scm \ - tests/promise.scm \ - tests/timeout.scm \ tests/non-blocking.scm \ - tests/queue.scm \ - tests/web-server.scm \ tests/parallelism.scm \ + tests/promise.scm \ + tests/queue.scm \ tests/resource-pool.scm \ - tests/thread-pool.scm + tests/thread-pool.scm \ + tests/timeout.scm \ + tests/web-server.scm TESTS_GOBJECTS = $(SCM_TESTS:%.scm=%.go) From 338d08081e5c90cc23978147394021fa84a4f5cc Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Mon, 5 Jan 2026 10:51:24 +0000 Subject: [PATCH 2/2] Add missing Makefile entries for the sort module --- Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile.am b/Makefile.am index 4dbede3..5551fbe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,6 +7,7 @@ SOURCES = \ knots/promise.scm \ knots/queue.scm \ knots/resource-pool.scm \ + knots/sort.scm \ knots/thread-pool.scm \ knots/timeout.scm \ knots/web-server.scm @@ -18,6 +19,7 @@ SCM_TESTS = \ tests/promise.scm \ tests/queue.scm \ tests/resource-pool.scm \ + tests/sort.scm \ tests/thread-pool.scm \ tests/timeout.scm \ tests/web-server.scm