mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
Portability fixes
This commit is contained in:
parent
fffb1fab4e
commit
f6ba3b246a
1 changed files with 10 additions and 4 deletions
|
|
@ -29,6 +29,13 @@ SSL_LIB=-lcrypto
|
|||
LDAP_LIB=-lldap_r -llber
|
||||
LIBS=$(LDAP_LIB) $(HEIMDAL_LIB) $(SSL_LIB)
|
||||
|
||||
prefix=/usr/local
|
||||
ldap_subdir=/openldap
|
||||
exec_prefix=$(prefix)
|
||||
libdir=$(exec_prefix)/lib
|
||||
libexecdir=$(prefix)/libexec
|
||||
moduledir = $(libexecdir)$(ldap_subdir)
|
||||
|
||||
all: smbk5pwd.la
|
||||
|
||||
|
||||
|
|
@ -37,12 +44,11 @@ smbk5pwd.lo: smbk5pwd.c
|
|||
|
||||
smbk5pwd.la: smbk5pwd.lo
|
||||
$(LIBTOOL) --mode=link $(CC) $(OPT) -version-info 0:0:0 \
|
||||
-rpath $(PREFIX)/lib -module -o $@ $? $(LIBS)
|
||||
-rpath $(libdir) -module -o $@ $? $(LIBS)
|
||||
|
||||
clean:
|
||||
rm -f smbk5pwd.lo smbk5pwd.la
|
||||
|
||||
install: smbk5pwd.la
|
||||
mkdir -p $(PREFIX)/lib/openldap
|
||||
$(LIBTOOL) --mode=install cp smbk5pwd.la $(PREFIX)/lib/openldap
|
||||
$(LIBTOOL) --finish $(PREFIX)/lib
|
||||
mkdir -p $(DESTDIR)$(moduledir)
|
||||
$(LIBTOOL) --mode=install cp smbk5pwd.la $(DESTDIR)$(moduledir)
|
||||
|
|
|
|||
Loading…
Reference in a new issue