2024-05-10 20:21:10 +00:00
|
|
|
PROJECT_VERSION_MAJOR=2
|
|
|
|
PROJECT_VERSION_MINOR=3
|
2024-05-10 14:22:26 +00:00
|
|
|
PROJECT_VERSION_PATCH=0
|
2023-12-31 06:26:49 +00:00
|
|
|
|
2021-12-05 18:17:21 +00:00
|
|
|
# Debugging
|
2023-12-31 06:26:49 +00:00
|
|
|
# Set DYNAMIC to 1 to enable the -rdynamic flag for the linker, yielding some symbols in crashlogs.
|
|
|
|
DYNAMIC=1
|
|
|
|
|
|
|
|
# Set GGDB to 1 to enable the -ggdb flag for the linker, including more debug info.
|
|
|
|
# Do note, changing this will re-build the whole server
|
|
|
|
GGDB=0
|
|
|
|
|
|
|
|
# Set INCLUDE_BACKTRACE to 1 to includes the backtrace library for better crashlogs.
|
|
|
|
# Do note, changing this will re-build the whole server
|
|
|
|
INCLUDE_BACKTRACE=0
|
|
|
|
|
|
|
|
# Set COMPILE_BACKTRACE to 1 to compile the backtrace library instead of using system libraries.
|
|
|
|
# Do note, changing this will re-build the whole server
|
|
|
|
COMPILE_BACKTRACE=0
|
|
|
|
|
2022-07-27 09:08:04 +00:00
|
|
|
# Set to the number of jobs (make -j equivalent) to compile the mariadbconn files with.
|
2023-12-31 06:26:49 +00:00
|
|
|
MARIADB_CONNECTOR_COMPILE_JOBS=1
|
|
|
|
|
2022-11-07 08:12:35 +00:00
|
|
|
# When set to 1 and uncommented, compiling and linking testing folders and libraries will be done.
|
2023-12-31 06:26:49 +00:00
|
|
|
ENABLE_TESTING=1
|
|
|
|
|
2022-12-28 21:58:53 +00:00
|
|
|
# The path to OpenSSL. Change this if your OpenSSL install path is different than the default.
|
|
|
|
OPENSSL_ROOT_DIR=/usr/local/opt/openssl@3/
|
2023-12-31 06:26:49 +00:00
|
|
|
|
|
|
|
# Whether or not to cache the entire CDClient Database into memory instead of lazy loading.
|
|
|
|
# 0 means to lazy load, all other values mean load the entire database.
|
|
|
|
CDCLIENT_CACHE_ALL=0
|