Skip to content

Commit

Permalink
GSS implementation in ldap_child
Browse files Browse the repository at this point in the history
  • Loading branch information
thalman committed Feb 1, 2023
1 parent 6a2de71 commit a314a4a
Show file tree
Hide file tree
Showing 7 changed files with 733 additions and 45 deletions.
8 changes: 6 additions & 2 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -700,6 +700,7 @@ dist_noinst_HEADERS = \
src/util/sss_python.h \
src/util/sss_regexp.h \
src/util/sss_krb5.h \
src/util/sss_gss.h \
src/util/sss_selinux.h \
src/util/sss_sockets.h \
src/util/sss_utf8.h \
Expand Down Expand Up @@ -4560,6 +4561,7 @@ ldap_child_SOURCES = \
src/providers/ldap/ldap_child.c \
src/providers/krb5/krb5_keytab.c \
src/util/sss_krb5.c \
src/util/sss_gss.c \
src/util/sss_iobuf.c \
src/util/atomic_io.c \
src/util/memory.c \
Expand All @@ -4574,13 +4576,15 @@ ldap_child_SOURCES = \
ldap_child_CFLAGS = \
$(AM_CFLAGS) \
$(POPT_CFLAGS) \
$(KRB5_CFLAGS)
$(KRB5_CFLAGS) \
$(GSSAPI_KRB5_CFLAGS)
ldap_child_LDADD = \
libsss_debug.la \
$(TALLOC_LIBS) \
$(POPT_LIBS) \
$(DHASH_LIBS) \
$(KRB5_LIBS)
$(KRB5_LIBS) \
$(GSSAPI_KRB5_LIBS)

if BUILD_SEMANAGE
selinux_child_SOURCES = \
Expand Down
Loading

0 comments on commit a314a4a

Please sign in to comment.