mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-01 04:29:35 -05:00
ITS#8628 - contrib/passwd/pbkdf2: new Makefile variables SSL_LIB & SSL_INC
This commit is contained in:
parent
a5b8a41c13
commit
52fad51dcc
1 changed files with 5 additions and 2 deletions
|
|
@ -12,8 +12,11 @@ CC = gcc
|
|||
OPT = -g -O2 -Wall
|
||||
#DEFS = -DSLAPD_PBKDF2_DEBUG
|
||||
|
||||
INCS = $(LDAP_INC)
|
||||
LIBS = $(LDAP_LIB) -lcrypto
|
||||
SSL_INC =
|
||||
SSL_LIB = -lcrypto
|
||||
|
||||
INCS = $(LDAP_INC) $(SSL_INC)
|
||||
LIBS = $(LDAP_LIB) $(SSL_LIB)
|
||||
|
||||
PROGRAMS = pw-pbkdf2.la
|
||||
MANPAGES = slapd-pw-pbkdf2.5
|
||||
|
|
|
|||
Loading…
Reference in a new issue