File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ option(FLB_SMALL "Optimise for small size" No)
5050option (FLB_COVERAGE "Build with code-coverage" No )
5151option (FLB_JEMALLOC "Build with Jemalloc support" No )
5252option (FLB_REGEX "Build with Regex support" Yes )
53- option (FLB_ENCODE "Build with UTF8 encoding support" Yes )
53+ option (FLB_UTF8_ENCODER "Build with UTF8 encoding support" Yes )
5454option (FLB_PARSER "Build with Parser support" Yes )
5555option (FLB_TLS "Build with SSL/TLS support" No )
5656option (FLB_BINARY "Build executable binary" Yes )
@@ -312,7 +312,7 @@ add_subdirectory(${FLB_PATH_LIB_MPACK} EXCLUDE_FROM_ALL)
312312add_subdirectory (${FLB_PATH_LIB_MINIZ} EXCLUDE_FROM_ALL )
313313
314314# tutf8e
315- if (FLB_ENCODE )
315+ if (FLB_UTF8_ENCODER )
316316 add_subdirectory (${FLB_PATH_LIB_TUTF8E} EXCLUDE_FROM_ALL )
317317endif ()
318318
@@ -566,8 +566,8 @@ endif()
566566
567567# tutf8e (UTF8 Encoding)
568568# =====================
569- if (FLB_ENCODE )
570- FLB_DEFINITION(FLB_HAVE_ENCODE )
569+ if (FLB_UTF8_ENCODER )
570+ FLB_DEFINITION(FLB_HAVE_UTF8_ENCODER )
571571endif ()
572572
573573# LuaJIT (Scripting Support)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ include_directories(
1919 ${CMAKE_CURRENT_BINARY_DIR} /include
2020 )
2121
22- if (FLB_ENCODE )
22+ if (FLB_UTF8_ENCODER )
2323 include_directories (${FLB_PATH_ROOT_SOURCE} /${FLB_PATH_LIB_TUTF8E} /include )
2424endif ()
2525
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ set(FLB_DEPS
236236 )
237237
238238# UTF8 Encoding
239- if (FLB_ENCODE )
239+ if (FLB_UTF8_ENCODER )
240240set (FLB_DEPS
241241 ${FLB_DEPS}
242242 tutf8e
You can’t perform that action at this time.
0 commit comments