add missing libs, update constants

This commit is contained in:
Love Hornquist Astrand
2009-11-21 23:58:40 -08:00
parent fe2dfe83a8
commit d2c2e37ef5
2 changed files with 18 additions and 3 deletions

View File

@@ -36,6 +36,8 @@ LDADD = $(top_builddir)/lib/hdb/libhdb.la \
$(LIB_krb4) \
$(LIB_hcrypto) \
$(top_builddir)/lib/asn1/libasn1.la \
$(top_builddir)/lib/ntlm/libheimntlm.la \
$(top_builddir)/lib/ipc/libheim-ipcs.la \
$(LIB_roken) \
$(LIB_door_create) \
$(LIB_pidfile)

View File

@@ -2,6 +2,8 @@
* Copyright (c) 2005, PADL Software Pty Ltd.
* All rights reserved.
*
* Portions Copyright (c) 2009 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
@@ -52,9 +54,8 @@ typedef enum kcm_operation {
KCM_OP_STORE,
KCM_OP_RETRIEVE,
KCM_OP_GET_PRINCIPAL,
KCM_OP_GET_FIRST,
KCM_OP_GET_NEXT,
KCM_OP_END_GET,
KCM_OP_GET_CRED_UUID_LIST,
KCM_OP_GET_CRED_BY_UUID,
KCM_OP_REMOVE_CRED,
KCM_OP_SET_FLAGS,
KCM_OP_CHOWN,
@@ -62,6 +63,18 @@ typedef enum kcm_operation {
KCM_OP_GET_INITIAL_TICKET,
KCM_OP_GET_TICKET,
KCM_OP_MOVE_CACHE,
KCM_OP_GET_CACHE_UUID_LIST,
KCM_OP_GET_CACHE_BY_UUID,
KCM_OP_GET_DEFAULT_CACHE,
KCM_OP_SET_DEFAULT_CACHE,
KCM_OP_GET_KDC_OFFSET,
KCM_OP_SET_KDC_OFFSET,
/* NTLM operations */
KCM_OP_ADD_NTLM_CRED,
KCM_OP_HAVE_NTLM_CRED,
KCM_OP_DEL_NTLM_CRED,
KCM_OP_DO_NTLM_AUTH,
KCM_OP_GET_NTLM_USER_LIST,
KCM_OP_MAX
} kcm_operation;