This commit is contained in:
speedie 2022-08-26 11:43:29 +02:00
parent a258afba18
commit fad823a301
2 changed files with 4 additions and 4 deletions

View file

@ -9,9 +9,9 @@
# IPC
# Whether or not to compile in IPC support.
# If you use OpenBSD or FreeBSD, this is not supported. In that case set this to false and set USEIPC in options.h to 0.
USEIPC = false
YAJLLIBS = -lyajl # Comment if you use IPC
YAJLINC = /usr/include/yajl # Comment if you use IPC
USEIPC = true # Comment if you don't use IPC
YAJLLIBS = -lyajl # Comment if you don't use IPC
YAJLINC = /usr/include/yajl # Comment if you don't use IPC
# Solaris support
# If you use Solaris, uncomment this line. (remove the # at the start of the line below)

View file

@ -1,4 +1,4 @@
/* Toggle patches
* This header allows you to enable/disable patches that can break compability with certain OSes or configurations.
*/
#define USEIPC 1 /* Whether or not to use IPC. If you set this to 1, set USEIPC to true in config.mk and comment the YAJLLIBS and YAJLINC lines in config.mk. Not compatible with BSDs so for those, set this to 0. */
#define USEIPC 0 /* Whether or not to use IPC. If you set this to 1, set USEIPC to true in config.mk and comment the YAJLLIBS and YAJLINC lines in config.mk. Not compatible with BSDs so for those, set this to 0. */