From cb7d923eea5413a0fc0cc8010d43bdfe93364a69 Mon Sep 17 00:00:00 2001 From: kevin Date: Sun, 29 Dec 2024 10:31:24 -0500 Subject: [PATCH] Makefile.am : Fix problem where there were multiple c++ standards invoked. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 32c1c78..428b51e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ include_HEADERS= AM_CPPFLAGS = -I.. -I$(srcdir)/src/libcw AM_CFLAGS = -Wno-multichar -AM_CXXFLAGS = -Wno-multichar -std=c++20 +AM_CXXFLAGS = -Wno-multichar AM_LDFLAGS = @@ -56,7 +56,7 @@ if cwWEB AM_CPPFLAGS += -I$(FFT_DIR)/include -I$(FFT_DIR_D)/include -I$(FFT_DIR_S)/include AM_LDFLAGS += -L$(FFT_DIR)/lib -L$(FFT_DIR_D)/lib -L$(FFT_DIR_S)/lib else - AM_CXXFLAGS += --std=c++17 + AM_CXXFLAGS += --std=c++20 endif include src/libcw/Makefile.am