Fix for issue #202, regarding the lack of implementation of the localeconv method in some SDK's.

A macro named `ENABLE_LOCALES` was added and an option with the same name too in the CMakeLists.txt
This commit is contained in:
casperinous
2017-10-08 21:55:58 +03:00
parent afd5d186b7
commit 4f9e9dfc30
3 changed files with 11 additions and 0 deletions

View File

@@ -186,5 +186,11 @@ if(ENABLE_CJSON_TEST)
DEPENDS ${TEST_CJSON})
endif()
# Enable the use of locales
option(ENABLE_LOCALES "Enable the use of locales" ON)
if(ENABLE_LOCALES)
add_definitions(-DENABLE_LOCALES)
endif()
add_subdirectory(tests)
add_subdirectory(fuzzing)