mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
network/exim: Fixed argument and linked to liblber when using LDAP.
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
This commit is contained in:
parent
787bcff806
commit
2363cc0c65
3 changed files with 4 additions and 4 deletions
|
@ -32,5 +32,5 @@ but you can enable them easily by passing the directives
|
|||
on the command line when calling this script, e.g.
|
||||
|
||||
LOOKUP_LDAP=yes LOOKUP_SQLITE=yes \
|
||||
LOOKUP_MYSQL=yes LOOKUP_POSTGRES=yes \
|
||||
LOOKUP_MYSQL=yes LOOKUP_PGSQL=yes \
|
||||
sh exim.SlackBuild
|
||||
|
|
|
@ -367,7 +367,7 @@ PCRE_CONFIG=yes
|
|||
# ...or just enable your favourite lookups and let GNUmake handle the rest
|
||||
|
||||
ifeq ($(LOOKUP_LDAP),yes)
|
||||
LOOKUP_LIBS+=-lldap
|
||||
LOOKUP_LIBS+=-lldap -llber
|
||||
endif
|
||||
|
||||
ifeq ($(LOOKUP_MYSQL),yes)
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
PRGNAM=exim
|
||||
VERSION=${VERSION:-4.80}
|
||||
BUILD=${BUILD:-1}
|
||||
BUILD=${BUILD:-2}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
|
@ -81,7 +81,7 @@ find . \
|
|||
# on the command line when calling this script, e.g.
|
||||
#
|
||||
# LOOKUP_LDAP=yes LOOKUP_SQLITE=yes \
|
||||
# LOOKUP_MYSQL=yes LOOKUP_POSTGRES=yes \
|
||||
# LOOKUP_MYSQL=yes LOOKUP_PGSQL=yes \
|
||||
# sh exim.SlackBuild
|
||||
#
|
||||
cat $CWD/exim.Makefile > Local/Makefile
|
||||
|
|
Loading…
Reference in a new issue