From b2db60c574ab66a6a33bfbd45012a4bdd6b72ab9 Mon Sep 17 00:00:00 2001 From: BrandonJLazard Date: Tue, 18 Jun 2024 12:31:21 -0600 Subject: [PATCH] removed references to standard c++ libraries --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index a9b12f3c..37fb2021 100755 --- a/configure +++ b/configure @@ -838,9 +838,9 @@ echo "" # Standard LIBRARIES if [[ $OSTYPE == *"darwin"* ]] then - STD_FLAGS="-lc++" + STD_FLAGS="" else - STD_FLAGS="-lstdc++" + STD_FLAGS="" fi ###############################################################################################