mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Currently, slapd links libsystemd to notify service state to systemd. However, libsystemd link several unnecessary libraries, which increases security risks. The systemd documentation provides a method to send state notifications to systemd using a simple protocol without the need to link against libsystemd. https://www.freedesktop.org/software/systemd/man/devel/sd_notify.html
77 lines
2.4 KiB
Text
77 lines
2.4 KiB
Text
# Makefile.in for standalone Load Balancer
|
|
# $OpenLDAP$
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
##
|
|
## Copyright 1998-2024 The OpenLDAP Foundation.
|
|
## All rights reserved.
|
|
##
|
|
## Redistribution and use in source and binary forms, with or without
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
## Public License.
|
|
##
|
|
## A copy of this license is available in the file LICENSE in the
|
|
## top-level directory of the distribution or, alternatively, at
|
|
## <http://www.OpenLDAP.org/license.html>.
|
|
|
|
PROGRAMS = lloadd
|
|
XPROGRAMS = slloadd
|
|
|
|
NT_SRCS = ../slapd/nt_svc.c
|
|
NT_OBJS = ../slapd/nt_svc.o ../../libraries/liblutil/slapdmsg.res
|
|
|
|
SRCS += main.c value.c \
|
|
../slapd/ch_malloc.c ../slapd/logging.c ../slapd/proxyp.c \
|
|
../slapd/sl_malloc.c ../slapd/user.c ../slapd/verbs.c
|
|
|
|
OBJS += main.o value.o \
|
|
../slapd/ch_malloc.o ../slapd/logging.o ../slapd/proxyp.o \
|
|
../slapd/sl_malloc.o ../slapd/user.o ../slapd/verbs.o \
|
|
$(@PLAT@_OBJS)
|
|
|
|
BUILD_OPT = "--enable-balancer"
|
|
BUILD_SRV = @BUILD_BALANCER@
|
|
|
|
all-local-srv: $(PROGRAMS) all-cffiles
|
|
|
|
lloadd: $(LLOADD_DEPENDS) version.o
|
|
$(LTLINK) -o $@ $(OBJS) version.o $(LIBS)
|
|
|
|
slloadd: version.o
|
|
$(LTLINK) -static -o $@ $(OBJS) version.o $(LIBS)
|
|
|
|
version.c: Makefile
|
|
@-$(RM) $@
|
|
$(MKVERSION) -s -n Versionstr lloadd > $@
|
|
|
|
version.o: version.c $(OBJS) $(LLOADD_L)
|
|
|
|
all-cffiles:
|
|
@if test -n "$(systemdsystemunitdir)"; then \
|
|
$(SED) -e "s;%LIBEXECDIR%;$(libexecdir);" \
|
|
$(srcdir)/lloadd.service > lloadd.service.tmp ; \
|
|
fi
|
|
touch all-cffiles
|
|
|
|
clean-local-srv: FORCE
|
|
$(RM) *.tmp all-cffiles
|
|
|
|
install-local-srv: install-lloadd install-conf
|
|
|
|
install-lloadd: FORCE
|
|
-$(MKDIR) $(DESTDIR)$(libexecdir)
|
|
@-$(INSTALL) -m 700 -d $(DESTDIR)$(localstatedir)/openldap-lloadd
|
|
@( \
|
|
for prg in $(PROGRAMS); do \
|
|
$(LTINSTALL) $(INSTALLFLAGS) $(STRIP_OPTS) -m 755 $$prg$(EXEEXT) \
|
|
$(DESTDIR)$(libexecdir); \
|
|
done \
|
|
)
|
|
|
|
install-conf: FORCE
|
|
@-$(MKDIR) $(DESTDIR)$(sysconfdir)
|
|
if test -n "$(systemdsystemunitdir)" && test ! -f $(DESTDIR)$(systemdsystemunitdir)/lloadd.service; then \
|
|
$(MKDIR) $(DESTDIR)$(systemdsystemunitdir); \
|
|
echo "installing lloadd.service in $(systemdsystemunitdir)"; \
|
|
echo "$(INSTALL) $(INSTALLFLAGS) -m 644 lloadd.service.tmp $(DESTDIR)$(systemdsystemunitdir)/lloadd.service"; \
|
|
$(INSTALL) $(INSTALLFLAGS) -m 644 lloadd.service.tmp $(DESTDIR)$(systemdsystemunitdir)/lloadd.service; \
|
|
fi
|