Skip to content

Commit

Permalink
hints/dragonfly.sh: actually disable the POSIX 2008 locale API
Browse files Browse the repository at this point in the history
ae3e9dd 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.
  • Loading branch information
tonycoz committed Apr 29, 2024
1 parent d330c0a commit 4b492e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hints/dragonfly.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 4b492e2

Please sign in to comment.