From 1d057136722468bf2a2024d8a432b594df94e500 Mon Sep 17 00:00:00 2001 From: Mahyar Koshkouei Date: Sun, 14 Jan 2018 12:19:30 +0000 Subject: [PATCH] Enable locale support by default Signed-off-by: Mahyar Koshkouei --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fa527a0..e393924 100644 --- a/Makefile +++ b/Makefile @@ -104,7 +104,8 @@ else CFLAGS += -std=gnu99 endif -ifneq (,$(locale)) +# Locale support should be enabled by default, as it's most common. +ifneq ($(locale),false) CFLAGS += -DHAVE_LOCALE endif