From ed87f9270c45de838606a888d758bac000c334c8 Mon Sep 17 00:00:00 2001 From: Tony Cook Date: Mon, 29 Apr 2024 11:51:28 +1000 Subject: [PATCH] hints/dragonfly.sh: actually disable the POSIX 2008 locale API ae3e9dd0b was intended to disable this API, due to a leak in the DragonflyBSD implementation, but the wrong macro was used, which I missed in review. Use the right macro. --- hints/dragonfly.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hints/dragonfly.sh b/hints/dragonfly.sh index bc69d046f403..be9a089980aa 100644 --- a/hints/dragonfly.sh +++ b/hints/dragonfly.sh @@ -90,5 +90,5 @@ esac # Dragonfly leaks with a newlocale/freelocale combination. See # https://bugs.dragonflybsd.org/issues/3361 -ccflags="$ccflags -DNO_POSIX_2008" +ccflags="$ccflags -DNO_POSIX_2008_LOCALE"