commit 8f34b0f4f187ee290cf1095cc20b67197f0995b5 from: Alisdair MacLeod date: Tue Mar 31 18:46:11 2026 UTC Remove unused -lm from LDFLAGS No application code uses math.h functions. On a static build the linker would only pull in referenced symbols, but removing the flag avoids unnecessary library scanning during the link step. Co-Authored-By: Claude Opus 4.6 (1M context) commit - ff0a1945f4ecd2b95886d5b5f6cc48c4970cbe2b commit + 8f34b0f4f187ee290cf1095cc20b67197f0995b5 blob - ba876b3ff43f0ed1cad8e758d74bdfac555e6eaa blob + 2c8ab9aed523cee702887ce8042d76f44e5db05b --- Makefile +++ Makefile @@ -1,6 +1,6 @@ CC ?= cc CFLAGS += -Wall -Wextra -pedantic -std=c23 -Werror -Os -I/usr/local/include -LDFLAGS += -L/usr/local/lib -lsqlite3 -lpthread -lm +LDFLAGS += -L/usr/local/lib -lsqlite3 -lpthread LDFLAGS_STATIC ?= -static SRCS = deskd.c cgi.c db.c natural.c about.c dateform.c bookings.c \