diff options
author | Thomas Morper <thomas@beingboiled.info> | 2017-12-23 12:22:47 +0000 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2017-12-27 18:11:22 -0600 |
commit | c0d2b647445bbccd59a233cbb37cb28e29f4f294 (patch) | |
tree | 97baf62c55c713c12fe0a8540f0682838da5fd6d /network/exim/exim.Makefile | |
parent | 064e99737370b15c1685b67e088806f1983e883e (diff) | |
download | slackbuilds-c0d2b647445bbccd59a233cbb37cb28e29f4f294.tar.gz |
network/exim: Updated for version 4.90.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/exim/exim.Makefile')
-rw-r--r-- | network/exim/exim.Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/network/exim/exim.Makefile b/network/exim/exim.Makefile index 858396440a..1f6fb19c4d 100644 --- a/network/exim/exim.Makefile +++ b/network/exim/exim.Makefile @@ -192,6 +192,11 @@ SPOOL_DIRECTORY=/var/spool/exim # least one type of lookup. You should consider whether you want to build # the Exim monitor or not. +# If you need to override how pkg-config finds configuration files for +# installed software, then you can set that here; wildcards will be expanded. + +# PKG_CONFIG_PATH=/usr/local/opt/openssl/lib/pkgconfig : /opt/*/lib/pkgconfig + #------------------------------------------------------------------------------ # These settings determine which individual router drivers are included in the @@ -488,6 +493,7 @@ WITH_CONTENT_SCAN=yes # Uncomment the following line to add DMARC checking capability, implemented # using libopendmarc libraries. You must have SPF support enabled also. # EXPERIMENTAL_DMARC=yes +# DMARC_TLD_FILE= /etc/exim/opendmarc.tlds # CFLAGS += -I/usr/local/include # LDFLAGS += -lopendmarc @@ -1116,6 +1122,13 @@ USE_READLINE=yes # Note that this option adds to the size of the Exim binary, because the # dynamic loading library is not otherwise included. +# If libreadline is not in the normal library paths, then because Exim is +# setuid you'll need to ensure that the correct directory is stamped into +# the binary so that dlopen will find it. +# Eg, on macOS/Darwin with a third-party install of libreadline, perhaps: + +# EXTRALIBS_EXIM+=-Wl,-rpath,/usr/local/opt/readline/lib + #------------------------------------------------------------------------------ # Uncomment this setting to include IPv6 support. |