1.1 --- a/Makefile.conf Fri Oct 06 15:51:35 2017 +0200
1.2 +++ b/Makefile.conf Tue Oct 17 14:20:12 2017 +0200
1.3 @@ -45,12 +45,12 @@
1.4
1.5 # If empty, create a release build.
1.6 # Otherwise, create a debug build.
1.7 -# This variable is ineffective in your override.conf file.
1.8 -DEBUG=
1.9 +# This variable is ineffective in your local.conf file.
1.10 +DEBUG=YES
1.11
1.12 # If empty, suppress compiler warnings.
1.13 # Otherwise, print warnings.
1.14 -# This variable is ineffective in your override.conf file.
1.15 +# This variable is ineffective in your local.conf file.
1.16 WARN=placeholder
1.17
1.18
1.19 @@ -98,7 +98,7 @@
1.20 else
1.21 CFLAGS+= -O3 -DNDEBUG
1.22 endif
1.23 -else ifeq ($(BUILD_FOR),Darwin)
1.24 +else ifeq ($(BUILD_FOR),Darwin)
1.25 ifdef WARN
1.26 # FIXME Remove 'no-extended-offsetof' after ENGINE-236 is closed.
1.27 CFLAGS+= -Wall -pedantic -Wno-extended-offsetof
1.28 @@ -196,6 +196,7 @@
1.29
1.30 ######### OpenPGP #########
1.31 # Path of GPG binary
1.32 +# gpgconf is not available for old version of GPG, for example GPG 2.0.30. Override this variable, if you compile the engine for such an old version.
1.33 GPG_CMD:=$(shell gpgconf --list-components | awk -F: '/^gpg:/ { print $$3; exit 0; }')
1.34
1.35 # Selects OpenPGP implementation. must be either `GPG` or `NETPGP`