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)
50
50
option (FLB_COVERAGE "Build with code-coverage" No )
51
51
option (FLB_JEMALLOC "Build with Jemalloc support" No )
52
52
option (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 )
54
54
option (FLB_PARSER "Build with Parser support" Yes )
55
55
option (FLB_TLS "Build with SSL/TLS support" No )
56
56
option (FLB_BINARY "Build executable binary" Yes )
@@ -312,7 +312,7 @@ add_subdirectory(${FLB_PATH_LIB_MPACK} EXCLUDE_FROM_ALL)
312
312
add_subdirectory (${FLB_PATH_LIB_MINIZ} EXCLUDE_FROM_ALL )
313
313
314
314
# tutf8e
315
- if (FLB_ENCODE )
315
+ if (FLB_UTF8_ENCODER )
316
316
add_subdirectory (${FLB_PATH_LIB_TUTF8E} EXCLUDE_FROM_ALL )
317
317
endif ()
318
318
@@ -566,8 +566,8 @@ endif()
566
566
567
567
# tutf8e (UTF8 Encoding)
568
568
# =====================
569
- if (FLB_ENCODE )
570
- FLB_DEFINITION (FLB_HAVE_ENCODE )
569
+ if (FLB_UTF8_ENCODER )
570
+ FLB_DEFINITION (FLB_HAVE_UTF8_ENCODER )
571
571
endif ()
572
572
573
573
# LuaJIT (Scripting Support)
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ include_directories(
19
19
${CMAKE_CURRENT_BINARY_DIR} /include
20
20
)
21
21
22
- if (FLB_ENCODE )
22
+ if (FLB_UTF8_ENCODER )
23
23
include_directories (${FLB_PATH_ROOT_SOURCE} /${FLB_PATH_LIB_TUTF8E}/include )
24
24
endif ()
25
25
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ set(FLB_DEPS
236
236
)
237
237
238
238
# UTF8 Encoding
239
- if (FLB_ENCODE )
239
+ if (FLB_UTF8_ENCODER )
240
240
set (FLB_DEPS
241
241
${FLB_DEPS}
242
242
tutf8e
You can’t perform that action at this time.
0 commit comments