Skip to content

Commit

Permalink
enable base64 function (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
lizhou1111 authored Dec 29, 2023
1 parent c8e0806 commit dc06b55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions docker/packager/packager
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ def parse_env_variables(build_type, compiler, sanitizer, package_type, image_typ
cmake_flags.append('-DENABLE_ROCKSDB=ON')
cmake_flags.append('-DENABLE_SSL=ON')
cmake_flags.append('-DENABLE_BZIP2=ON')
cmake_flags.append('-DENABLE_BASE64=ON')
cmake_flags.append('-DENABLE_PROTOBUF=ON')
cmake_flags.append('-DENABLE_URING=ON')
cmake_flags.append('-DENABLE_UTILS=ON')
Expand Down
6 changes: 6 additions & 0 deletions src/configure_config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -241,3 +241,9 @@ endif()
if (ENABLE_ARG_MIN_MAX_FUNCS)
set(USE_ARG_MIN_MAX_FUNCS 1)
endif()

option(ENABLE_BASE64_FUNCS "Enable base64 functions" ${ENABLE_ALL_FUNCS})
if (ENABLE_BASE64_FUNCS)
set(USE_BASE64 1)
endif()

0 comments on commit dc06b55

Please sign in to comment.