From 1093349564d1f65a41356d19db87f957a7f767ef Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 3 Feb 2024 23:35:56 -0600 Subject: [PATCH] Fix TIME_BITS_64 --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 36b10b8ef..b854d504c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,4 +28,6 @@ DIST_SUBDIRS = macros include lib src c++ bindings tests doc android scripts rot security $(BACKEND_LIST) $(RIG_BACKEND_LIST) $(ROT_BACKEND_LIST) $(AMP_BACKEND_LIST) # Install any third party macros into our tree for distribution -ACLOCAL_AMFLAGS = -I macros --install -D_TIME_BITS=64 +ACLOCAL_AMFLAGS = -I macros --install + +AM_CFLAGS=-D_TIME_BITS=64