Enable locale support by default

Signed-off-by: Mahyar Koshkouei <mahyar.koshkouei@gmail.com>
This commit is contained in:
Mahyar Koshkouei 2018-01-14 12:19:30 +00:00
parent 59ba06a1ec
commit 1d05713672
1 changed files with 2 additions and 1 deletions

View File

@ -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